9 Commits

Author SHA1 Message Date
7e0087a7db 支持带章节作品 网站功能基本完善 🥳
All checks were successful
Build / build-and-test (push) Successful in 39s
[UX]
增加对格式错误的链接检测
在搜索或者切换章节时地址栏和标题会跟着变动

[UI]
不再使用 mdui-collapse 作为作品信息容器
SSR 时作品文段渲染增加到 20 行

[Fix]
SSR 时 Category 与 Fandom 标识错误

[Base]
Summary 不再使用 v-for

[NewBug]
在搜索不到东西时会显示搜索完成, 推断是状态转移不完全
2025-05-27 23:59:27 +08:00
8ff45e210c [BugFix] 修复页面自动尝试加载更多的问题
All checks were successful
Build / build-and-test (push) Successful in 26s
2025-05-26 18:24:46 +08:00
f60bf907b1 增加搜索页面自动加载更多 (之前只能加载一页)
All checks were successful
Build / build-and-test (push) Successful in 30s
~~其实就是太激动了没做完就提交了~~
2025-05-26 18:15:53 +08:00
f5d3e7ea88 更新了搜索功能 (终于!) 1.1.0 版本 Release!
All checks were successful
Build / build-and-test (push) Successful in 33s
2025-05-26 11:23:24 +08:00
eb5b28249f [Base] 修改 API 接口使得支持 GET 请求参数
All checks were successful
Build / build-and-test (push) Successful in 28s
2025-05-24 10:33:57 +08:00
8d248a44ff 增加设置板块, 允许自定义界面设置, 使用 VueUse 存储
All checks were successful
Build / build-and-test (push) Successful in 27s
[Style]
为主视图增加 16px 间距
更新 mdui-card 的右边距问题 (老问题了, 还是没有解决)

[Base]
引入 VueUse
分离 Axios
HTML 部分紧凑化
2025-05-23 22:41:47 +08:00
3778dbe57c [Base] 修改 CI
All checks were successful
Build / build-and-test (push) Successful in 26s
2025-05-23 20:05:19 +08:00
a942019c81 [Base] 更新 CI 2025-05-23 20:03:50 +08:00
0088918502 [Base] 删除了无用代码
All checks were successful
Node.js CI / build-and-test (push) Successful in 33s
2025-05-21 14:12:17 +08:00
21 changed files with 615 additions and 223 deletions

View File

@ -1,15 +1,31 @@
name: Node.js CI
name: Build
on:
push:
tags:
- 'v*' # 匹配所有 tag也可改为 v* 等更具体的匹配)
- 'v*'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: 获取 Tag 名称
id: extract_tag
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
- name: 通知:开始构建
run: |
TAG=${{ steps.extract_tag.outputs.tag }}
curl -X POST http://10.0.0.3:52222/send \
-H "Content-Type: application/json" \
-d @- <<EOF
{
"alias": "ci",
"message": "[AO3 Mirror SSR][${TAG}]\n开始构建..."
}
EOF
- name: 检出代码
uses: actions/checkout@v3
@ -40,6 +56,18 @@ jobs:
cp server.js index.html package.json build-out/
zip -r output.zip build-out
- name: 通知:构建完成
run: |
TAG=${{ steps.extract_tag.outputs.tag }}
curl -X POST http://10.0.0.3:52222/send \
-H "Content-Type: application/json" \
-d @- <<EOF
{
"alias": "ci",
"message": "[AO3 Mirror SSR][${TAG}]\n构建完成✅"
}
EOF
- name: 设置 SSH 私钥
run: |
mkdir -p ~/.ssh
@ -49,9 +77,6 @@ jobs:
echo " StrictHostKeyChecking no" >> ~/.ssh/config
echo " UserKnownHostsFile=/dev/null" >> ~/.ssh/config
- name: 获取 Tag 名称
id: extract_tag
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
- name: 上传产物到远程服务器
run: |
@ -59,4 +84,14 @@ jobs:
scp output.zip default@10.0.0.3:/srv/publish/ao3-mirror-ssr/${TAG}.zip
ssh default@10.0.0.3 sh -c 'cd /srv/publish/ao3-mirror-ssr/; rm -f latest.zip; ln -s ${TAG}.zip latest.zip'
- name: 通知:上传完成
run: |
TAG=${{ steps.extract_tag.outputs.tag }}
curl -X POST http://10.0.0.3:52222/send \
-H "Content-Type: application/json" \
-d @- <<EOF
{
"alias": "ci",
"message": "[AO3 Mirror SSR][${TAG}]\n上传完成✅"
}
EOF

107
package-lock.json generated
View File

