docs_vue2/components/OneRepl.vue

126 lines
2.1 KiB
Vue
Raw Normal View History

2021-11-20 13:22:48 +08:00
<template>
<article class="repl">
<header class="header">
<h1>{{ t('liveEdit') }}</h1>
<section class="actions">
<veui-button
ui="strong text"
@click="handleClose"
>
{{ t('exit') }}
</veui-button>
</section>
</header>
<one-live
class="editor"
:code="code"
/>
</article>
</template>
<script>
2021-11-21 01:52:20 +08:00
import { Button, Loading } from 'veui'
2021-11-20 13:22:48 +08:00
import i18n from 'veui/mixins/i18n'
export default {
name: 'one-repl',
components: {
'veui-button': Button,
2021-11-21 01:52:20 +08:00
'one-live': () => ({
component: import('./OneLive'),
loading: {
inheritAttrs: false,
render (h) {
return h(Loading, {
props: {
loading: true,
ui: 'strong'
},
class: 'loading'
})
}
}
})
2021-11-20 13:22:48 +08:00
},
mixins: [i18n],
props: {
code: {
type: String,
default: ''
}
},
methods: {
handleClose () {
this.$emit('close')
}
}
}
</script>
<style lang="stylus" scoped>
.repl
display flex
flex-direction column
.header
display flex
align-items center
flex none
height 48px
padding 0 24px
box-shadow 0 0 4px #0006
position relative
h1
flex none
margin 0
font-size 16px
.actions
display flex
justify-content flex-end
flex 1 1 auto
2021-11-21 01:52:20 +08:00
.editor:not(.loading)
position relative
2021-11-20 13:22:48 +08:00
flex 1 1 auto
height calc(100vh - 48px)
& >>> .prism-editor-wrapper
padding 8px 12px
font-size 12px
color #eee
background-color #0a0b0d
line-height 1.5
font-family Menlo, consolas, monospace
-webkit-font-smoothing auto
&::-webkit-scrollbar
width 8px
background transparent
transition all 0.3s
&-thumb
border-radius 4px
background-color #282c33
&:hover::-webkit-scrollbar-thumb
background-color #545b66
textarea
outline none
& >>> .live-preview
padding 24px 36px
& >>> .VueLive-error
display none
2021-11-21 01:52:20 +08:00
.loading
position absolute
top 40vh
left 50%
transform translateX(-50%)
font-size 40px
2021-11-20 13:22:48 +08:00
</style>