Första commit
This commit is contained in:
commit
f1a8177f8b
21
calculator/.gitignore
vendored
Normal file
21
calculator/.gitignore
vendored
Normal file
@ -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-*
|
1
calculator/.npmrc
Normal file
1
calculator/.npmrc
Normal file
@ -0,0 +1 @@
|
||||
engine-strict=true
|
4
calculator/.prettierignore
Normal file
4
calculator/.prettierignore
Normal file
@ -0,0 +1,4 @@
|
||||
# Package Managers
|
||||
package-lock.json
|
||||
pnpm-lock.yaml
|
||||
yarn.lock
|
8
calculator/.prettierrc
Normal file
8
calculator/.prettierrc
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"useTabs": true,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none",
|
||||
"printWidth": 100,
|
||||
"plugins": ["prettier-plugin-svelte"],
|
||||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
|
||||
}
|
38
calculator/Calculator.svelte
Normal file
38
calculator/Calculator.svelte
Normal file
@ -0,0 +1,38 @@
|
||||
<script>
|
||||
import CalculatorDisplay from './CalculatorDisplay.svelte';
|
||||
import CalculatorKeyboard from './CalculatorKeyboard.svelte';
|
||||
|
||||
let currentInput = '';
|
||||
let result = '0';
|
||||
|
||||
function handleKeyPress(key) {
|
||||
if (key === 'C') {
|
||||
currentInput = '';
|
||||
result = '0';
|
||||
} else if (key === '=') {
|
||||
try {
|
||||
result = eval(currentInput);
|
||||
} catch {
|
||||
result = 'Error';
|
||||
}
|
||||
} else {
|
||||
currentInput += key;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<main>
|
||||
<CalculatorDisplay displayValue={currentInput || result} />
|
||||
<CalculatorKeyboard onKeyPress={handleKeyPress} />
|
||||
</main>
|
||||
|
||||
<style lang="scss">
|
||||
main {
|
||||
max-width: 400px;
|
||||
margin: 0 auto;
|
||||
background-color: #f5f5f5;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
</style>
|
19
calculator/CalculatorDisplay.svelte
Normal file
19
calculator/CalculatorDisplay.svelte
Normal file
@ -0,0 +1,19 @@
|
||||
<script>
|
||||
export let displayValue = "0"; // Default-värde för displayen
|
||||
</script>
|
||||
|
||||
<div class="display">
|
||||
<p>{displayValue}</p>
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
.display {
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
padding: 20px;
|
||||
font-size: 2rem;
|
||||
text-align: right;
|
||||
border-radius: 5px;
|
||||
box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
</style>
|
35
calculator/CalculatorKeyboard.svelte
Normal file
35
calculator/CalculatorKeyboard.svelte
Normal file
@ -0,0 +1,35 @@
|
||||
<script>
|
||||
export let onKeyPress; // Funktion för att hantera knapptryckningar
|
||||
</script>
|
||||
|
||||
<div class="keyboard">
|
||||
{#each ['7', '8', '9', '/', '4', '5', '6', '*', '1', '2', '3', '-', '0', 'C', '=', '+'] as key}
|
||||
<button on:click={() => onKeyPress(key)}>
|
||||
{key}
|
||||
</button>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
.keyboard {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 10px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: #4A90E2;
|
||||
color: white;
|
||||
font-size: 1.5rem;
|
||||
padding: 20px;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #357ABD;
|
||||
}
|
||||
</style>
|
38
calculator/README.md
Normal file
38
calculator/README.md
Normal 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.
|
5
calculator/__layout.svelte
Normal file
5
calculator/__layout.svelte
Normal file
@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import 'styles/global.scss';
|
||||
</script>
|
||||
|
||||
<slot />
|
23
calculator/eslint.config.js
Normal file
23
calculator/eslint.config.js
Normal file
@ -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/']
|
||||
}
|
||||
];
|
19
calculator/jsconfig.json
Normal file
19
calculator/jsconfig.json
Normal 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
|
||||
}
|
33
calculator/package.json
Normal file
33
calculator/package.json
Normal file
@ -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"
|
||||
}
|
13
calculator/src/app.d.ts
vendored
Normal file
13
calculator/src/app.d.ts
vendored
Normal 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
calculator/src/app.html
Normal file
12
calculator/src/app.html
Normal 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>
|
7
calculator/src/index.test.js
Normal file
7
calculator/src/index.test.js
Normal file
@ -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);
|
||||
});
|
||||
});
|
1
calculator/src/lib/index.js
Normal file
1
calculator/src/lib/index.js
Normal file
@ -0,0 +1 @@
|
||||
// place files you want to import through the `$lib` alias in this folder.
|
2
calculator/src/routes/+page.svelte
Normal file
2
calculator/src/routes/+page.svelte
Normal file
@ -0,0 +1,2 @@
|
||||
<h1>Welcome to SvelteKit</h1>
|
||||
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
|
BIN
calculator/static/favicon.png
Normal file
BIN
calculator/static/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
8
calculator/styles/global.scss
Normal file
8
calculator/styles/global.scss
Normal file
@ -0,0 +1,8 @@
|
||||
$primary-color: #4A90E2;
|
||||
$secondary-color: #333;
|
||||
|
||||
body {
|
||||
font-family: 'Arial', sans-serif;
|
||||
background-color: #f0f0f0;
|
||||
color: $secondary-color;
|
||||
}
|
13
calculator/svelte.config.js
Normal file
13
calculator/svelte.config.js
Normal file
@ -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;
|
0
calculator/tsconfig.json
Normal file
0
calculator/tsconfig.json
Normal file
9
calculator/vite.config.js
Normal file
9
calculator/vite.config.js
Normal file
@ -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}']
|
||||
}
|
||||
});
|
Loading…
Reference in New Issue
Block a user