Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redux #30

Open
wants to merge 42 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
d0329b8
base structure
ergydev Jul 31, 2023
6d7ee7d
created pages
ergydev Jul 31, 2023
edc1b9e
added pages and css
ergydev Jul 31, 2023
c175cd7
created layout components
ergydev Jul 31, 2023
d819b3e
structures changes
ergydev Jul 31, 2023
2c6c9a5
added navigation
ergydev Jul 31, 2023
439ea28
added links
ergydev Jul 31, 2023
3a14e10
added icons
ergydev Jul 31, 2023
8c41750
added Banner
ergydev Jul 31, 2023
49f0e8a
added features
ergydev Jul 31, 2023
4c8b3a9
created form component
ergydev Jul 31, 2023
0bd9322
added form
ergydev Jul 31, 2023
6489baa
fix bugs
ergydev Jul 31, 2023
f60bf09
added components
ergydev Jul 31, 2023
23dc190
added cursor pointer
ergydev Jul 31, 2023
fed7b80
fixed database access
ergydev Aug 2, 2023
3c1aa33
created URL const
ergydev Aug 2, 2023
211aa40
login state
ergydev Aug 2, 2023
5a12a62
handle connexion
ergydev Aug 2, 2023
6b3e24d
authentification handleling
ergydev Aug 4, 2023
aaea669
added login auth
ergydev Aug 4, 2023
403d299
Merge pull request #1 from ergydev/context_method
ergydev Aug 4, 2023
a12c6ba
fixed cors issues
ergydev Aug 7, 2023
96506c8
fetch user data
ergydev Aug 10, 2023
a07e81b
edit form component
ergydev Aug 10, 2023
d11941f
updating name enabled
ergydev Aug 10, 2023
c3fdbd9
updating name on profile
ergydev Aug 10, 2023
3514d9f
added refreshing name after edit
ergydev Aug 10, 2023
ab243fe
Merge pull request #2 from ergydev/updateUser
ergydev Aug 10, 2023
e3f3c00
Login & logout enable
ergydev Aug 10, 2023
d8c2170
fix display user datas
ergydev Aug 16, 2023
7f02036
fixed app bug
ergydev Aug 17, 2023
08af32f
fixed login/logout
ergydev Aug 17, 2023
03ffe95
clean code
ergydev Aug 17, 2023
08e261d
fix code
ergydev Aug 17, 2023
5d6413c
fixed refresh name on editing
ergydev Aug 17, 2023
fb3647f
cleaning code
ergydev Aug 25, 2023
b142f37
transactions API modelisations
ergydev Aug 25, 2023
29b7134
cleaned code
ergydev Aug 30, 2023
2dad30f
edit modelization
ergydev Aug 30, 2023
99ee857
fixed header
ergydev Sep 5, 2023
0460e15
fixed remember me form
ergydev Sep 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions argent-bank-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
70 changes: 70 additions & 0 deletions argent-bank-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.

The page will reload when you make changes.\
You may also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can't go back!**

If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.

You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)

### Analyzing the Bundle Size

This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)

### Making a Progressive Web App

This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)

### Advanced Configuration

This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)

### Deployment

This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)

### `npm run build` fails to minify

This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
Loading