[PR #1317] [MERGED] v2/ Dashboard - Toolbar #1258

Closed
opened 2026-03-03 00:25:21 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1317
Author: @Davy-c
Created: 11/16/2021
Status: Merged
Merged: 11/17/2021
Merged by: @Davy-c

Base: dashboard/newHead: docopsv2/toolbar-changes


📝 Commits (10+)

  • 8a92d93 add cm toolbar in dashboard
  • 4aecb91 prop update in toolbar
  • 3695b55 fix table layout
  • 3207d15 fix timeperiod label for toolbar
  • f449067 reduce padding for properties
  • 035441b increase padding for cells
  • 07422ba fix modal height
  • 53c481e minheight to modal conditions
  • eb9b05d remove docs/folder selection in CM
  • 5620a42 hide view selector if only one view

📊 Changes

28 files changed (+1318 additions, -829 deletions)

View changed files

📝 src/cloud/api/teams/resources/index.ts (+2 -0)
📝 src/cloud/api/teams/views/index.ts (+8 -6)
📝 src/cloud/components/ContentManager/ContentManagerToolbar.tsx (+253 -185)
📝 src/cloud/components/ContentManager/Rows/ContentManagerDocRow.tsx (+3 -93)
📝 src/cloud/components/ContentManager/index.tsx (+53 -160)
📝 src/cloud/components/DashboardPage/index.tsx (+37 -18)
📝 src/cloud/components/FolderPage/index.tsx (+25 -3)
📝 src/cloud/components/Props/Pickers/AssigneeSelect.tsx (+4 -0)
📝 src/cloud/components/Props/Pickers/DueDateSelect.tsx (+4 -0)
📝 src/cloud/components/Props/Pickers/TimePeriodPicker.tsx (+6 -1)
📝 src/cloud/components/Views/Table/TableAddPropertyContext.tsx (+7 -6)
📝 src/cloud/components/Views/Table/TableView.tsx (+64 -308)
src/cloud/components/Views/Table/TableViewContentManager.tsx (+472 -0)
📝 src/cloud/components/Views/index.tsx (+19 -33)
📝 src/cloud/components/WorkspacePage/index.tsx (+25 -4)
📝 src/cloud/interfaces/db/view.ts (+7 -2)
📝 src/cloud/lib/hooks/useCloudApi.ts (+5 -1)
src/cloud/lib/hooks/views/tableView.ts (+149 -0)
📝 src/cloud/lib/stores/nav/store.tsx (+8 -0)
📝 src/cloud/lib/utils/array.ts (+3 -3)

...and 8 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/BoostIO/BoostNote-App/pull/1317 **Author:** [@Davy-c](https://github.com/Davy-c) **Created:** 11/16/2021 **Status:** ✅ Merged **Merged:** 11/17/2021 **Merged by:** [@Davy-c](https://github.com/Davy-c) **Base:** `dashboard/new` ← **Head:** `docopsv2/toolbar-changes` --- ### 📝 Commits (10+) - [`8a92d93`](https://github.com/BoostIO/BoostNote-App/commit/8a92d9347e24ea8a2f452505e3d70783040db559) add cm toolbar in dashboard - [`4aecb91`](https://github.com/BoostIO/BoostNote-App/commit/4aecb911430181129c328e4c22e19e94d7ee814b) prop update in toolbar - [`3695b55`](https://github.com/BoostIO/BoostNote-App/commit/3695b55587f9e3b78ca6f7eb4be151c813046acd) fix table layout - [`3207d15`](https://github.com/BoostIO/BoostNote-App/commit/3207d1500dc6340a078d1aceaa4e032c96320a10) fix timeperiod label for toolbar - [`f449067`](https://github.com/BoostIO/BoostNote-App/commit/f449067a28587df8aa9524bd2aff57aac6a69d3d) reduce padding for properties - [`035441b`](https://github.com/BoostIO/BoostNote-App/commit/035441be55393ed5c0485c29e4f8f3547789a316) increase padding for cells - [`07422ba`](https://github.com/BoostIO/BoostNote-App/commit/07422baf16b596a7473408f034d6310b0561de81) fix modal height - [`53c481e`](https://github.com/BoostIO/BoostNote-App/commit/53c481e5d678955923c19c86335b9365823e24ac) minheight to modal conditions - [`eb9b05d`](https://github.com/BoostIO/BoostNote-App/commit/eb9b05da81813caaebb8639d4499013d85c9d242) remove docs/folder selection in CM - [`5620a42`](https://github.com/BoostIO/BoostNote-App/commit/5620a42bbda65516b18b6065a3fe2082e72435b9) hide view selector if only one view ### 📊 Changes **28 files changed** (+1318 additions, -829 deletions) <details> <summary>View changed files</summary> 📝 `src/cloud/api/teams/resources/index.ts` (+2 -0) 📝 `src/cloud/api/teams/views/index.ts` (+8 -6) 📝 `src/cloud/components/ContentManager/ContentManagerToolbar.tsx` (+253 -185) 📝 `src/cloud/components/ContentManager/Rows/ContentManagerDocRow.tsx` (+3 -93) 📝 `src/cloud/components/ContentManager/index.tsx` (+53 -160) 📝 `src/cloud/components/DashboardPage/index.tsx` (+37 -18) 📝 `src/cloud/components/FolderPage/index.tsx` (+25 -3) 📝 `src/cloud/components/Props/Pickers/AssigneeSelect.tsx` (+4 -0) 📝 `src/cloud/components/Props/Pickers/DueDateSelect.tsx` (+4 -0) 📝 `src/cloud/components/Props/Pickers/TimePeriodPicker.tsx` (+6 -1) 📝 `src/cloud/components/Views/Table/TableAddPropertyContext.tsx` (+7 -6) 📝 `src/cloud/components/Views/Table/TableView.tsx` (+64 -308) ➕ `src/cloud/components/Views/Table/TableViewContentManager.tsx` (+472 -0) 📝 `src/cloud/components/Views/index.tsx` (+19 -33) 📝 `src/cloud/components/WorkspacePage/index.tsx` (+25 -4) 📝 `src/cloud/interfaces/db/view.ts` (+7 -2) 📝 `src/cloud/lib/hooks/useCloudApi.ts` (+5 -1) ➕ `src/cloud/lib/hooks/views/tableView.ts` (+149 -0) 📝 `src/cloud/lib/stores/nav/store.tsx` (+8 -0) 📝 `src/cloud/lib/utils/array.ts` (+3 -3) _...and 8 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>
kerem 2026-03-03 00:25:21 +03: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
starred/BoostNote-App#1258
No description provided.