Add initial files

This commit is contained in:
Santiago Lo Coco 2024-04-23 14:44:27 +02:00
commit b98e23ac1f
19 changed files with 3458 additions and 0 deletions

30
.gitignore vendored Normal file
View File

@ -0,0 +1,30 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
# Additional files and folders to ignore
/.idea
/.vscode
*.log
*.temp
*.tmp
# Ignore specific environment files except the example
.env.local
.env.development
.env.production
# Ignore build artifacts
/dist
/public/build
# Ignore TypeScript compiled files
*.tsbuildinfo
# Svelte and Tailwind specific ignores
/src/lib/generated
/tailwind.css
*.svelte-kit

1
.npmrc Normal file
View File

@ -0,0 +1 @@
engine-strict=true

38
README.md Normal file
View File

@ -0,0 +1,38 @@
# create-svelte
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npm create svelte@latest
# create a new project in my-app
npm create svelte@latest my-app
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.

3055
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

29
package.json Normal file
View File

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

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

3
src/app.css Normal file
View File

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

13
src/app.d.ts vendored Normal file
View File

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

12
src/app.html Normal file
View File

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

BIN
src/assets/Bells.mp3 Normal file

Binary file not shown.

1
src/lib/index.ts Normal file
View File

@ -0,0 +1 @@
// place files you want to import through the `$lib` alias in this folder.

View File

@ -0,0 +1,5 @@
<script>
import "../app.css";
</script>
<slot />

48
src/routes/+page.svelte Normal file
View File

@ -0,0 +1,48 @@
<script context="module">
export async function load() {
const res = await fetch("https://api.example.com/data");
const data = await res.json();
return {
props: {
data,
},
};
}
</script>
<script>
export let data;
import { goto } from "$app/navigation";
import { writable } from "svelte/store";
const startApp = () => {
goto("/timer");
};
const theme = writable("dark");
</script>
<main>
<h1>Welcome to the Prevent Computer Vision Syndrome App</h1>
<button on:click={startApp}>Start Timer</button>
</main>
<style lang="postcss">
main {
text-align: center;
margin: 100px auto;
color: var(--text-color);
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
button {
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
}
</style>

View File

@ -0,0 +1,165 @@
<script context="module">
export async function load() {
const res = await fetch("https://api.example.com/data");
const data = await res.json();
return {
props: {
data,
},
};
}
</script>
<script lang="ts">
import { onDestroy, onMount } from "svelte";
import { 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 = 20 * 60 * 1000; // 20 minutes
const MINI_BREAK_INTERVAL = 5 * 1000; // 20 seconds
// const LONG_BREAK_DURATION = 5 * 60 * 1000; // 5 minutes
const LONG_BREAK_DURATION = 0.3 * 60 * 1000; // 2 minutes
let timer: number | null = null;
let miniBreakCount = 0;
const click_sound = new Sound(click_mp4);
const playSound = () => {
// click_sound.play();
};
const showNotification = (title: string, options: NotificationOptions) => {
if (Notification.permission === 'granted') {
// new Notification(title, options);
} else if (Notification.permission !== 'denied') {
Notification.requestPermission().then(permission => {
if (permission === 'granted') {
// new Notification(title, options);
}
});
}
};
const state: Writable<string> = writable("Ready");
const timeLeftDisplay: Writable<string> = writable("");
const timeLeft: Writable<number> = writable(MINI_BREAK_DURATION);
const startTimer = () => {
if (timer) clearInterval(timer);
timer = setInterval(() => {
timeLeft.update((currentTimeLeft) => {
const newTimeLeft = currentTimeLeft - 1000;
if (newTimeLeft <= 0) {
if ($state !== "Ready") {
state.set("Ready");
miniBreakCount++;
timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION));
showNotification('Ready', { body: 'Continue working!' });
playSound(); // Adjust volume as needed
return MINI_BREAK_DURATION;
}
if (miniBreakCount === 3) {
state.set("Long Break");
miniBreakCount = 0;
timeLeftDisplay.set(formatTime(LONG_BREAK_DURATION));
showNotification('Long Break', { body: 'Take a 5-minute break now!' });
playSound(); // Adjust volume as needed
return LONG_BREAK_DURATION;
} else {
state.set("Mini Break");
// miniBreakCount++;
timeLeftDisplay.set(formatTime(MINI_BREAK_INTERVAL));
showNotification('Mini Break', { body: 'Take a 20-second break now!' });
playSound(); // Adjust volume as needed
return MINI_BREAK_INTERVAL;
}
}
timeLeftDisplay.set(formatTime(newTimeLeft));
return newTimeLeft;
});
}, 1000);
};
onMount(() => {
startTimer();
});
onDestroy(() => {
if (timer) clearInterval(timer);
});
const skipBreak = () => {
// if (timer) clearInterval(timer);
if ($state === "Ready") {
return;
}
state.set("Ready");
timeLeft.set(MINI_BREAK_DURATION);
timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION));
// startTimer();
};
const postponeBreak = () => {
// if (timer) clearInterval(timer);
state.set("Ready");
// setTimeout(startTimer, 2 * MINI_BREAK_INTERVAL); // Postpone for 2 mini-break intervals
timeLeft.set(MINI_BREAK_DURATION); // Corrected line
timeLeftDisplay.set(formatTime(MINI_BREAK_DURATION)); // Use MINI_BREAK_INTERVAL directly
};
function formatTime(milliseconds: number) {
const totalSeconds = Math.floor(milliseconds / 1000);
const minutes = Math.floor(totalSeconds / 60);
const seconds = totalSeconds % 60;
console.log(
`${String(minutes).padStart(2, "0")}:${String(seconds).padStart(2, "0")}`,
);
return `${String(minutes).padStart(2, "0")}:${String(seconds).padStart(2, "0")}`;
}
</script>
<main class="min-h-screen flex items-center justify-center bg-gray-100">
<div class="max-w-md p-6 bg-white rounded-md shadow-md">
<h1 class="text-3xl mb-4 font-bold text-center">Prevent Computer Vision Syndrome</h1>
<p>{$state}</p>
{#if $state !== "Ready"}
<p>Time left until Ready: {$timeLeftDisplay}</p>
{:else}
<p>Time left until break: {$timeLeftDisplay}</p>
{/if}
{#if $state !== "Ready"}
<button class="px-4 py-2 bg-blue-500 text-white rounded-md shadow-md hover:bg-blue-600 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2" on:click={skipBreak}>Skip Break</button>
{/if}
</div>
</main>
<!--
<style>
main {
text-align: center;
margin: 100px auto;
color: var(--text-color);
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
p {
font-size: 1.5rem;
margin-bottom: 20px;
}
button {
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
margin: 10px;
}
</style> -->

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

18
svelte.config.js Normal file
View File

@ -0,0 +1,18 @@
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
// 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.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter()
}
};
export default config;

9
tailwind.config.js Normal file
View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {},
},
plugins: [],
}

19
tsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "bundler"
}
// 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
//
// 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
}

6
vite.config.ts Normal file
View File

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