commit f1a8177f8be54daac5e223bac2cc04af2c9a1272 Author: Amir Date: Mon Oct 21 20:16:54 2024 +0200 Första commit 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 0000000..825b9e6 Binary files /dev/null and b/calculator/static/favicon.png differ diff --git a/calculator/styles/global.scss b/calculator/styles/global.scss new file mode 100644 index 0000000..39485fb --- /dev/null +++ b/calculator/styles/global.scss @@ -0,0 +1,8 @@ +$primary-color: #4A90E2; +$secondary-color: #333; + +body { + font-family: 'Arial', sans-serif; + background-color: #f0f0f0; + color: $secondary-color; +} \ No newline at end of file diff --git a/calculator/svelte.config.js b/calculator/svelte.config.js new file mode 100644 index 0000000..2ca5922 --- /dev/null +++ b/calculator/svelte.config.js @@ -0,0 +1,13 @@ +import adapter from '@sveltejs/adapter-auto'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + 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; diff --git a/calculator/tsconfig.json b/calculator/tsconfig.json new file mode 100644 index 0000000..e69de29 diff --git a/calculator/vite.config.js b/calculator/vite.config.js new file mode 100644 index 0000000..37b6a84 --- /dev/null +++ b/calculator/vite.config.js @@ -0,0 +1,9 @@ +import { sveltekit } from '@sveltejs/kit/vite'; +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + plugins: [sveltekit()], + test: { + include: ['src/**/*.{test,spec}.{js,ts}'] + } +});