[PR #53] [MERGED] Dev/abstraction #57

Closed
opened 2026-03-23 20:33:47 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RADar-AZDelta/azd-radar-data-datatable/pull/53
Author: @BostoenToby
Created: 6/23/2023
Status: Merged
Merged: 6/23/2023
Merged by: @BostoenToby

Base: masterHead: dev/abstraction


📝 Commits (10+)

  • c6e5ace Create class to save & read from localStorage
  • d38b0b0 Add firebase for saving options and column setting
  • 6e94ff9 refactoring for different data types
  • 748d5d9 implement custom class
  • 4ce5f4c firebase fix & cleanup storage classes
  • df31012 if not existing in db, create it
  • 4cecb6c Change path to write & bugfix for storagemethod
  • da4dbcf Add input field to paginate
  • e46b4b5 Bugfix for when there is nothing in Firebase
  • 811ab76 bugfix for null values in datatable

📊 Changes

17 files changed (+2259 additions, -576 deletions)

View changed files

📝 package.json (+2 -1)
📝 pnpm-lock.yaml (+769 -44)
📝 src/lib/components/DataTable.d.ts (+51 -12)
📝 src/lib/components/DataTable.svelte (+116 -502)
📝 src/lib/components/Pagination.svelte (+21 -5)
src/lib/components/datatable/config/firebaseClass.ts (+102 -0)
src/lib/components/datatable/config/localstorageClass.ts (+69 -0)
src/lib/components/datatable/customData/athenaClass.ts (+143 -0)
src/lib/components/datatable/data/dataTypeArrayOfObjects.ts (+224 -0)
src/lib/components/datatable/data/dataTypeFile.ts (+228 -0)
src/lib/components/datatable/data/dataTypeFunction.ts (+142 -0)
src/lib/components/datatable/data/dataTypeMatrix.ts (+231 -0)
📝 src/lib/styles/data-table.scss (+4 -0)
src/lib/useFirebase.ts (+47 -0)
📝 src/lib/workers/DataTable.worker.ts (+5 -1)
📝 src/routes/+page.svelte (+9 -11)
src/routes/example/+page.svelte (+96 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RADar-AZDelta/azd-radar-data-datatable/pull/53 **Author:** [@BostoenToby](https://github.com/BostoenToby) **Created:** 6/23/2023 **Status:** ✅ Merged **Merged:** 6/23/2023 **Merged by:** [@BostoenToby](https://github.com/BostoenToby) **Base:** `master` ← **Head:** `dev/abstraction` --- ### 📝 Commits (10+) - [`c6e5ace`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/c6e5acec24ce1de295a3c2f742b2543fe14787dd) Create class to save & read from localStorage - [`d38b0b0`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/d38b0b039f3d120ad52b3cebc2cf31a93ad228a9) Add firebase for saving options and column setting - [`6e94ff9`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/6e94ff9f6cf49cabc5c5ef62ab1093d1f5be1722) refactoring for different data types - [`748d5d9`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/748d5d955dc364ebf4605cf8938f7e38ab7241a4) implement custom class - [`4ce5f4c`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/4ce5f4c07ba6223daad1ef2e94559d7b09218d1a) firebase fix & cleanup storage classes - [`df31012`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/df3101254a36509ad2153092848fee52c06e71a0) if not existing in db, create it - [`4cecb6c`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/4cecb6c85a1a920c3714a551d5f03c3f2f8aebef) Change path to write & bugfix for storagemethod - [`da4dbcf`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/da4dbcf2211f039e56a6bf777fa1379f8675c51e) Add input field to paginate - [`e46b4b5`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/e46b4b547c681fdcdb1a34ec5eb0423940c77fd5) Bugfix for when there is nothing in Firebase - [`811ab76`](https://github.com/RADar-AZDelta/azd-radar-data-datatable/commit/811ab76f5f93ae7081c50fa2f8203bbda67c1cf6) bugfix for null values in datatable ### 📊 Changes **17 files changed** (+2259 additions, -576 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+2 -1) 📝 `pnpm-lock.yaml` (+769 -44) 📝 `src/lib/components/DataTable.d.ts` (+51 -12) 📝 `src/lib/components/DataTable.svelte` (+116 -502) 📝 `src/lib/components/Pagination.svelte` (+21 -5) ➕ `src/lib/components/datatable/config/firebaseClass.ts` (+102 -0) ➕ `src/lib/components/datatable/config/localstorageClass.ts` (+69 -0) ➕ `src/lib/components/datatable/customData/athenaClass.ts` (+143 -0) ➕ `src/lib/components/datatable/data/dataTypeArrayOfObjects.ts` (+224 -0) ➕ `src/lib/components/datatable/data/dataTypeFile.ts` (+228 -0) ➕ `src/lib/components/datatable/data/dataTypeFunction.ts` (+142 -0) ➕ `src/lib/components/datatable/data/dataTypeMatrix.ts` (+231 -0) 📝 `src/lib/styles/data-table.scss` (+4 -0) ➕ `src/lib/useFirebase.ts` (+47 -0) 📝 `src/lib/workers/DataTable.worker.ts` (+5 -1) 📝 `src/routes/+page.svelte` (+9 -11) ➕ `src/routes/example/+page.svelte` (+96 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 20:33:47 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
RADar-AZDelta/archived-azd-radar-data-datatable#57
No description provided.