[PR #178] [MERGED] fix: Link, Pages, Topic, Hook and Others #100

Closed
opened 2025-12-29 18:28:20 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/linsa-io/linsa/pull/178
Author: @Aslam97
Created: 9/23/2024
Status: Merged
Merged: 9/23/2024
Merged by: @Aslam97

Base: mainHead: fix/link-and-others


📝 Commits (10+)

  • 35471e8 chore: remove useKeyDownListener
  • 935a3a4 chore: remove react-use, update jazz version and add query string
  • ca73960 chore: update jazz version
  • 05c0f00 chore: use simple mac or win utils code
  • 51be546 feat(util): add isTextInput
  • 562e272 feat(hooks): all needed hooks
  • a9f4165 fix: link bunch stuff
  • 186bff3 fix: page bunch stuff
  • 3adf02a chore: bunch update for custom component
  • db0f0c3 chore: use throttle from internal hook

📊 Changes

43 files changed (+617 additions, -467 deletions)

View changed files

📝 package.json (+2 -3)
📝 web/app/(pages)/layout.tsx (+2 -3)
📝 web/components/custom/Shortcut/shortcut.tsx (+8 -0)
📝 web/components/custom/command-palette/command-palette.tsx (+0 -13)
📝 web/components/custom/content-header.tsx (+5 -5)
web/components/custom/global-keyboard-handler.tsx (+130 -0)
web/components/custom/global-keydown-handler.tsx (+0 -63)
📝 web/components/custom/learning-state-selector.tsx (+19 -13)
📝 web/components/custom/sidebar/partial/page-section.tsx (+1 -4)
📝 web/components/custom/sidebar/partial/profile-section.tsx (+3 -3)
📝 web/components/custom/sidebar/sidebar.tsx (+5 -5)
📝 web/components/custom/topic-selector.tsx (+1 -6)
📝 web/components/la-editor/la-editor.tsx (+5 -35)
📝 web/components/routes/link/LinkRoute.tsx (+2 -18)
📝 web/components/routes/link/bottom-bar.tsx (+13 -29)
📝 web/components/routes/link/header.tsx (+3 -3)
📝 web/components/routes/link/list.tsx (+55 -80)
📝 web/components/routes/link/manage.tsx (+1 -5)
📝 web/components/routes/link/partials/form/link-form.tsx (+19 -21)
📝 web/components/routes/link/partials/link-item.tsx (+19 -22)

...and 23 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/linsa-io/linsa/pull/178 **Author:** [@Aslam97](https://github.com/Aslam97) **Created:** 9/23/2024 **Status:** ✅ Merged **Merged:** 9/23/2024 **Merged by:** [@Aslam97](https://github.com/Aslam97) **Base:** `main` ← **Head:** `fix/link-and-others` --- ### 📝 Commits (10+) - [`35471e8`](https://github.com/linsa-io/linsa/commit/35471e871b29200b33cce08cd436c2db6aeb46e2) chore: remove useKeyDownListener - [`935a3a4`](https://github.com/linsa-io/linsa/commit/935a3a44bb31937a9a96f4f01d0599c31cb634b5) chore: remove react-use, update jazz version and add query string - [`ca73960`](https://github.com/linsa-io/linsa/commit/ca739603919ebdeec8e1844aed87a84402fc6b4b) chore: update jazz version - [`05c0f00`](https://github.com/linsa-io/linsa/commit/05c0f00c8f01dbe9d039ac64d0f9f7001b8155df) chore: use simple mac or win utils code - [`51be546`](https://github.com/linsa-io/linsa/commit/51be546c4eb27796c64bd3f73f2d58fae7c1728d) feat(util): add isTextInput - [`562e272`](https://github.com/linsa-io/linsa/commit/562e2721e37211c985ca3dd3bd8d4ef75ff797ea) feat(hooks): all needed hooks - [`a9f4165`](https://github.com/linsa-io/linsa/commit/a9f4165eebbfd5cc287c2ed6a37bcdd3a38b98dc) fix: link bunch stuff - [`186bff3`](https://github.com/linsa-io/linsa/commit/186bff33eff4789f4cf3cac1298b860c395f5244) fix: page bunch stuff - [`3adf02a`](https://github.com/linsa-io/linsa/commit/3adf02a59fe15c21ad8a8529c1aaad8948c2a724) chore: bunch update for custom component - [`db0f0c3`](https://github.com/linsa-io/linsa/commit/db0f0c3ef636c6712bc1c38eb460ca01eb59284b) chore: use throttle from internal hook ### 📊 Changes **43 files changed** (+617 additions, -467 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+2 -3) 📝 `web/app/(pages)/layout.tsx` (+2 -3) 📝 `web/components/custom/Shortcut/shortcut.tsx` (+8 -0) 📝 `web/components/custom/command-palette/command-palette.tsx` (+0 -13) 📝 `web/components/custom/content-header.tsx` (+5 -5) ➕ `web/components/custom/global-keyboard-handler.tsx` (+130 -0) ➖ `web/components/custom/global-keydown-handler.tsx` (+0 -63) 📝 `web/components/custom/learning-state-selector.tsx` (+19 -13) 📝 `web/components/custom/sidebar/partial/page-section.tsx` (+1 -4) 📝 `web/components/custom/sidebar/partial/profile-section.tsx` (+3 -3) 📝 `web/components/custom/sidebar/sidebar.tsx` (+5 -5) 📝 `web/components/custom/topic-selector.tsx` (+1 -6) 📝 `web/components/la-editor/la-editor.tsx` (+5 -35) 📝 `web/components/routes/link/LinkRoute.tsx` (+2 -18) 📝 `web/components/routes/link/bottom-bar.tsx` (+13 -29) 📝 `web/components/routes/link/header.tsx` (+3 -3) 📝 `web/components/routes/link/list.tsx` (+55 -80) 📝 `web/components/routes/link/manage.tsx` (+1 -5) 📝 `web/components/routes/link/partials/form/link-form.tsx` (+19 -21) 📝 `web/components/routes/link/partials/link-item.tsx` (+19 -22) _...and 23 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>
adam added the pull-request label 2025-12-29 18:28:20 +01:00
adam closed this issue 2025-12-29 18:28:21 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/linsa#100