-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
(feat): initial implementation of close to system tray, organization …
…of frontend structure
1 parent
b5e2c12
commit fa96292
Showing
28 changed files
with
101 additions
and
812 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"module": "NodeNext", | ||
"esModuleInterop": false, | ||
"moduleResolution": "NodeNext", | ||
"target": "ES2017", | ||
"lib": ["dom", "ES5"], | ||
"allowSyntheticDefaultImports": true | ||
}, | ||
"exclude": ["node_modules"], | ||
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "preload.cts"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
149 changes: 0 additions & 149 deletions
149
renderer/app/(controller)/controller/present/[project]/controlScreen.module.css
This file was deleted.
Oops, something went wrong.
66 changes: 0 additions & 66 deletions
66
renderer/app/(controller)/controller/present/[project]/controlScreen.tsx
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
renderer/app/(controller)/controller/present/[project]/page.tsx
This file was deleted.
Oops, something went wrong.
47 changes: 0 additions & 47 deletions
47
renderer/app/(controller)/controller/present/[project]/selectScreen.module.css
This file was deleted.
Oops, something went wrong.
152 changes: 0 additions & 152 deletions
152
renderer/app/(controller)/controller/present/[project]/selectScreen.tsx
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
renderer/app/(controller)/controller/setup/[project]/Form.tsx
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
renderer/app/(controller)/controller/setup/[project]/page.tsx
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
renderer/app/(controller)/controller/setup/[project]/projectSetup.module.css
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#homePage { | ||
--homePage-background: var(--gray-900); | ||
--homePage-color: var(--white); | ||
|
||
background: var(--homePage-background); | ||
color: var(--homePage-color); | ||
height: 100%; | ||
width: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-start; | ||
justify-content: flex-start; | ||
padding: 1rem; | ||
overflow: hidden; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
'use client'; | ||
import { ReactElement } from 'react'; | ||
import styles from './home.module.css'; | ||
import Link from 'next/link'; | ||
|
||
export default function Page(): ReactElement { | ||
return ( | ||
<div id={styles.homePage}> | ||
<Link href='/login'>DEBUG</Link> | ||
</div> | ||
); | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import Link from 'next/link'; | ||
import React from 'react'; | ||
|
||
export default function Login(): React.ReactElement { | ||
return <div> | ||
<Link href='/home'>DEBUG</Link> | ||
</div>; | ||
} |
2 changes: 1 addition & 1 deletion
2
...erer/app/(controller)/closeAppHandler.tsx → renderer/app/closeAppHandler.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { redirect } from 'next/navigation.js'; | ||
import React from 'react'; | ||
|
||
export default function notFound(): void { | ||
// redirect to home page | ||
redirect('/home'); | ||
export default function notFound(): React.ReactElement { | ||
return (<div> | ||
<h1>404</h1> | ||
</div>); | ||
} |