Skip to content

Commit 9d9f560

Browse files
committed
preliminary frontend
1 parent 87b5aeb commit 9d9f560

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+5703
-41
lines changed

.gitignore

+1-38
Original file line numberDiff line numberDiff line change
@@ -1,38 +1 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# virtual environment
4-
venv
5-
6-
# dependencies
7-
/node_modules
8-
/.pnp
9-
.pnp.js
10-
11-
# testing
12-
/coverage
13-
14-
# next.js
15-
.next
16-
out
17-
18-
# production
19-
/build
20-
21-
# misc
22-
.DS_Store
23-
*.pem
24-
Thumbs.db
25-
26-
# debug
27-
npm-debug.log*
28-
yarn-debug.log*
29-
yarn-error.log*
30-
31-
# dotenv local files
32-
.env*.local
33-
34-
# local folder
35-
local
36-
37-
# vercel
38-
.vercel
1+
venv

front

-1
This file was deleted.

front/.babelrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": [
3+
[
4+
"next/babel",
5+
{
6+
"styled-jsx": {
7+
"plugins": ["styled-jsx-plugin-postcss"]
8+
}
9+
}
10+
]
11+
]
12+
}

front/.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
out

front/.eslintrc

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
// Configuration for JavaScript files
3+
"extends": [
4+
"airbnb-base",
5+
"next/core-web-vitals",
6+
"plugin:prettier/recommended"
7+
],
8+
"rules": {
9+
"prettier/prettier": [
10+
"error",
11+
{
12+
"singleQuote": true
13+
}
14+
]
15+
},
16+
"overrides": [
17+
// Configuration for TypeScript files
18+
{
19+
"files": ["**/*.ts", "**/*.tsx"],
20+
"plugins": ["@typescript-eslint", "unused-imports"],
21+
"extends": [
22+
"airbnb-typescript",
23+
"next/core-web-vitals",
24+
"plugin:prettier/recommended"
25+
],
26+
"parserOptions": {
27+
"project": "./tsconfig.json"
28+
},
29+
"rules": {
30+
"prettier/prettier": [
31+
"error",
32+
{
33+
"singleQuote": true
34+
}
35+
],
36+
"react/destructuring-assignment": "off", // Vscode doesn't support automatically destructuring, it's a pain to add a new variable
37+
"jsx-a11y/anchor-is-valid": "off", // Next.js use his own internal link system
38+
"react/require-default-props": "off", // Allow non-defined react props as undefined
39+
"react/jsx-props-no-spreading": "off", // _app.tsx uses spread operator and also, react-hook-form
40+
"@next/next/no-img-element": "off", // We currently not using next/image because it isn't supported with SSG mode
41+
"import/order": [
42+
"error",
43+
{
44+
"groups": ["builtin", "external", "internal"],
45+
"pathGroups": [
46+
{
47+
"pattern": "react",
48+
"group": "external",
49+
"position": "before"
50+
}
51+
],
52+
"pathGroupsExcludedImportTypes": ["react"],
53+
"newlines-between": "always",
54+
"alphabetize": {
55+
"order": "asc",
56+
"caseInsensitive": true
57+
}
58+
}
59+
],
60+
"@typescript-eslint/comma-dangle": "off", // Avoid conflict rule between Eslint and Prettier
61+
"import/prefer-default-export": "off", // Named export is easier to refactor automatically
62+
"class-methods-use-this": "off", // _document.tsx use render method without `this` keyword
63+
"@typescript-eslint/no-unused-vars": "off",
64+
"unused-imports/no-unused-imports": "error",
65+
"unused-imports/no-unused-vars": [
66+
"error",
67+
{ "argsIgnorePattern": "^_" }
68+
]
69+
}
70+
}
71+
]
72+
}

front/.gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
.next
13+
out
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
Thumbs.db
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# dotenv local files
29+
.env*.local
30+
31+
# local folder
32+
local
33+
34+
# vercel
35+
.vercel

front/.husky/pre-commit

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
# Disable concurent to run build-types after ESLint in lint-staged
5+
npx lint-staged --concurrent false

front/.vscode/extensions.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"recommendations": [
3+
"dbaeumer.vscode-eslint",
4+
"esbenp.prettier-vscode",
5+
"mikestead.dotenv",
6+
"csstools.postcss",
7+
"blanu.vscode-styled-jsx",
8+
"msjsdiag.debugger-for-chrome",
9+
"bradlc.vscode-tailwindcss"
10+
]
11+
}

front/.vscode/launch.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "chrome",
9+
"request": "launch",
10+
"name": "Next: Chrome",
11+
"url": "http://localhost:3000",
12+
"webRoot": "${workspaceFolder}"
13+
},
14+
{
15+
"type": "node",
16+
"request": "launch",
17+
"name": "Next: Node",
18+
"program": "${workspaceFolder}/node_modules/.bin/next",
19+
"args": ["dev"],
20+
"autoAttachChildProcesses": true,
21+
"skipFiles": ["<node_internals>/**"],
22+
"console": "integratedTerminal"
23+
}
24+
],
25+
"compounds": [
26+
{
27+
"name": "Next: Full",
28+
"configurations": ["Next: Node", "Next: Chrome"]
29+
}
30+
]
31+
}

front/.vscode/settings.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"editor.tabSize": 2,
3+
"editor.detectIndentation": false,
4+
"jest.autoRun": {
5+
"watch": false,
6+
"onSave": "test-file"
7+
},
8+
"search.exclude": {
9+
"package-lock.json": true
10+
},
11+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
12+
"editor.formatOnSave": false,
13+
"editor.codeActionsOnSave": [
14+
"source.addMissingImports",
15+
"source.fixAll.eslint"
16+
],
17+
// Multiple language settings for json and jsonc files
18+
"[json][jsonc]": {
19+
"editor.formatOnSave": true,
20+
"editor.defaultFormatter": "esbenp.prettier-vscode"
21+
}
22+
}

front/.vscode/tasks.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "Project wide type checking with TypeScript",
8+
"type": "npm",
9+
"script": "build-types",
10+
"problemMatcher": ["$tsc"],
11+
"group": {
12+
"kind": "build",
13+
"isDefault": true
14+
},
15+
"presentation": {
16+
"clear": true,
17+
"reveal": "never"
18+
}
19+
}
20+
]
21+
}

front/DEV_NOTES.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This frontend is based off of a barebones theme from creative gurus. They are referenced on the bottom of the page.

front/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Rem W.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)