Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
c4464e1202 | |||
eca669d62a | |||
b1804ae060 | |||
78fe779c93 | |||
3a6d10c2ec | |||
7c46970dfe | |||
eda629e58d |
@ -1,9 +1,9 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html lang="zh-CN">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<link rel="icon" type="image/svg" href="/favicon.svg">
|
<link rel="icon" type="image/svg" href="/favicon.svg" />
|
||||||
<!--app-head-->
|
<!--app-head-->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
3
public/robots.txt
Normal file
3
public/robots.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Sitemap: https://ao3.unknownmp.top/sitemap.xml
|
||||||
|
User-agent: *
|
||||||
|
Disallow: /assets/
|
163
server.js
163
server.js
@ -2,17 +2,15 @@ import fs from 'node:fs/promises'
|
|||||||
import express from 'express'
|
import express from 'express'
|
||||||
import cookieParser from 'cookie-parser'
|
import cookieParser from 'cookie-parser'
|
||||||
import { compress } from 'compress-json'
|
import { compress } from 'compress-json'
|
||||||
// Constants
|
|
||||||
const isProduction = process.env.NODE_ENV === 'production'
|
const isProduction = process.env.NODE_ENV === 'production'
|
||||||
const port = process.env.PORT || 5173
|
const port = process.env.PORT || 5173
|
||||||
const base = process.env.BASE || '/'
|
const base = process.env.BASE || '/'
|
||||||
|
|
||||||
// Cached production assets
|
|
||||||
const templateHtml = isProduction
|
const templateHtml = isProduction
|
||||||
? await fs.readFile('./dist/client/index.html', 'utf-8')
|
? await fs.readFile('./dist/client/index.html', 'utf-8')
|
||||||
: ''
|
: ''
|
||||||
|
|
||||||
// Create http server
|
|
||||||
const app = express()
|
const app = express()
|
||||||
app.use(cookieParser());
|
app.use(cookieParser());
|
||||||
|
|
||||||
@ -21,73 +19,110 @@ const MESSAGE = {
|
|||||||
0: 'Unknown'
|
0: 'Unknown'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add Vite or respective production middlewares
|
|
||||||
/** @type {import('vite').ViteDevServer | undefined} */
|
|
||||||
let vite
|
let vite
|
||||||
if (!isProduction) {
|
if (!isProduction) {
|
||||||
const { createServer } = await import('vite')
|
const { createServer } = await import('vite')
|
||||||
vite = await createServer({
|
vite = await createServer({
|
||||||
server: { middlewareMode: true },
|
server: { middlewareMode: true },
|
||||||
appType: 'custom',
|
appType: 'custom',
|
||||||
base,
|
base,
|
||||||
})
|
})
|
||||||
app.use(vite.middlewares)
|
app.use(vite.middlewares)
|
||||||
} else {
|
} else {
|
||||||
//const compression = (await import('compression')).default
|
const sirv = (await import('sirv')).default
|
||||||
const sirv = (await import('sirv')).default
|
app.use(base, sirv('./dist/client', { extensions: [] }))
|
||||||
//app.use(compression())
|
|
||||||
app.use(base, sirv('./dist/client', { extensions: [] }))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Serve HTML
|
// Serve HTML
|
||||||
app.use('*all', async (req, res) => {
|
app.use('*all', async (req, res) => {
|
||||||
try {
|
try {
|
||||||
const url = req.originalUrl.replace(base, '')
|
const url = req.originalUrl.replace(base, '')
|
||||||
console.log(`Request ${url}`)
|
console.log(`Request ${url}`)
|
||||||
/** @type {string} */
|
let template
|
||||||
let template
|
let render, getRoute
|
||||||
/** @type {import('./src/entry-server.js').render} */
|
if (!isProduction) {
|
||||||
let render, getRoute
|
// Always read fresh template in development
|
||||||
if (!isProduction) {
|
template = await fs.readFile('./index.html', 'utf-8')
|
||||||
// Always read fresh template in development
|
template = await vite.transformIndexHtml(url, template)
|
||||||
template = await fs.readFile('./index.html', 'utf-8')
|
const module = await vite.ssrLoadModule('/src/entry-server.js')
|
||||||
template = await vite.transformIndexHtml(url, template)
|
render = module.render
|
||||||
const module = await vite.ssrLoadModule('/src/entry-server.js')
|
getRoute = module.getRoute
|
||||||
render = module.render
|
} else {
|
||||||
getRoute = module.getRoute
|
template = templateHtml
|
||||||
} else {
|
const module = await import('./dist/server/entry-server.js')
|
||||||
template = templateHtml
|
render = module.render
|
||||||
const module = await import('./dist/server/entry-server.js')
|
getRoute = module.getRoute
|
||||||
render = module.render
|
}
|
||||||
getRoute = module.getRoute
|
const { router, code, title, metas, meta } = await getRoute(url)
|
||||||
}
|
if (code != 200 && !req.accepts('html')) {
|
||||||
const { router, code } = await getRoute(url)
|
res.status(code).set({ 'Content-Type': 'text/plain' })
|
||||||
if (code != 200 && !req.accepts('html')) {
|
res.write(MESSAGE[code] || MESSAGE[0])
|
||||||
res.status(code).set({ 'Content-Type': 'text/plain' })
|
res.end()
|
||||||
res.write(MESSAGE[code] || MESSAGE[0])
|
return
|
||||||
res.end()
|
}
|
||||||
return
|
const { stream, piniaState, headState } = await render(router, req.cookies, req.headers.host)
|
||||||
}
|
const [htmlStart, htmlEnd] = template.split('<!--app-html-->')
|
||||||
const { stream, piniaState } = await render(router, req.cookies, req.headers.host)
|
if (meta) {
|
||||||
const [htmlStart, htmlEnd] = template.split('<!--app-html-->')
|
const buffer = []
|
||||||
res.status(code).set({ 'Content-Type': 'text/html' })
|
let headReady = false
|
||||||
res.write(htmlStart)
|
for await (const chunk of stream) {
|
||||||
for await (const chunk of stream) {
|
if (res.closed) break
|
||||||
if (res.closed) break
|
if (headReady) res.write(chunk)
|
||||||
res.write(chunk)
|
else {
|
||||||
}
|
if (headState.ready) {
|
||||||
const piniaStateContent = JSON.stringify(compress(piniaState))
|
res.status(headState.code || code).set({ 'Content-Type': 'text/html' })
|
||||||
const stateScript = `<script>window.__PINIA_STATE__=${piniaStateContent}</script>`
|
const heads = [`<title>${ headState.title || title }</title>`]
|
||||||
res.write(htmlEnd.replace('<!--app-state-->', stateScript))
|
for (const item of [ ...metas, ...headState.meta ]) {
|
||||||
res.end()
|
const properties = []
|
||||||
} catch (e) {
|
for (const [key, value] of Object.entries(item)) properties.push(`${key}="${value}"`)
|
||||||
vite?.ssrFixStacktrace(e)
|
heads.push(`<meta ${properties.join(' ')}>`)
|
||||||
console.log(e.stack)
|
}
|
||||||
res.status(500).end(e.stack)
|
res.write(htmlStart.replace('<!--app-head-->',heads.join('')))
|
||||||
}
|
for (const item of buffer) res.write(item)
|
||||||
|
res.write(chunk)
|
||||||
|
headReady = true
|
||||||
|
} else buffer.push(chunk)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!headState.ready) {
|
||||||
|
console.warn('Page not set meta ready! No stream render at all!')
|
||||||
|
const heads = [`<title>${ title }</title>`]
|
||||||
|
for (const item of metas) {
|
||||||
|
const properties = []
|
||||||
|
for (const [key, value] of Object.entries(item)) properties.push(`${key}="${value}"`)
|
||||||
|
heads.push(`<meta ${properties.join(' ')}>`)
|
||||||
|
}
|
||||||
|
res.write(htmlStart.replace('<!--app-head-->',heads.join('')))
|
||||||
|
for await (const chunk of buffer) {
|
||||||
|
if (res.closed) break
|
||||||
|
res.write(chunk)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
res.status(code).set({ 'Content-Type': 'text/html' })
|
||||||
|
const heads = [`<title>${ title }</title>`]
|
||||||
|
for (const item of metas) {
|
||||||
|
const properties = []
|
||||||
|
for (const [key, value] of Object.entries(item)) properties.push(`${key}="${value}"`)
|
||||||
|
heads.push(`<meta ${properties.join(' ')}>`)
|
||||||
|
}
|
||||||
|
res.write(htmlStart.replace('<!--app-head-->',heads.join('')))
|
||||||
|
for await (const chunk of stream) {
|
||||||
|
if (res.closed) break
|
||||||
|
res.write(chunk)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const piniaStateContent = JSON.stringify(compress(piniaState))
|
||||||
|
const stateScript = `<script>window.__PINIA_STATE__=${piniaStateContent}</script>`
|
||||||
|
res.write(htmlEnd.replace('<!--app-state-->', stateScript))
|
||||||
|
res.end()
|
||||||
|
} catch (e) {
|
||||||
|
vite?.ssrFixStacktrace(e)
|
||||||
|
console.log(e.stack)
|
||||||
|
res.status(500).end(e.stack)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
// Start http server
|
|
||||||
app.listen(port, () => {
|
app.listen(port, () => {
|
||||||
console.log(`Server started at http://localhost:${port}`)
|
console.log(`Server started at port ${port}`)
|
||||||
})
|
})
|
||||||
|
43
src/App.vue
43
src/App.vue
@ -1,6 +1,8 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { onMounted, onBeforeMount, onServerPrefetch, nextTick, ref, watch } from 'vue'
|
import 'mdui/mdui.css'
|
||||||
import { useRouter, useRoute, RouterView } from 'vue-router'
|
import './main.scss'
|
||||||
|
|
||||||
|
import { onMounted, onBeforeMount, nextTick, ref, watch } from 'vue'
|
||||||
|
|
||||||
import { useApiStore } from '@/stores/api.js'
|
import { useApiStore } from '@/stores/api.js'
|
||||||
|
|
||||||
@ -22,39 +24,27 @@ import '@mdui/icons/arrow-back.js'
|
|||||||
import '@mdui/icons/light-mode.js'
|
import '@mdui/icons/light-mode.js'
|
||||||
import '@mdui/icons/menu.js'
|
import '@mdui/icons/menu.js'
|
||||||
|
|
||||||
const router = useRouter()
|
|
||||||
const route = useRoute()
|
|
||||||
|
|
||||||
const clientOnlyStore = useClientOnlyStore()
|
const clientOnlyStore = useClientOnlyStore()
|
||||||
const api = useApiStore()
|
|
||||||
let themeScheme = null
|
|
||||||
const mobileScreen = useMobileScreen()
|
|
||||||
const routeStore = useRouteStore()
|
const routeStore = useRouteStore()
|
||||||
|
const api = useApiStore()
|
||||||
|
const mobileScreen = useMobileScreen()
|
||||||
|
let themeScheme = null
|
||||||
|
|
||||||
const drawerOpen = ref(false)
|
const drawerOpen = ref(false)
|
||||||
const drawer = ref(null)
|
const drawer = ref(null)
|
||||||
const closeDrawer = ref(true)
|
const closeDrawer = ref(true)
|
||||||
|
|
||||||
let progressTimer = null
|
|
||||||
|
|
||||||
onServerPrefetch(async () => {
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
|
themeScheme = useThemeStore()
|
||||||
mobileScreen.reCal()
|
mobileScreen.reCal()
|
||||||
if(!mobileScreen.isMobile) drawerOpen.value = true
|
if(!mobileScreen.isMobile) drawerOpen.value = true
|
||||||
})
|
})
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
themeScheme = useThemeStore()
|
|
||||||
themeScheme.applyTheme()
|
themeScheme.applyTheme()
|
||||||
clientOnlyStore.setClient()
|
clientOnlyStore.setClient()
|
||||||
new MutationObserver(() => {
|
new MutationObserver(() => { if (document.documentElement.style.width.includes('calc')) document.documentElement.style.width = '' })
|
||||||
if (document.documentElement.style.width.includes('calc')) {
|
.observe(document.documentElement, { attributes: true, attributeFilter: ['style'] });
|
||||||
document.documentElement.style.width = '';
|
|
||||||
}
|
|
||||||
}).observe(document.documentElement, { attributes: true, attributeFilter: ['style'] });
|
|
||||||
watch(() => mobileScreen.isMobile, (newV, oldV) => {
|
watch(() => mobileScreen.isMobile, (newV, oldV) => {
|
||||||
if( oldV && !newV ) nextTick(() => drawer.value.open = true)
|
if( oldV && !newV ) nextTick(() => drawer.value.open = true)
|
||||||
if( !oldV && newV ) nextTick(() => drawer.value.open = false)
|
if( !oldV && newV ) nextTick(() => drawer.value.open = false)
|
||||||
@ -65,12 +55,7 @@ onMounted(async () => {
|
|||||||
<template>
|
<template>
|
||||||
<header><ClientOnly>
|
<header><ClientOnly>
|
||||||
<mdui-top-app-bar style="background-color: rgb(var(--mdui-color-primary-container));" scroll-behavior="shrink elevate">
|
<mdui-top-app-bar style="background-color: rgb(var(--mdui-color-primary-container));" scroll-behavior="shrink elevate">
|
||||||
<mdui-button-icon @click="drawer.open = !drawer.open">
|
<mdui-button-icon @click="drawer.open = !drawer.open"><mdui-icon-menu></mdui-icon-menu></mdui-button-icon>
|
||||||
<mdui-icon-menu></mdui-icon-menu>
|
|
||||||
</mdui-button-icon>
|
|
||||||
<!--<mdui-button-icon @click="$router.back()" v-if="$route.path != '/'">
|
|
||||||
<mdui-icon-arrow-back></mdui-icon-arrow-back>
|
|
||||||
</mdui-button-icon>-->
|
|
||||||
<mdui-top-app-bar-title style="color: rgb(var(--mdui-color-on-surface-variant))">{{ routeStore.title }}</mdui-top-app-bar-title>
|
<mdui-top-app-bar-title style="color: rgb(var(--mdui-color-on-surface-variant))">{{ routeStore.title }}</mdui-top-app-bar-title>
|
||||||
<mdui-circular-progress v-if="routeStore.showProgress" :value='routeStore.progress' :max='routeStore.progressMax'></mdui-circular-progress>
|
<mdui-circular-progress v-if="routeStore.showProgress" :value='routeStore.progress' :max='routeStore.progressMax'></mdui-circular-progress>
|
||||||
<div style="flex-grow: 1"></div>
|
<div style="flex-grow: 1"></div>
|
||||||
@ -98,10 +83,8 @@ onMounted(async () => {
|
|||||||
:class="{ 'active-item' : item.path == $route.path }"
|
:class="{ 'active-item' : item.path == $route.path }"
|
||||||
><a :href="item.path">{{ item.name }}</a></li></ul>
|
><a :href="item.path">{{ item.name }}</a></li></ul>
|
||||||
</template></ClientOnly></nav>
|
</template></ClientOnly></nav>
|
||||||
<main :class="{ 'mdui-prose' : clientOnlyStore.isClient , 'content' : clientOnlyStore.isClient}">
|
<main :class="{ 'mdui-prose' : clientOnlyStore.isClient , 'content' : clientOnlyStore.isClient }">
|
||||||
<RouterView v-slot="{ Component }">
|
<RouterView />
|
||||||
<component :is="Component" />
|
|
||||||
</RouterView>
|
|
||||||
</main><footer></footer>
|
</main><footer></footer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -1,42 +0,0 @@
|
|||||||
.typescale-body-large {
|
|
||||||
line-height: var(--mdui-typescale-body-large-line-height);
|
|
||||||
font-size: var(--mdui-typescale-body-large-size);
|
|
||||||
letter-spacing: var(--mdui-typescale-body-large-tracking);
|
|
||||||
font-weight: var(--mdui-typescale-body-large-weight);
|
|
||||||
}
|
|
||||||
|
|
||||||
.typescale-body-small {
|
|
||||||
line-height: var(--mdui-typescale-body-small-line-height);
|
|
||||||
font-size: var(--mdui-typescale-body-small-size);
|
|
||||||
letter-spacing: var(--mdui-typescale-body-small-tracking);
|
|
||||||
font-weight: var(--mdui-typescale-body-small-weight);
|
|
||||||
}
|
|
||||||
|
|
||||||
.typescale-label-small {
|
|
||||||
line-height: var(--mdui-typescale-label-small-line-height);
|
|
||||||
font-size: var(--mdui-typescale-label-small-size);
|
|
||||||
letter-spacing: var(--mdui-typescale-label-small-tracking);
|
|
||||||
font-weight: var(--mdui-typescale-label-small-weight);
|
|
||||||
}
|
|
||||||
|
|
||||||
.typescale-headline-small {
|
|
||||||
line-height: var(--mdui-typescale-headline-small-line-height);
|
|
||||||
font-size: var(--mdui-typescale-headline-small-size);
|
|
||||||
letter-spacing: var(--mdui-typescale-headline-small-tracking);
|
|
||||||
font-weight: var(--mdui-typescale-headline-small-weight);
|
|
||||||
}
|
|
||||||
|
|
||||||
.typescale-headline-large {
|
|
||||||
line-height: var(--mdui-typescale-headline-large-line-height);
|
|
||||||
font-size: var(--mdui-typescale-headline-large-size);
|
|
||||||
letter-spacing: var(--mdui-typescale-headline-large-tracking);
|
|
||||||
font-weight: var(--mdui-typescale-headline-large-weight);
|
|
||||||
}
|
|
||||||
|
|
||||||
.typescale-headline-medium {
|
|
||||||
line-height: var(--mdui-typescale-headline-medium-line-height);
|
|
||||||
font-size: var(--mdui-typescale-headline-medium-size);
|
|
||||||
letter-spacing: var(--mdui-typescale-headline-medium-tracking);
|
|
||||||
font-weight: var(--mdui-typescale-headline-medium-weight);
|
|
||||||
}
|
|
||||||
|
|
@ -20,9 +20,7 @@ function replaceUrl(url) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function useApiRequest(method, url, data, config = {}) {
|
export function useApiRequest(method, url, data, config = {}) {
|
||||||
const start = Date.now()
|
|
||||||
const baseURL = getEndpoint()
|
const baseURL = getEndpoint()
|
||||||
// 若为 GET 请求,将 data 转为查询参数拼接到 URL 上
|
|
||||||
const fullURL = method === 'GET' && data
|
const fullURL = method === 'GET' && data
|
||||||
? `${baseURL}${url}?${objectToQueryString(data)}`
|
? `${baseURL}${url}?${objectToQueryString(data)}`
|
||||||
: `${baseURL}${url}`
|
: `${baseURL}${url}`
|
||||||
@ -45,14 +43,14 @@ export function useApiRequest(method, url, data, config = {}) {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
const exec = async () => {
|
const exec = async () => {
|
||||||
await execute()
|
const start = Date.now()
|
||||||
|
try { await execute() }
|
||||||
|
catch (e) {}
|
||||||
const stop = Date.now()
|
const stop = Date.now()
|
||||||
return {
|
return {
|
||||||
status: response.value?.status || (error.value?.response?.status ?? -1),
|
status: response.value?.status || (error.value?.response?.status ?? -1),
|
||||||
data: response.value?.data || error.value?.response?.data || null,
|
data: response.value?.data || error.value?.response?.data || null,
|
||||||
duration: stop - start,
|
duration: stop - start,
|
||||||
start,
|
|
||||||
stop,
|
|
||||||
error: error.value,
|
error: error.value,
|
||||||
isSSR: import.meta.env.SSR,
|
isSSR: import.meta.env.SSR,
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { decompress } from 'compress-json'
|
import { decompress } from 'compress-json'
|
||||||
import './main.scss'
|
|
||||||
|
|
||||||
import { createApp } from './main'
|
import { createApp } from './main'
|
||||||
import { createSSRRouter } from './router.js'
|
import { createSSRRouter } from './router.js'
|
||||||
@ -9,15 +8,7 @@ const router = createSSRRouter()
|
|||||||
|
|
||||||
app.use(router)
|
app.use(router)
|
||||||
|
|
||||||
if (window.__PINIA_STATE__) {
|
if (window.__PINIA_STATE__) pinia.state.value = decompress(window.__PINIA_STATE__)
|
||||||
pinia.state.value = decompress(window.__PINIA_STATE__)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (window.__INITIAL_STATE__) {
|
router.isReady().then(() => app.mount('#app'))
|
||||||
window.__INITIAL_STATE__ = decompress(window.__INITIAL_STATE__)
|
|
||||||
}
|
|
||||||
|
|
||||||
router.isReady().then(() => {
|
|
||||||
app.mount('#app')
|
|
||||||
})
|
|
||||||
|
|
||||||
|
@ -1,28 +1,32 @@
|
|||||||
import { renderToWebStream } from 'vue/server-renderer'
|
import { renderToWebStream } from 'vue/server-renderer'
|
||||||
import { createApp } from './main'
|
import { createApp } from './main'
|
||||||
|
|
||||||
import { createSSRRouter } from './router.js'
|
import { createSSRRouter, defaultHead } from './router.js'
|
||||||
|
|
||||||
export async function getRoute(_url) {
|
export async function getRoute(_url) {
|
||||||
const router = createSSRRouter()
|
const router = createSSRRouter()
|
||||||
await router.push(_url)
|
await router.push(_url)
|
||||||
await router.isReady()
|
await router.isReady()
|
||||||
const route = router.currentRoute.value.matched[0]
|
const route = router.currentRoute.value.matched[0]
|
||||||
const code = route.meta.code || 200
|
const code = route.meta.code || 200
|
||||||
return { router, code }
|
return { router, code, meta: route.meta.meta || false,
|
||||||
|
title: route.meta.title || route.meta.name || defaultHead.title,
|
||||||
|
metas: [...defaultHead.meta, ...route.meta.metas || []]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function render(router, cookies, host) {
|
export async function render(router, cookies, host) {
|
||||||
const { app, pinia } = createApp()
|
const { app, pinia } = createApp()
|
||||||
|
app.use(router)
|
||||||
app.use(router)
|
const headState = {
|
||||||
const ctx = {
|
ready: false,
|
||||||
cookies,
|
code: null,
|
||||||
host,
|
title: null,
|
||||||
initialState: {}
|
meta: []
|
||||||
}
|
}
|
||||||
const stream = renderToWebStream(app, ctx)
|
const ctx = { cookies, host, headState }
|
||||||
const piniaState = pinia.state.value
|
const stream = renderToWebStream(app, ctx)
|
||||||
return { stream, piniaState }
|
const piniaState = pinia.state.value
|
||||||
|
return { stream, piniaState, headState }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,33 +1,25 @@
|
|||||||
@import 'mdui/mdui.css';
|
|
||||||
// @import './assets/typescale.css';
|
|
||||||
|
|
||||||
// 字体配置
|
|
||||||
$font-family: Roboto, Noto Sans SC, PingFang SC, Lantinghei SC,
|
$font-family: Roboto, Noto Sans SC, PingFang SC, Lantinghei SC,
|
||||||
Microsoft Yahei, Hiragino Sans GB, "Microsoft Sans Serif",
|
Microsoft Yahei, Hiragino Sans GB, "Microsoft Sans Serif",
|
||||||
WenQuanYi Micro Hei, sans-serif;
|
WenQuanYi Micro Hei, sans-serif;
|
||||||
|
|
||||||
// MDUI 变量简写
|
|
||||||
$bg-color: rgb(var(--mdui-color-background));
|
$bg-color: rgb(var(--mdui-color-background));
|
||||||
$error-color: rgb(var(--mdui-color-error));
|
$error-color: rgb(var(--mdui-color-error));
|
||||||
$on-error-color: rgb(var(--mdui-color-on-error));
|
$on-error-color: rgb(var(--mdui-color-on-error));
|
||||||
$transition-duration: var(--mdui-motion-duration-short2);
|
|
||||||
$transition-easing: var(--mdui-motion-easing-linear);
|
|
||||||
|
|
||||||
html {
|
html {
|
||||||
scroll-padding-top: 64px; /* 等于顶栏高度 */
|
scroll-padding-top: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
background-color: $bg-color;
|
background-color: $bg-color;
|
||||||
transition: opacity $transition-duration $transition-easing;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
// MDUI 组件样式
|
|
||||||
mdui-card {
|
mdui-card {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
@ -37,7 +29,6 @@ mdui-text-field {
|
|||||||
margin: 8px 0;
|
margin: 8px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 警告样式
|
|
||||||
.warn {
|
.warn {
|
||||||
background-color: $error-color;
|
background-color: $error-color;
|
||||||
color: $on-error-color;
|
color: $on-error-color;
|
||||||
@ -47,7 +38,6 @@ mdui-text-field {
|
|||||||
color: $error-color;
|
color: $error-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 通用工具类
|
|
||||||
.pre-break {
|
.pre-break {
|
||||||
white-space: pre-line;
|
white-space: pre-line;
|
||||||
}
|
}
|
||||||
@ -55,4 +45,3 @@ mdui-text-field {
|
|||||||
.no-select {
|
.no-select {
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
179
src/router.js
179
src/router.js
@ -1,86 +1,99 @@
|
|||||||
import { createMemoryHistory, createWebHistory, createRouter } from 'vue-router'
|
import { createMemoryHistory, createWebHistory, createRouter } from 'vue-router'
|
||||||
|
|
||||||
export function createSSRRouter() {
|
export const defaultHead = {
|
||||||
const router = createRouter({
|
title: 'AO3 Mirror',
|
||||||
history: import.meta.env.SSR ? createMemoryHistory() : createWebHistory(),
|
meta: [
|
||||||
scrollBehavior(to, from, savedPosition) {
|
{ name: 'description',
|
||||||
if (savedPosition) {
|
content: 'ArchiveOfOurOwn 镜像站, 使用 Vue 3 与 MDUI 2 重写界面, 优化 UI/UX' },
|
||||||
return savedPosition
|
{ name: 'author',
|
||||||
} else if (to.hash) {
|
content: 'UnknownMp' },
|
||||||
return {
|
{ property: 'og:title',
|
||||||
el: to.hash,
|
content: 'AO3 Mirror' },
|
||||||
behavior: 'smooth',
|
{ property: 'og:description',
|
||||||
}
|
content: 'ArchiveOfOurOwn 重构镜像' },
|
||||||
} else {
|
{ property: 'og:image',
|
||||||
return { top: 0 }
|
content: 'https://cdn.unknownmp.top/website/ao3mirror.svg' },
|
||||||
}
|
{ property: 'og:url',
|
||||||
},
|
content: 'https://ao3.unknownmp.top' },
|
||||||
routes: [{
|
{ property: 'og:type',
|
||||||
path: '/',
|
content: 'website' },
|
||||||
name: '前言',
|
]
|
||||||
component: () => import('./views/Root.vue'),
|
|
||||||
meta: {
|
|
||||||
title: '首页',
|
|
||||||
order: 1
|
|
||||||
},
|
|
||||||
},{
|
|
||||||
path: '/work/:id',
|
|
||||||
name: 'work',
|
|
||||||
component: () => import('./views/Work.vue'),
|
|
||||||
meta: {
|
|
||||||
title: '阅读',
|
|
||||||
hidden: true
|
|
||||||
}
|
|
||||||
},{
|
|
||||||
path: '/work/:id/:cid',
|
|
||||||
name: 'workChapter',
|
|
||||||
component: () => import('./views/Work.vue'),
|
|
||||||
meta: {
|
|
||||||
title: '阅读',
|
|
||||||
hidden: true
|
|
||||||
}
|
|
||||||
},{
|
|
||||||
path: '/search/simple',
|
|
||||||
name: '搜索',
|
|
||||||
component: () => import('./views/SimpleSearch.vue'),
|
|
||||||
meta: {
|
|
||||||
title: '搜索',
|
|
||||||
order: 2
|
|
||||||
}
|
|
||||||
},{
|
|
||||||
path: '/settings',
|
|
||||||
name: '设置',
|
|
||||||
component: () => import('./views/Settings.vue'),
|
|
||||||
meta: {
|
|
||||||
title: '设置',
|
|
||||||
order: 90
|
|
||||||
},
|
|
||||||
},{
|
|
||||||
path: '/about',
|
|
||||||
name: '关于',
|
|
||||||
component: () => import('./views/About.md'),
|
|
||||||
meta: {
|
|
||||||
title: '',
|
|
||||||
order: 100
|
|
||||||
},
|
|
||||||
},{
|
|
||||||
path: '/developer',
|
|
||||||
name: '开发人员选项',
|
|
||||||
component: () => import('./views/Developer.vue'),
|
|
||||||
meta: {
|
|
||||||
title: '',
|
|
||||||
hidden: true
|
|
||||||
},
|
|
||||||
},{
|
|
||||||
path: '/:catchAll(.*)',
|
|
||||||
name: 'NotFound',
|
|
||||||
component: () => import('./views/fallback/NotFound.vue'),
|
|
||||||
meta: {
|
|
||||||
title: '页面未找到',
|
|
||||||
hidden: true,
|
|
||||||
code: 404
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]})
|
|
||||||
return router
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const createSSRRouter = () => createRouter({
|
||||||
|
history: import.meta.env.SSR ? createMemoryHistory() : createWebHistory(),
|
||||||
|
scrollBehavior(to, from, savedPosition) {
|
||||||
|
if (savedPosition) return savedPosition
|
||||||
|
else if (to.hash) {
|
||||||
|
return {
|
||||||
|
el: to.hash,
|
||||||
|
behavior: 'smooth',
|
||||||
|
}
|
||||||
|
} else return { top: 0 }
|
||||||
|
},
|
||||||
|
routes: [{
|
||||||
|
path: '/',
|
||||||
|
name: '前言',
|
||||||
|
component: () => import('./views/Root.vue'),
|
||||||
|
meta: {
|
||||||
|
title: '首页',
|
||||||
|
order: 1
|
||||||
|
},
|
||||||
|
},{
|
||||||
|
path: '/work/:id',
|
||||||
|
name: 'work',
|
||||||
|
component: () => import('./views/Work.vue'),
|
||||||
|
meta: {
|
||||||
|
title: '阅读',
|
||||||
|
hidden: true,
|
||||||
|
meta: true
|
||||||
|
}
|
||||||
|
},{
|
||||||
|
path: '/work/:id/:cid',
|
||||||
|
name: 'workChapter',
|
||||||
|
component: () => import('./views/Work.vue'),
|
||||||
|
meta: {
|
||||||
|
title: '阅读',
|
||||||
|
hidden: true,
|
||||||
|
meta: true
|
||||||
|
}
|
||||||
|
},{
|
||||||
|
path: '/search/simple',
|
||||||
|
name: '搜索',
|
||||||
|
component: () => import('./views/SimpleSearch.vue'),
|
||||||
|
meta: {
|
||||||
|
title: '搜索',
|
||||||
|
order: 2
|
||||||
|
}
|
||||||
|
},{
|
||||||
|
path: '/settings',
|
||||||
|
name: '设置',
|
||||||
|
component: () => import('./views/Settings.vue'),
|
||||||
|
meta: {
|
||||||
|
order: 90
|
||||||
|
},
|
||||||
|
},{
|
||||||
|
path: '/about',
|
||||||
|
name: '关于',
|
||||||
|
component: () => import('./views/About.md'),
|
||||||
|
meta: {
|
||||||
|
order: 100
|
||||||
|
},
|
||||||
|
},{
|
||||||
|
path: '/developer',
|
||||||
|
name: '开发人员选项',
|
||||||
|
component: () => import('./views/Developer.vue'),
|
||||||
|
meta: {
|
||||||
|
hidden: true
|
||||||
|
},
|
||||||
|
},{
|
||||||
|
path: '/:catchAll(.*)',
|
||||||
|
name: 'NotFound',
|
||||||
|
component: () => import('./views/fallback/NotFound.vue'),
|
||||||
|
meta: {
|
||||||
|
title: '页面未找到',
|
||||||
|
hidden: true,
|
||||||
|
code: 404
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]})
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
import { useClientOnlyStore } from './clientOnlyStore.js'
|
import { useClientOnlyStore } from './clientOnlyStore.js'
|
||||||
const clientOnlyStore = useClientOnlyStore()
|
const clientOnlyStore = useClientOnlyStore()
|
||||||
</script>
|
</script>
|
||||||
<template data-allow-mismatch>
|
<template>
|
||||||
<template v-if="clientOnlyStore.isClient" data-allow-mismatch>
|
<template v-if="clientOnlyStore.isClient">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</template><template v-else>
|
</template><template v-else>
|
||||||
<slot name="ssr" data-allow-mismatch></slot>
|
<slot name="ssr"></slot>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { ref, onMounted, useSlots } from 'vue'
|
|
||||||
|
|
||||||
const isClient = ref(false)
|
|
||||||
const slots = useSlots()
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
isClient.value = true
|
|
||||||
})
|
|
||||||
/*
|
|
||||||
USe:
|
|
||||||
<ClientOnly>
|
|
||||||
<template #ssr>
|
|
||||||
SSR Content
|
|
||||||
</template>
|
|
||||||
Real Content
|
|
||||||
</ClientOnly>
|
|
||||||
*/
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template data-allow-mismatch>
|
|
||||||
<template v-if="isClient" data-allow-mismatch><slot></slot></template>
|
|
||||||
<template v-else><slot name="ssr" data-allow-mismatch></slot></template>
|
|
||||||
</template>
|
|
||||||
|
|
47
src/ssr/headHelper.js
Normal file
47
src/ssr/headHelper.js
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
import { useSSRContext } from 'vue'
|
||||||
|
|
||||||
|
export function useHeadHelper() {
|
||||||
|
if (!import.meta.env.SSR) {
|
||||||
|
return {
|
||||||
|
headReady: () => {},
|
||||||
|
setMeta: () => {},
|
||||||
|
addMeta: () => {},
|
||||||
|
setTitle: () => {},
|
||||||
|
setCode: () => {},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const ssrContext = useSSRContext()
|
||||||
|
|
||||||
|
if (!ssrContext || !ssrContext.headState) {
|
||||||
|
return {
|
||||||
|
headReady: () => {},
|
||||||
|
setMeta: () => {},
|
||||||
|
addMeta: () => {},
|
||||||
|
setTitle: () => {},
|
||||||
|
setCode: () => {},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
headReady: () => {
|
||||||
|
ssrContext.headState.ready = true
|
||||||
|
},
|
||||||
|
setMeta: (metas = []) => {
|
||||||
|
ssrContext.headState.meta = [
|
||||||
|
...ssrContext.headState.meta,
|
||||||
|
...metas
|
||||||
|
]
|
||||||
|
},
|
||||||
|
addMeta: (meta) => {
|
||||||
|
ssrContext.headState.meta.push(meta)
|
||||||
|
},
|
||||||
|
setTitle: (title) => {
|
||||||
|
ssrContext.headState.title = title
|
||||||
|
},
|
||||||
|
setCode: (code) => {
|
||||||
|
ssrContext.headState.code = code
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,9 +0,0 @@
|
|||||||
export function getInitialState(key) {
|
|
||||||
if (typeof window !== 'undefined' && window.__INITIAL_STATE__) {
|
|
||||||
if (window.__INITIAL_STATE__[key] !== undefined) {
|
|
||||||
let value = window.__INITIAL_STATE__[key]
|
|
||||||
delete window.__INITIAL_STATE__[key]
|
|
||||||
return value
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,5 +1,5 @@
|
|||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
import { useApiRequest } from '../composables/apiRequest'
|
import { useApiRequest } from '../composables/apiRequest.js'
|
||||||
|
|
||||||
export const useApiStore = defineStore('api', () => {
|
export const useApiStore = defineStore('api', () => {
|
||||||
async function getWork(workId, chapterId) {
|
async function getWork(workId, chapterId) {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
import { reactive } from 'vue'
|
import { useStorage } from '@vueuse/core'
|
||||||
import { useStorage, watchWithFilter, debounceFilter } from '@vueuse/core'
|
|
||||||
|
|
||||||
const CURRENT_VERSION = 1
|
const CURRENT_VERSION = 1
|
||||||
|
|
||||||
|
@ -2,6 +2,8 @@ import { ref, computed, watch } from 'vue'
|
|||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
import { useRouter, useRoute } from 'vue-router'
|
import { useRouter, useRoute } from 'vue-router'
|
||||||
|
|
||||||
|
import { useHeadHelper } from '../ssr/headHelper.js'
|
||||||
|
|
||||||
export const useRouteStore = defineStore('route', () => {
|
export const useRouteStore = defineStore('route', () => {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
@ -16,14 +18,14 @@ export const useRouteStore = defineStore('route', () => {
|
|||||||
)
|
)
|
||||||
const lastFromDrawer = ref(0)
|
const lastFromDrawer = ref(0)
|
||||||
const customTitle = ref(null)
|
const customTitle = ref(null)
|
||||||
const title = computed(() => customTitle.value || route.meta.title || route.name)
|
const title = import.meta.env.SSR ?
|
||||||
|
computed(() => route.meta.title || route.name) :
|
||||||
|
computed(() => customTitle.value || route.meta.title || route.name)
|
||||||
function drawerPress(target) {
|
function drawerPress(target) {
|
||||||
if (lastFromDrawer.value == 0) {
|
if (lastFromDrawer.value == 0) {
|
||||||
lastFromDrawer.value = 1
|
lastFromDrawer.value = 1
|
||||||
router.push(target)
|
router.push(target)
|
||||||
} else {
|
} else router.replace(target)
|
||||||
router.replace(target)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
const progress = ref(0)
|
const progress = ref(0)
|
||||||
const progressMax = ref(1)
|
const progressMax = ref(1)
|
||||||
@ -32,11 +34,9 @@ export const useRouteStore = defineStore('route', () => {
|
|||||||
watch(title, title => document.title = title)
|
watch(title, title => document.title = title)
|
||||||
let progressTimer = null
|
let progressTimer = null
|
||||||
router.beforeEach((to, from) => {
|
router.beforeEach((to, from) => {
|
||||||
if (lastFromDrawer.value == 2) {
|
if (showProgress.value) return false
|
||||||
lastFromDrawer.value = 0
|
if (lastFromDrawer.value == 2) lastFromDrawer.value = 0
|
||||||
} else if (lastFromDrawer.value == 1) {
|
else if (lastFromDrawer.value == 1) lastFromDrawer.value = 2
|
||||||
lastFromDrawer.value = 2
|
|
||||||
}
|
|
||||||
progress.value = 0
|
progress.value = 0
|
||||||
progressMax.value = 1
|
progressMax.value = 1
|
||||||
showProgress.value = true
|
showProgress.value = true
|
||||||
|
@ -13,16 +13,15 @@ export const useSimpleSearchState = defineStore('simpleSearch', () => {
|
|||||||
const state = ref(null)
|
const state = ref(null)
|
||||||
async function load() {
|
async function load() {
|
||||||
if (pageCount.value && currentPage.value >= pageCount.value){ state.value = 'finish'; return }
|
if (pageCount.value && currentPage.value >= pageCount.value){ state.value = 'finish'; return }
|
||||||
|
state.value = 'loading'
|
||||||
let res = await api.workSimpleSearch(keyword.value, currentPage.value)
|
let res = await api.workSimpleSearch(keyword.value, currentPage.value)
|
||||||
res = res.data
|
res = res.data
|
||||||
if( pageCount.value ) {
|
|
||||||
currentPage.value++
|
|
||||||
if (currentPage.value > pageCount.value) currentPage.value = pageCount.value
|
|
||||||
}
|
|
||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
if ( !pageCount.value ) {
|
currentPage.value++
|
||||||
|
if( pageCount.value ) {
|
||||||
|
if (currentPage.value > pageCount.value) currentPage.value = pageCount.value
|
||||||
|
} else {
|
||||||
pageCount.value = res.pageCount
|
pageCount.value = res.pageCount
|
||||||
currentPage.value = res.page
|
|
||||||
}
|
}
|
||||||
count.value = res.count
|
count.value = res.count
|
||||||
state.value = import.meta.env.SSR ? 'ssrready' : 'ready'
|
state.value = import.meta.env.SSR ? 'ssrready' : 'ready'
|
||||||
|
@ -15,6 +15,8 @@ export const useWorkReadState = defineStore('workRead', () => {
|
|||||||
const text = ref(null)
|
const text = ref(null)
|
||||||
const state = ref('')
|
const state = ref('')
|
||||||
const publishedTime = ref(null)
|
const publishedTime = ref(null)
|
||||||
|
const completedTime = ref(null)
|
||||||
|
const updatedTime = ref(null)
|
||||||
const wordCount = ref(0)
|
const wordCount = ref(0)
|
||||||
const kudoCount = ref(0)
|
const kudoCount = ref(0)
|
||||||
const hitCount = ref(0)
|
const hitCount = ref(0)
|
||||||
@ -32,6 +34,8 @@ export const useWorkReadState = defineStore('workRead', () => {
|
|||||||
pseud.value = data.pseud
|
pseud.value = data.pseud
|
||||||
text.value = data.text
|
text.value = data.text
|
||||||
publishedTime.value = data.stats.publishedTime
|
publishedTime.value = data.stats.publishedTime
|
||||||
|
completedTime.value = data.stats.completedTime
|
||||||
|
updatedTime.value = data.stats.updatedTime
|
||||||
wordCount.value = data.stats.wordCount
|
wordCount.value = data.stats.wordCount
|
||||||
kudoCount.value = data.stats.kudoCount
|
kudoCount.value = data.stats.kudoCount
|
||||||
hitCount.value = data.stats.hitCount
|
hitCount.value = data.stats.hitCount
|
||||||
@ -62,29 +66,24 @@ export const useWorkReadState = defineStore('workRead', () => {
|
|||||||
if (result.status == 200) {
|
if (result.status == 200) {
|
||||||
setData(result.data)
|
setData(result.data)
|
||||||
state.value = 'ready'
|
state.value = 'ready'
|
||||||
} else {
|
} else if (result.status == 404) {
|
||||||
id.value = target
|
|
||||||
state.value = import.meta.env.SSR ? 'ssrnotfound' : 'notfound'
|
state.value = import.meta.env.SSR ? 'ssrnotfound' : 'notfound'
|
||||||
|
} else if (result.status == 401) {
|
||||||
|
state.value = 'unauth'
|
||||||
|
} else if (result.status == 500) {
|
||||||
|
state.value = 'error'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
id, cid,
|
id, cid,
|
||||||
title,
|
title, summary,
|
||||||
summary,
|
pseud, text, state,
|
||||||
pseud,
|
|
||||||
text,
|
|
||||||
state,
|
|
||||||
publishedTime,
|
publishedTime,
|
||||||
wordCount,
|
completedTime,
|
||||||
kudoCount,
|
updatedTime,
|
||||||
hitCount,
|
wordCount, kudoCount, hitCount,
|
||||||
category,
|
category, fandom, lang,
|
||||||
fandom,
|
chapters, chapterIndex, chapterStat,
|
||||||
lang,
|
setData, loadWork
|
||||||
chapters,
|
|
||||||
chapterIndex,
|
|
||||||
chapterStat,
|
|
||||||
setData,
|
|
||||||
loadWork
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -1,9 +1,3 @@
|
|||||||
<template>
|
|
||||||
<form @submit="handleSubmit">
|
|
||||||
<slot></slot>
|
|
||||||
</form>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
|
|
||||||
@ -18,3 +12,9 @@ function handleSubmit(event) {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<form @submit="handleSubmit">
|
||||||
|
<slot></slot>
|
||||||
|
</form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
111
src/utils.js
111
src/utils.js
@ -1,11 +1,7 @@
|
|||||||
import { snackbar } from 'mdui/functions/snackbar.js'
|
import { snackbar } from 'mdui/functions/snackbar.js'
|
||||||
import { alert } from 'mdui/functions/alert.js'
|
import { alert } from 'mdui/functions/alert.js'
|
||||||
|
|
||||||
export function mduiSnackbar(message) {
|
export const mduiSnackbar = (message) => snackbar({ message })
|
||||||
snackbar({
|
|
||||||
message: message,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
export function mduiAlert(title,desc,callback = null,confirmText = "OK") {
|
export function mduiAlert(title,desc,callback = null,confirmText = "OK") {
|
||||||
alert({
|
alert({
|
||||||
@ -19,50 +15,44 @@ export function mduiAlert(title,desc,callback = null,confirmText = "OK") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function getQueryVariable(variable) {
|
export function getQueryVariable(variable) {
|
||||||
var query = window.location.search.substring(1);
|
var query = window.location.search.substring(1)
|
||||||
var vars = query.split("&")
|
var vars = query.split("&")
|
||||||
for (var i=0;i<vars.length;i++) {
|
for (var i=0;i<vars.length;i++) {
|
||||||
var pair = vars[i].split("=")
|
var pair = vars[i].split("=")
|
||||||
if(pair[0] == variable){return pair[1]}
|
if(pair[0] == variable){return pair[1]}
|
||||||
}
|
}
|
||||||
return(null);
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
export const escapeHtml = (text) =>
|
export const escapeHtml = (text) => text
|
||||||
text
|
.replace(/&/g, "&") // 转义 &
|
||||||
.replace(/&/g, "&") // 转义 &
|
.replace(/</g, "<") // 转义 <
|
||||||
.replace(/</g, "<") // 转义 <
|
.replace(/>/g, ">") // 转义 >
|
||||||
.replace(/>/g, ">") // 转义 >
|
.replace(/"/g, """) // 转义 "
|
||||||
.replace(/"/g, """) // 转义 "
|
.replace(/'/g, "'"); // 转义 '
|
||||||
.replace(/'/g, "'"); // 转义 '
|
|
||||||
|
|
||||||
export function escapeAndFormatText(input) {
|
export const escapeAndFormatText = (text) => escapeHtml(text)
|
||||||
let escapedText = escapeHtml(input);
|
.replace(/ /g, " ")
|
||||||
escapedText = escapedText.replace(/ /g, " ");
|
.replace(/\t/g, "  ")
|
||||||
escapedText = escapedText.replace(/\t/g, "  ");
|
.replace(/\n/g, "<br/>")
|
||||||
escapedText = escapedText.replace(/\n/g, "<br/>");
|
|
||||||
return escapedText;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getCookie(name) {
|
export function getCookie(name) {
|
||||||
const cookieArr = document.cookie.split(";")
|
const cookieArr = document.cookie.split(";")
|
||||||
for (let i = 0; i < cookieArr.length; i++) {
|
for (let i = 0; i < cookieArr.length; i++) {
|
||||||
const cookiePair = cookieArr[i].trim()
|
const cookiePair = cookieArr[i].trim()
|
||||||
if (cookiePair.startsWith(name + "=")) {
|
if (cookiePair.startsWith(name + "=")) return cookiePair.substring(name.length + 1)
|
||||||
return cookiePair.substring(name.length + 1);
|
}
|
||||||
}
|
return null
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function setCookie(name, value, days = 3650) {
|
export function setCookie(name, value, days = 3650) {
|
||||||
var expires = ""
|
var expires = ""
|
||||||
if (days) {
|
if (days) {
|
||||||
var date = new Date()
|
var date = new Date()
|
||||||
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
|
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000))
|
||||||
expires = "; expires=" + date.toUTCString()
|
expires = "; expires=" + date.toUTCString()
|
||||||
}
|
}
|
||||||
document.cookie = name + "=" + value + expires + "; path=/";
|
document.cookie = name + "=" + value + expires + "; path=/"
|
||||||
}
|
}
|
||||||
|
|
||||||
export function objectToQueryString(obj, parentKey = '') {
|
export function objectToQueryString(obj, parentKey = '') {
|
||||||
@ -71,42 +61,37 @@ export function objectToQueryString(obj, parentKey = '') {
|
|||||||
if (!Object.prototype.hasOwnProperty.call(obj, key)) continue
|
if (!Object.prototype.hasOwnProperty.call(obj, key)) continue
|
||||||
let value = obj[key]
|
let value = obj[key]
|
||||||
let newKey = parentKey ? `${parentKey}[${key}]` : key
|
let newKey = parentKey ? `${parentKey}[${key}]` : key
|
||||||
if (typeof value === 'object' && value !== null) {
|
if (typeof value === 'object' && value !== null) parts.push(objectToQueryString(value, newKey))
|
||||||
parts.push(objectToQueryString(value, newKey))
|
else parts.push(encodeURIComponent(newKey) + '=' + encodeURIComponent(value))
|
||||||
} else {
|
|
||||||
parts.push(encodeURIComponent(newKey) + '=' + encodeURIComponent(value))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return parts.join('&')
|
return parts.join('&')
|
||||||
}
|
}
|
||||||
|
|
||||||
export function formatUnixTimestamp(unixTimestamp, timeZone) {
|
export function formatUnixTimestamp(unixTimestamp, timeZone) {
|
||||||
const date = new Date(unixTimestamp * 1000); // 将 UNIX 时间戳转换为毫秒
|
const date = new Date(unixTimestamp * 1000)
|
||||||
const options = {
|
const options = {
|
||||||
timeZone: timeZone || Intl.DateTimeFormat().resolvedOptions().timeZone, // 使用指定时区或浏览器本地时区
|
timeZone: timeZone || Intl.DateTimeFormat().resolvedOptions().timeZone,
|
||||||
year: 'numeric',
|
year: 'numeric',
|
||||||
month: '2-digit',
|
month: '2-digit',
|
||||||
day: '2-digit',
|
day: '2-digit',
|
||||||
hour: '2-digit',
|
hour: '2-digit',
|
||||||
minute: '2-digit',
|
minute: '2-digit',
|
||||||
second: '2-digit',
|
second: '2-digit',
|
||||||
hour12: false, // 24小时制
|
hour12: false,
|
||||||
};
|
}
|
||||||
const formatter = new Intl.DateTimeFormat('en-US', options);
|
const formatter = new Intl.DateTimeFormat('en-US', options)
|
||||||
const parts = formatter.formatToParts(date);
|
const parts = formatter.formatToParts(date)
|
||||||
const formatMap = {};
|
const formatMap = {}
|
||||||
parts.forEach(({ type, value }) => {
|
parts.forEach(({ type, value }) => { formatMap[type] = value })
|
||||||
formatMap[type] = value;
|
return `${formatMap.year}-${formatMap.month}-${formatMap.day} ${formatMap.hour}:${formatMap.minute}:${formatMap.second}`
|
||||||
});
|
|
||||||
return `${formatMap.year}-${formatMap.month}-${formatMap.day} ${formatMap.hour}:${formatMap.minute}:${formatMap.second}`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function isMobileDeviceByUA() {
|
export function isMobileDeviceByUA() {
|
||||||
const ua = navigator.userAgent || navigator.vendor || window.opera;
|
const ua = navigator.userAgent || navigator.vendor || window.opera
|
||||||
return /android/i.test(ua) ||
|
return /android/i.test(ua) ||
|
||||||
/iphone/i.test(ua) ||
|
/iphone/i.test(ua) ||
|
||||||
/ipod/i.test(ua) ||
|
/ipod/i.test(ua) ||
|
||||||
/ipad/i.test(ua) ||
|
/ipad/i.test(ua) ||
|
||||||
/blackberry/i.test(ua) ||
|
/blackberry/i.test(ua) ||
|
||||||
/windows phone/i.test(ua);
|
/windows phone/i.test(ua)
|
||||||
}
|
}
|
||||||
|
@ -21,9 +21,10 @@ onUnmounted(() => console.log('Unmounted'))*/
|
|||||||
---
|
---
|
||||||
一个 AO3 镜像站, 优化了 UI/UX
|
一个 AO3 镜像站, 优化了 UI/UX
|
||||||
|
|
||||||
作者 (1)
|
作者 {#contact}
|
||||||
---
|
---
|
||||||
- [UnknownMp](https://www.unknownmp.top)
|
- [UnknownMp](https://www.unknownmp.top)
|
||||||
|
邮件: unknownmp@unknownmp.top
|
||||||
<mdui-avatar src="https://cdn.unknownmp.top/website/logo.jpg"></mdui-avatar>
|
<mdui-avatar src="https://cdn.unknownmp.top/website/logo.jpg"></mdui-avatar>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -1,11 +1,9 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue'
|
import { ref, onMounted } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
|
||||||
|
|
||||||
import { useApiStore } from '@/stores/api.js'
|
import { useApiStore } from '@/stores/api.js'
|
||||||
import { useRouteStore } from '../stores/route.js'
|
import { useRouteStore } from '../stores/route.js'
|
||||||
|
|
||||||
const router = useRouter()
|
|
||||||
const api = useApiStore()
|
const api = useApiStore()
|
||||||
const routeStore = useRouteStore()
|
const routeStore = useRouteStore()
|
||||||
|
|
||||||
@ -30,45 +28,33 @@ onMounted(() => {
|
|||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<h1 class="warn-text">注意本页面仅为测试用!</h1>
|
<h1 class="warn-text">注意本页面仅为测试用!</h1>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
当然如果你是乱点那个唐鬼小人进来的, 这就是个彩蛋? (神金
|
当然如果你是乱点那个唐鬼小人进来的, 这就是个彩蛋? (神金
|
||||||
</blockquote>
|
</blockquote><Hr />
|
||||||
<Hr />
|
|
||||||
<section>
|
<section>
|
||||||
<h2>页面信息</h2>
|
<h2>页面信息</h2>
|
||||||
<h3>可见路由信息:</h3>
|
<h3>可见路由信息:</h3>
|
||||||
<pre>{{ routeStore.allRoutes }}</pre>
|
<pre>{{ routeStore.allRoutes }}</pre>
|
||||||
</section>
|
</section><Hr />
|
||||||
<Hr />
|
<ClientOnly><section>
|
||||||
<ClientOnly>
|
<h2>浏览器信息</h2><dl>
|
||||||
<section>
|
<dt>User-Agent:</dt>
|
||||||
<h2>浏览器信息</h2>
|
<dd>{{ ua }}</dd>
|
||||||
<dl>
|
<dt>语言:</dt>
|
||||||
<dt>User-Agent:</dt>
|
<dd>{{ language }}</dd>
|
||||||
<dd>{{ ua }}</dd>
|
<dt>平台:</dt>
|
||||||
<dt>语言:</dt>
|
<dd>{{ platform }}</dd>
|
||||||
<dd>{{ language }}</dd>
|
<dt>屏幕尺寸:</dt>
|
||||||
<dt>平台:</dt>
|
<dd>{{ screenSize }}</dd>
|
||||||
<dd>{{ platform }}</dd>
|
<dt>视口尺寸:</dt>
|
||||||
<dt>屏幕尺寸:</dt>
|
<dd>{{ viewportSize }}</dd>
|
||||||
<dd>{{ screenSize }}</dd>
|
<dt>像素比:</dt>
|
||||||
<dt>视口尺寸:</dt>
|
<dd>{{ pixelRatio }}</dd>
|
||||||
<dd>{{ viewportSize }}</dd>
|
<dt>是否触屏设备:</dt>
|
||||||
<dt>像素比:</dt>
|
<dd>{{ touchSupport ? '是' : '否' }}</dd>
|
||||||
<dd>{{ pixelRatio }}</dd>
|
<dt>页面可见性状态:</dt>
|
||||||
<dt>是否触屏设备:</dt>
|
<dd>{{ visibility }}</dd>
|
||||||
<dd>{{ touchSupport ? '是' : '否' }}</dd>
|
</dl></section><Hr /></ClientOnly>
|
||||||
<dt>页面可见性状态:</dt>
|
|
||||||
<dd>{{ visibility }}</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
<Hr />
|
|
||||||
</ClientOnly>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
</style>
|
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { ref, onMounted, onServerPrefetch, onBeforeMount} from 'vue'
|
|
||||||
import { useRouter, useRoute, RouterView } from 'vue-router'
|
|
||||||
const router = useRouter()
|
|
||||||
import { useApiStore } from '@/stores/api.js'
|
|
||||||
const api = useApiStore()
|
|
||||||
|
|
||||||
onServerPrefetch(async () => {
|
|
||||||
// Load data
|
|
||||||
})
|
|
||||||
onBeforeMount(() => {
|
|
||||||
// Re apply data
|
|
||||||
})
|
|
||||||
onMounted(() => {
|
|
||||||
// Render other
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
Padding! No content cause hydration mismatch!
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
</style>
|
|
@ -10,29 +10,23 @@ import Intro from '../texts/intro.md'
|
|||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
function convert(from) {
|
function convert(from) {
|
||||||
if( Number(from) ) {
|
if( Number(from) ) {return {
|
||||||
return {
|
type: 's',
|
||||||
type: 's',
|
id: Number(from)
|
||||||
id: Number(from)
|
}} else if (from.includes('https://archiveofourown.org/works/')) {
|
||||||
}
|
|
||||||
} else if (from.includes('https://archiveofourown.org/works/')) {
|
|
||||||
const sid = from.split('https://archiveofourown.org/works/')[1];
|
const sid = from.split('https://archiveofourown.org/works/')[1];
|
||||||
if ( sid ) {
|
if ( sid ) {
|
||||||
const id = Number(sid)
|
const id = Number(sid)
|
||||||
if (id) {
|
if (id) { return {
|
||||||
return {
|
type: 's',
|
||||||
type: 's',
|
id
|
||||||
id
|
}} else {
|
||||||
}
|
|
||||||
} else {
|
|
||||||
const splited = sid.split('/chapters/')
|
const splited = sid.split('/chapters/')
|
||||||
const id = Number(splited[0])
|
const id = Number(splited[0])
|
||||||
const cid = Number(splited[1])
|
const cid = Number(splited[1])
|
||||||
if (id && cid) {
|
if (id && cid) return {
|
||||||
return {
|
type: 'c',
|
||||||
type: 'c',
|
id, cid
|
||||||
id, cid
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -42,22 +36,19 @@ function convert(from) {
|
|||||||
|
|
||||||
function onConvert(data) {
|
function onConvert(data) {
|
||||||
const { type, id, cid, key } = convert(data.src)
|
const { type, id, cid, key } = convert(data.src)
|
||||||
if (type == null) {
|
if (type == null) return
|
||||||
} else if ( type == 'f') {
|
else if ( type == 'f') router.push(`/search/simple?keyword=${encodeURIComponent(key)}`)
|
||||||
router.push(`/search/simple?keyword=${encodeURIComponent(key)}`)
|
else {
|
||||||
} else {
|
|
||||||
if (cid) router.push(`/work/${id}/${cid}`)
|
if (cid) router.push(`/work/${id}/${cid}`)
|
||||||
else router.push(`/work/${id}`)
|
else router.push(`/work/${id}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<img style="display: block; margin: 0px auto 10px;" height="200px" alt="logo" src="/favicon.svg" />
|
<img style="display: block; margin: 0px auto 10px;" height="200px" width="200px" alt="logo" src="/favicon.svg" />
|
||||||
<h1>欢迎来到 AO3 Mirror! 👋👋</h1>
|
<h1>欢迎来到 AO3 Mirror! 👋👋</h1>
|
||||||
<p>一个基于重构渲染的 AO3 镜像站</p>
|
<p>一个基于重构渲染的 AO3 镜像站</p><Hr />
|
||||||
<Hr />
|
|
||||||
<section id="converter">
|
<section id="converter">
|
||||||
<h2>链接转换</h2>
|
<h2>链接转换</h2>
|
||||||
<p>AO3 链接 或 关键词搜索</p>
|
<p>AO3 链接 或 关键词搜索</p>
|
||||||
@ -67,13 +58,11 @@ function onConvert(data) {
|
|||||||
<div style="display: flex">
|
<div style="display: flex">
|
||||||
<div style="flex-grow: 1"></div>
|
<div style="flex-grow: 1"></div>
|
||||||
<mdui-button type="submit">-></mdui-button>
|
<mdui-button type="submit">-></mdui-button>
|
||||||
</div>
|
</div><template #ssr>
|
||||||
<template #ssr>
|
<input type="text" id="src" name="src" />
|
||||||
<input type="text" id="src" name="src" />
|
<input type="submit" />
|
||||||
<input type="submit" />
|
|
||||||
</template></ClientOnly></Form>
|
</template></ClientOnly></Form>
|
||||||
</section>
|
</section><Hr/>
|
||||||
<Hr/>
|
|
||||||
<Intro />
|
<Intro />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -11,25 +11,21 @@ let appSetting = null
|
|||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
appSetting = useAppSettingStore()
|
appSetting = useAppSettingStore()
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<h1>设置</h1>
|
<h1>设置</h1><Hr />
|
||||||
<Hr />
|
<ClientOnly><div class="settings"><section><mdui-card>
|
||||||
<ClientOnly><div class="settings">
|
<h2>界面</h2><Hr />
|
||||||
<section><mdui-card>
|
<div>自动黑暗模式<div style="flex: 1;"/>
|
||||||
<h2>界面</h2><Hr />
|
<mdui-switch :checked="appSetting.value.autoTheme"
|
||||||
<div>自动黑暗模式<div style="flex: 1;"/>
|
@change="e => appSetting.value.autoTheme = e.target.checked">
|
||||||
<mdui-switch :checked="appSetting.value.autoTheme"
|
</mdui-switch></div>
|
||||||
@change="e => appSetting.value.autoTheme = e.target.checked">
|
<div v-if="!appSetting.value.autoTheme">默认黑暗模式<div style="flex: 1;"/>
|
||||||
</mdui-switch></div>
|
<mdui-switch :checked="appSetting.value.darkTheme"
|
||||||
<div v-if="!appSetting.value.autoTheme">默认黑暗模式<div style="flex: 1;"/>
|
@change="e => appSetting.value.darkTheme = e.target.checked">
|
||||||
<mdui-switch :checked="appSetting.value.darkTheme"
|
</mdui-switch></div>
|
||||||
@change="e => appSetting.value.darkTheme = e.target.checked">
|
</mdui-card></section></div></ClientOnly>
|
||||||
</mdui-switch></div>
|
|
||||||
</mdui-card></section>
|
|
||||||
</div></ClientOnly>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, watch, onMounted, nextTick, onServerPrefetch, onBeforeUnmount } from 'vue'
|
import { ref, watch, onMounted, nextTick, onServerPrefetch, onBeforeUnmount } from 'vue'
|
||||||
import { useRoute, useRouter } from 'vue-router'
|
import { useRoute, useRouter } from 'vue-router'
|
||||||
|
|
||||||
import 'mdui/components/text-field.js'
|
import 'mdui/components/text-field.js'
|
||||||
@ -26,11 +26,7 @@ const stateLabel = {
|
|||||||
|
|
||||||
let isObserver = null
|
let isObserver = null
|
||||||
|
|
||||||
onServerPrefetch(async () => {
|
onServerPrefetch(async () => { if (route.query.keyword) await simpleSearchState.start(route.query.keyword) })
|
||||||
if (route.query.keyword) {
|
|
||||||
await simpleSearchState.start(route.query.keyword)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
watch(() => simpleSearchState.keyword, () => document.title = simpleSearchState.keyword)
|
watch(() => simpleSearchState.keyword, () => document.title = simpleSearchState.keyword)
|
||||||
@ -38,18 +34,14 @@ onMounted(async () => {
|
|||||||
if (inputField.value && simpleSearchState != 'ssrready') simpleSearchState.start(inputField.value)
|
if (inputField.value && simpleSearchState != 'ssrready') simpleSearchState.start(inputField.value)
|
||||||
isObserver = new IntersectionObserver((entries) => {
|
isObserver = new IntersectionObserver((entries) => {
|
||||||
entries.forEach((entry) => {
|
entries.forEach((entry) => {
|
||||||
if (entry.isIntersecting) {
|
if (entry.isIntersecting) if (simpleSearchState.state == 'ready' || simpleSearchState.state == 'ssrready') setTimeout(simpleSearchState.load,400)
|
||||||
if (simpleSearchState.state == 'ready') simpleSearchState.load()
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
}, { threshold: 1 })
|
}, { threshold: 1 })
|
||||||
await nextTick()
|
await nextTick()
|
||||||
isObserver.observe(label.value)
|
isObserver.observe(label.value)
|
||||||
})
|
})
|
||||||
|
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => isObserver.disconnect())
|
||||||
isObserver.disconnect();
|
|
||||||
})
|
|
||||||
|
|
||||||
function onSubmit(data) {
|
function onSubmit(data) {
|
||||||
if (simpleSearchState) {
|
if (simpleSearchState) {
|
||||||
@ -57,7 +49,6 @@ function onSubmit(data) {
|
|||||||
router.replace(`/search/simple?keyword=${encodeURIComponent(data.src)}`)
|
router.replace(`/search/simple?keyword=${encodeURIComponent(data.src)}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -79,14 +70,12 @@ function onSubmit(data) {
|
|||||||
<template v-if="simpleSearchState.result" v-for="work in simpleSearchState.result" :key="work.workId">
|
<template v-if="simpleSearchState.result" v-for="work in simpleSearchState.result" :key="work.workId">
|
||||||
<ClientOnly><mdui-card style="margin: 8px 0px;"><article>
|
<ClientOnly><mdui-card style="margin: 8px 0px;"><article>
|
||||||
<router-link :to="`/work/${work.workId}`"><h3>{{ work.title }}</h3></router-link>
|
<router-link :to="`/work/${work.workId}`"><h3>{{ work.title }}</h3></router-link>
|
||||||
<h4>{{ work.pseud }}</h4>
|
<h4>{{ work.pseud }}</h4><Hr />
|
||||||
<Hr />
|
|
||||||
<p v-html="escapeAndFormatText(work.summary)"></p>
|
<p v-html="escapeAndFormatText(work.summary)"></p>
|
||||||
</article></mdui-card><template #ssr>
|
</article></mdui-card><template #ssr>
|
||||||
<router-link :to="`/work/${work.workId}`"><h3>{{ work.title }}</h3></router-link>
|
<router-link :to="`/work/${work.workId}`"><h3>{{ work.title }}</h3></router-link>
|
||||||
<h4>{{ work.pseud }}</h4>
|
<h4>{{ work.pseud }}</h4>
|
||||||
<p>{{ work.summary }}</p>
|
<p>{{ work.summary }}</p><Hr />
|
||||||
<Hr />
|
|
||||||
</template></ClientOnly>
|
</template></ClientOnly>
|
||||||
</template>
|
</template>
|
||||||
<p style="display: flex;" ref='label'>
|
<p style="display: flex;" ref='label'>
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted, onServerPrefetch, onBeforeUnmount, watch, nextTick } from 'vue'
|
import { ref, onMounted, onBeforeUnmount, onServerPrefetch, watch, nextTick } from 'vue'
|
||||||
import { useRouter, useRoute, RouterView } from 'vue-router'
|
import { useRouter, useRoute } from 'vue-router'
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
|
|
||||||
import { useWorkReadState } from '@/stores/workRead.js'
|
import { useHeadHelper } from '../ssr/headHelper.js'
|
||||||
const workReadState = useWorkReadState()
|
|
||||||
|
|
||||||
|
import { useWorkReadState } from '@/stores/workRead.js'
|
||||||
import { useRouteStore } from '@/stores/route.js'
|
import { useRouteStore } from '@/stores/route.js'
|
||||||
|
|
||||||
const routeState = useRouteStore()
|
const routeState = useRouteStore()
|
||||||
|
const workReadState = useWorkReadState()
|
||||||
|
|
||||||
import 'mdui/components/list.js'
|
import 'mdui/components/list.js'
|
||||||
import 'mdui/components/list-item.js'
|
import 'mdui/components/list-item.js'
|
||||||
@ -23,10 +25,6 @@ import 'mdui/components/card.js'
|
|||||||
|
|
||||||
import '@mdui/icons/bookmark.js'
|
import '@mdui/icons/bookmark.js'
|
||||||
|
|
||||||
import { confirm } from 'mdui/functions/confirm.js'
|
|
||||||
import { snackbar } from 'mdui/functions/snackbar.js'
|
|
||||||
import { prompt } from 'mdui/functions/prompt.js'
|
|
||||||
|
|
||||||
import { mduiSnackbar } from '../utils.js'
|
import { mduiSnackbar } from '../utils.js'
|
||||||
|
|
||||||
const fabExtended = ref(false)
|
const fabExtended = ref(false)
|
||||||
@ -48,17 +46,27 @@ const categoryName = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onServerPrefetch(async () => {
|
onServerPrefetch(async () => {
|
||||||
|
const headHelper = useHeadHelper()
|
||||||
await workReadState.loadWork(route.params.id, route.params.cid)
|
await workReadState.loadWork(route.params.id, route.params.cid)
|
||||||
|
if (workReadState.state == 'ready') headHelper.setTitle(workReadState.title)
|
||||||
|
else if (workReadState.state == 'ssrnotfound') {
|
||||||
|
headHelper.setTitle('文章未找到')
|
||||||
|
headHelper.setCode(404)
|
||||||
|
} else if (workReadState.state == 'unauth') {
|
||||||
|
headHelper.setTitle('访问被阻止')
|
||||||
|
headHelper.setCode(401)
|
||||||
|
}
|
||||||
|
headHelper.headReady()
|
||||||
})
|
})
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
watch(() => workReadState.state, (value) => { if (value == 'ready') routeState.customTitle = workReadState.title })
|
watch(() => workReadState.state, (value) => { if (value == 'ready') routeState.customTitle = workReadState.title })
|
||||||
if (workReadState.state != 'ssrnotfound') await workReadState.loadWork(route.params.id, route.params.cid)
|
if (workReadState.state != 'ssrnotfound' && workReadState.state != 'ready') await workReadState.loadWork(route.params.id, route.params.cid)
|
||||||
if (workReadState.state == 'ready') {
|
if (workReadState.state == 'ready') {
|
||||||
routeState.customTitle = workReadState.title
|
routeState.customTitle = workReadState.title
|
||||||
if (parseInt(route.params.cid) != workReadState.cid) {
|
if (workReadState.cid !== null && parseInt(route.params.cid) != workReadState.cid) {
|
||||||
router.replace(`/work/${workReadState.id}/${workReadState.cid}`)
|
router.replace(`/work/${workReadState.id}/${workReadState.cid}`)
|
||||||
return;
|
return
|
||||||
}
|
}
|
||||||
const paraCount = workReadState.text.length - 1
|
const paraCount = workReadState.text.length - 1
|
||||||
isObserver = new IntersectionObserver((entries) => {
|
isObserver = new IntersectionObserver((entries) => {
|
||||||
@ -86,50 +94,63 @@ onMounted(async () => {
|
|||||||
threshold: 0.5
|
threshold: 0.5
|
||||||
})
|
})
|
||||||
await nextTick()
|
await nextTick()
|
||||||
paragraphs = content.value?.querySelectorAll('p');
|
paragraphs = content.value?.querySelectorAll('p')
|
||||||
paragraphs?.forEach(p => isObserver.observe(p));
|
paragraphs?.forEach(p => isObserver.observe(p))
|
||||||
}
|
}
|
||||||
console.log(workReadState.chapterStat)
|
|
||||||
})
|
})
|
||||||
|
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => { if(isObserver) isObserver.disconnect() })
|
||||||
if(isObserver) isObserver.disconnect();
|
|
||||||
})
|
|
||||||
|
|
||||||
async function switchWorkWithIndex(target) {
|
async function switchWorkWithIndex(target) {
|
||||||
workReadState.loadWork(workReadState.id,workReadState.chapters[target].chapterId);
|
workReadState.loadWork(workReadState.id,workReadState.chapters[target].chapterId)
|
||||||
router.replace(`/work/${workReadState.id}/${workReadState.cid}`)
|
router.replace(`/work/${workReadState.id}/${workReadState.cid}`)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<ClientOnly>
|
<template v-if="workReadState.state == 'notfound' || workReadState.state == 'ssrnotfound'">
|
||||||
|
<h2>文章不存在...</h2>
|
||||||
|
是不是链接没有复制完全?<br/>
|
||||||
|
ID: {{ workReadState.id }}<br/>
|
||||||
|
<template v-if="workReadState.cid">
|
||||||
|
CID: {{ workReadState.cid }}
|
||||||
|
</template>
|
||||||
|
<a @click="$router.back()">返回</a>
|
||||||
|
</template><template v-if="workReadState.state == 'unauth'">
|
||||||
|
<h2>访问被阻止!</h2>
|
||||||
|
上游 AO3 不允许匿名用户访问该作品<br/>
|
||||||
|
ID: {{workReadState.id}}<br/>
|
||||||
|
<template v-if="workReadState.cid">
|
||||||
|
CID: {{ workReadState.cid }}
|
||||||
|
</template><br/>
|
||||||
|
<a @click="$router.back()">返回</a>
|
||||||
|
</template><template v-if="workReadState.state == 'error'">
|
||||||
|
<h2>内部服务器错误</h2>
|
||||||
|
这种情况不是你的问题, 而是我给网站写的屎山代码发力了, 在 <a href="/about#contact">这里</a> 联系我修复此问题<br/>
|
||||||
|
并提供以下信息:<br/>
|
||||||
|
ID: {{workReadState.id}}<br/>
|
||||||
|
<template v-if="workReadState.cid">
|
||||||
|
CID: {{ workReadState.cid }}
|
||||||
|
</template><br/>
|
||||||
|
<a @click="$router.back()">返回</a>
|
||||||
|
</template><template v-if="workReadState.state == 'errformat'">
|
||||||
|
<h2>路径格式错误</h2>
|
||||||
|
ID: {{ $route.params.id }}<br/>
|
||||||
|
<template v-if="$route.params.id">
|
||||||
|
CID: {{ $route.params.id }}
|
||||||
|
</template><br/>
|
||||||
|
<a @click="$router.back()">返回</a>
|
||||||
|
</template><ClientOnly>
|
||||||
<template v-if="workReadState.state == 'loading'">
|
<template v-if="workReadState.state == 'loading'">
|
||||||
加载中...<br/>
|
加载中...<br/>
|
||||||
<mdui-linear-progress></mdui-linear-progress>
|
<mdui-linear-progress></mdui-linear-progress>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="workReadState.state == 'notfound' || workReadState.state == 'ssrnotfound'">
|
|
||||||
<h2>文章不存在...</h2>
|
|
||||||
是不是链接没有复制完全?<br/>
|
|
||||||
ID: {{ workReadState.id }}<br/>
|
|
||||||
<template v-if="workReadState.cid">
|
|
||||||
CID: {{ workReadState.cid }}
|
|
||||||
</template>
|
|
||||||
<a @click="$router.back()">返回</a>
|
|
||||||
</template>
|
|
||||||
<template v-if="workReadState.state == 'errformat'">
|
|
||||||
<h2>路径格式错误</h2>
|
|
||||||
ID: {{ $route.params.id }}<br/>
|
|
||||||
<template v-if="$route.params.id">
|
|
||||||
CID: {{ $route.params.id }}
|
|
||||||
</template><br/>
|
|
||||||
<a @click="$router.back()">返回</a>
|
|
||||||
</template>
|
|
||||||
<template v-if="workReadState.state == 'ready'">
|
<template v-if="workReadState.state == 'ready'">
|
||||||
<article>
|
<article>
|
||||||
<h1 style="margin: auto">{{ workReadState.title }}</h1>
|
<h1>{{ workReadState.title }}</h1>
|
||||||
<h4>{{ workReadState.pesud }}</h4>
|
<h4>{{ workReadState.pseud }}</h4>
|
||||||
<mdui-card style="margin: 8px; padding: 16px;">
|
<a target="_blank" :href="workReadState.cid ? `https://archiveofourown.org/works/${workReadState.id}/chapters/${workReadState.cid}` : `https://archiveofourown.org/works/${workReadState.id}`">原 AO3 链接</a>
|
||||||
|
<mdui-card style="margin: 8px 0px; padding: 16px;">
|
||||||
<strong>作品信息</strong><dl>
|
<strong>作品信息</strong><dl>
|
||||||
<template v-if="workReadState.category"><dt>分类</dt><ul>
|
<template v-if="workReadState.category"><dt>分类</dt><ul>
|
||||||
<li v-for="item in workReadState.category" :key="item">
|
<li v-for="item in workReadState.category" :key="item">
|
||||||
@ -139,16 +160,30 @@ async function switchWorkWithIndex(target) {
|
|||||||
<li v-for="item in workReadState.fandom" :key="item">
|
<li v-for="item in workReadState.fandom" :key="item">
|
||||||
{{ item }}</li>
|
{{ item }}</li>
|
||||||
</ul></template>
|
</ul></template>
|
||||||
|
<template v-if="workReadState.additionalTags"><dt>附加 Tag</dt><ul>
|
||||||
|
<li v-for="item in workReadState.additionalTags" :key="item">
|
||||||
|
{{ item }}</li>
|
||||||
|
</ul></template>
|
||||||
<dt>语言</dt><dd>
|
<dt>语言</dt><dd>
|
||||||
{{ workReadState.lang }}
|
{{ workReadState.lang }}
|
||||||
</dd>
|
</dd>
|
||||||
</dl><Hr/>
|
</dl><Hr/>
|
||||||
<strong>作品状态</strong><dl>
|
<strong>作品状态</strong><dl>
|
||||||
<dt>发布时间</dt><dd>
|
<dt>发布</dt><dd>
|
||||||
{{ workReadState.publishedTime.year }} -
|
{{ workReadState.publishedTime.year }} -
|
||||||
{{ workReadState.publishedTime.month }} -
|
{{ workReadState.publishedTime.month }} -
|
||||||
{{ workReadState.publishedTime.date }}
|
{{ workReadState.publishedTime.date }}
|
||||||
</dd>
|
</dd>
|
||||||
|
<template v-if="workReadState.completedTime"><dt>完成</dt><dd>
|
||||||
|
{{ workReadState.completedTime.year }} -
|
||||||
|
{{ workReadState.completedTime.month }} -
|
||||||
|
{{ workReadState.completedTime.date }}
|
||||||
|
</dd></template>
|
||||||
|
<template v-if="workReadState.updatedTime"><dt>更新</dt><dd>
|
||||||
|
{{ workReadState.updatedTime.year }} -
|
||||||
|
{{ workReadState.updatedTime.month }} -
|
||||||
|
{{ workReadState.updatedTime.date }}
|
||||||
|
</dd></template>
|
||||||
<dt>字数</dt><dd>
|
<dt>字数</dt><dd>
|
||||||
{{ workReadState.wordCount }}
|
{{ workReadState.wordCount }}
|
||||||
</dd>
|
</dd>
|
||||||
@ -163,9 +198,13 @@ async function switchWorkWithIndex(target) {
|
|||||||
</dd></template>
|
</dd></template>
|
||||||
</dl>
|
</dl>
|
||||||
</mdui-card>
|
</mdui-card>
|
||||||
<template v-if="workReadState.chapters">
|
<template v-if="workReadState.cid">
|
||||||
<p>第 {{ workReadState.chapterIndex + 1 }} / {{ workReadState.chapters.length }} 章: {{ workReadState.chapters[workReadState.chapterIndex].title }}</p>
|
<h4>第 {{ workReadState.chapterIndex + 1 }} / {{ workReadState.chapters.length }} 章: {{ workReadState.chapters[workReadState.chapterIndex].title }}</h4>
|
||||||
<mdui-button variant='filled' @click="chapterDialog.open = true">章节列表</mdui-button>
|
<div style="display: flex;">
|
||||||
|
<mdui-button variant="filled" v-if="workReadState.chapterIndex != 0" @click="switchWorkWithIndex(workReadState.chapterIndex - 1)">上一章</mdui-button>
|
||||||
|
<mdui-button variant='elevated' @click="chapterDialog.open = true" style="margin: 0px 16px;">章节列表</mdui-button>
|
||||||
|
<mdui-button variant="filled" v-if="workReadState.chapterIndex != workReadState.chapters.length - 1" @click="switchWorkWithIndex(workReadState.chapterIndex + 1)">下一章</mdui-button>
|
||||||
|
</div><br/>
|
||||||
</template>
|
</template>
|
||||||
<blockquote v-if="workReadState.summary">
|
<blockquote v-if="workReadState.summary">
|
||||||
<p v-html='workReadState.summary'></p>
|
<p v-html='workReadState.summary'></p>
|
||||||
@ -174,7 +213,7 @@ async function switchWorkWithIndex(target) {
|
|||||||
<p v-for="(para, index) in workReadState.text" :key="para" :data-index="index">{{ para }}</p>
|
<p v-for="(para, index) in workReadState.text" :key="para" :data-index="index">{{ para }}</p>
|
||||||
</article>
|
</article>
|
||||||
</article><Hr/>
|
</article><Hr/>
|
||||||
<p style="display: flex;" v-if="workReadState.chapters">
|
<p style="display: flex;" v-if="workReadState.cid">
|
||||||
<mdui-button variant="filled" v-if="workReadState.chapterIndex != 0" @click="switchWorkWithIndex(workReadState.chapterIndex - 1)">上一章</mdui-button>
|
<mdui-button variant="filled" v-if="workReadState.chapterIndex != 0" @click="switchWorkWithIndex(workReadState.chapterIndex - 1)">上一章</mdui-button>
|
||||||
<span style="flex: 1;"/>
|
<span style="flex: 1;"/>
|
||||||
{{ workReadState.chapterIndex + 1 }} / {{ workReadState.chapters.length }}
|
{{ workReadState.chapterIndex + 1 }} / {{ workReadState.chapters.length }}
|
||||||
@ -193,24 +232,19 @@ async function switchWorkWithIndex(target) {
|
|||||||
<br/>
|
<br/>
|
||||||
点击跳转
|
点击跳转
|
||||||
</span>
|
</span>
|
||||||
<mdui-list><mdui-list-item v-for="(chapter,index) in workReadState.chapters" :key="chapter.chapterId" @click="switchWorkWithIndex(index)">
|
<mdui-list><mdui-list-item
|
||||||
|
v-for="(chapter,index) in workReadState.chapters"
|
||||||
|
:key="chapter.chapterId" @click="switchWorkWithIndex(index)"
|
||||||
|
:class="{ 'active-item' : index === workReadState.chapterIndex }"
|
||||||
|
>
|
||||||
{{index + 1}}. {{ chapter.title }}
|
{{index + 1}}. {{ chapter.title }}
|
||||||
</mdui-list-item></mdui-list>
|
</mdui-list-item></mdui-list>
|
||||||
</mdui-dialog>
|
</mdui-dialog>
|
||||||
</template>
|
</template>
|
||||||
<template #ssr>
|
<template #ssr>
|
||||||
<template v-if="workReadState.state == 'notfound' || workReadState.state == 'ssrnotfound'">
|
|
||||||
<h2>文章不存在...</h2>
|
|
||||||
是不是链接没有复制完全?<br/>
|
|
||||||
ID: {{workReadState.id}}<br/>
|
|
||||||
<template v-if="workReadState.cid">
|
|
||||||
CID: {{ workReadState.cid }}
|
|
||||||
</template>
|
|
||||||
<a @click="$router.back()">返回</a>
|
|
||||||
</template>
|
|
||||||
<template v-if="workReadState.state == 'ready'">
|
<template v-if="workReadState.state == 'ready'">
|
||||||
<h2>{{ workReadState.title }}</h2>
|
<h2>{{ workReadState.title }}</h2>
|
||||||
<h4>{{ workReadState.pesud }}</h4>
|
<h4>{{ workReadState.pseud }}</h4>
|
||||||
<dl>
|
<dl>
|
||||||
<template v-if="workReadState.category"><dt>分类</dt><ul>
|
<template v-if="workReadState.category"><dt>分类</dt><ul>
|
||||||
<li v-for="item in workReadState.category" :key="item">
|
<li v-for="item in workReadState.category" :key="item">
|
||||||
@ -223,11 +257,21 @@ async function switchWorkWithIndex(target) {
|
|||||||
<dt>语言</dt><dd>
|
<dt>语言</dt><dd>
|
||||||
{{ workReadState.lang }}
|
{{ workReadState.lang }}
|
||||||
</dd>
|
</dd>
|
||||||
<dt>发布时间</dt><dd>
|
<dt>发布</dt><dd>
|
||||||
{{ workReadState.publishedTime.year }} -
|
{{ workReadState.publishedTime.year }} -
|
||||||
{{ workReadState.publishedTime.month }} -
|
{{ workReadState.publishedTime.month }} -
|
||||||
{{ workReadState.publishedTime.date }}
|
{{ workReadState.publishedTime.date }}
|
||||||
</dd>
|
</dd>
|
||||||
|
<template v-if="workReadState.completedTime"><dt>完成</dt><dd>
|
||||||
|
{{ workReadState.completedTime.year }} -
|
||||||
|
{{ workReadState.completedTime.month }} -
|
||||||
|
{{ workReadState.completedTime.date }}
|
||||||
|
</dd></template>
|
||||||
|
<template v-if="workReadState.updatedTime"><dt>更新</dt><dd>
|
||||||
|
{{ workReadState.updatedTime.year }} -
|
||||||
|
{{ workReadState.updatedTime.month }} -
|
||||||
|
{{ workReadState.updatedTime.date }}
|
||||||
|
</dd></template>
|
||||||
<dt>字数</dt><dd>
|
<dt>字数</dt><dd>
|
||||||
{{ workReadState.wordCount }}
|
{{ workReadState.wordCount }}
|
||||||
</dd>
|
</dd>
|
||||||
@ -250,6 +294,9 @@ async function switchWorkWithIndex(target) {
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.active-item {
|
||||||
|
background-color: rgb(var(--mdui-color-secondary-container));
|
||||||
|
}
|
||||||
.mdui-fab {
|
.mdui-fab {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 16px; /* 调整垂直位置 */
|
bottom: 16px; /* 调整垂直位置 */
|
||||||
|
Reference in New Issue
Block a user