Skip to content

Commit

Permalink
Merge pull request #1 from vividroyjeong/feature/initial
Browse files Browse the repository at this point in the history
frontend initial commit
  • Loading branch information
vividroyjeong authored Aug 30, 2024
2 parents fc7729a + 1088480 commit 2fdf0d1
Show file tree
Hide file tree
Showing 60 changed files with 6,529 additions and 0 deletions.
18 changes: 18 additions & 0 deletions vdyp-web-ui/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2

[Makefile]
indent_style = tab

[*.md]
indent_size = 4
7 changes: 7 additions & 0 deletions vdyp-web-ui/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.husky/
.vscode/
.yarn/
coverage/
dist/
public/assets/
tsconfig.*.json
13 changes: 13 additions & 0 deletions vdyp-web-ui/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/eslint-config-typescript', '@vue/eslint-config-prettier/skip-formatting'],
parserOptions: {
ecmaVersion: 'latest',
},
rules: {
'spaced-comment': ['error', 'always', { markers: ['/'] }],
},
}
33 changes: 33 additions & 0 deletions vdyp-web-ui/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

*.tsbuildinfo

# env
.env
22 changes: 22 additions & 0 deletions vdyp-web-ui/.prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# .prettierrc.yml

# Use single quotes instead of double quotes
singleQuote: true

# Use 2 spaces for indentation
tabWidth: 2

# Use spaces instead of tabs
useTabs: false

# Add a trailing comma to the last item in an object or array
trailingComma: 'all'

# Print semicolons at the ends of statements
semi: false

# Wrap prose-like comments as-is
proseWrap: 'always'

# Format files with Unix-style line endings
endOfLine: 'lf'
1 change: 1 addition & 0 deletions vdyp-web-ui/env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="vite/client" />
22 changes: 22 additions & 0 deletions vdyp-web-ui/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!doctype html>
<html lang="en" style="overflow: auto">
<head>
<title>VDYP - Variable Density Yield Projection</title>
<meta name="description" content="VDYP UI v1.0" />
<meta name="author" content="Vivid Solutions Inc." />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css" />
</head>
<body>
<noscript>
<strong>We're sorry but VDYP doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
17 changes: 17 additions & 0 deletions vdyp-web-ui/mdi-icons.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
1. mdi-dots-horizontal or mdi-dots-horizontal-circle
2. mdi-dots-vertical or mdi-dots-vertical-circle
3. mdi-star
4. mdi-star-outline
5. mdi-help-circle-outline
6. mdi-pause
7. mdi-play
8. mdi-close
9. mdi-magnify
10. mdi-comment-multiple-outline or mdi-forum or mdi-wechat
11. mdi-filter
12. mdi-comment-outline
13. mdi-comment-check-outline
14. mdi-printer
15. mdi-download
16. mdi-delete
17. mdi-calendar or mdi-calendar-range
Loading

0 comments on commit 2fdf0d1

Please sign in to comment.