From f1a8177f8be54daac5e223bac2cc04af2c9a1272 Mon Sep 17 00:00:00 2001 From: Amir Date: Mon, 21 Oct 2024 20:16:54 +0200 Subject: [PATCH] =?UTF-8?q?F=C3=B6rsta=20commit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- calculator/.gitignore | 21 +++++++++++++++ calculator/.npmrc | 1 + calculator/.prettierignore | 4 +++ calculator/.prettierrc | 8 ++++++ calculator/Calculator.svelte | 38 +++++++++++++++++++++++++++ calculator/CalculatorDisplay.svelte | 19 ++++++++++++++ calculator/CalculatorKeyboard.svelte | 35 ++++++++++++++++++++++++ calculator/README.md | 38 +++++++++++++++++++++++++++ calculator/__layout.svelte | 5 ++++ calculator/eslint.config.js | 23 ++++++++++++++++ calculator/jsconfig.json | 19 ++++++++++++++ calculator/package.json | 33 +++++++++++++++++++++++ calculator/src/app.d.ts | 13 +++++++++ calculator/src/app.html | 12 +++++++++ calculator/src/index.test.js | 7 +++++ calculator/src/lib/index.js | 1 + calculator/src/routes/+page.svelte | 2 ++ calculator/static/favicon.png | Bin 0 -> 1571 bytes calculator/styles/global.scss | 8 ++++++ calculator/svelte.config.js | 13 +++++++++ calculator/tsconfig.json | 0 calculator/vite.config.js | 9 +++++++ 22 files changed, 309 insertions(+) create mode 100644 calculator/.gitignore create mode 100644 calculator/.npmrc create mode 100644 calculator/.prettierignore create mode 100644 calculator/.prettierrc create mode 100644 calculator/Calculator.svelte create mode 100644 calculator/CalculatorDisplay.svelte create mode 100644 calculator/CalculatorKeyboard.svelte create mode 100644 calculator/README.md create mode 100644 calculator/__layout.svelte create mode 100644 calculator/eslint.config.js create mode 100644 calculator/jsconfig.json create mode 100644 calculator/package.json create mode 100644 calculator/src/app.d.ts create mode 100644 calculator/src/app.html create mode 100644 calculator/src/index.test.js create mode 100644 calculator/src/lib/index.js create mode 100644 calculator/src/routes/+page.svelte create mode 100644 calculator/static/favicon.png create mode 100644 calculator/styles/global.scss create mode 100644 calculator/svelte.config.js create mode 100644 calculator/tsconfig.json create mode 100644 calculator/vite.config.js diff --git a/calculator/.gitignore b/calculator/.gitignore new file mode 100644 index 0000000..79518f7 --- /dev/null +++ b/calculator/.gitignore @@ -0,0 +1,21 @@ +node_modules + +# Output +.output +.vercel +/.svelte-kit +/build + +# OS +.DS_Store +Thumbs.db + +# Env +.env +.env.* +!.env.example +!.env.test + +# Vite +vite.config.js.timestamp-* +vite.config.ts.timestamp-* diff --git a/calculator/.npmrc b/calculator/.npmrc new file mode 100644 index 0000000..b6f27f1 --- /dev/null +++ b/calculator/.npmrc @@ -0,0 +1 @@ +engine-strict=true diff --git a/calculator/.prettierignore b/calculator/.prettierignore new file mode 100644 index 0000000..ab78a95 --- /dev/null +++ b/calculator/.prettierignore @@ -0,0 +1,4 @@ +# Package Managers +package-lock.json +pnpm-lock.yaml +yarn.lock diff --git a/calculator/.prettierrc b/calculator/.prettierrc new file mode 100644 index 0000000..9573023 --- /dev/null +++ b/calculator/.prettierrc @@ -0,0 +1,8 @@ +{ + "useTabs": true, + "singleQuote": true, + "trailingComma": "none", + "printWidth": 100, + "plugins": ["prettier-plugin-svelte"], + "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] +} diff --git a/calculator/Calculator.svelte b/calculator/Calculator.svelte new file mode 100644 index 0000000..4a5a557 --- /dev/null +++ b/calculator/Calculator.svelte @@ -0,0 +1,38 @@ + + +
+ + +
+ + \ No newline at end of file diff --git a/calculator/CalculatorDisplay.svelte b/calculator/CalculatorDisplay.svelte new file mode 100644 index 0000000..7227b89 --- /dev/null +++ b/calculator/CalculatorDisplay.svelte @@ -0,0 +1,19 @@ + + +
+

