2020-08-13 11:47:56 +08:00
|
|
|
<template>
|
|
|
|
<article
|
|
|
|
class="one-demo"
|
|
|
|
:class="{ expanded: localExpanded }"
|
|
|
|
>
|
|
|
|
<section class="demo">
|
|
|
|
<browser-window
|
|
|
|
v-if="browser"
|
|
|
|
:url="browser"
|
|
|
|
width="80%"
|
|
|
|
height="400px"
|
|
|
|
>
|
|
|
|
<slot/>
|
|
|
|
</browser-window>
|
|
|
|
<slot v-else/>
|
|
|
|
</section>
|
|
|
|
<section
|
|
|
|
v-if="$slots.desc"
|
|
|
|
class="desc"
|
|
|
|
>
|
|
|
|
<slot name="desc"/>
|
|
|
|
</section>
|
2021-09-15 19:19:09 +08:00
|
|
|
<section class="actions">
|
|
|
|
<veui-button
|
2021-09-19 15:34:14 +08:00
|
|
|
v-tooltip="t('playInCodeSandbox')"
|
2021-09-15 19:19:09 +08:00
|
|
|
ui="icon"
|
2021-09-19 15:34:14 +08:00
|
|
|
@click="play('CodeSandbox')"
|
2021-09-15 19:19:09 +08:00
|
|
|
>
|
|
|
|
<veui-icon
|
2021-09-19 15:34:14 +08:00
|
|
|
name="one-demo-codesandbox"
|
|
|
|
/>
|
|
|
|
</veui-button>
|
|
|
|
<veui-button
|
|
|
|
v-tooltip="t('playInStackBlitz')"
|
|
|
|
ui="icon"
|
|
|
|
@click="play('StackBlitz')"
|
|
|
|
>
|
|
|
|
<veui-icon
|
|
|
|
name="one-demo-stackblitz"
|
2021-09-15 19:19:09 +08:00
|
|
|
/>
|
|
|
|
</veui-button>
|
|
|
|
<veui-button
|
|
|
|
v-tooltip="t(localExpanded ? 'hideCode' : 'showCode')"
|
|
|
|
ui="icon"
|
|
|
|
@click="localExpanded = !localExpanded"
|
|
|
|
>
|
2021-09-16 18:49:13 +08:00
|
|
|
<veui-icon
|
2021-09-19 15:34:14 +08:00
|
|
|
scale="1.2"
|
2021-09-16 18:49:13 +08:00
|
|
|
:name="localExpanded ? 'one-demo-code-off' : 'one-demo-code'"
|
|
|
|
/>
|
2021-09-15 19:19:09 +08:00
|
|
|
</veui-button>
|
|
|
|
</section>
|
2020-08-13 11:47:56 +08:00
|
|
|
<section
|
|
|
|
v-if="$slots.source"
|
|
|
|
ref="source"
|
|
|
|
class="source"
|
|
|
|
:style="{ height: localExpanded ? `${sourceHeight || 0}px` : '0' }"
|
|
|
|
>
|
|
|
|
<slot name="source"/>
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-09-15 19:19:09 +08:00
|
|
|
import { Button, Icon } from 'veui'
|
|
|
|
import tooltip from 'veui/directives/tooltip'
|
2020-08-13 11:47:56 +08:00
|
|
|
import i18n from 'veui/mixins/i18n'
|
|
|
|
import { BrowserWindow } from 'vue-windows'
|
2021-09-17 19:41:59 +08:00
|
|
|
import { getLocale } from '../common/i18n'
|
2021-09-19 15:34:14 +08:00
|
|
|
import { play } from '../common/play'
|
2020-08-13 11:47:56 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'one-demo',
|
2021-09-15 19:19:09 +08:00
|
|
|
directives: {
|
|
|
|
tooltip
|
|
|
|
},
|
2020-08-13 11:47:56 +08:00
|
|
|
components: {
|
2021-09-15 19:19:09 +08:00
|
|
|
'veui-button': Button,
|
2020-08-13 11:47:56 +08:00
|
|
|
'veui-icon': Icon,
|
|
|
|
BrowserWindow
|
|
|
|
},
|
|
|
|
mixins: [i18n],
|
|
|
|
props: {
|
|
|
|
expanded: Boolean,
|
|
|
|
browser: String
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
sourceHeight: 0,
|
|
|
|
localExpanded: this.expanded
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
expanded (val) {
|
|
|
|
this.localExpanded = val
|
|
|
|
},
|
|
|
|
localExpanded (val) {
|
|
|
|
this.$emit('update:expanded', val)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
let source = this.$refs.source
|
|
|
|
let style = source.style
|
|
|
|
style.height = ''
|
|
|
|
style.height = source.offsetHeight
|
|
|
|
this.sourceHeight = source.offsetHeight
|
|
|
|
style.height = '0'
|
2021-09-15 19:19:09 +08:00
|
|
|
},
|
|
|
|
methods: {
|
2021-09-19 15:34:14 +08:00
|
|
|
play (vendor) {
|
2021-09-17 19:41:59 +08:00
|
|
|
let locale = getLocale(this.$route.path)
|
2021-09-19 15:34:14 +08:00
|
|
|
play(this.$refs.source.textContent, { locale, vendor })
|
2021-09-15 19:19:09 +08:00
|
|
|
}
|
2020-08-13 11:47:56 +08:00
|
|
|
}
|
|
|
|
}
|
2021-09-15 19:19:09 +08:00
|
|
|
|
|
|
|
Icon.register({
|
2021-09-15 20:23:08 +08:00
|
|
|
'one-demo-code': {
|
2021-09-15 19:19:09 +08:00
|
|
|
width: 24,
|
|
|
|
height: 24,
|
|
|
|
d: 'M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6l6 6l1.4-1.4zm5.2 0l4.6-4.6l-4.6-4.6L16 6l6 6l-6 6l-1.4-1.4z'
|
|
|
|
},
|
2021-09-15 20:23:08 +08:00
|
|
|
'one-demo-code-off': {
|
2021-09-15 19:19:09 +08:00
|
|
|
width: 24,
|
|
|
|
height: 24,
|
|
|
|
d: 'M19.17 12l-4.58-4.59L16 6l6 6l-3.59 3.59L17 14.17L19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6l1.41-1.41L4.83 12L7 9.83l12.78 12.78l1.41-1.41L2.81 2.81L1.39 4.22z'
|
|
|
|
},
|
2021-09-19 15:34:14 +08:00
|
|
|
'one-demo-codesandbox': {
|
2021-09-15 19:19:09 +08:00
|
|
|
width: 32,
|
|
|
|
height: 32,
|
|
|
|
d: 'M2.667 8l13.938-8l13.943 8l.12 15.932L16.605 32L2.667 24zm2.786 3.307v6.344l4.458 2.479v4.688l5.297 3.063V16.85zm22.318 0l-9.755 5.542V27.88l5.292-3.063v-4.682l4.464-2.484zM6.844 8.802l9.74 5.526l9.76-5.573l-5.161-2.932l-4.547 2.594l-4.573-2.625z'
|
2021-09-19 15:34:14 +08:00
|
|
|
},
|
|
|
|
'one-demo-stackblitz': {
|
|
|
|
width: 28,
|
|
|
|
height: 28,
|
|
|
|
d: 'M12.747 16.273h-7.46L18.925 1.5l-3.671 10.227h7.46L9.075 26.5l3.671-10.227z'
|
2021-09-15 19:19:09 +08:00
|
|
|
}
|
|
|
|
})
|
2020-08-13 11:47:56 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style src="vue-windows/dist/vue-windows.css"></style>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.one-demo
|
|
|
|
overflow hidden
|
|
|
|
|
|
|
|
.demo
|
|
|
|
border 1px solid #eee
|
2021-07-19 20:12:14 +08:00
|
|
|
border-top-left-radius 4px
|
|
|
|
border-top-right-radius 4px
|
2020-08-13 11:47:56 +08:00
|
|
|
padding 30px
|
|
|
|
|
|
|
|
.desc
|
|
|
|
border 1px solid #eee
|
|
|
|
padding 18px 20px
|
|
|
|
background-color #fcfcfc
|
|
|
|
|
|
|
|
.source
|
2021-07-19 20:12:14 +08:00
|
|
|
overflow hidden
|
2020-08-13 11:47:56 +08:00
|
|
|
transition height 0.3s
|
|
|
|
|
|
|
|
& >>> pre
|
|
|
|
margin-top 0
|
|
|
|
margin-bottom 0
|
|
|
|
|
2021-07-19 20:12:14 +08:00
|
|
|
.expanded &
|
|
|
|
border-radius 0
|
|
|
|
|
2020-08-13 11:47:56 +08:00
|
|
|
.desc
|
|
|
|
.source >>> pre
|
2021-09-15 19:19:09 +08:00
|
|
|
.actions
|
2020-08-13 11:47:56 +08:00
|
|
|
margin-top -1px
|
|
|
|
|
2021-09-15 19:19:09 +08:00
|
|
|
.actions
|
2020-08-13 11:47:56 +08:00
|
|
|
position relative
|
|
|
|
display flex
|
|
|
|
justify-content center
|
|
|
|
align-items center
|
|
|
|
line-height 2
|
|
|
|
width 100%
|
2021-09-15 19:19:09 +08:00
|
|
|
height 48px
|
2020-08-13 11:47:56 +08:00
|
|
|
border 1px solid #eee
|
2021-07-19 20:12:14 +08:00
|
|
|
border-bottom-left-radius 4px
|
|
|
|
border-bottom-right-radius 4px
|
2020-08-13 11:47:56 +08:00
|
|
|
background-color #fff
|
|
|
|
transition background-color 0.3s
|
|
|
|
outline none
|
|
|
|
|
2021-09-15 19:19:09 +08:00
|
|
|
.veui-button
|
|
|
|
font-size 18px
|
|
|
|
|
|
|
|
.veui-button + .veui-button
|
2021-09-19 15:34:14 +08:00
|
|
|
margin-left 12px
|
2020-08-13 11:47:56 +08:00
|
|
|
</style>
|