Skip to content

Commit

Permalink
Cleanup UI code
Browse files Browse the repository at this point in the history
  • Loading branch information
loic-sharma committed Jul 23, 2018
1 parent 39b09f9 commit 1466885
Show file tree
Hide file tree
Showing 6 changed files with 4,502 additions and 4,471 deletions.
6 changes: 3 additions & 3 deletions .prettierrc → src/BaGet.UI/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"printWidth": 100,
"trailingComma": "es5"
{
"printWidth": 100,
"trailingComma": "es5"
}
4 changes: 2 additions & 2 deletions package.json → src/BaGet.UI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"author": "Loic Sharma",
"repository": "github:loic-sharma/BaGet",
"scripts": {
"develop": "parcel ./src/BaGet.UI/index.html",
"build": "parcel build ./src/BaGet.UI/index.html --out-dir src/BaGet/wwwroot"
"develop": "parcel ./index.html",
"build": "parcel build ./index.html --out-dir ../BaGet/wwwroot"
},
"dependencies": {
"bootstrap": "3.3.7",
Expand Down
31 changes: 31 additions & 0 deletions src/BaGet.UI/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# BaGet Frontend

## Developing

1. Start the BaGet backend:

```
cd src/BaGet
dotnet run
```

2. Launch the BaGet frontend:

```
cd src/BaGet.UI
yarn install
yarn develop
```

TODO: backend URLs in "develop" mode are broken. You will need to update `components/SearchResults.tsx`
and `components/DisplayPackage.tsx` to point to your NuGet backend.

## Building

1. Delete `src/BaGet/wwwroot`
2. Rebuild the frontend:

```
cd src/BaGet.UI
yarn build
```
14 changes: 7 additions & 7 deletions tsconfig.json → src/BaGet.UI/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true,
"jsx": "react"
}
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true,
"jsx": "react"
}
}
196 changes: 98 additions & 98 deletions tslint.json → src/BaGet.UI/tslint.json
Original file line number Diff line number Diff line change
@@ -1,99 +1,99 @@
{
"extends": ["tslint-react"],
"rules": {
"align": [
true,
"parameters",
"arguments",
"statements"
],
"ban": false,
"class-name": true,
"comment-format": [
true,
"check-space"
],
"curly": true,
"eofline": false,
"forin": true,
"indent": [ true, "spaces" ],
"interface-name": [true, "never-prefix"],
"jsdoc-format": true,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"label-position": true,
"max-line-length": [ true, 120 ],
"member-ordering": [
true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-any": true,
"no-arg": true,
"no-bitwise": true,
"no-console": [
true,
"log",
"error",
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-consecutive-blank-lines": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-shadowed-variable": true,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": false,
"no-unused-expression": true,
"no-use-before-declare": true,
"one-line": [
true,
"check-catch",
"check-else",
"check-open-brace",
"check-whitespace"
],
"quotemark": [true, "single", "jsx-double"],
"radix": true,
"semicolon": [true, "always"],
"switch-default": true,

"trailing-comma": [false],

"triple-equals": [ true, "allow-null-check" ],
"typedef": [
true,
"parameter",
"property-declaration"
],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-separator",
"check-type",
"check-typecast"
]
}
{
"extends": ["tslint-react"],
"rules": {
"align": [
true,
"parameters",
"arguments",
"statements"
],
"ban": false,
"class-name": true,
"comment-format": [
true,
"check-space"
],
"curly": true,
"eofline": false,
"forin": true,
"indent": [ true, "spaces" ],
"interface-name": [true, "never-prefix"],
"jsdoc-format": true,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"label-position": true,
"max-line-length": [ true, 120 ],
"member-ordering": [
true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"no-any": true,
"no-arg": true,
"no-bitwise": true,
"no-console": [
true,
"log",
"error",
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-consecutive-blank-lines": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-shadowed-variable": true,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": false,
"no-unused-expression": true,
"no-use-before-declare": true,
"one-line": [
true,
"check-catch",
"check-else",
"check-open-brace",
"check-whitespace"
],
"quotemark": [true, "single", "jsx-double"],
"radix": true,
"semicolon": [true, "always"],
"switch-default": true,

"trailing-comma": [false],

"triple-equals": [ true, "allow-null-check" ],
"typedef": [
true,
"parameter",
"property-declaration"
],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-separator",
"check-type",
"check-typecast"
]
}
}
Loading

0 comments on commit 1466885

Please sign in to comment.