From 3d8bbf5a755fbea2a2b7eb9d4b5b7c00bfada11d Mon Sep 17 00:00:00 2001 From: neo Date: Fri, 19 Mar 2021 17:00:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4valine=E6=96=B9?= =?UTF-8?q?=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .dumi/theme/ValineComment.tsx | 18 ++++++++++ .dumi/theme/layout.tsx | 2 +- .dumi/theme/plugin-valine/Comment.tpl | 21 ----------- .dumi/theme/plugin-valine/index.ts | 52 --------------------------- .umirc.ts | 5 --- 5 files changed, 19 insertions(+), 79 deletions(-) create mode 100644 .dumi/theme/ValineComment.tsx delete mode 100644 .dumi/theme/plugin-valine/Comment.tpl delete mode 100644 .dumi/theme/plugin-valine/index.ts diff --git a/.dumi/theme/ValineComment.tsx b/.dumi/theme/ValineComment.tsx new file mode 100644 index 0000000..94b1d02 --- /dev/null +++ b/.dumi/theme/ValineComment.tsx @@ -0,0 +1,18 @@ +import { useEffect } from 'react'; + +export default function ValineComment({ location }) { + const { pathname } = location; + + useEffect(() => { + import('valine').then(Valine => { + new Valine.default({ + el: '#vcomments', + appId: 'Ke6Uq74Gi6sdTxcDu4nJ6sdw-MdYXbMMI', + appKey: 'VtFD26towQ1JQxB9tLHd8odg', + path: pathname, + }); + }); + }, [pathname]); + + return
; +} diff --git a/.dumi/theme/layout.tsx b/.dumi/theme/layout.tsx index d74af8a..e9f3f77 100644 --- a/.dumi/theme/layout.tsx +++ b/.dumi/theme/layout.tsx @@ -5,8 +5,8 @@ import Navbar from 'dumi-theme-default/src/components/Navbar'; import SideMenu from 'dumi-theme-default/src/components/SideMenu'; import SlugList from 'dumi-theme-default/src/components/SlugList'; import SearchBar from 'dumi-theme-default/src/components/SearchBar'; -import { ValineComment } from 'dumi'; import Notice from './Notice'; +import ValineComment from './ValineComment'; import './style/layout.less'; const Hero = hero => ( diff --git a/.dumi/theme/plugin-valine/Comment.tpl b/.dumi/theme/plugin-valine/Comment.tpl deleted file mode 100644 index fb5c55d..0000000 --- a/.dumi/theme/plugin-valine/Comment.tpl +++ /dev/null @@ -1,21 +0,0 @@ -import { useEffect } from 'react'; -import Valine from 'valine'; - -export function ValineComment({ location }) { - const { pathname } = location; - - useEffect(() => { - import('valine').then(Valine => { - console.log(Valine) - new Valine.default({ - el: '{{{ el }}}', - appId: '{{{ appId }}}', - appKey: '{{{ appKey }}}' - }) - }) - }, [pathname]) - - return ( -
- ) -} diff --git a/.dumi/theme/plugin-valine/index.ts b/.dumi/theme/plugin-valine/index.ts deleted file mode 100644 index d027726..0000000 --- a/.dumi/theme/plugin-valine/index.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { IApi } from 'dumi'; -import { join } from 'path'; -import { readFileSync } from 'fs'; - -export default (api: IApi) => { - const { - paths, - utils: { Mustache, winPath, lodash }, - } = api; - - api.describe({ - key: 'valine', - config: { - default: { - el: '#vcomments', - appId: '', - appKey: '', - }, - schema(joi) { - return joi.object({ - el: joi.string(), - appId: joi.string(), - appKey: joi.string(), - }); - }, - }, - }); - - // 生成临时文件 - api.onGenerateFiles(async () => { - // Comment.tsx - const selectLang = readFileSync(join(__dirname, 'Comment.tpl'), 'utf-8'); - - const { appId, appKey, el = '#vcomments' } = api.userConfig.valine; - - api.writeTmpFile({ - path: 'plugin-valine/Comment.tsx', - content: Mustache.render(selectLang, { - el: el, - appId: appId, - appKey: appKey, - }), - }); - }); - - api.addUmiExports(() => { - return { - exportAll: true, - source: `../plugin-valine/Comment`, - }; - }); -}; diff --git a/.umirc.ts b/.umirc.ts index 9e66d11..80b6c20 100644 --- a/.umirc.ts +++ b/.umirc.ts @@ -87,11 +87,6 @@ export default defineConfig({ // mode: 'string', // staticMarkup: false, }, - valine: { - appId: 'Ke6Uq74Gi6sdTxcDu4nJ6sdw-MdYXbMMI', - appKey: 'VtFD26towQ1JQxB9tLHd8odg', - }, - plugins: ['./.dumi/theme/plugin-valine/index.ts'], exportStatic: {}, // more config: https://d.umijs.org/config });