-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(project setup): setp linting and git hooks [starts #171427560] * chore(project setup): setp linting and git hooks [starts #171427560] * chore(project setup): update readme file * chore(project setup): setup app folder structure (#3) [finishes #171426236] * chore(project setup): setup application routing (#4) [finishes #171426234] * Build the landing page (#8) * chore(landing page): create the navbar (#5) [starts #171425807] * chore(landing page): build the hero section (#6) [starts #171425807] * chore(landing page): build the books section (#7) [starts #171425807] * feature(landing page): build out the landing page [delivers #171425807] * feature(about page): build out the about us page (#9) [delivers #171425831] * feature(about page): build out the store page (#10) [delivers #171425827] * feature(login page): build out the login-page (#11) [delivers #171426003] * feature(login page): implement user login logic (#12) [delivers #171426003] * feature(login page): redirect to user profile page on successful login (#13) [delivers #171426003] * feature(login page): users can signup (#14) [delivers #171425864] * feature(users management): admin users can view the admin dashboard (#15) [delivers #171514291] * feature(users management): admin users can view all users [delivers #171425964] * feature(users management): admin users can update user accounts (#17) [finishes #171427782] * feature(users management): admin users can delete users (#18) [accepts #171427786] * feature(users management): admin users can export users to csv (#19) [delivers #171426057] * feature(users management): admin users can view all products (#20) [delivers #171426061] * feature(users management): admin users can edit products (#21) [delivers #171426109] [delivers #171426088] * feature(users management): admin users can delete a product (#22) [delivers #171426066] * feature(products management): admin users can add a new product (#23) [delivers #171426190] * feature(orders management): admin users can view all orders (#24) [delivers #171426127] * feature(orders management): admin users can view edit an order (#25) [delivers #171426185] * feature(orders management): admin users can delete an order (#26) [delivers #171426199] * feature(store): fetch products from redux (#27) * feature(dashboard): implement multilingual support (#28) [delivers #171425840] * feature(dashboard): implement pagination support for all the application (#29) [delivers #171552899] * feature(dashboard): implement filters on all records (#30) [delivers #171556925] * feature(dashboard): implement mobile responsiveness (#31) [delivers #171564589] * feature(codebase): clean ups, change the component name (#32) * feature(routes): handle the 500 error page (#33) [delivers #171483863] * feature(readme): update the readme.md file (#34) [delivers #171597620]
- Loading branch information
1 parent
bb87792
commit 9c8ea97
Showing
108 changed files
with
6,146 additions
and
155 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
rules: { | ||
'body-leading-blank': [1, 'always'], | ||
'footer-leading-blank': [1, 'always'], | ||
'header-max-length': [2, 'always', 72], | ||
'subject-case': [ | ||
2, | ||
'never', | ||
['sentence-case', 'start-case'] | ||
], | ||
'subject-empty': [2, 'never'], | ||
'subject-full-stop': [2, 'never', '.'], | ||
'type-case': [2, 'always', 'lower-case'], | ||
'type-empty': [2, 'never'], | ||
'type-enum': [ | ||
2, | ||
'always', | ||
[ 'chore', 'feature', 'bug' ] | ||
] | ||
} | ||
}; |
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,5 @@ | ||
{ | ||
"printWidth": 100, | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
} |
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,27 @@ | ||
#### What does this PR do? | ||
|
||
N/A | ||
|
||
#### Description of Task to be completed? | ||
|
||
N/A | ||
|
||
#### How should this be manually tested? | ||
|
||
N/A | ||
|
||
#### Any background context you want to provide? | ||
|
||
N/A | ||
|
||
#### What are the relevant PT stories? | ||
|
||
[#171425807](https://www.pivotaltracker.com/story/show/171425807) | ||
|
||
#### Screenshots (if appropriate) | ||
|
||
N/A | ||
|
||
#### Questions (If appropriate): | ||
|
||
N/A |
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
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 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 |
---|---|---|
@@ -1,26 +1,27 @@ | ||
import React from 'react'; | ||
import logo from './logo.svg'; | ||
import './App.css'; | ||
|
||
function App() { | ||
return ( | ||
<div className="App"> | ||
<header className="App-header"> | ||
<img src={logo} className="App-logo" alt="logo" /> | ||
<p> | ||
Edit <code>src/App.tsx</code> and save to reload. | ||
</p> | ||
<a | ||
className="App-link" | ||
href="https://reactjs.org" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
Learn React | ||
</a> | ||
</header> | ||
</div> | ||
); | ||
} | ||
|
||
export default App; | ||
import React, { Suspense } from 'react'; | ||
import { Route, Switch } from 'react-router-dom'; | ||
import { toast } from 'react-toastify'; | ||
|
||
import 'react-toastify/dist/ReactToastify.css'; | ||
|
||
import Homepage from './pages/Homepage'; | ||
import LoginPage from './pages/Login'; | ||
import RegisterPage from './pages/Register'; | ||
|
||
|
||
toast.configure({ | ||
autoClose: 3000, | ||
draggable: false, | ||
}); | ||
|
||
const App = () => ( | ||
<Suspense fallback={<div>Loading....</div>}> | ||
<Switch> | ||
<Route exact path="/login" component={LoginPage} /> | ||
<Route exact path="/register" component={RegisterPage} /> | ||
<Route path="/" component={Homepage} /> | ||
</Switch> | ||
</Suspense> | ||
); | ||
|
||
export default App; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.