-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Continuing correction process to upload system to ensure it's working…
… correctly. Working on adding a wrapper function to encase use cases for the DataGridCommons to make applying it to tables easier -- currently, implementations for the attributes, personnel, quadrats tables, etc, require an extensive amount of duplication to build out and thus make modifications and updates trickier. Continuing structural shift of validation system to be app-side and modular to better facilitate CRUD maintenance system.
- Loading branch information
1 parent
649404d
commit 63a9017
Showing
38 changed files
with
413 additions
and
868 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,5 +1,6 @@ | ||
import AttributesDataGrid from '@/components/datagrids/applications/attributesdatagrid'; | ||
import AttributesWrappedDataGrid from '@/components/datagrids/wrapped/attributeswrappedgrid'; | ||
|
||
export default function AttributesPage() { | ||
return <AttributesDataGrid />; | ||
// return <AttributesDataGrid />; | ||
return <AttributesWrappedDataGrid />; | ||
} |
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,5 +1,3 @@ | ||
import CensusDataGrid from '@/components/datagrids/applications/censusdatagrid'; | ||
|
||
export default function CensusPage() { | ||
return <CensusDataGrid />; | ||
return <></>; | ||
} |
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,5 +1,6 @@ | ||
import PersonnelDataGrid from '@/components/datagrids/applications/personneldatagrid'; | ||
import PersonnelWrappedDataGrid from '@/components/datagrids/wrapped/personnelwrappedgrid'; | ||
|
||
export default function PersonnelPage() { | ||
return <PersonnelDataGrid />; | ||
// return <PersonnelDataGrid />; | ||
return <PersonnelWrappedDataGrid />; | ||
} |
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,5 +1,6 @@ | ||
import QuadratsDataGrid from '@/components/datagrids/applications/quadratsdatagrid'; | ||
import QuadratsWrappedDataGrid from '@/components/datagrids/wrapped/quadratswrappedgrid'; | ||
|
||
export default function QuadratsPage() { | ||
return <QuadratsDataGrid />; | ||
// return <QuadratsDataGrid />; | ||
return <QuadratsWrappedDataGrid />; | ||
} |
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
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
199 changes: 0 additions & 199 deletions
199
frontend/components/datagrids/applications/censusdatagrid.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.