första commit

This commit is contained in:
Amir 2024-10-22 00:01:18 +02:00
parent f1a8177f8b
commit d1339ba3c5
24 changed files with 4194 additions and 0 deletions

21
.gitignore vendored Normal file
View 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
.npmrc Normal file
View File

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

4
.prettierignore Normal file
View File

@ -0,0 +1,4 @@
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock

8
.prettierrc Normal file
View File

@ -0,0 +1,8 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}

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.

57
Readme.md Normal file
View File

@ -0,0 +1,57 @@
# Miniräknarprojekt
Detta projekt är en front-end miniräknarapplikation byggd med SvelteKit och SCSS. Den utvecklades ursprungligen i Webbutveckling 1 och har omvandlats till ett SvelteKit-projekt för uppgiften i Front-End-ramverk och SCSS.
## Funktioner
- **Komponentbaserad Struktur**: Miniräknaren är uppdelad i separata komponenter för bättre organisation och underhåll.
- **SvelteKit-specifik JavaScript**: Utnyttjar SvelteKits kapacitet för att förbättra prestanda och effektivitet.
- **SCSS-stilskrivning**: Alla stilar är skrivna i SCSS för modularitet och flexibilitet.
- **Versionskontroll**: Hanterad med Git och hostad på [Gitea/GitHub](#).
## Kom igång
### Förutsättningar
- Node.js
- npm eller yarn
### Installation
1. Klona repositoryt:
```bash
git clone [repository_url]
cd miniraknare-projekt
```
2. Installera beroenden:
```bash
npm install
```
### Utveckling
1. Starta utvecklingsservern:
```bash
npm run dev
```
2. Öppna din webbläsare och navigera till `http://localhost:3000`.
### Projektstruktur
```plaintext
src/
├── routes/
│ └── index.svelte
├── components/
│ ├── Display.svelte
│ ├── Keypad.svelte
│ └── App.svelte
├── styles/
│ └── global.scss
└── App.svelte

23
eslint.config.js Normal file
View 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
jsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"extends": "/home/amir/Skrivbord/Webburveckling 2/Miniprojekt_1/calculator/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
}

3693
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

37
package.json Normal file
View File

@ -0,0 +1,37 @@
{
"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",
"sass": "^1.80.3",
"svelte": "^4.2.7",
"svelte-check": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.3",
"vitest": "^2.0.0"
},
"type": "module",
"dependencies": {
"mathjs": "^13.2.0"
}
}

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>

18
src/app.svelte Normal file
View File

@ -0,0 +1,18 @@
<script>
import Display from './components/Display.svelte';
import Keypad from './components/Keypad.svelte';
let displayValue = '0';
function handleButtonClick(value) {
// Update displayValue based on the button clicked
}
</script>
<Display {displayValue} />
<Keypad onButtonClick={handleButtonClick} />
<style>
/* SCSS styles here */
</style>

7
src/index.test.js Normal file
View 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);
});
});

51
src/lib/Calculator.svelte Normal file
View File

@ -0,0 +1,51 @@
<script>
import Display from './Display.svelte';
import Keyboard from './Keyboard.svelte';
let expression = '';
let result = '';
let variables = { x: null, y: null, z: null };
function addToExpression(value) {
// Hantera variabler
if (['x', 'y', 'z'].includes(value)) {
expression += value;
} else {
expression += value;
}
result = ''; // Återställ resultat vid ny inmatning
}
function calculate() {
try {
// Ersätt variabler i uttrycket med deras värden
const evaluatedExpression = expression
.replace(/x/g, variables.x)
.replace(/y/g, variables.y)
.replace(/z/g, variables.z);
// Utvärdera uttrycket
result = eval(evaluatedExpression);
expression = result; // Sätt expression till resultatet
} catch (error) {
result = 'Error';
}
}
function clear() {
expression = '';
result = '';
}
function setVariable(varName) {
const value = prompt(`Ange värdet för ${varName}:`);
if (value !== null) {
variables[varName] = parseFloat(value);
expression = ''; // Återställ uttrycket
}
}
</script>
<Display {result} {expression} />
<Keyboard {addToExpression} {calculate} {clear} {setVariable} />

29
src/lib/Display.svelte Normal file
View File

@ -0,0 +1,29 @@
<script>
export let result; // Binder till resultatet från föräldrakomponenten
// Beräkna teckenstorleken baserat på längden av resultatet
function calculateFontSize() {
if (result.length < 10) {
return '3rem'; // Större storlek för korta uttryck
} else if (result.length < 20) {
return '2.5rem'; // Medium storlek för mellanlånga uttryck
} else {
return '2rem'; // Mindre storlek för långa uttryck
}
}
</script>
<div class="display" style="font-size: {calculateFontSize()};">
{result}
</div>
<style>
.display {
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 10px;
overflow-x: auto; /* För att undvika overflow av text */
white-space: nowrap; /* Förhindra att text bryts */
}
</style>

90
src/lib/Keyboard.svelte Normal file
View File

@ -0,0 +1,90 @@
<script>
export let result; // Binder till result i förälderkomponenten
export let updateResult; // Funktion för att uppdatera resultatet i förälderkomponenten
// Justera knapparna enligt önskad layout
const buttons = [
'+', '-', '*', '/', // Vänster kolumn
'C', '(', ')', '^', // Andra kolumn
'1', '2', '3', // Tredje kolumn
'4', '5', '6', // Fjärde kolumn
'7', '8', '9', // Femte kolumn
'0', '.', '=', // Höger kolumn
];
let lastResult = ''; // Variabel för att lagra det senaste resultatet
let operation = ''; // Variabel för att lagra den senaste operationen
let isResultDisplayed = false; // Flagga för att hålla reda på om ett resultat visas
function handleClick(button) {
if (button === 'C') {
updateResult(''); // Rensa displayen
lastResult = ''; // Återställ senaste resultatet
operation = ''; // Återställ operationen
isResultDisplayed = false; // Återställ flagga
} else if (button === '=') {
try {
// Utvärdera uttrycket
const evaluatedResult = eval(result.replace('^', '**')); // Byt ut '^' mot '**' för att beräkna potenser
updateResult(evaluatedResult.toString()); // Anropa updateResult för att uppdatera displayen
lastResult = evaluatedResult.toString(); // Spara det senaste resultatet
operation = ''; // Återställ operationen
isResultDisplayed = true; // Sätt flagga för att resultatet visas
} catch (e) {
updateResult('Error'); // Hantera eventuella fel
lastResult = ''; // Återställ senaste resultatet
operation = ''; // Återställ operationen
isResultDisplayed = false; // Återställ flagga
}
} else if (['+', '-', '*', '/'].includes(button)) {
if (lastResult) {
// Om ett resultat finns, använd det
if (isResultDisplayed) {
// Om resultatet visas, lägg till det i operationen
updateResult(`${lastResult} ${button} `);
operation = button; // Spara den aktuella operationen
isResultDisplayed = false; // Återställ flagga för att förbereda nästa nummer
} else {
// Om inget resultat visas, bara lägg till operatorn
updateResult(result + ` ${button} `);
}
} else {
// Om inget resultat, bara lägg till operatorn
updateResult(result + ` ${button} `);
}
} else {
// Hantera inmatning av nummer och komma
if (isResultDisplayed) {
// Om ett resultat visas, ta bort det när ett nummer trycks
updateResult(button); // Starta om med det nya numret
isResultDisplayed = false; // Återställ flagga
} else if (result === 'Error') {
// Om det finns ett fel, ta bort felmeddelandet och börja med det nya numret
updateResult(button); // Starta om med det nya numret
isResultDisplayed = false; // Återställ flagga
} else {
updateResult(result + button); // Lägg till knappen till resultatet
}
}
}
</script>
<div class="keyboard">
{#each buttons as button}
<button on:click={() => handleClick(button)}>{button}</button>
{/each}
</div>
<style>
.keyboard {
display: grid;
grid-template-columns: repeat(4, 1fr); /* Fyra kolumner */
gap: 10px;
margin-top: 10px; /* Justera avståndet mellan tangentbord och display */
}
button {
padding: 20px;
font-size: 24px;
}
</style>

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

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

10
src/main.js Normal file
View File

@ -0,0 +1,10 @@
// src/main.js eller src/main.ts
import '/home/amir/Skrivbord/Webburveckling 2/Miniprojekt_1/calculator/src/styles/global.scss'; // Kontrollera att sökvägen är korrekt
import { start } from '@sveltejs/kit';
import App from './App.svelte';
const app = new App({
target: document.body,
});
export default app;

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

@ -0,0 +1,27 @@
<script>
import Display from '$lib/Display.svelte';
import Keyboard from '$lib/Keyboard.svelte';
let result = ''; // Håller reda på resultatet som visas i displayen
// Funktion för att hantera uppdatering av resultatet
function updateResult(value) {
result = value;
}
</script>
<main>
<Display {result} />
<Keyboard {result} updateResult={updateResult} />
</main>
<style>
main {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
</style>

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

13
svelte.config.js Normal file
View 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;

15
tsconfig.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "dom"],
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"extends": "./.svelte-kit/tsconfig.json"
}

7
vite.config.js Normal file
View File

@ -0,0 +1,7 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [sveltekit()],
// Kontrollera om det finns några inställningar som kan blockera SCSS
});