1
0
mirror of https://github.com/ZeroCatDev/Classworks.git synced 2026-02-04 07:53:11 +00:00

Compare commits

..

No commits in common. "8a8ea05d81b0f1248048833b749ca558df063452" and "4244f84b340ad0104db8c193e44f87aaf2f8907c" have entirely different histories.

2 changed files with 5 additions and 47 deletions

8
.gitignore vendored
View File

@ -172,11 +172,3 @@ dist
vite.config.*.timestamp-*.mjs
*.timestamp-*
# Auto-generated TypeScript declaration files
auto-imports.d.ts
components.d.ts
typed-router.d.ts
# Package lock files (using pnpm)
package-lock.json

View File

@ -8,24 +8,12 @@
height="100%"
@click="fetchSentence"
>
<v-card-text
class="pa-6 d-flex flex-column justify-center"
style="height: 100%"
>
<div
class="font-weight-medium mb-4 serif-font"
:style="contentStyle"
>
<v-card-text class="pa-6 d-flex flex-column justify-center" style="height: 100%">
<div class="text-h6 font-weight-medium mb-4 serif-font" style="white-space: pre-wrap; line-height: 1.6;">
{{ sentence }}
</div>
<div
class="text-medium-emphasis serif-font"
:style="authorStyle"
>
<span
v-if="author"
class="mr-2"
>{{ author }}</span>
<div class="text-subtitle-2 text-medium-emphasis text-right serif-font">
<span v-if="author" class="mr-2">{{ author }}</span>
<span v-if="origin">{{ origin }}</span>
</div>
</v-card-text>
@ -50,9 +38,6 @@ const GLOBAL_SENSITIVE_WORDS_ENCODED = [
//
const GLOBAL_SENSITIVE_WORDS = GLOBAL_SENSITIVE_WORDS_ENCODED.map(word => Base64.decode(word))
// 75%
const HITOKOTO_FONT_RATIO = 0.75
export default {
name: 'HitokotoCard',
data() {
@ -68,25 +53,7 @@ export default {
origin: '',
loading: false,
timer: null,
unwatch: null,
fontSize: 28 // Will be updated in mounted()
}
},
computed: {
contentStyle() {
return {
'font-size': `${this.fontSize * HITOKOTO_FONT_RATIO}px`,
'white-space': 'pre-wrap',
'line-height': '1.6',
'text-align': 'left'
}
},
authorStyle() {
const AUTHOR_FONT_RATIO = 0.6 // Author font size is 60% of the main font size
return {
'font-size': `${this.fontSize * HITOKOTO_FONT_RATIO * AUTHOR_FONT_RATIO}px`,
'text-align': 'left'
}
unwatch: null
}
},
async mounted() {
@ -111,7 +78,6 @@ export default {
loadLocalSettings() {
this.enabled = SettingsManager.getSetting('hitokoto.enabled')
this.refreshInterval = SettingsManager.getSetting('hitokoto.refreshInterval')
this.fontSize = SettingsManager.getSetting('font.size')
},
async loadKvSettings() {
try {