{displayValue}

+
+ + \ No newline at end of file diff --git a/calculator/CalculatorKeyboard.svelte b/calculator/CalculatorKeyboard.svelte new file mode 100644 index 0000000..5f40be9 --- /dev/null +++ b/calculator/CalculatorKeyboard.svelte @@ -0,0 +1,35 @@ + + +
+ {#each ['7', '8', '9', '/', '4', '5', '6', '*', '1', '2', '3', '-', '0', 'C', '=', '+'] as key} + + {/each} +
+ + \ No newline at end of file diff --git a/calculator/README.md b/calculator/README.md new file mode 100644 index 0000000..5ce6766 --- /dev/null +++ b/calculator/README.md @@ -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. diff --git a/calculator/__layout.svelte b/calculator/__layout.svelte new file mode 100644 index 0000000..2492a15 --- /dev/null +++ b/calculator/__layout.svelte @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/calculator/eslint.config.js b/calculator/eslint.config.js new file mode 100644 index 0000000..2eeebcc --- /dev/null +++ b/calculator/eslint.config.js @@ -0,0 +1,23 @@ +import js from '@eslint/js'; +import svelte from 'eslint-plugin-svelte'; +import prettier from 'eslint-config-prettier'; +import globals from 'globals'; + +/** @type {import('eslint').Linter.Config[]} */ +export default [ + js.configs.recommended, + ...svelte.configs['flat/recommended'], + prettier, + ...svelte.configs['flat/prettier'], + { + languageOptions: { + globals: { + ...globals.browser, + ...globals.node + } + } + }, + { + ignores: ['build/', '.svelte-kit/', 'dist/'] + } +]; diff --git a/calculator/jsconfig.json b/calculator/jsconfig.json new file mode 100644 index 0000000..fc93cbd --- /dev/null +++ b/calculator/jsconfig.json @@ -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 +} diff --git a/calculator/package.json b/calculator/package.json new file mode 100644 index 0000000..9d3f962 --- /dev/null +++ b/calculator/package.json @@ -0,0 +1,33 @@ +{ + "name": "calculator", + "version": "0.0.1", + "private": true, + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch", + "test": "vitest", + "lint": "prettier --check . && eslint .", + "format": "prettier --write ." + }, + "devDependencies": { + "@sveltejs/adapter-auto": "^3.0.0", + "@sveltejs/kit": "^2.0.0", + "@sveltejs/vite-plugin-svelte": "^3.0.0", + "@types/eslint": "^9.6.0", + "eslint": "^9.0.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-svelte": "^2.36.0", + "globals": "^15.0.0", + "prettier": "^3.1.1", + "prettier-plugin-svelte": "^3.1.2", + "svelte": "^4.2.7", + "svelte-check": "^4.0.0", + "typescript": "^5.0.0", + "vite": "^5.0.3", + "vitest": "^2.0.0" + }, + "type": "module" +} diff --git a/calculator/src/app.d.ts b/calculator/src/app.d.ts new file mode 100644 index 0000000..743f07b --- /dev/null +++ b/calculator/src/app.d.ts @@ -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 {}; diff --git a/calculator/src/app.html b/calculator/src/app.html new file mode 100644 index 0000000..77a5ff5 --- /dev/null +++ b/calculator/src/app.html @@ -0,0 +1,12 @@ + + + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/calculator/src/index.test.js b/calculator/src/index.test.js new file mode 100644 index 0000000..e07cbbd --- /dev/null +++ b/calculator/src/index.test.js @@ -0,0 +1,7 @@ +import { describe, it, expect } from 'vitest'; + +describe('sum test', () => { + it('adds 1 + 2 to equal 3', () => { + expect(1 + 2).toBe(3); + }); +}); diff --git a/calculator/src/lib/index.js b/calculator/src/lib/index.js new file mode 100644 index 0000000..856f2b6 --- /dev/null +++ b/calculator/src/lib/index.js @@ -0,0 +1 @@ +// place files you want to import through the `$lib` alias in this folder. diff --git a/calculator/src/routes/+page.svelte b/calculator/src/routes/+page.svelte new file mode 100644 index 0000000..5982b0a --- /dev/null +++ b/calculator/src/routes/+page.svelte @@ -0,0 +1,2 @@ +

Welcome to SvelteKit

+

Visit kit.svelte.dev to read the documentation

diff --git a/calculator/static/favicon.png b/calculator/static/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..825b9e65af7c104cfb07089bb28659393b4f2097 GIT binary patch literal 1571 zcmV+;2Hg3HP)Px)-AP12RCwC$UE6KzI1p6{F2N z1VK2vi|pOpn{~#djwYcWXTI_im_u^TJgMZ4JMOsSj!0ma>B?-(Hr@X&W@|R-$}W@Z zgj#$x=!~7LGqHW?IO8+*oE1MyDp!G=L0#^lUx?;!fXv@l^6SvTnf^ac{5OurzC#ZMYc20lI%HhX816AYVs1T3heS1*WaWH z%;x>)-J}YB5#CLzU@GBR6sXYrD>Vw(Fmt#|JP;+}<#6b63Ike{Fuo!?M{yEffez;| zp!PfsuaC)>h>-AdbnwN13g*1LowNjT5?+lFVd#9$!8Z9HA|$*6dQ8EHLu}U|obW6f z2%uGv?vr=KNq7YYa2Roj;|zooo<)lf=&2yxM@e`kM$CmCR#x>gI>I|*Ubr({5Y^rb zghxQU22N}F51}^yfDSt786oMTc!W&V;d?76)9KXX1 z+6Okem(d}YXmmOiZq$!IPk5t8nnS{%?+vDFz3BevmFNgpIod~R{>@#@5x9zJKEHLHv!gHeK~n)Ld!M8DB|Kfe%~123&Hz1Z(86nU7*G5chmyDe ziV7$pB7pJ=96hpxHv9rCR29%bLOXlKU<_13_M8x)6;P8E1Kz6G<&P?$P^%c!M5`2` zfY2zg;VK5~^>TJGQzc+33-n~gKt{{of8GzUkWmU110IgI0DLxRIM>0US|TsM=L|@F z0Bun8U!cRB7-2apz=y-7*UxOxz@Z0)@QM)9wSGki1AZ38ceG7Q72z5`i;i=J`ILzL z@iUO?SBBG-0cQuo+an4TsLy-g-x;8P4UVwk|D8{W@U1Zi z!M)+jqy@nQ$p?5tsHp-6J304Q={v-B>66$P0IDx&YT(`IcZ~bZfmn11#rXd7<5s}y zBi9eim&zQc0Dk|2>$bs0PnLmDfMP5lcXRY&cvJ=zKxI^f0%-d$tD!`LBf9^jMSYUA zI8U?CWdY@}cRq6{5~y+)#h1!*-HcGW@+gZ4B};0OnC~`xQOyH19z*TA!!BJ%9s0V3F?CAJ{hTd#*tf+ur-W9MOURF-@B77_-OshsY}6 zOXRY=5%C^*26z?l)1=$bz30!so5tfABdSYzO+H=CpV~aaUefmjvfZ3Ttu9W&W3Iu6 zROlh0MFA5h;my}8lB0tAV-Rvc2Zs_CCSJnx@d`**$idgy-iMob4dJWWw|21b4NB=LfsYp0Aeh{Ov)yztQi;eL4y5 zMi>8^SzKqk8~k?UiQK^^-5d8c%bV?$F8%X~czyiaKCI2=UH