This repository has been archived by the owner on Jan 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Delete package-lock.json Signed-off-by: dib6596 <[email protected]> * fix: add install.md (#5) Signed-off-by: dib6596 <[email protected]> * sidebar ui added Signed-off-by: dib6596 <[email protected]> * router support Signed-off-by: dib6596 <[email protected]> * Add Settings Route and fix CSS Layout issues Signed-off-by: dib6596 <[email protected]> * Convert app to Typescript Signed-off-by: dib6596 <[email protected]> * dev header and notifs Signed-off-by: dib6596 <[email protected]> * notifications with animations Signed-off-by: dib6596 <[email protected]> * Update main.js Signed-off-by: dib6596 <[email protected]> * Do not ignore package-lock.json package-lock.json ensures everyone has same version of all modules and also makes npm install faster. See https://stackoverflow.com/a/44210813 Signed-off-by: dib6596 <[email protected]> * Update electron to 7.0 for better macOS Catalina compatibility Electron 7.0 reacts properly to macOS "Auto" theme change Signed-off-by: dib6596 <[email protected]> * Eslint integration with airbnb extension (#12) * Eslint integration with airbnb extension Signed-off-by: ganeshpatro321 <[email protected]> * Reverted back to statefull components * Removed duplicates Signed-off-by: dib6596 <[email protected]> * Update README.md Signed-off-by: dib6596 <[email protected]> * added rules for eslint, fixed files (#17) Signed-off-by: Harkishen-Singh <[email protected]> Signed-off-by: dib6596 <[email protected]> * Add Screenshot of Application Signed-off-by: dib6596 <[email protected]> * Add Settings Route and fix CSS Layout issues Signed-off-by: dib6596 <[email protected]> * Convert app to Typescript Signed-off-by: dib6596 <[email protected]> * dev header and notifs Signed-off-by: dib6596 <[email protected]> * Added travis and fixed eslint (#20) * Initial commit from Create React App * setting up * removed files * added header * updated start scripts * pull * pull * implemented travux * merge * added eslint for travis (#2) * Update README.md * added rules for eslint, fixed files (#17) Signed-off-by: Harkishen-Singh <[email protected]> * added eslint in travis * minor UI changes * fix * fix travis * fix travi Signed-off-by: dib6596 <[email protected]> * notifications with animations Signed-off-by: dib6596 <[email protected]> * Update main.js Signed-off-by: dib6596 <[email protected]> * Do not ignore package-lock.json package-lock.json ensures everyone has same version of all modules and also makes npm install faster. See https://stackoverflow.com/a/44210813 Signed-off-by: dib6596 <[email protected]> * Eslint integration with airbnb extension (#12) * Eslint integration with airbnb extension Signed-off-by: ganeshpatro321 <[email protected]> * Reverted back to statefull components * Removed duplicates Signed-off-by: dib6596 <[email protected]> * Update README.md Signed-off-by: dib6596 <[email protected]> * added rules for eslint, fixed files (#17) Signed-off-by: Harkishen-Singh <[email protected]> Signed-off-by: dib6596 <[email protected]> * Remove global access and fix style conflicts Signed-off-by: dib6596 <[email protected]> * Finish fixing merge conflicts Signed-off-by: dib6596 <[email protected]> * Remove local env directories Signed-off-by: dib6596 <[email protected]> * Remove redundant js/tsx files from migration Signed-off-by: dib6596 <[email protected]> * Fix eslint errors Signed-off-by: dib6596 <[email protected]> * Attempt to sign off past commits and fix merge conflicts Signed-off-by: dib6596 <[email protected]> * Stashing for merge into remote master * Add Settings in eslintrc to resolve extension conflicts Signed-off-by: dib6596 <[email protected]> * Update margin in homepage and remove screenshots Signed-off-by: ganeshpatro321 <[email protected]> * Add settings icon and fized layout of setting button Signed-off-by: ganeshpatro321 <[email protected]>
- Loading branch information
1 parent
7ba5595
commit 507a1d7
Showing
24 changed files
with
365 additions
and
278 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,64 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"extends": ["airbnb"], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"extends": [ | ||
"airbnb" | ||
], | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": 2018, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react", | ||
"@typescript-eslint" | ||
], | ||
"rules": { | ||
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | ||
"react/prefer-stateless-function": [0, { "ignorePureComponents": false }], | ||
"indent": [ | ||
"error", | ||
2 | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"quotes": [ | ||
"error", | ||
"single" | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
], | ||
"no-console": ["error", { "allow": ["error"] }], | ||
"no-dupe-args": "error", | ||
"no-dupe-keys": "error", | ||
"no-empty": "error", | ||
"no-extra-semi": "error", | ||
"no-func-assign": "error", | ||
"no-irregular-whitespace": "error", | ||
"no-sparse-arrays": "error", | ||
"no-unexpected-multiline": "error", | ||
"no-unreachable": "error", | ||
"class-methods-use-this": "error", | ||
"curly": "error", | ||
"eqeqeq": "error", | ||
"no-invalid-this": "error", | ||
"keyword-spacing": "error", | ||
"space-before-blocks": "error" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"**/*.spec.js", | ||
"**/*.spec.jsx", | ||
"**/*.test.js", | ||
"**/*.test.jsx" | ||
], | ||
"env": { | ||
"jest": true | ||
} | ||
} | ||
] | ||
} | ||
"ecmaVersion": 2018, | ||
"sourceType": "module" | ||
}, | ||
"settings": { | ||
"import/resolver": { | ||
"node": { | ||
"extensions": [".js", ".jsx", ".ts", ".tsx"] | ||
} | ||
} | ||
}, | ||
"plugins": ["react", "@typescript-eslint"], | ||
"rules": { | ||
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | ||
"react/prefer-stateless-function": [0, { "ignorePureComponents": false }], | ||
"indent": ["error", 2], | ||
"linebreak-style": ["error", "unix"], | ||
"quotes": ["error", "single"], | ||
"semi": ["error", "always"], | ||
"no-console": ["error", { "allow": ["error"] }], | ||
"no-dupe-args": "error", | ||
"no-dupe-keys": "error", | ||
"no-empty": "error", | ||
"no-extra-semi": "error", | ||
"no-func-assign": "error", | ||
"no-irregular-whitespace": "error", | ||
"no-sparse-arrays": "error", | ||
"no-unexpected-multiline": "error", | ||
"no-unreachable": "error", | ||
"class-methods-use-this": "error", | ||
"curly": "error", | ||
"eqeqeq": "error", | ||
"no-invalid-this": "error", | ||
"keyword-spacing": "error", | ||
"space-before-blocks": "error" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"**/*.spec.js", | ||
"**/*.spec.jsx", | ||
"**/*.test.js", | ||
"**/*.test.jsx" | ||
], | ||
"env": { | ||
"jest": true | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
npm-debug.log* | ||
node_modules/ | ||
.node_repl_history | ||
build/ | ||
build/ |
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,16 +1,17 @@ | ||
# bench-routes-electron | ||
|
||
[![DeepScan grade](https://deepscan.io/api/teams/5815/projects/7644/branches/80653/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=5815&pid=7644&bid=80653) | ||
|
||
Daemon service for [bench-routes](https://github.com/zairza-cetb/bench-routes). | ||
|
||
## Making Commits in bench-routes | ||
Bench Routes uses DCO(Developer Certificate Origin) to certify that the contributor wrote the partcular code or otherwise have the right to submit the code they are contributing to the project.For complete details on DCO <a href="https://probot.github.io/apps/dco/" target="_blank">Click Here</a>. | ||
|
||
Bench Routes uses DCO(Developer Certificate Origin) to certify that the contributor wrote the partcular code or otherwise have the right to submit the code they are contributing to the project.For complete details on DCO <a href="https://probot.github.io/apps/dco/" target="_blank">Click Here</a>. | ||
|
||
Follow the below `commit` syntax to cerify the code and pass the DCO test. | ||
|
||
``` | ||
git commit -s -m <commit-message> | ||
``` | ||
|
||
For installation instructions, please head-over to [INSTALL.md](INSTALL.md). | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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
File renamed without changes.
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,7 @@ | ||
import React from "react"; | ||
|
||
export default class Dashboard extends React.Component<{}> { | ||
render() { | ||
return <div>This is a Dashboard</div>; | ||
} | ||
} |
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,11 +1,35 @@ | ||
import React from 'react'; | ||
/* eslint-disable jsx-a11y/no-noninteractive-element-interactions */ | ||
import React, { useState } from 'react'; | ||
import Notification from '../notification/Notification'; | ||
|
||
export default class Header extends React.Component { | ||
render() { | ||
return ( | ||
export default function Header() { | ||
const [showNotification, setShowNotification] = useState(false); | ||
|
||
const updateShowNotificationsScreen = () => { | ||
setShowNotification(!showNotification); | ||
}; | ||
|
||
return ( | ||
<> | ||
<Notification | ||
showNotification={showNotification} | ||
updateShowNotificationsScreen={updateShowNotificationsScreen} | ||
/> | ||
<header> | ||
<div className="logo-name">Bench-routes</div> | ||
<div className="notification-icon"> | ||
<img | ||
src="assets/icons/notify-icon.svg" | ||
alt="notification" | ||
onClick={() => updateShowNotificationsScreen()} | ||
onKeyDown={(e) => { | ||
if (e.keyCode === 13) { | ||
updateShowNotificationsScreen(); | ||
} | ||
}} | ||
/> | ||
</div> | ||
</header> | ||
); | ||
} | ||
</> | ||
); | ||
} |
Oops, something went wrong.