Reformat and use native HTML5 components

This commit is contained in:
Santiago Lo Coco 2024-04-23 15:27:53 +02:00
parent 092f8dd714
commit 4c980657ec
12 changed files with 3239 additions and 3139 deletions

6185
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,29 +1,29 @@
{ {
"name": "BreakOften", "name": "breakoften",
"version": "0.0.1", "version": "0.0.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",
"build": "vite build", "build": "vite build",
"preview": "vite preview", "preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
}, },
"devDependencies": { "devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0", "@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0", "@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0", "@sveltejs/vite-plugin-svelte": "^3.0.0",
"autoprefixer": "^10.4.19", "autoprefixer": "^10.4.19",
"postcss": "^8.4.38", "postcss": "^8.4.38",
"svelte": "^4.2.7", "prettier": "^3.2.5",
"svelte-check": "^3.6.0", "prettier-plugin-svelte": "^3.2.3",
"tailwindcss": "^3.4.3", "svelte": "^4.2.7",
"tslib": "^2.4.1", "svelte-check": "^3.6.0",
"typescript": "^5.0.0", "tailwindcss": "^3.4.3",
"vite": "^5.0.3" "tslib": "^2.4.1",
}, "tw-colors": "^3.3.1",
"type": "module", "typescript": "^5.0.0",
"dependencies": { "vite": "^5.0.3"
"svelte-sound": "^0.6.0" },
} "type": "module"
} }

View File

@ -3,4 +3,4 @@ export default {
tailwindcss: {}, tailwindcss: {},
autoprefixer: {}, autoprefixer: {},
}, },
} };

View File

@ -1,3 +1,3 @@
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;

14
src/app.d.ts vendored
View File

@ -1,13 +1,13 @@
// See https://kit.svelte.dev/docs/types#app // See https://kit.svelte.dev/docs/types#app
// for information about these interfaces // for information about these interfaces
declare global { declare global {
namespace App { namespace App {
// interface Error {} // interface Error {}
// interface Locals {} // interface Locals {}
// interface PageData {} // interface PageData {}
// interface PageState {} // interface PageState {}
// interface Platform {} // interface Platform {}
} }
} }
export {}; export {};

View File

@ -1,12 +1,12 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" /> <link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head% %sveltekit.head%
</head> </head>
<body data-sveltekit-preload-data="hover"> <body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div> <div style="display: contents">%sveltekit.body%</div>
</body> </body>
</html> </html>

View File

@ -14,8 +14,6 @@
import { onDestroy, onMount } from "svelte"; import { onDestroy, onMount } from "svelte";
import { writable } from "svelte/store"; import { writable } from "svelte/store";
import type { Writable } from "svelte/store"; import type { Writable } from "svelte/store";
import { Sound } from "svelte-sound";
import click_mp4 from "../../assets/Bells.mp3";
const MINI_BREAK_DURATION = 0.15 * 60 * 1000; // 1 minutes const MINI_BREAK_DURATION = 0.15 * 60 * 1000; // 1 minutes
// const MINI_BREAK_DURATION = 20 * 60 * 1000; // 20 minutes // const MINI_BREAK_DURATION = 20 * 60 * 1000; // 20 minutes
@ -26,9 +24,15 @@
let timer: number | null = null; let timer: number | null = null;
let miniBreakCount = 0; let miniBreakCount = 0;
const click_sound = new Sound(click_mp4); let audio: HTMLAudioElement | null = null;
const playSound = () => { const playSound = () => {
// click_sound.play(); if (audio) {
// audio.pause();
audio.src = "/sounds/Bells.mp3";
audio.volume = 0.4;
// audio.play();
}
}; };
const showNotification = (title: string, options: NotificationOptions) => { const showNotification = (title: string, options: NotificationOptions) => {
@ -89,11 +93,13 @@
}; };
onMount(() => { onMount(() => {
audio = document.createElement('audio');
startTimer(); startTimer();
}); });
onDestroy(() => { onDestroy(() => {
if (timer) clearInterval(timer); if (timer) clearInterval(timer);
if (audio) audio = null;
}); });
const skipBreak = () => { const skipBreak = () => {

View File

@ -1,18 +1,18 @@
import adapter from '@sveltejs/adapter-auto'; import adapter from "@sveltejs/adapter-auto";
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
/** @type {import('@sveltejs/kit').Config} */ /** @type {import('@sveltejs/kit').Config} */
const config = { const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors // Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors // for more information about preprocessors
preprocess: vitePreprocess(), preprocess: vitePreprocess(),
kit: { kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter. // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters. // See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter() adapter: adapter(),
} },
}; };
export default config; export default config;

View File

@ -1,9 +1,24 @@
import colors from "tailwindcss/colors"
import { createThemes } from "tw-colors"
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
content: ['./src/**/*.{html,js,svelte,ts}'], content: ["./src/**/*.{html,js,svelte,ts}"],
theme: { theme: {
extend: {}, extend: {},
}, },
plugins: [], plugins: [
} createThemes({
light: {
background: colors.slate[50],
foreground: colors.slate[950],
primary: colors.yellow[600],
},
dark: {
background: colors.slate[950],
foreground: colors.slate[50],
primary: colors.pink[600],
},
}),
],
};

View File

@ -1,19 +1,19 @@
{ {
"extends": "./.svelte-kit/tsconfig.json", "extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": { "compilerOptions": {
"allowJs": true, "allowJs": true,
"checkJs": true, "checkJs": true,
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"resolveJsonModule": true, "resolveJsonModule": true,
"skipLibCheck": true, "skipLibCheck": true,
"sourceMap": true, "sourceMap": true,
"strict": true, "strict": true,
"moduleResolution": "bundler" "moduleResolution": "bundler"
} }
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
// except $lib which is handled by https://kit.svelte.dev/docs/configuration#files // except $lib which is handled by https://kit.svelte.dev/docs/configuration#files
// //
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in // from the referenced tsconfig.json - TypeScript does not merge them in
} }

View File

@ -1,6 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite'; import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from 'vite'; import { defineConfig } from "vite";
export default defineConfig({ export default defineConfig({
plugins: [sveltekit()] plugins: [sveltekit()],
}); });