瀏覽代碼

FIX: no ssr for openseadragon & screenshit api & clt

master
valere 5 月之前
父節點
當前提交
e605b19b63
共有 9 個文件被更改,包括 831 次插入15 次删除
  1. +1
    -0
      Dockerfile
  2. +5
    -1
      components/openseadragon.vue
  3. +2
    -0
      docker-compose.yml
  4. +1
    -1
      nuxt.config.ts
  5. +793
    -2
      package-lock.json
  6. +1
    -0
      package.json
  7. +9
    -1
      pages/index.vue
  8. +4
    -4
      pages/screenshit.vue
  9. +15
    -6
      server/api/screenshit.ts

+ 1
- 0
Dockerfile 查看文件

@@ -10,6 +10,7 @@ RUN npm run build


# PROD # PROD
FROM node:18-alpine FROM node:18-alpine
RUN apk add vips nano
WORKDIR /app WORKDIR /app
COPY --from=builder /app/.output /app/.output COPY --from=builder /app/.output /app/.output
COPY --from=builder /app/.nuxt /app/.nuxt COPY --from=builder /app/.nuxt /app/.nuxt


+ 5
- 1
components/openseadragon.vue 查看文件

@@ -1,7 +1,7 @@
<template> <template>
<div> <div>
openseadragon: openseadragon:
<div ref="openSeadragonElt" style="width: 100%; height: 500px;"></div>
<div ref="openSeadragonElt" style="width: 100%; height: 500px; background: transparent;"></div>
</div> </div>
</template> </template>


@@ -9,6 +9,9 @@
// vips dzsave --layout iiif --id /vignemale/dz vignemale.png dz // vips dzsave --layout iiif --id /vignemale/dz vignemale.png dz


import iiifConfig from './public/deepzoom/vignemale/dz/info.json' import iiifConfig from './public/deepzoom/vignemale/dz/info.json'
import * as Annotorious from '@recogito/annotorious-openseadragon'
import '@recogito/annotorious-openseadragon/dist/annotorious.min.css';



const openSeadragonElt = ref() const openSeadragonElt = ref()


@@ -20,6 +23,7 @@ onMounted(() => {
prefixUrl: 'https://openseadragon.github.io/openseadragon/images/', prefixUrl: 'https://openseadragon.github.io/openseadragon/images/',
tileSources: iiifConfig tileSources: iiifConfig
}) })
Annotorious(viewer, {})
}) })
} }
}) })


+ 2
- 0
docker-compose.yml 查看文件

@@ -11,6 +11,8 @@ services:
LETSENCRYPT_HOST: "${DOMAIN}" LETSENCRYPT_HOST: "${DOMAIN}"
PUID: "${PUID}" PUID: "${PUID}"
PGID: "${PGID}" PGID: "${PGID}"
volumes:
- "${MEDIA_DIR}:/app/media"


networks: networks:
default: default:


+ 1
- 1
nuxt.config.ts 查看文件

@@ -18,4 +18,4 @@ export default defineNuxtConfig({
}, },


compatibilityDate: '2024-07-10' compatibilityDate: '2024-07-10'
})
})

+ 793
- 2
package-lock.json
文件差異過大導致無法顯示
查看文件


+ 1
- 0
package.json 查看文件

@@ -10,6 +10,7 @@
"postinstall": "nuxt prepare" "postinstall": "nuxt prepare"
}, },
"dependencies": { "dependencies": {
"@recogito/annotorious-openseadragon": "^2.7.18",
"atropos": "^2.0.2", "atropos": "^2.0.2",
"cheerio": "^1.0.0", "cheerio": "^1.0.0",
"nuxt": "^3.12.3", "nuxt": "^3.12.3",


+ 9
- 1
pages/index.vue 查看文件

@@ -1,17 +1,21 @@
<template> <template>
<div class="main"> <div class="main">
<Openseadragon />
<client-only>
<Openseadragon />
</client-only>
<Article /> <Article />
</div> </div>
</template> </template>


<style> <style>
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.bebas-neue-regular { .bebas-neue-regular {
font-family: 'Bebas Neue', sans-serif; font-family: 'Bebas Neue', sans-serif;
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
} }

.noto-sans-400 { .noto-sans-400 {
font-family: "Noto Sans", sans-serif; font-family: "Noto Sans", sans-serif;
font-optical-sizing: auto; font-optical-sizing: auto;
@@ -20,16 +24,20 @@
font-variation-settings: font-variation-settings:
"wdth" 100; "wdth" 100;
} }

.text-6xl { .text-6xl {
font-size: 120px; font-size: 120px;
} }

.main { .main {
margin: 0 auto; margin: 0 auto;
max-width: 860px; max-width: 860px;
} }

.z-article-title { .z-article-title {
z-index: 50; z-index: 50;
} }

.z-article-image { .z-article-image {
z-index: 49; z-index: 49;
} }


+ 4
- 4
pages/screenshit.vue 查看文件

@@ -1,7 +1,7 @@
<template> <template>
<div class="masonry">
<div class="masonry text-white">
<figure v-for="file in files"> <figure v-for="file in files">
<img :src="file.replace('./', 'https://files.erudi.fr/screenshit/')">
<img :src="'https://files.erudi.fr/screenshit/' + file">
</figure> </figure>
</div> </div>
</template> </template>
@@ -27,7 +27,7 @@ figure {
grid-template-rows: 1fr auto; grid-template-rows: 1fr auto;
} }


figure > img {
figure>img {
grid-row: 1 / -1; grid-row: 1 / -1;
grid-column: 1; grid-column: 1;
} }
@@ -40,7 +40,7 @@ figure a {
figcaption { figcaption {
grid-row: 2; grid-row: 2;
grid-column: 1; grid-column: 1;
background-color: rgba(255,255,255,.5);
background-color: rgba(255, 255, 255, .5);
padding: .2em .5em; padding: .2em .5em;
justify-self: start; justify-self: start;
} }


+ 15
- 6
server/api/screenshit.ts 查看文件

@@ -1,8 +1,17 @@
import * as cheerio from 'cheerio'
import fs from 'fs'
import path from 'path'


export default defineEventHandler(async (event) => {
const data = await $fetch('https://files.erudi.fr/screenshit/')
const $ = cheerio.load(data)
let links = []
return $('table a').map((i, el) => $(el).attr('href')).get()
export default eventHandler(async (event) => {
const directoryPath = path.join(process.cwd(), 'media/files/screenshit/')

try {
const files = await fs.promises.readdir(directoryPath)

return files.filter(file => !file.startsWith('.'))
} catch (error) {
return {
success: false,
error: error.message
}
}
}) })

Loading…
取消
儲存