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

Update Privateer Database with Reviewers Comments #91

Merged
merged 25 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
60aaf93
Refactor TorsionPlot components and improve database fetching
Dialpuri Mar 6, 2024
a1c5843
Refactor component code and enhance database handling
Dialpuri Mar 6, 2024
5056964
Refactor GlycanDetailTorsionPlot and TorsionPlot code
Dialpuri Mar 6, 2024
de708c7
Added New Database Seaching
Dialpuri Mar 7, 2024
757fa2b
Add sugarLinkageMap to Constants and DatabaseSearch
Dialpuri Mar 7, 2024
572b34d
Implement sorting functionality in DatabaseSearchTable
Dialpuri Mar 7, 2024
1cca1f9
Remove debug console warning from DatabaseSearchTable
Dialpuri Mar 7, 2024
8615394
Refactor state assignment in DatabaseSearchTable
Dialpuri Mar 7, 2024
830dab6
Add tooltip to sugar list in database components
Dialpuri Mar 7, 2024
1e4d250
Added any type to linkages and fixed scrollbar
Dialpuri Mar 8, 2024
6ad79a7
Refactor code and enhance search functionality
Dialpuri Mar 8, 2024
1e62f05
Normalize color values in CSS files
Dialpuri Mar 8, 2024
6d63e65
Add Google Analytics tracking with web vitals
Dialpuri Mar 9, 2024
14a97e7
Update color and legend in CremerPopleGraph component
Dialpuri Mar 9, 2024
8e82b01
Refine UI and conditional rendering across various components
Dialpuri Mar 11, 2024
cca8ae5
Update package-lock.json with new dependencies
Dialpuri Mar 13, 2024
19de3b7
Extract color determining logic to function
Dialpuri Mar 13, 2024
02bf71a
Update color logic in getColour function
Dialpuri Mar 13, 2024
b280659
Display appropriate message for empty torsions data
Dialpuri Mar 13, 2024
704b9ef
Refactor code to handle empty 'torsions' data more precisely
Dialpuri Mar 13, 2024
982447e
Refactor 'getColour' and 'extracted' functions for cleaner code
Dialpuri Mar 13, 2024
8d009c6
Implement early return in TorsionPlot effect
Dialpuri Mar 13, 2024
f08108e
Improve sugar data diagnostics in BFactorVsRSCC.tsx
Dialpuri Mar 13, 2024
65514cf
Remove unnecessary return and blank lines in TorsionPlot
Dialpuri Mar 13, 2024
455d7b2
Refactor BFactorVsRSCC.tsx for better readability
Dialpuri Mar 13, 2024
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
2 changes: 2 additions & 0 deletions webapp/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/ban-ts-comment": "off",
"no-tabs": "off",
"@typescript-eslint/strict-boolean-expressions": "warn",
"no-prototype-builtins": "warn",
"@typescript-eslint/no-unused-vars": [
"warn", // or "error"
{
Expand Down
91 changes: 82 additions & 9 deletions webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"testserver": "vite --port 5173"
},
"dependencies": {
"@tanstack/react-table": "^8.13.2",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"jest": "^29.7.0",
Expand All @@ -24,6 +25,7 @@
"react": "^18.2.0",
"react-collapsed": "^4.1.2",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-grid-layout": "^1.4.4",
"react-icons": "^4.11.0",
"react-inlinesvg": "^3.0.2",
Expand All @@ -37,6 +39,7 @@
"serve": "^14.2.1",
"styled-components": "^6.0.6",
"vite-plugin-top-level-await": "^1.3.1",
"web-vitals": "^3.5.2",
"zlib": "^1.0.5"
},
"devDependencies": {
Expand Down
Loading
Loading