Skip to content

Commit

Permalink
working tables, latest push
Browse files Browse the repository at this point in the history
  • Loading branch information
Pulkith committed Jul 2, 2024
1 parent 3a53313 commit 4b05e6f
Show file tree
Hide file tree
Showing 24 changed files with 942 additions and 368 deletions.
Binary file modified .DS_Store
Binary file not shown.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,10 @@ The engine "node" is incompatible with this module. Expected version ">=12.0.0".
```

This means you are using the wrong node version. This boilerplate relies on using node version 14.8. If you are using any other version of node, please use `nvm` to set node version to `14.8.3` as referenced [here](https://blog.logrocket.com/how-switch-node-js-versions-nvm/).

## TODO

TODO: Make sidebar go to icons only on smaller window
TODO: Success / Error on Donation Creation
TODO: Give email in donator new person dropdown
TODO: Check referneces (yeon changed)
15 changes: 15 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- Make Donor Delete Work
- Fix Recent Donation for a donor profile
- Add Last Communication for Donors
- Add Acknowledge Field
- Add Organization Details for a User
- Fix Donation / Grant / Sponsor for all visible text
- Animations (on like alert close)
- TableSortLabel
- Add All category for donations + sponsorships + grants?
- Fix Donations sometimes storing ObjectRef and sometimes storing Objectid as stirng
for donor_id
- have alert dissapear for a second AND FIX BLUE ALERT
- Fix purposeID being string and not object ID
- FIX red circle for unack not exactly center
- Change Yes/No to checkmark
7 changes: 6 additions & 1 deletion client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import NewDonationPage from './NewDonation/NewDonationPage';
import Sidebar from './Sidebar/Sidebar';
import DonationInfoPage from './DonationInfo/DonationInfoPage';
import PopupPage from './Popup/PopupPage';
import DonationDahsboard from './DonorDashboard/DonorDahsboard';

function App() {
return (
Expand Down Expand Up @@ -85,9 +86,13 @@ function App() {
<Route element={<ProtectedRoutesWrapper />}>
<Route path="/home" element={<HomePage />} />
<Route
path="/donationInfo"
path="/donationInfo/:donationId"
element={<DonationInfoPage />}
/>
<Route
path="/donorDashboard"
element={<DonationDahsboard />}
/>
<Route path="/reports" element={<ReportsPage />} />
<Route
path="/communications"
Expand Down
Loading

0 comments on commit 4b05e6f

Please sign in to comment.