51147a1429
CI / changes (pull_request) Successful in 2s
CI / unit (pull_request) Successful in 10s
CI / integration (pull_request) Successful in 19s
CI / ui (pull_request) Successful in 1m8s
CI / conformance (pull_request) Successful in 9s
CI / gate (pull_request) Successful in 0s
CI / deploy (pull_request) Successful in 1m43s
Make the web SPA an installable PWA and surface it to users: - manifest.webmanifest + an install-only service worker + 192/512/maskable icons (ui/public); PWA head tags in index.html; the .webmanifest MIME type registered in the gateway (the distroless image has no /etc/mime.types). - Platform-adaptive install CTA (components/InstallApp.svelte + lib/pwa): one-tap on Chromium, manual Add-to-Home-Screen instructions on iOS Safari, hidden elsewhere / once installed / inside a Mini App. Shown under the logged-out login card and at the bottom of Settings. - The landing gains a third entry linking /app/ (the brand tile), with a caption under all three (Telegram / VK / Веб-версия). The service worker is navigation-only (network-first, cached-shell fallback); hashed assets and the Connect stream are untouched. It exists to satisfy Chromium's installability requirement and is the single growth point for a future opt-in offline mode. Tests: pwa.ts unit tests; a webui probe (manifest/sw.js content-type + the SPA-fallback-to-HTML trap); e2e for the one-tap CTA, the iOS instructions modal and the landing web entry. Docs: ARCHITECTURE §13, FUNCTIONAL (+ru), gateway README.
124 lines
3.1 KiB
Svelte
124 lines
3.1 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
app,
|
|
setBoardLabels,
|
|
setLocalePref,
|
|
setReduceMotion,
|
|
setTheme,
|
|
} from '../lib/app.svelte';
|
|
import { t, type Locale, type MessageKey } from '../lib/i18n/index.svelte';
|
|
import type { ThemePref } from '../lib/theme';
|
|
import type { BoardLabelMode } from '../lib/boardlabels';
|
|
import { insideTelegram } from '../lib/telegram';
|
|
import InstallApp from '../components/InstallApp.svelte';
|
|
|
|
const themes: ThemePref[] = ['auto', 'light', 'dark'];
|
|
const themeLabel: Record<ThemePref, MessageKey> = {
|
|
auto: 'settings.themeAuto',
|
|
light: 'settings.themeLight',
|
|
dark: 'settings.themeDark',
|
|
};
|
|
const locales: Locale[] = ['en', 'ru'];
|
|
const labelModes: BoardLabelMode[] = ['beginner', 'classic', 'none'];
|
|
const labelModeKey: Record<BoardLabelMode, MessageKey> = {
|
|
beginner: 'settings.labelsBeginner',
|
|
classic: 'settings.labelsClassic',
|
|
none: 'settings.labelsNone',
|
|
};
|
|
</script>
|
|
|
|
<div class="page">
|
|
{#if !insideTelegram()}
|
|
<section>
|
|
<h3>{t('settings.theme')}</h3>
|
|
<div class="seg">
|
|
{#each themes as th (th)}
|
|
<button class="opt" class:active={app.theme === th} onclick={() => setTheme(th)}>
|
|
{t(themeLabel[th])}
|
|
</button>
|
|
{/each}
|
|
</div>
|
|
</section>
|
|
{/if}
|
|
|
|
<section>
|
|
<h3>{t('settings.language')}</h3>
|
|
<div class="seg">
|
|
{#each locales as lc (lc)}
|
|
<button class="opt" class:active={app.locale === lc} onclick={() => setLocalePref(lc)}>
|
|
{t(lc === 'en' ? 'lang.en' : 'lang.ru')}
|
|
</button>
|
|
{/each}
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<h3>{t('settings.boardStyle')}</h3>
|
|
<div class="sub">{t('settings.boardLabels')}</div>
|
|
<div class="seg">
|
|
{#each labelModes as lm (lm)}
|
|
<button class="opt" class:active={app.boardLabels === lm} onclick={() => setBoardLabels(lm)}>
|
|
{t(labelModeKey[lm])}
|
|
</button>
|
|
{/each}
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<label class="row">
|
|
<span>{t('settings.reduceMotion')}</span>
|
|
<input
|
|
type="checkbox"
|
|
checked={app.reduceMotion}
|
|
onchange={(e) => setReduceMotion(e.currentTarget.checked)}
|
|
/>
|
|
</label>
|
|
</section>
|
|
|
|
<!-- Web-only install call-to-action at the bottom of Settings (renders nothing unless the app
|
|
is installable here — see components/InstallApp.svelte / lib/pwa). -->
|
|
<InstallApp />
|
|
</div>
|
|
|
|
<style>
|
|
.page {
|
|
padding: var(--pad);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
h3 {
|
|
margin: 0 0 8px;
|
|
font-size: 0.95rem;
|
|
color: var(--text-muted);
|
|
}
|
|
.sub {
|
|
font-size: 0.85rem;
|
|
color: var(--text-muted);
|
|
margin-bottom: 6px;
|
|
}
|
|
.seg {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
.opt {
|
|
flex: 1;
|
|
padding: 10px;
|
|
border: 1px solid var(--border);
|
|
background: var(--surface);
|
|
color: var(--text);
|
|
border-radius: var(--radius-sm);
|
|
user-select: none;
|
|
}
|
|
.opt.active {
|
|
background: var(--accent);
|
|
color: var(--accent-text);
|
|
border-color: var(--accent);
|
|
}
|
|
.row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
</style>
|