Skip to content

Commit 198651a

Browse files
authored
Merge pull request #4 from unity-sds/develop
Initial UI Impelmentation (v0.1.0)
2 parents 70e22b3 + 5c9a3d6 commit 198651a

32 files changed

+6953
-6
lines changed

.eslintrc.cjs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
env: { browser: true, es2020: true },
3+
extends: [
4+
'eslint:recommended',
5+
'plugin:@typescript-eslint/recommended',
6+
'plugin:react-hooks/recommended',
7+
],
8+
parser: '@typescript-eslint/parser',
9+
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
10+
plugins: ['react-refresh'],
11+
rules: {
12+
'react-refresh/only-export-components': 'warn',
13+
},
14+
}

.gitignore

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
##================================================================================================
2+
##================================================================================================
3+
## Repo Ignore Settings
4+
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
pnpm-debug.log*
12+
lerna-debug.log*
13+
14+
node_modules
15+
dist
16+
dist-ssr
17+
*.local
18+
19+
# Editor directories and files
20+
.idea
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw?
26+
27+
###################################################################################
28+
###################################################################################
29+
## Windows Ignore Settings
30+
## Reference: https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
31+
32+
# Windows thumbnail cache files
33+
Thumbs.db
34+
Thumbs.db:encryptable
35+
ehthumbs.db
36+
ehthumbs_vista.db
37+
38+
# Dump file
39+
*.stackdump
40+
41+
# Folder config file
42+
[Dd]esktop.ini
43+
44+
# Recycle Bin used on file shares
45+
$RECYCLE.BIN/
46+
47+
# Windows Installer files
48+
*.cab
49+
*.msi
50+
*.msix
51+
*.msm
52+
*.msp
53+
54+
# Windows shortcuts
55+
*.lnk
56+
57+
###################################################################################
58+
###################################################################################
59+
## macOS Ignore Settings
60+
## Reference: https://github.com/github/gitignore/blob/main/Global/macOS.gitignore
61+
62+
# General
63+
.DS_Store
64+
.AppleDouble
65+
.LSOverride
66+
67+
# Icon must end with two \r
68+
Icon
69+
70+
71+
# Thumbnails
72+
._*
73+
74+
# Files that might appear in the root of a volume
75+
.DocumentRevisions-V100
76+
.fseventsd
77+
.Spotlight-V100
78+
.TemporaryItems
79+
.Trashes
80+
.VolumeIcon.icns
81+
.com.apple.timemachine.donotpresent
82+
83+
# Directories potentially created on remote AFP share
84+
.AppleDB
85+
.AppleDesktop
86+
Network Trash Folder
87+
Temporary Items
88+
.apdisk
89+
90+
###################################################################################
91+
###################################################################################
92+
## Visual Studio Code Ignore Settings
93+
## Reference: https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
94+
95+
.vscode/*
96+
!.vscode/settings.json
97+
!.vscode/tasks.json
98+
!.vscode/launch.json
99+
!.vscode/extensions.json
100+
!.vscode/*.code-snippets
101+
102+
# Local History for Visual Studio Code
103+
.history/
104+
105+
# Built Visual Studio Code Extensions
106+
*.vsix
107+
108+
# Code Workspace Files
109+
*.code-workspace

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18.16.0

CHANGELOG.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [X.Y.Z] - 2022-MM-DD
8+
## [0.1.0] - 2023-06-28
99

1010
### Added
1111

12-
-
13-
-
14-
-
12+
- Creation of React app project using Vite. Routing was also integrated
13+
- Integration of Authentication via Cognito
14+
- Integration of React Stellar Navbar component [#73](https://github.com/unity-sds/unity-project-management/issues/73)
15+
- Developed Jobs Monitoring Dashboard — currently loads static data - [#1](https://github.com/unity-sds/unity-jobs-ui/issues/1), [#4],(https://github.com/unity-sds/unity-jobs-ui/issues/4)[#12], (https://github.com/unity-sds/unity-jobs-ui/issues/12)
16+
- Jobs Detail view [#72](https://github.com/unity-sds/unity-jobs-ui/issues/18)
17+
- Integration of generic web view for loading third-party user interfaces

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
![logo](https://user-images.githubusercontent.com/3129134/163255685-857aa780-880f-4c09-b08c-4b53bf4af54d.png)
77

8-
<h1 align="center">[INSERT YOUR REPO / PROJ NAME HERE]</h1>
8+
<h1 align="center">Unity UI</h1>
99
<!-- ☝️ Replace with your repo name ☝️ -->
1010

1111
</div>
1212

13-
<pre align="center">[INSERT A SINGLE SENTENCE DESCRIBING THE PURPOSE OF YOUR REPO / PROJ]</pre>
13+
<pre align="center">Web application to access Unity Services</pre>
1414
<!-- ☝️ Replace with a single sentence describing the purpose of your repo / proj ☝️ -->
1515

1616
<!-- Header block for project -->

index.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/unity.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Unity</title>
8+
<script>window.global = window;</script>
9+
<script type="module">
10+
import process from 'process';
11+
import { Buffer } from 'buffer';
12+
import EventEmitter from "events";
13+
14+
window.Buffer = Buffer;
15+
window.process = process;
16+
window.EventEmitter = EventEmitter;
17+
</script>
18+
<script type="module">
19+
import "/src/styles/variables.scss";
20+
</script>
21+
22+
</head>
23+
<body>
24+
<div id="root"></div>
25+
<script>window.global = window;</script>
26+
<script type="module" src="/src/main.tsx"></script>
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)