2018-07-16 22:22:55 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="component-markdown">
|
|
|
|
|
<div class="spin-group" v-if="!markedHTML">
|
|
|
|
|
<div>正在加载</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="markdown-body" v-html="markedHTML"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import marked from 'marked'
|
|
|
|
|
import highlight from 'highlight.js'
|
|
|
|
|
import bandupan from './plugin/baidupan'
|
2018-07-25 08:55:10 +08:00
|
|
|
import 'github-markdown-css'
|
2018-08-24 17:05:32 +08:00
|
|
|
import { ComponentsMarkdownBase } from '@/api/components/markdown'
|
2018-07-16 22:22:55 +08:00
|
|
|
export default {
|
|
|
|
|
name: 'd2-markdown',
|
|
|
|
|
props: {
|
|
|
|
|
url: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: false,
|
|
|
|
|
default: ''
|
|
|
|
|
},
|
|
|
|
|
source: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: false,
|
|
|
|
|
default: ''
|
|
|
|
|
},
|
|
|
|
|
highlight: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
required: false,
|
|
|
|
|
default: false
|
|
|
|
|
},
|
|
|
|
|
// 百度网盘分享链接特殊样式
|
|
|
|
|
baidupan: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
required: false,
|
|
|
|
|
default: true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
getReadmePublicPath: '',
|
|
|
|
|
markedHTML: ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted () {
|
|
|
|
|
if (this.url) {
|
|
|
|
|
this.initWithUrl()
|
|
|
|
|
} else if (this.source) {
|
|
|
|
|
this.initWithMd()
|
|
|
|
|
} else {
|
|
|
|
|
console.log('not mounted init')
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 使用 md 初始化
|
|
|
|
|
initWithMd () {
|
|
|
|
|
this.markedHTML = this.marked(this.source)
|
|
|
|
|
},
|
|
|
|
|
// 使用 url 初始化
|
|
|
|
|
async initWithUrl () {
|
|
|
|
|
this.markedHTML = await this.getReadme(this.url)
|
|
|
|
|
},
|
|
|
|
|
// 从 url 加载原始数据
|
2018-07-17 16:14:19 +08:00
|
|
|
async getReadme (url) {
|
2018-08-24 17:05:32 +08:00
|
|
|
const data = await ComponentsMarkdownBase(url)
|
2018-07-16 22:22:55 +08:00
|
|
|
return this.marked(data)
|
|
|
|
|
},
|
|
|
|
|
marked (data) {
|
|
|
|
|
const renderer = new marked.Renderer()
|
|
|
|
|
renderer.blockquote = (quote) => {
|
|
|
|
|
// 百度网盘
|
|
|
|
|
return (this.baidupan && bandupan(quote, this.$baseUrl)) || `<blockquote>${quote}</blockquote>`
|
|
|
|
|
}
|
|
|
|
|
return marked(data, {
|
|
|
|
|
...this.highlight ? {highlight: (code) => highlight.highlightAuto(code).value} : {},
|
|
|
|
|
renderer
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
@import '~@/assets/style/public.scss';
|
|
|
|
|
.component-markdown {
|
|
|
|
|
.spin-group {
|
|
|
|
|
height: 100px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
color: $color-primary;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 百度云
|
|
|
|
|
$baidupanHeight: 30px;
|
|
|
|
|
$baidupanPadding: 10px;
|
|
|
|
|
.baidupan {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
.container {
|
|
|
|
|
height: $baidupanHeight + 2 * $baidupanPadding;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: 1px solid #dfe2e5;
|
|
|
|
|
padding: $baidupanPadding;
|
|
|
|
|
float: left;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
&:hover {
|
|
|
|
|
border: 1px solid $color-primary;
|
|
|
|
|
.line {
|
|
|
|
|
background-color: $color-primary;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.icon {
|
|
|
|
|
float: left;
|
|
|
|
|
height: $baidupanHeight;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 40px;
|
|
|
|
|
margin-right: $baidupanPadding;
|
|
|
|
|
img {
|
|
|
|
|
width: 40px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.url {
|
|
|
|
|
float: left;
|
|
|
|
|
height: $baidupanHeight;
|
|
|
|
|
line-height: $baidupanHeight;
|
|
|
|
|
color: $color-text-main;
|
|
|
|
|
}
|
|
|
|
|
.line {
|
|
|
|
|
float: left;
|
|
|
|
|
height: $baidupanHeight + 2 * $baidupanPadding;
|
|
|
|
|
width: 1px;
|
|
|
|
|
margin: -$baidupanPadding $baidupanPadding;
|
|
|
|
|
background-color: #dfe2e5;
|
|
|
|
|
}
|
|
|
|
|
.pwd {
|
|
|
|
|
float: left;
|
|
|
|
|
height: $baidupanHeight;
|
|
|
|
|
line-height: $baidupanHeight;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|