Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from doocs:main #55

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"pinia": "^2.2.7",
"qiniu-js": "^3.4.2",
"radix-vue": "^1.9.10",
"reading-time": "^1.5.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"tiny-oss": "^0.5.1",
Expand Down
36 changes: 34 additions & 2 deletions src/components/CodemirrorEditor/EditorHeader/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ const formatItems = [
const store = useStore()
const displayStore = useDisplayStore()

const { isDark, isCiteStatus, output, primaryColor } = storeToRefs(store)
const { isDark, isCiteStatus, isCountStatus, output, primaryColor } = storeToRefs(store)

const { toggleDark, editorRefresh, citeStatusChanged } = store
const { toggleDark, editorRefresh, citeStatusChanged, countStatusChanged } = store

const copyMode = useStorage(addPrefix(`copyMode`), `txt`)
const source = ref(``)
Expand Down Expand Up @@ -173,6 +173,13 @@ const formatOptions = ref<Format[]>([`rgb`, `hex`, `hsl`, `hsv`])
>
微信外链转底部引用
</MenubarCheckboxItem>
<MenubarSeparator />
<MenubarCheckboxItem
:checked="isCountStatus"
@click="countStatusChanged()"
>
统计字数和阅读时间
</MenubarCheckboxItem>
</MenubarContent>
</MenubarMenu>
<EditDropdown />
Expand Down Expand Up @@ -384,6 +391,31 @@ const formatOptions = ref<Format[]>([`rgb`, `hex`, `hsl`, `hsv`])
</Button>
</div>
</div>
<div class="space-y-2">
<h2>统计字数和阅读时间</h2>
<div class="grid grid-cols-5 justify-items-center gap-2">
<Button
class="w-full"
variant="outline"
:class="{
'border-black dark:border-white': store.isCountStatus,
}"
@click="!store.isCountStatus && store.countStatusChanged()"
>
开启
</Button>
<Button
class="w-full"
variant="outline"
:class="{
'border-black dark:border-white': !store.isCountStatus,
}"
@click="store.isCountStatus && store.countStatusChanged()"
>
关闭
</Button>
</div>
</div>
<div class="space-y-2">
<h2>段落首行缩进</h2>
<div class="grid grid-cols-5 justify-items-center gap-2">
Expand Down
2 changes: 2 additions & 0 deletions src/config/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ const defaultTheme: Theme = {
'border-radius': `6px`,
'color': `rgba(0,0,0,0.5)`,
'background': `var(--blockquote-background)`,
'margin-bottom': `1em`,
},

