[PR #1481] [MERGED] Doc properties - compound & url #1384

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

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1481
Author: @Davy-c
Created: 2/6/2022
Status: Merged
Merged: 2/6/2022
Merged by: @Davy-c

Base: masterHead: feat/doc-properties-expand


📝 Commits (10+)

📊 Changes

28 files changed (+1110 additions, -201 deletions)

View changed files

📝 src/cloud/components/ContentManager/ContentManagerToolbar.tsx (+9 -24)
📝 src/cloud/components/DocPage/index.tsx (+2 -0)
📝 src/cloud/components/DocProperties.tsx (+4 -6)
📝 src/cloud/components/Modal/contents/SmartView/ConditionItem.tsx (+14 -12)
📝 src/cloud/components/Modal/contents/SmartView/ConditionValueControl.tsx (+4 -6)
src/cloud/components/Props/Pickers/DocDependencySelect.tsx (+469 -0)
📝 src/cloud/components/Props/Pickers/PropertyValueButton.tsx (+104 -59)
src/cloud/components/Props/Pickers/UrlSelect.tsx (+201 -0)
📝 src/cloud/components/Props/PropConfig.tsx (+7 -12)
📝 src/cloud/components/Props/PropPicker.tsx (+85 -26)
📝 src/cloud/components/Views/Calendar/CalendarView.tsx (+3 -2)
📝 src/cloud/components/Views/List/ListDocProperties.tsx (+1 -2)
📝 src/cloud/components/Views/Table/TableView.tsx (+1 -2)
📝 src/cloud/interfaces/db/props.ts (+35 -17)
📝 src/cloud/interfaces/db/smartView.ts (+1 -0)
📝 src/cloud/lib/hooks/props/index.ts (+3 -2)
📝 src/cloud/lib/hooks/useCloudDocPreview.tsx (+8 -4)
📝 src/cloud/lib/hooks/useCloudResourceModals.tsx (+3 -1)
📝 src/cloud/lib/props.ts (+71 -7)
📝 src/cloud/lib/smartViews.ts (+12 -6)

...and 8 more files

📄 Description

  • Remove JSON type and fix interfaces
  • fix some typescript issues
  • Add new URL property interface & UI
  • Fix old timeperiod URL property implementation ( interface & UI )
  • Add new DocDependency Property ( interface & UI )

🔄 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/1481 **Author:** [@Davy-c](https://github.com/Davy-c) **Created:** 2/6/2022 **Status:** ✅ Merged **Merged:** 2/6/2022 **Merged by:** [@Davy-c](https://github.com/Davy-c) **Base:** `master` ← **Head:** `feat/doc-properties-expand` --- ### 📝 Commits (10+) - [`ec5e084`](https://github.com/BoostIO/BoostNote-App/commit/ec5e084bedd71a7f6ea416ede140addcee1dbea3) migrating json dataType to subtype - [`c9bd0aa`](https://github.com/BoostIO/BoostNote-App/commit/c9bd0aabd6fe9ec58acbff4ff118773cda47c965) fix prop type change - [`15982ff`](https://github.com/BoostIO/BoostNote-App/commit/15982ff294d4d5da3362f8aa1d6f74d0bb957d94) url prop - [`5a13d7c`](https://github.com/BoostIO/BoostNote-App/commit/5a13d7ce5b50ef8f7ea3d44b3400292fc2d83c91) dependency - [`d82ba56`](https://github.com/BoostIO/BoostNote-App/commit/d82ba568b96c196ff18a7735b571e7246b2ddd25) style fix in tables for dependencies - [`9b58489`](https://github.com/BoostIO/BoostNote-App/commit/9b58489c0159ff4e759139d57bd1907d6871e992) fix form select default - [`b745956`](https://github.com/BoostIO/BoostNote-App/commit/b74595602000b87cd94226ce17faa7409ff106fc) fix doc preview routing - [`3c4d789`](https://github.com/BoostIO/BoostNote-App/commit/3c4d7892e26e315505c92ebd1723d77f2b69df87) remove unnecessary get - [`ffc52bb`](https://github.com/BoostIO/BoostNote-App/commit/ffc52bb9cf5d88c8cf447010df94912aa39ac475) remove log - [`563d420`](https://github.com/BoostIO/BoostNote-App/commit/563d420f0ffd74dae942d30c90518d82e417fbe3) change smartview query ### 📊 Changes **28 files changed** (+1110 additions, -201 deletions) <details> <summary>View changed files</summary> 📝 `src/cloud/components/ContentManager/ContentManagerToolbar.tsx` (+9 -24) 📝 `src/cloud/components/DocPage/index.tsx` (+2 -0) 📝 `src/cloud/components/DocProperties.tsx` (+4 -6) 📝 `src/cloud/components/Modal/contents/SmartView/ConditionItem.tsx` (+14 -12) 📝 `src/cloud/components/Modal/contents/SmartView/ConditionValueControl.tsx` (+4 -6) ➕ `src/cloud/components/Props/Pickers/DocDependencySelect.tsx` (+469 -0) 📝 `src/cloud/components/Props/Pickers/PropertyValueButton.tsx` (+104 -59) ➕ `src/cloud/components/Props/Pickers/UrlSelect.tsx` (+201 -0) 📝 `src/cloud/components/Props/PropConfig.tsx` (+7 -12) 📝 `src/cloud/components/Props/PropPicker.tsx` (+85 -26) 📝 `src/cloud/components/Views/Calendar/CalendarView.tsx` (+3 -2) 📝 `src/cloud/components/Views/List/ListDocProperties.tsx` (+1 -2) 📝 `src/cloud/components/Views/Table/TableView.tsx` (+1 -2) 📝 `src/cloud/interfaces/db/props.ts` (+35 -17) 📝 `src/cloud/interfaces/db/smartView.ts` (+1 -0) 📝 `src/cloud/lib/hooks/props/index.ts` (+3 -2) 📝 `src/cloud/lib/hooks/useCloudDocPreview.tsx` (+8 -4) 📝 `src/cloud/lib/hooks/useCloudResourceModals.tsx` (+3 -1) 📝 `src/cloud/lib/props.ts` (+71 -7) 📝 `src/cloud/lib/smartViews.ts` (+12 -6) _...and 8 more files_ </details> ### 📄 Description - Remove JSON type and fix interfaces - fix some typescript issues - Add new URL property interface & UI - Fix old timeperiod URL property implementation ( interface & UI ) - Add new DocDependency Property ( interface & UI ) --- <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:55 +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#1384
No description provided.