mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-21 11:08:09 +08:00
127 lines
2.9 KiB
Vue
127 lines
2.9 KiB
Vue
<template>
|
|
<div class="demo">
|
|
<template v-if="mainFile">
|
|
<div class="demo__preview">
|
|
<component :is="mainFile" v-if="mode === 'vue'" />
|
|
<react-renderer :component="mainFile" v-if="mode === 'react'" />
|
|
</div>
|
|
<div class="demo__source">
|
|
<div class="demo__tabs" v-if="showFileNames">
|
|
<button
|
|
class="demo__tab"
|
|
:class="{ 'is-active': currentIndex === index}"
|
|
v-for="(file, index) in files"
|
|
:key="index"
|
|
@click="currentIndex = index"
|
|
>
|
|
{{ file.name }}
|
|
</button>
|
|
</div>
|
|
<div class="demo__code" v-if="activeFile" :key="activeFile.path">
|
|
<prism :code="activeFile.content" :language="activeFile.highlight" :highlight="highlight" />
|
|
</div>
|
|
</div>
|
|
<div class="demo__meta">
|
|
<div class="demo__name">
|
|
{{ this.name }}
|
|
</div>
|
|
<a class="demo__link" :href="githubUrl" target="_blank">
|
|
Edit on GitHub →
|
|
</a>
|
|
</div>
|
|
</template>
|
|
<div v-else class="demo__error">
|
|
Could not find a demo called “{{ this.name }}”.
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import collect from 'collect.js'
|
|
import ReactRenderer from '~/components/ReactRenderer'
|
|
import Prism from '~/components/Prism'
|
|
|
|
export default {
|
|
components: {
|
|
ReactRenderer,
|
|
Prism,
|
|
},
|
|
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
mode: {
|
|
type: String,
|
|
default: 'vue',
|
|
},
|
|
|
|
highlight: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
files: [],
|
|
content: null,
|
|
currentIndex: 0,
|
|
syntax: {
|
|
vue: 'markup',
|
|
},
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
mainFile() {
|
|
const file = this.files
|
|
.find(item => item.path.endsWith('.vue') || item.path.endsWith('.jsx'))
|
|
|
|
if (!file) {
|
|
return
|
|
}
|
|
|
|
return require(`~/demos/${file.path}`).default
|
|
},
|
|
|
|
showFileNames() {
|
|
return this.files.length > 1
|
|
},
|
|
|
|
activeFile() {
|
|
return this.files[this.currentIndex]
|
|
},
|
|
|
|
githubUrl() {
|
|
return `https://github.com/ueberdosis/tiptap-next/tree/main/docs/src/demos/${this.name}`
|
|
},
|
|
},
|
|
|
|
mounted() {
|
|
this.files = collect(require.context(`~/demos/`, true, /.+\..+$/).keys())
|
|
.filter(path => path.startsWith(`./${this.name}`))
|
|
.map(path => path.replace('./', ''))
|
|
.map(path => {
|
|
const extension = path.split('.').pop()
|
|
|
|
return {
|
|
path,
|
|
name: path.replace(`${this.name}/`, ''),
|
|
content: require(`!!raw-loader!~/demos/${path}`).default,
|
|
extension,
|
|
highlight: this.syntax[extension] || extension,
|
|
}
|
|
})
|
|
.filter((item) => {
|
|
return ['vue', 'jsx', 'scss'].includes(item.extension)
|
|
})
|
|
.sortBy(item => item.path.split('/').length)
|
|
.toArray()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" src="./style.scss" scoped /> |