[PR #7] [MERGED] Mapping functionalities added #117

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

📋 Pull Request Information

Original PR: https://github.com/RADar-AZDelta/Keun/pull/7
Author: @BostoenToby
Created: 4/27/2023
Status: Merged
Merged: 4/27/2023
Merged by: @BostoenToby

Base: masterHead: dev/mapping-functionalities


📝 Commits (10+)

  • 30329f6 mapping logic added for authors
  • be6e0f5 bugfixes & extra functionalities added
  • e3c027a modal refactor & add options
  • fe12759 Code cleanup
  • d13b172 show already mapped data in athena
  • 3efbad7 refactor for performance & readability
  • 984a62d loading added & place of showcolumns changed
  • 16c708c bug with showColumns fixed
  • 5aa2d4d Merge pull request #4 from RADar-AZDelta/dev/mapping-functionalities
  • cb2a173 Update style

📊 Changes

44 files changed (+1953 additions, -1298 deletions)

View changed files

📝 lib/RADar-DataTable (+1 -1)
📝 package.json (+3 -2)
📝 pnpm-lock.yaml (+12 -0)
src/lib/components/Extra/Action.svelte (+0 -41)
src/lib/components/Extra/ActionPage.svelte (+0 -32)
src/lib/components/Extra/AthenaActivatedFilter.svelte (+28 -0)
src/lib/components/Extra/AthenaFilter.svelte (+69 -0)
📝 src/lib/components/Extra/AthenaLayout.svelte (+137 -253)
src/lib/components/Extra/Editor.svelte (+0 -81)
src/lib/components/Extra/Header.svelte (+61 -0)
📝 src/lib/components/Extra/Modal.svelte (+14 -6)
src/lib/components/Extra/Settings.svelte (+34 -0)
📝 src/lib/components/Extra/ShowColumns.svelte (+26 -45)
src/lib/components/Extra/SmallModal.svelte (+0 -22)
src/lib/components/Extra/SvgIcon.svelte (+10 -0)
src/lib/components/Extra/User.svelte (+38 -0)
src/lib/components/Mapping/AthenaRow.svelte (+85 -0)
📝 src/lib/components/Mapping/Row.svelte (+104 -73)
src/lib/components/Types.d.ts (+97 -0)
src/lib/data/columns.json (+105 -0)

...and 24 more files

📄 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/Keun/pull/7 **Author:** [@BostoenToby](https://github.com/BostoenToby) **Created:** 4/27/2023 **Status:** ✅ Merged **Merged:** 4/27/2023 **Merged by:** [@BostoenToby](https://github.com/BostoenToby) **Base:** `master` ← **Head:** `dev/mapping-functionalities` --- ### 📝 Commits (10+) - [`30329f6`](https://github.com/RADar-AZDelta/Keun/commit/30329f6c698c770ef1752c1a0aad2ba11d4a8f9c) mapping logic added for authors - [`be6e0f5`](https://github.com/RADar-AZDelta/Keun/commit/be6e0f5aa554942baab42efc1def9a00b166404a) bugfixes & extra functionalities added - [`e3c027a`](https://github.com/RADar-AZDelta/Keun/commit/e3c027ab8a165a301b19fae1400984b8ad34a5e2) modal refactor & add options - [`fe12759`](https://github.com/RADar-AZDelta/Keun/commit/fe127597ced85126f5b1c5886ddd61ea2024e3ce) Code cleanup - [`d13b172`](https://github.com/RADar-AZDelta/Keun/commit/d13b1722c919776c39d799aab99eec15013224fb) show already mapped data in athena - [`3efbad7`](https://github.com/RADar-AZDelta/Keun/commit/3efbad7ead934e1a17a5300126c6852c35616b34) refactor for performance & readability - [`984a62d`](https://github.com/RADar-AZDelta/Keun/commit/984a62d1b206980585f595c7c698e1cad82ac141) loading added & place of showcolumns changed - [`16c708c`](https://github.com/RADar-AZDelta/Keun/commit/16c708c54f9089c99beb5d0acefe1578a380944b) bug with showColumns fixed - [`5aa2d4d`](https://github.com/RADar-AZDelta/Keun/commit/5aa2d4d7a296fb04949c72b17dba294f8beb8d3d) Merge pull request #4 from RADar-AZDelta/dev/mapping-functionalities - [`cb2a173`](https://github.com/RADar-AZDelta/Keun/commit/cb2a173b1e111109b6d3f995ffdfe00c29e1bc96) Update style ### 📊 Changes **44 files changed** (+1953 additions, -1298 deletions) <details> <summary>View changed files</summary> 📝 `lib/RADar-DataTable` (+1 -1) 📝 `package.json` (+3 -2) 📝 `pnpm-lock.yaml` (+12 -0) ➖ `src/lib/components/Extra/Action.svelte` (+0 -41) ➖ `src/lib/components/Extra/ActionPage.svelte` (+0 -32) ➕ `src/lib/components/Extra/AthenaActivatedFilter.svelte` (+28 -0) ➕ `src/lib/components/Extra/AthenaFilter.svelte` (+69 -0) 📝 `src/lib/components/Extra/AthenaLayout.svelte` (+137 -253) ➖ `src/lib/components/Extra/Editor.svelte` (+0 -81) ➕ `src/lib/components/Extra/Header.svelte` (+61 -0) 📝 `src/lib/components/Extra/Modal.svelte` (+14 -6) ➕ `src/lib/components/Extra/Settings.svelte` (+34 -0) 📝 `src/lib/components/Extra/ShowColumns.svelte` (+26 -45) ➖ `src/lib/components/Extra/SmallModal.svelte` (+0 -22) ➕ `src/lib/components/Extra/SvgIcon.svelte` (+10 -0) ➕ `src/lib/components/Extra/User.svelte` (+38 -0) ➕ `src/lib/components/Mapping/AthenaRow.svelte` (+85 -0) 📝 `src/lib/components/Mapping/Row.svelte` (+104 -73) ➕ `src/lib/components/Types.d.ts` (+97 -0) ➕ `src/lib/data/columns.json` (+105 -0) _...and 24 more files_ </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:32:03 +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-Keun#117
No description provided.