@ -9,6 +9,8 @@
"version": "0.0.0",
"dependencies": {
"@mdui/icons": "^1.0.2",
"@vueuse/core": "^13.2.0",
"@vueuse/integrations": "^13.2.0",
"axios": "^1.9.0",
"compress-json": "^3.1.1",
"cookie-parser": "^1.4.7",
@ -1731,6 +1733,11 @@
"resolved": "https://registry.npmmirror.com/@types/trusted-types/-/trusted-types-2.0.7.tgz",
"integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw=="
},
"node_modules/@types/web-bluetooth": {
"version": "0.0.21",
"resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz",
"integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA=="
},
"node_modules/@vitejs/plugin-vue": {
"version": "5.2.4",
"resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
@ -1963,6 +1970,106 @@
"resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.13.tgz",
"integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ=="
},
"node_modules/@vueuse/core": {
"version": "13.2.0",
"resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-13.2.0.tgz",
"integrity": "sha512-n5TZoIAxbWAQ3PqdVPDzLgIRQOujFfMlatdI+f7ditSmoEeNpPBvp7h2zamzikCmrhFIePAwdEQB6ENccHr7Rg==",
"dependencies": {
"@types/web-bluetooth": "^0.0.21",
"@vueuse/metadata": "13.2.0",
"@vueuse/shared": "13.2.0"
},
"funding": {
"url": "https://github.com/sponsors/antfu"
},
"peerDependencies": {
"vue": "^3.5.0"
}
},
"node_modules/@vueuse/integrations": {
"version": "13.2.0",
"resolved": "https://registry.npmmirror.com/@vueuse/integrations/-/integrations-13.2.0.tgz",
"integrity": "sha512-tnwdzUYadAiewvMtBcjH/ZPgRCoQBvuVzbFA/VSysPDaIuG41Jp/Z1Sn/rYoFMOLJfcOEcVh+tN3mkrVIyumig==",
"dependencies": {
"@vueuse/core": "13.2.0",
"@vueuse/shared": "13.2.0"
},
"funding": {
"url": "https://github.com/sponsors/antfu"
},
"peerDependencies": {
"async-validator": "^4",
"axios": "^1",
"change-case": "^5",
"drauu": "^0.4",
"focus-trap": "^7",
"fuse.js": "^7",
"idb-keyval": "^6",
"jwt-decode": "^4",
"nprogress": "^0.2",
"qrcode": "^1.5",
"sortablejs": "^1",
"universal-cookie": "^7",
"vue": "^3.5.0"
},
"peerDependenciesMeta": {
"async-validator": {
"optional": true
},
"axios": {
"optional": true
},
"change-case": {
"optional": true
},
"drauu": {
"optional": true
},
"focus-trap": {
"optional": true
},
"fuse.js": {
"optional": true
},
"idb-keyval": {
"optional": true
},
"jwt-decode": {
"optional": true
},
"nprogress": {
"optional": true
},
"qrcode": {
"optional": true
},
"sortablejs": {
"optional": true
},
"universal-cookie": {
"optional": true
}
}
},
"node_modules/@vueuse/metadata": {
"version": "13.2.0",
"resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-13.2.0.tgz",
"integrity": "sha512-kPpzuQCU0+D8DZCzK0iPpIcXI+6ufWSgwnjJ6//GNpEn+SHViaCtR+XurzORChSgvpHO9YC8gGM97Y1kB+UabA==",
"funding": {
"url": "https://github.com/sponsors/antfu"
}
},
"node_modules/@vueuse/shared": {
"version": "13.2.0",
"resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-13.2.0.tgz",
"integrity": "sha512-vx9ZPDF5HcU9up3Jgt3G62dMUfZEdk6tLyBAHYAG4F4n73vpaA7J5hdncDI/lS9Vm7GA/FPlbOmh9TrDZROTpg==",
"funding": {
"url": "https://github.com/sponsors/antfu"
},
"peerDependencies": {
"vue": "^3.5.0"
}
},
"node_modules/@yankeeinlondon/builder-api": {
"version": "1.4.1",
"resolved": "https://registry.npmmirror.com/@yankeeinlondon/builder-api/-/builder-api-1.4.1.tgz",

View File

@ -12,6 +12,8 @@
},
"dependencies": {
"@mdui/icons": "^1.0.2",
"@vueuse/core": "^13.2.0",
"@vueuse/integrations": "^13.2.0",
"axios": "^1.9.0",
"compress-json": "^3.1.1",
"cookie-parser": "^1.4.7",

View File

@ -27,7 +27,7 @@ const route = useRoute()
const clientOnlyStore = useClientOnlyStore()
const api = useApiStore()
const themeScheme = useThemeStore()
let themeScheme = null
const mobileScreen = useMobileScreen()
const routeStore = useRouteStore()
@ -38,7 +38,7 @@ const closeDrawer = ref(true)
let progressTimer = null
onServerPrefetch(async () => {
await api.init()
})
onBeforeMount(() => {
@ -47,8 +47,8 @@ onBeforeMount(() => {
})
onMounted(async () => {
themeScheme = useThemeStore()
themeScheme.applyTheme()
await api.init()
clientOnlyStore.setClient()
new MutationObserver(() => {
if (document.documentElement.style.width.includes('calc')) {
@ -63,8 +63,8 @@ onMounted(async () => {
</script>
<template>
<header><ClientOnly>
<mdui-top-app-bar style="background-color: rgb(var(--mdui-color-primary-container));" scroll-behavior="shrink elevate">
<header><ClientOnly>
<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-icon-menu></mdui-icon-menu>
</mdui-button-icon>
@ -78,11 +78,10 @@ onMounted(async () => {
<mdui-icon-light-mode style="color: rgb(var(--mdui-color-on-surface-variant))"></mdui-icon-light-mode>
</mdui-button-icon>
</mdui-top-app-bar>
<template #ssr>
<h1>{{ routeStore.title }}</h1>
</template></ClientOnly></header>
<nav><ClientOnly>
<mdui-navigation-drawer ref='drawer' :open="drawerOpen" close-on-overlay-click close-on-esc style="margin-top: 64px;">
<template #ssr><h1>{{ routeStore.title }}</h1>
</template></ClientOnly></header>
<nav><ClientOnly>
<mdui-navigation-drawer ref='drawer' :open="drawerOpen" close-on-overlay-click close-on-esc style="margin-top: 64px;">
<mdui-list style="height: 100%; background-color: rgb(var(--mdui-color-surface-variant));">
<KeepAlive><mdui-list-item
v-for="item in routeStore.allRoutes"
@ -94,27 +93,25 @@ onMounted(async () => {
</mdui-list>
</mdui-navigation-drawer>
<template #ssr>
<ul>
<li v-for="item in routeStore.allRoutes"
<ul><li v-for="item in routeStore.allRoutes"
:key="item.path"
:class="{ 'active-item' : item.path == $route.path }"
><a :href="item.path">{{ item.name }}</a></li>
</ul>
</template></ClientOnly>
</nav>
<main :class="{ 'mdui-prose' : clientOnlyStore.isClient }">
><a :href="item.path">{{ item.name }}</a></li></ul>
</template></ClientOnly></nav>
<main :class="{ 'mdui-prose' : clientOnlyStore.isClient , 'content' : clientOnlyStore.isClient}">
<RouterView v-slot="{ Component }">
<component :is="Component" />
</RouterView>
</main>
<footer></footer>
<component :is="Component" />
</RouterView>
</main><footer></footer>
</template>
<style scoped>
.active-item {
background-color: rgb(var(--mdui-color-surface-container-high));
}
.content {
margin: 16px;
}
.bottom {
position: fixed;
display: flex;

View File

@ -0,0 +1,61 @@
import { useAxios } from '@vueuse/integrations/useAxios'
import axios from 'axios'
import { objectToQueryString } from '../utils.js'
function getEndpoint() {
const apiMapping = {
'': ['http://localhost:28001/', '/api/'],
}
let host = import.meta.env.SSR ? 'ssr' : window.location.host
let entry = apiMapping[host] ?? apiMapping['']
return import.meta.env.SSR ? entry[0] : replaceUrl(entry[1])
}
function replaceUrl(url) {
return url
.replace('{{hostname}}', window.location.hostname)
.replace('{{port}}', window.location.port)
.replace('{{protocol}}', window.location.protocol)
}
export function useApiRequest(method, url, data, config = {}) {
const start = Date.now()
const baseURL = getEndpoint()
// 若为 GET 请求,将 data 转为查询参数拼接到 URL 上
const fullURL = method === 'GET' && data
? `${baseURL}${url}?${objectToQueryString(data)}`
: `${baseURL}${url}`
const {
response,
error,
isFinished,
isLoading,
execute,
} = useAxios(
fullURL,
{
method,
...(method === 'POST' ? { data } : {}),
...(config || {})
},
{
immediate: false,
axios,
}
)
const exec = async () => {
await execute()
const stop = Date.now()
return {
status: response.value?.status || (error.value?.response?.status ?? -1),
data: response.value?.data || error.value?.response?.data || null,
duration: stop - start,
start,
stop,
error: error.value,
isSSR: import.meta.env.SSR,
}
}
return { execute: exec, isFinished, isLoading }
}

View File

@ -1,4 +1,4 @@
import { renderToWebStream, renderToString } from 'vue/server-renderer'
import { renderToWebStream } from 'vue/server-renderer'
import { createApp } from './main'
import { createSSRRouter } from './router.js'

View File

@ -16,5 +16,6 @@ export function createApp() {
.component('Hr', Hr)
.component('BetterHr', Hr)
.component('Form', Form)
.component('BetterForm', Form)
return { app, pinia }
}

View File

@ -29,7 +29,7 @@ pre {
}
// MDUI 组件样式
mdui-card {
width: 98%;
width: 100%;
padding: 8px;
}

View File

@ -39,13 +39,29 @@ export function createSSRRouter() {
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.vue'),
component: () => import('./views/About.md'),
meta: {
title: '',
order: 2
order: 100
},
},{
path: '/developer',

View File

@ -1,114 +1,20 @@
import { ref, computed, watch } from 'vue'
import { defineStore } from 'pinia'
import { useSSRContext } from 'vue'
import axios from 'axios'
import { objectToQueryString, getCookie, setCookie } from '@/utils.js'
const apiMapping = {
'': ['http://localhost:28001/','/api/']
}
function replaceUrl(url) {
return url
.replace('{{hostname}}',window.location.hostname)
.replace('{{port}}',window.location.port)
.replace('{{protocol}}',window.location.protocol)
}
import { useApiRequest } from '../composables/apiRequest'
export const useApiStore = defineStore('api', () => {
let host = import.meta.env.SSR ? useSSRContext().host : window.location.host
let entry = apiMapping[host] ? apiMapping[host] : apiMapping['']
let endpoint = import.meta.env.SSR ? entry[0] : replaceUrl(entry[1])
//console.log('Entry point:', endpoint)
var inited = false
var initializing = false
async function apiGet(url, data) {
const realURL = data
? `${endpoint}${url}?${objectToQueryString(data)}`
: `${endpoint}${url}`
try {
let start = Date.now()
const response = await axios.get(realURL)
let stop = Date.now()
return {
status: response.status,
data: response.data,
start, stop,
duration: stop - start,
isSSR: import.meta.env.SSR
}
} catch (error) {
if (error.response) {
return {
status: error.response.status,
data: error.response.data,
isSSR: import.meta.env.SSR
}
} else {
return {
status: -1,
data: null
}
}
}
}
async function apiPost(url, data) {
const realURL = `${endpoint}${url}`;
try {
let start = Date.now()
const response = await axios.post(realURL, data, {
headers: { 'Content-Type': 'application/json' }
})
let stop = Date.now()
return {
status: response.status,
data: response.data,
start, stop,
duration: stop - start,
isSSR: import.meta.env.SSR
}
} catch (error) {
if (error.response) {
return {
status: error.response.status,
data: error.response.data,
isSSR: import.meta.env.SSR
}
} else {
return {
status: -1,
data: null
}
}
}
}
async function init() {
if (inited) return
if (initializing) {
while (initializing) {
await new Promise((resolve) => setTimeout(resolve, 100))
}
return
}
initializing = true
inited = true
initializing = false
if (!import.meta.env.SSR) {
console.log(`[API] Inited! endpoint: ${endpoint}`)
}
}
async function reInit(){
inited = false
await init()
}
async function getWork(workId, chapterId) {
if (chapterId) return await apiGet(`work/${workId}/${chapterId}`)
return await apiGet(`work/${workId}`)
const path = chapterId ? `work/${workId}/${chapterId}` : `work/${workId}`
const { execute } = useApiRequest('GET', path)
return await execute()
}
async function workSimpleSearch(keyword, page = 1) {
const { execute } = useApiRequest('GET', 'search/simple', { keyword, page })
return await execute()
}
return {
init,
reInit,
getWork
getWork,
workSimpleSearch
}
})

28
src/stores/appSetting.js Normal file
View File

@ -0,0 +1,28 @@
import { defineStore } from 'pinia'
import { reactive } from 'vue'
import { useStorage, watchWithFilter, debounceFilter } from '@vueuse/core'
const CURRENT_VERSION = 1
const DEFAULT_SETTINGS = {
version: CURRENT_VERSION,
darkTheme: false,
autoTheme: true,
colorScheme: '#890000'
}
export const useAppSettingStore = defineStore('appSetting', () => {
const stored = useStorage('app-settings', DEFAULT_SETTINGS)
if (stored.version !== CURRENT_VERSION) {
Object.assign(stored, DEFAULT_SETTINGS)
}
function resetSettings() {
Object.assign(stored, DEFAULT_SETTINGS)
}
return {
value: stored,
resetSettings,
}
})

58
src/stores/search.js Normal file
View File

@ -0,0 +1,58 @@
import { ref } from 'vue'
import { defineStore } from 'pinia'
import { useApiStore } from '@/stores/api.js'
export const useSimpleSearchState = defineStore('simpleSearch', () => {
const api = useApiStore()
const keyword = ref('')
const result = ref([])
const count = ref(0)
const pageCount = ref(0)
const currentPage = ref(0)
const state = ref(null)
async function load() {
if (pageCount.value && currentPage.value >= pageCount.value){ state.value = 'finish'; return }
let res = await api.workSimpleSearch(keyword.value, currentPage.value)
res = res.data
if( pageCount.value ) {
currentPage.value++
if (currentPage.value > pageCount.value) currentPage.value = pageCount.value
}
if (res.code == 0) {
if ( !pageCount.value ) {
pageCount.value = res.pageCount
currentPage.value = res.page
}
count.value = res.count
state.value = import.meta.env.SSR ? 'ssrready' : 'ready'
result.value.push(...res.works)
} else if (res.code == 1) {
if ( count.value ) {
state.value = 'finish'
} else {
currentPage.value = 0
state.value = 'notfound'
}
}
}
async function start(key) {
if (key == keyword.value) return
keyword.value = key
result.value = []
state.value = 'loading'
currentPage.value = 1
pageCount.value = 0
await load()
}
return {
keyword,
result,
count,
pageCount,
currentPage,
state,
load, start
}
})

View File

@ -1,12 +1,17 @@
import { ref, computed } from 'vue'
import { defineStore } from 'pinia'
import { useDark } from '@vueuse/core'
import { setTheme } from 'mdui/functions/setTheme.js'
import { setColorScheme } from 'mdui/functions/setColorScheme.js'
import { useAppSettingStore } from './appSetting.js'
export const useThemeStore = defineStore('homePage', () => {
const mode = ref('auto')
const color = ref('#890000')
const isDark = useDark()
const appSetting = useAppSettingStore()
const mode = ref(appSetting.value.autoTheme ? 'auto' : appSetting.value.darkTheme ? 'dark' : 'light')
const color = ref(appSetting.value.colorScheme)
function setColor(target) {
if (color.value != target) {
color.value = target
@ -20,10 +25,10 @@ export const useThemeStore = defineStore('homePage', () => {
setTheme(mode.value)
}
function switchMode(callback) {
if (mode.value === 'auto' || mode.value === 'light') {
mode.value = 'dark'
if (mode.value === 'auto') {
mode.value = isDark.value ? 'light' : 'dark'
} else {
mode.value = 'light'
mode.value = mode.value === 'dark' ? 'light' : 'dark'
}
setMode(mode.value)
if (callback) {

View File

@ -10,7 +10,7 @@ export const useWorkReadState = defineStore('workRead', () => {
const id = ref(null)
const cid = ref(null)
const summary = ref(null)
const pesud = ref(null)
const pseud = ref(null)
const title = ref(null)
const text = ref(null)
const state = ref('')
@ -21,11 +21,14 @@ export const useWorkReadState = defineStore('workRead', () => {
const category = ref([])
const fandom = ref([])
const lang = ref(null)
const chapters = ref([])
const chapterIndex = ref(null)
function setData(data) {
cid.value = data.chapterId
id.value = data.workId
title.value = data.title
summary.value = [escapeAndFormatText(data.summary)]
pesud.value = data.pesud
summary.value = data.summary ? escapeAndFormatText(data.summary) : null
pseud.value = data.pseud
text.value = data.text
publishedTime.value = data.stats.publishedTime
wordCount.value = data.stats.wordCount
@ -34,11 +37,26 @@ export const useWorkReadState = defineStore('workRead', () => {
category.value = data.category
fandom.value = data.fandom
lang.value = data.lang
chapters.value = data.chapters || []
chapterIndex.value = data.chapterIndex ?? null
}
async function loadWork(target, targetc) {
if (target == id.value && targetc == cid.value || state.value == 'loading') return
const itarget = parseInt(target)
if (isNaN(itarget)) {
console.log('a')
state.value = 'errformat'
return
}
const itargetc = parseInt(targetc)
if (
itarget === id.value &&
(itargetc === cid.value || (isNaN(itargetc) && cid.value === null)) &&
state.value !== 'loading'
) return
id.value = itarget
cid.value = isNaN(itargetc) ? null : itargetc
state.value = 'loading'
const result = await api.getWork(target, targetc)
const result = await api.getWork(id.value, cid.value)
if (result.status == 200) {
setData(result.data)
state.value = 'ready'
@ -51,7 +69,7 @@ export const useWorkReadState = defineStore('workRead', () => {
id, cid,
title,
summary,
pesud,
pseud,
text,
state,
publishedTime,
@ -61,6 +79,8 @@ export const useWorkReadState = defineStore('workRead', () => {
category,
fandom,
lang,
chapters,
chapterIndex,
setData,
loadWork
}

View File

@ -1,9 +1,3 @@
# 欢迎来到 AO3 Mirror! 👋👋
一个基于重构渲染的 AO3 镜像站
---
## 这是什么🤨
本网站是对 ArchiveOfOurOwn (AO3) 的一个镜像网站
@ -45,3 +39,4 @@
- ✅ 作品详细数据
- 📝 搜索
- ❌ 书签 (本地) **不再支持! [详情](/about#deprecated-feature-bookmark)**

View File

@ -1,3 +1,18 @@
<script setup>
import About from '../texts/about.md'
import FunAnimation from '../components/FunAnimation.vue'
import 'mdui/components/avatar.js'
/*import { onBeforeMount, onMounted, onUnmounted, onBeforeUnmount, onActivated, onDeactivated } from 'vue'
console.log('Setup')
onBeforeMount(() => console.log('Before mount'))
onMounted(() => console.log('Mounted'))
onDeactivated(() => console.log('Deactivated'))
onActivated(() => console.log('Activated'))
onBeforeUnmount(() => console.log('Before unmount'))
onUnmounted(() => console.log('Unmounted'))*/
</script>
# 关于
这是什么, 有口舍用 ?
@ -43,3 +58,5 @@
本站支持 "Server Side Rendering" by Vite SSR
CDN by Cloudflare (赛博佛祖😭)
<FunAnimation />

View File

@ -1,19 +0,0 @@
<script setup>
import About from '../texts/about.md'
import FunAnimation from '../components/FunAnimation.vue'
import 'mdui/components/avatar.js'
/*import { onBeforeMount, onMounted, onUnmounted, onBeforeUnmount, onActivated, onDeactivated } from 'vue'
console.log('Setup')
onBeforeMount(() => console.log('Before mount'))
onMounted(() => console.log('Mounted'))
onDeactivated(() => console.log('Deactivated'))
onActivated(() => console.log('Activated'))
onBeforeUnmount(() => console.log('Before unmount'))
onUnmounted(() => console.log('Unmounted'))*/
</script>
<template>
<About/>
<FunAnimation />
</template>

View File

@ -9,9 +9,6 @@ import Intro from '../texts/intro.md'
const router = useRouter()
const err = ref(false)
const srcText = ref(null)
function convert(from) {
if( Number(from) ) {
return {
@ -20,7 +17,6 @@ function convert(from) {
}
} else if (from.includes('https://archiveofourown.org/works/')) {
const sid = from.split('https://archiveofourown.org/works/')[1];
console.log(sid)
if ( sid ) {
const id = Number(sid)
if (id) {
@ -41,16 +37,15 @@ function convert(from) {
}
}
}
return { type: null }
return { type: 'f', key: from }
}
function onConvert(data) {
const { type, id, cid } = convert(data.src)
const { type, id, cid, key } = convert(data.src)
if (type == null) {
err.value = true
srcText.value?.focus()
} else if ( type == 'f') {
router.push(`/search/simple?keyword=${encodeURIComponent(key)}`)
} else {
err.value = false
if (cid) router.push(`/work/${id}/${cid}`)
else router.push(`/work/${id}`)
}
@ -60,14 +55,14 @@ function onConvert(data) {
<template>
<img style="display: block; margin: 0px auto 10px;" height="200px" alt="logo" src="/favicon.svg" />
<Intro />
<br/><Hr/>
<h1>欢迎来到 AO3 Mirror! 👋👋</h1>
<p>一个基于重构渲染的 AO3 镜像站</p>
<Hr />
<section id="converter">
<h2>链接转换</h2>
<p>输入完整链接或者 ID</p>
<p>AO3 链接 关键词搜索</p>
<Form @submit="onConvert"><ClientOnly>
<mdui-text-field variant="filled" label="链接" name="src" placeholder="https://archiveofourown.org/works/114514" ref='srcText'>
<span v-if='err' slot="helper" class='warn-text'>链接格式错误!</span>
<mdui-text-field variant="filled" label="链接 / 关键词" name="src">
</mdui-text-field><br/>
<div style="display: flex">
<div style="flex-grow: 1"></div>
@ -78,4 +73,7 @@ function onConvert(data) {
<input type="submit" />
</template></ClientOnly></Form>
</section>
<Hr/>
<Intro />
</template>

40
src/views/Settings.vue Normal file
View File

@ -0,0 +1,40 @@
<script setup>
import { ref, onBeforeMount } from 'vue'
import 'mdui/components/switch.js'
import 'mdui/components/card.js'
import { useAppSettingStore } from '../stores/appSetting.js'
let appSetting = null
onBeforeMount(() => {
appSetting = useAppSettingStore()
})
</script>
<template>
<h1>设置</h1>
<Hr />
<ClientOnly><div class="settings">
<section><mdui-card>
<h2>界面</h2><Hr />
<div>自动黑暗模式<div style="flex: 1;"/>
<mdui-switch :checked="appSetting.value.autoTheme"
@change="e => appSetting.value.autoTheme = e.target.checked">
</mdui-switch></div>
<div v-if="!appSetting.value.autoTheme">默认黑暗模式<div style="flex: 1;"/>
<mdui-switch :checked="appSetting.value.darkTheme"
@change="e => appSetting.value.darkTheme = e.target.checked">
</mdui-switch></div>
</mdui-card></section>
</div></ClientOnly>
</template>
<style scoped>
.settings div {
display: flex;
align-items: center;
}
</style>

View File

@ -0,0 +1,97 @@
<script setup>
import { ref, watch, onMounted, nextTick, onServerPrefetch, onBeforeUnmount } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import 'mdui/components/text-field.js'
import 'mdui/components/card.js'
import { escapeAndFormatText } from '../utils.js'
import { useSimpleSearchState } from '../stores/search.js'
const route = useRoute()
const router = useRouter()
const simpleSearchState = useSimpleSearchState()
const inputField = ref('')
const label = ref(null)
const stateLabel = {
'loading': '加载中',
'finish': '加载完成',
'ready': '就绪',
'ssrready': '就绪',
'notfound': '未找到',
'ssrnotfound': '未找到',
}
let isObserver = null
onServerPrefetch(async () => {
if (route.query.keyword) {
await simpleSearchState.start(route.query.keyword)
}
})
onMounted(async () => {
watch(() => simpleSearchState.keyword, () => document.title = simpleSearchState.keyword)
inputField.value = route.query.keyword || ''
if (inputField.value && simpleSearchState != 'ssrready') simpleSearchState.start(inputField.value)
isObserver = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
if (simpleSearchState.state == 'ready') simpleSearchState.load()
}
})
}, { threshold: 1 })
await nextTick()
isObserver.observe(label.value)
})
onBeforeUnmount(() => {
isObserver.disconnect();
})
function onSubmit(data) {
if (simpleSearchState) {
simpleSearchState.start(data.src)
router.replace(`/search/simple?keyword=${encodeURIComponent(data.src)}`)
}
}
</script>
<template>
<h1>搜索</h1>
<Form @submit="onSubmit"><ClientOnly>
<mdui-text-field variant="filled" :value="inputField" label="链接 / 关键词" name="src">
</mdui-text-field><br/>
<div style="display: flex">
<div style="flex-grow: 1"></div>
<mdui-button type="submit">-></mdui-button>
</div>
<template #ssr>
<input type="text" id="src" name="src" />
<input type="submit" />
</template></ClientOnly></Form><Hr />
<template v-if="simpleSearchState.state == 'ready' || simpleSearchState.state == 'finish' || simpleSearchState.state == 'ssrready'">
<p>找到 {{ simpleSearchState.count }}</p><Hr/>
</template>
<template v-if="simpleSearchState.result" v-for="work in simpleSearchState.result" :key="work.workId">
<ClientOnly><mdui-card style="margin: 8px 0px;"><article>
<router-link :to="`/work/${work.workId}`"><h3>{{ work.title }}</h3></router-link>
<h4>{{ work.pseud }}</h4>
<Hr />
<p v-html="escapeAndFormatText(work.summary)"></p>
</article></mdui-card><template #ssr>
<router-link :to="`/work/${work.workId}`"><h3>{{ work.title }}</h3></router-link>
<h4>{{ work.pseud }}</h4>
<p>{{ work.summary }}</p>
<Hr />
</template></ClientOnly>
</template>
<p style="display: flex;" ref='label'>
{{ stateLabel[simpleSearchState.state] }} ({{ simpleSearchState.count }})
<span style="flex: 1;"/>
{{ simpleSearchState.currentPage }} / {{ simpleSearchState.pageCount }}
</p>
</template>

View File

@ -19,8 +19,6 @@ import 'mdui/components/button.js'
import 'mdui/components/dropdown.js'
import 'mdui/components/menu.js'
import 'mdui/components/menu-item.js'
import 'mdui/components/collapse.js'
import 'mdui/components/collapse-item.js'
import 'mdui/components/card.js'
import '@mdui/icons/bookmark.js'
@ -41,6 +39,7 @@ let lastCloseTimer = null
let isObserver = null
let paragraphs = []
let currentParagraph = null
const chapterDialog = ref(null)
const categoryName = {
mm: "男/男",
@ -48,21 +47,25 @@ const categoryName = {
fm: '女/男'
}
onServerPrefetch(async () => {
await workReadState.loadWork(route.params.id, route.params.cid)
})
onMounted(async () => {
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 == 'ready') {
routeState.customTitle = workReadState.title
if (parseInt(route.params.cid) != workReadState.cid) {
router.replace(`/work/${workReadState.id}/${workReadState.cid}`)
return;
}
const paraCount = workReadState.text.length - 1
isObserver = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
currentParagraph = entry.target
readIndex = entry.target.dataset.index;
readIndex = entry.target.dataset.index
readPercent.value = parseInt(readIndex / paraCount * 100)
if (lastPercent == 0) {
lastPercent = readPercent.value
@ -89,8 +92,13 @@ onMounted(async () => {
})
onBeforeUnmount(() => {
isObserver.disconnect();
if(isObserver) isObserver.disconnect();
})
async function switchWorkWithIndex(target) {
workReadState.loadWork(workReadState.id,workReadState.chapters[target].chapterId);
router.replace(`/work/${workReadState.id}/${workReadState.cid}`)
}
</script>
<template>
@ -108,14 +116,20 @@ onBeforeUnmount(() => {
</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'">
<article>
<h1 style="margin: auto">{{ workReadState.title }}</h1>
<h4>{{ workReadState.pesud }}</h4>
<mdui-card style="margin: 8px; padding: 0px;"><mdui-collapse acc>
<mdui-collapse-item value="info"><mdui-list-item class="infoblockhead" slot="header">
作品信息
</mdui-list-item><div class="infoblock"><dl>
<mdui-card style="margin: 8px; padding: 16px;">
<strong>作品信息</strong><dl>
<template v-if="workReadState.category"><dt>分类</dt><ul>
<li v-for="item in workReadState.category" :key="item">
{{ categoryName[item] }}</li>
@ -127,10 +141,8 @@ onBeforeUnmount(() => {
<dt>语言</dt><dd>
{{ workReadState.lang }}
</dd>
</dl></div></mdui-collapse-item>
<mdui-collapse-item value="stats"><mdui-list-item class="infoblockhead" slot="header">
作品状态
</mdui-list-item><div class="infoblock"><dl>
</dl><Hr/>
<strong>作品状态</strong><dl>
<dt>发布时间</dt><dd>
{{ workReadState.publishedTime.year }} -
{{ workReadState.publishedTime.month }} -
@ -142,20 +154,44 @@ onBeforeUnmount(() => {
<dt>点击</dt><dd>
{{ workReadState.hitCount }}
</dd>
</dl></div></mdui-collapse-item>
</mdui-collapse></mdui-card>
<blockquote>
<p v-for="para in workReadState.summary" :key="para" v-html='para'></p>
</dl>
</mdui-card>
<template v-if="workReadState.chapters">
<p> {{ workReadState.chapterIndex + 1 }} / {{ workReadState.chapters.length }} : {{ workReadState.chapters[workReadState.chapterIndex].title }}</p>
<mdui-button variant='filled' @click="chapterDialog.open = true">章节列表</mdui-button>
</template>
<blockquote v-if="workReadState.summary">
<p v-html='workReadState.summary'></p>
</blockquote>
<Hr />
<div ref='content'>
<article ref='content'>
<p v-for="(para, index) in workReadState.text" :key="para" :data-index="index">{{ para }}</p>
</div>
</article>
</article>
<Hr/>
<p style="display: flex;" v-if="workReadState.chapters">
<mdui-button variant="filled" v-if="workReadState.chapterIndex != 0" @click="switchWorkWithIndex(workReadState.chapterIndex - 1)">上一章</mdui-button>
<span style="flex: 1;"/>
{{ workReadState.chapterIndex + 1 }} / {{ workReadState.chapters.length }}
<span style="flex: 1;"/>
<mdui-button variant="filled" v-if="workReadState.chapterIndex != workReadState.chapters.length - 1" @click="switchWorkWithIndex(workReadState.chapterIndex + 1)">下一章</mdui-button>
</p>
<div style="height: 64px" />
<mdui-fab class="mdui-fab" :extended="fabExtended">
<mdui-icon-bookmark slot="icon"></mdui-icon-bookmark>
{{ readPercent }}%
</mdui-fab>
<mdui-dialog ref='chapterDialog' close-on-overlay-click>
<span slot="headline">章节列表</span>
<span slot="description">
{{ workReadState.chapters.length }}
<br/>
点击跳转
</span>
<mdui-list><mdui-list-item v-for="(chapter,index) in workReadState.chapters" :key="chapter.chapterId" @click="switchWorkWithIndex(index)">
{{index + 1}}. {{ chapter.title }}
</mdui-list-item></mdui-list>
</mdui-dialog>
</template>
<template #ssr>
<template v-if="workReadState.state == 'notfound' || workReadState.state == 'ssrnotfound'">
@ -168,14 +204,14 @@ onBeforeUnmount(() => {
<a @click="$router.back()">返回</a>
</template>
<template v-if="workReadState.state == 'ready'">
<h1>{{ workReadState.title }}</h1>
<h2>{{ workReadState.pesud }}</h2>
<h2>{{ workReadState.title }}</h2>
<h4>{{ workReadState.pesud }}</h4>
<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">
{{ categoryName[item] }}</li>
</ul></template>
<template v-if="workReadState.fandom"><dt>原著</dt><ul>
<template v-if="workReadState.fandom"><dt>作品圈</dt><ul>
<li v-for="item in workReadState.fandom" :key="item">
{{ item }}</li>
</ul></template>
@ -195,11 +231,11 @@ onBeforeUnmount(() => {
</dd>
</dl>
<Hr />
<blockquote>
<p v-for="para in workReadState.summary" :key="para" v-html='para'></p>
<template v-if="workReadState.summary"><blockquote>
<p v-html='workReadState.summary'></p>
</blockquote>
<Hr/>
<p v-for="para in workReadState.text.slice(0, 10)" :key="para">{{ para }}</p>
<Hr /></template>
<article><p v-for="para in workReadState.text.slice(0, 20)" :key="para">{{ para }}</p></article>
</template>
</template></ClientOnly>
</template>
@ -212,12 +248,4 @@ onBeforeUnmount(() => {
z-index: 1000; /* 确保悬浮按钮在其他内容上方 */
animation: slideInFromRight var(--mdui-motion-duration-medium2) var(--mdui-motion-easing-standard); /* 动画时长和缓动效果 */
}
.infoblock {
margin: 8px 16px;
}
.infoblockhead {
background-color: rgb(var(--mdui-color-primary-container));
}
</style>