// 引用内容
Expand Down Expand Up @@ -334,6 +335,7 @@ const graceTheme = toMerged(defaultTheme, {
'border-radius': `6px`,
'color': `rgba(0,0,0,0.6)`,
'box-shadow': `0 4px 6px rgba(0,0,0,0.05)`,
'margin-bottom': `1em`,
},

'blockquote_p': {
Expand Down
29 changes: 26 additions & 3 deletions src/stores/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import type { ReadTimeResults } from 'reading-time'
import DEFAULT_CONTENT from '@/assets/example/markdown.md?raw'
import DEFAULT_CSS_CONTENT from '@/assets/example/theme-css.txt?raw'
import { altKey, codeBlockThemeOptions, colorOptions, fontFamilyOptions, fontSizeOptions, legendOptions, shiftKey, themeMap, themeOptions } from '@/config'
import { addPrefix, css2json, customCssWithTemplate, customizeTheme, downloadMD, exportHTML, formatDoc } from '@/utils'
import { initRenderer } from '@/utils/renderer'

import { initRenderer } from '@/utils/renderer'
import CodeMirror from 'codemirror'
import { marked } from 'marked'

Expand All @@ -24,6 +25,10 @@ export const useStore = defineStore(`store`, () => {
const isCiteStatus = useStorage(`isCiteStatus`, false)
const toggleCiteStatus = useToggle(isCiteStatus)

// 是否统计字数和阅读时间
const isCountStatus = useStorage(`isCountStatus`, false)
const toggleCountStatus = useToggle(isCountStatus)

// 是否开启段落首行缩进
const isUseIndent = useStorage(addPrefix(`use_indent`), false)
const toggleUseIndent = useToggle(isUseIndent)
Expand Down Expand Up @@ -174,14 +179,23 @@ export const useStore = defineStore(`store`, () => {
isUseIndent: isUseIndent.value,
})

const readingTime = ref<ReadTimeResults | null>(null)

// 更新编辑器
const editorRefresh = () => {
codeThemeChange()
renderer.reset({ citeStatus: isCiteStatus.value, legend: legend.value, isUseIndent: isUseIndent.value })
renderer.reset({ citeStatus: isCiteStatus.value, legend: legend.value, isUseIndent: isUseIndent.value, countStatus: isCountStatus.value })

const { markdownContent } = renderer.parseFrontMatterAndContent(editor.value!.getValue())
const { markdownContent, readingTime: readingTimeResult } = renderer.parseFrontMatterAndContent(editor.value!.getValue())
console.log(`Reading time result:`, readingTimeResult)
readingTime.value = readingTimeResult
let outputTemp = marked.parse(markdownContent) as string

console.log(readingTime.value)

// 阅读时间及字数统计
outputTemp = renderer.buildReadingTime(readingTimeResult) + outputTemp

// 去除第一行的 margin-top
outputTemp = outputTemp.replace(/(style=".*?)"/, `$1;margin-top: 0"`)
// 引用脚注
Expand Down Expand Up @@ -275,6 +289,7 @@ export const useStore = defineStore(`store`, () => {
const resetStyle = () => {
isCiteStatus.value = false
isMacCodeBlock.value = true
isCountStatus.value = false

theme.value = themeOptions[0].value
fontFamily.value = fontFamilyOptions[0].value
Expand Down Expand Up @@ -366,6 +381,10 @@ export const useStore = defineStore(`store`, () => {
toggleCiteStatus()
})

const countStatusChanged = withAfterRefresh(() => {
toggleCountStatus()
})

const useIndentChanged = withAfterRefresh(() => {
toggleUseIndent()
})
Expand Down Expand Up @@ -427,6 +446,9 @@ export const useStore = defineStore(`store`, () => {
isUseIndent,
useIndentChanged,

isCountStatus,
countStatusChanged,

output,
editor,
cssEditor,
Expand All @@ -436,6 +458,7 @@ export const useStore = defineStore(`store`, () => {
primaryColor,
codeBlockTheme,
legend,
readingTime,

editorRefresh,

Expand Down
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export interface IOpts {
isUseIndent: boolean
legend?: string
citeStatus?: boolean
countStatus?: boolean
}

export type ThemeStyles = Record<Block | Inline, ExtendedProperties>
Expand Down
62 changes: 49 additions & 13 deletions src/utils/renderer.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
import type { ExtendedProperties, IOpts, ThemeStyles } from '@/types'
import type { PropertiesHyphen } from 'csstype'
import type { Renderer, RendererObject, Tokens } from 'marked'
import type { ReadTimeResults } from 'reading-time'
import { cloneDeep, toMerged } from 'es-toolkit'
import frontMatter from 'front-matter'

import hljs from 'highlight.js'
import { marked } from 'marked'
import mermaid from 'mermaid'
import readingTime from 'reading-time'

import { getStyleString } from '.'
import markedAlert from './MDAlert'

import { MDKatex } from './MDKatex'

marked.setOptions({
Expand Down Expand Up @@ -109,6 +113,36 @@ const macCodeSvg = `
</svg>
`.trim()

interface ParseResult {
yamlData: Record<string, any>
markdownContent: string
readingTime: ReadTimeResults
}

function parseFrontMatterAndContent(markdownText: string): ParseResult {
try {
const parsed = frontMatter(markdownText)
const yamlData = parsed.attributes
const markdownContent = parsed.body

const readingTimeResult = readingTime(markdownContent)

return {
yamlData: yamlData as Record<string, any>,
markdownContent,
readingTime: readingTimeResult,
}
}
catch (error) {
console.error(`Error parsing front-matter:`, error)
return {
yamlData: {},
markdownContent: markdownText,
readingTime: readingTime(markdownText),
}
}
}

export function initRenderer(opts: IOpts) {
const footnotes: [number, string, string][] = []
let footnoteIndex: number = 0
Expand All @@ -121,19 +155,6 @@ export function initRenderer(opts: IOpts) {
return getStyles(styleMapping, tag, addition)
}

function parseFrontMatterAndContent(markdownText: string) {
try {
const parsed = frontMatter(markdownText)
const yamlData = parsed.attributes
const markdownContent = parsed.body
return { yamlData, markdownContent }
}
catch (error) {
console.error(`Error parsing front-matter:`, error)
return { yamlData: {}, markdownContent: markdownText }
}
}

function styledContent(styleLabel: string, content: string, tagName?: string): string {
const tag = tagName ?? styleLabel
return `<${tag} ${styles(styleLabel)}>${content}</${tag}>`
Expand All @@ -156,6 +177,20 @@ export function initRenderer(opts: IOpts) {
marked.use(markedAlert({ styles: styleMapping }))
}

function buildReadingTime(readingTime: ReadTimeResults): string {
if (!opts.countStatus) {
return ``
}
if (!readingTime.words) {
return ``
}
return `
<blockquote ${styles(`blockquote`)}>
<p ${styles(`blockquote_p`)}>字数 ${readingTime?.words},阅读大约需 ${Math.ceil(readingTime?.minutes)} 分钟</p>
</blockquote>
`
}

const buildFootnotes = () => {
if (!footnotes.length) {
return ``
Expand Down Expand Up @@ -305,6 +340,7 @@ export function initRenderer(opts: IOpts) {
setOptions,
reset,
parseFrontMatterAndContent,
buildReadingTime,
createContainer(content: string) {
return styledContent(`container`, content, `section`)
},
Expand Down
Loading