@agent-native/core 0.101.14 → 0.102.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +12 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/cli/templates-meta.ts +13 -0
- package/corpus/core/src/client/agent-page/AgentTabsPage.tsx +1 -1
- package/corpus/core/src/client/org/OrgSwitcher.tsx +2 -0
- package/corpus/templates/analytics/changelog/2026-07-15-fixed-the-agent-discarding-a-successful-dashboard-edit-and-r.md +6 -0
- package/corpus/templates/analytics/server/lib/real-data-actions.ts +30 -1
- package/corpus/templates/analytics/server/plugins/agent-chat.ts +15 -0
- package/corpus/templates/content/actions/_database-source-utils.ts +59 -4
- package/corpus/templates/content/actions/prepare-builder-source-review.ts +9 -0
- package/corpus/templates/content/actions/preview-builder-source-review.ts +6 -4
- package/corpus/templates/content/app/components/editor/DescriptionField.tsx +10 -2
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +4 -0
- package/corpus/templates/content/changelog/2026-07-15-page-and-database-descriptions-now-use-a-clean-single-line-f.md +6 -0
- package/corpus/templates/content/changelog/2026-07-15-selected-builder-reviews-now-load-only-the-chosen-rows-avoid.md +6 -0
- package/corpus/templates/content/shared/api.ts +1 -0
- package/corpus/templates/tasks/.agents/commands/visual-plan.md +9 -0
- package/corpus/templates/tasks/.agents/commands/visual-recap.md +8 -0
- package/corpus/templates/tasks/.agents/skills/actions/SKILL.md +492 -0
- package/corpus/templates/tasks/.agents/skills/adding-a-feature/SKILL.md +189 -0
- package/corpus/templates/tasks/.agents/skills/agent-native-docs/SKILL.md +76 -0
- package/corpus/templates/tasks/.agents/skills/agent-watchdog/README.md +43 -0
- package/corpus/templates/tasks/.agents/skills/agent-watchdog/SKILL.md +110 -0
- package/corpus/templates/tasks/.agents/skills/agent-watchdog/agents/openai.yaml +4 -0
- package/corpus/templates/tasks/.agents/skills/capture-learnings/SKILL.md +89 -0
- package/corpus/templates/tasks/.agents/skills/change-summary/SKILL.md +83 -0
- package/corpus/templates/tasks/.agents/skills/create-skill/SKILL.md +221 -0
- package/corpus/templates/tasks/.agents/skills/delegate-to-agent/SKILL.md +263 -0
- package/corpus/templates/tasks/.agents/skills/efficient-fable/README.md +75 -0
- package/corpus/templates/tasks/.agents/skills/efficient-fable/SKILL.md +95 -0
- package/corpus/templates/tasks/.agents/skills/efficient-frontier/README.md +53 -0
- package/corpus/templates/tasks/.agents/skills/efficient-frontier/SKILL.md +73 -0
- package/corpus/templates/tasks/.agents/skills/frontend-design/SKILL.md +112 -0
- package/corpus/templates/tasks/.agents/skills/plan-arbiter/README.md +41 -0
- package/corpus/templates/tasks/.agents/skills/plan-arbiter/SKILL.md +114 -0
- package/corpus/templates/tasks/.agents/skills/plan-arbiter/agents/openai.yaml +4 -0
- package/corpus/templates/tasks/.agents/skills/plow-ahead/README.md +42 -0
- package/corpus/templates/tasks/.agents/skills/plow-ahead/SKILL.md +104 -0
- package/corpus/templates/tasks/.agents/skills/plow-ahead/agents/openai.yaml +4 -0
- package/corpus/templates/tasks/.agents/skills/quick-recap/README.md +55 -0
- package/corpus/templates/tasks/.agents/skills/quick-recap/SKILL.md +54 -0
- package/corpus/templates/tasks/.agents/skills/read-the-damn-docs/README.md +54 -0
- package/corpus/templates/tasks/.agents/skills/read-the-damn-docs/SKILL.md +126 -0
- package/corpus/templates/tasks/.agents/skills/read-the-damn-docs/agents/openai.yaml +4 -0
- package/corpus/templates/tasks/.agents/skills/real-time-sync/SKILL.md +232 -0
- package/corpus/templates/tasks/.agents/skills/security/SKILL.md +280 -0
- package/corpus/templates/tasks/.agents/skills/self-modifying-code/SKILL.md +106 -0
- package/corpus/templates/tasks/.agents/skills/shadcn-ui/SKILL.md +95 -0
- package/corpus/templates/tasks/.agents/skills/stay-within-limits/README.md +61 -0
- package/corpus/templates/tasks/.agents/skills/stay-within-limits/SKILL.md +83 -0
- package/corpus/templates/tasks/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/tasks/.agents/skills/visual-plan/SKILL.md +547 -0
- package/corpus/templates/tasks/.agents/skills/visual-plan/agent-native-skill.json +12 -0
- package/corpus/templates/tasks/.agents/skills/visual-plan/references/canvas.md +121 -0
- package/corpus/templates/tasks/.agents/skills/visual-plan/references/document-quality.md +178 -0
- package/corpus/templates/tasks/.agents/skills/visual-plan/references/exemplar.md +62 -0
- package/corpus/templates/tasks/.agents/skills/visual-plan/references/wireframe.md +264 -0
- package/corpus/templates/tasks/.agents/skills/visual-recap/SKILL.md +634 -0
- package/corpus/templates/tasks/.agents/skills/visual-recap/agent-native-skill.json +12 -0
- package/corpus/templates/tasks/.agents/skills/visual-recap/references/wireframe.md +264 -0
- package/corpus/templates/tasks/.claude/commands/visual-plan.md +9 -0
- package/corpus/templates/tasks/.claude/commands/visual-recap.md +8 -0
- package/corpus/templates/tasks/.env.example +5 -0
- package/corpus/templates/tasks/.ignore +0 -0
- package/corpus/templates/tasks/.prettierrc +5 -0
- package/corpus/templates/tasks/AGENTS.md +158 -0
- package/corpus/templates/tasks/DEVELOPING.md +185 -0
- package/corpus/templates/tasks/README.md +16 -0
- package/corpus/templates/tasks/actions/bulk-delete-inbox-items.ts +24 -0
- package/corpus/templates/tasks/actions/bulk-delete-tasks.ts +21 -0
- package/corpus/templates/tasks/actions/bulk-mark-inbox-items-ready.ts +27 -0
- package/corpus/templates/tasks/actions/bulk-update-tasks.ts +35 -0
- package/corpus/templates/tasks/actions/create-custom-field.ts +22 -0
- package/corpus/templates/tasks/actions/create-inbox-item.ts +30 -0
- package/corpus/templates/tasks/actions/create-task.ts +33 -0
- package/corpus/templates/tasks/actions/delete-custom-field.ts +19 -0
- package/corpus/templates/tasks/actions/delete-inbox-item.ts +17 -0
- package/corpus/templates/tasks/actions/delete-task.ts +17 -0
- package/corpus/templates/tasks/actions/lib/boolean-query-param.ts +30 -0
- package/corpus/templates/tasks/actions/list-custom-fields.ts +18 -0
- package/corpus/templates/tasks/actions/list-inbox-items.ts +16 -0
- package/corpus/templates/tasks/actions/list-tasks.ts +52 -0
- package/corpus/templates/tasks/actions/list-visible-task-fields.ts +18 -0
- package/corpus/templates/tasks/actions/mark-inbox-item-ready.ts +31 -0
- package/corpus/templates/tasks/actions/navigate.ts +51 -0
- package/corpus/templates/tasks/actions/reorder-custom-fields.ts +27 -0
- package/corpus/templates/tasks/actions/reorder-inbox-items.ts +24 -0
- package/corpus/templates/tasks/actions/reorder-tasks.ts +29 -0
- package/corpus/templates/tasks/actions/run.ts +2 -0
- package/corpus/templates/tasks/actions/update-custom-field.ts +33 -0
- package/corpus/templates/tasks/actions/update-inbox-item.ts +24 -0
- package/corpus/templates/tasks/actions/update-task.ts +68 -0
- package/corpus/templates/tasks/actions/update-visible-task-fields.ts +27 -0
- package/corpus/templates/tasks/actions/view-screen-helpers.ts +68 -0
- package/corpus/templates/tasks/actions/view-screen.ts +207 -0
- package/corpus/templates/tasks/app/components/custom-fields/FieldCreateBar.tsx +121 -0
- package/corpus/templates/tasks/app/components/custom-fields/FieldListRow.tsx +116 -0
- package/corpus/templates/tasks/app/components/custom-fields/FieldsList.tsx +225 -0
- package/corpus/templates/tasks/app/components/custom-fields/FieldsListSkeleton.tsx +18 -0
- package/corpus/templates/tasks/app/components/custom-fields/FieldsPage.tsx +42 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/FieldEditorSidebar.tsx +69 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/FieldTitleSection.tsx +32 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/config/CurrencyConfigControl.tsx +49 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/config/FieldConfigControl.tsx +56 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/config/NumberConfigControl.tsx +52 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/config/PercentConfigControl.tsx +30 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/config/SelectConfigControl.tsx +135 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/config/select-colors.ts +23 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/config/utils.ts +52 -0
- package/corpus/templates/tasks/app/components/custom-fields/editor/types.ts +7 -0
- package/corpus/templates/tasks/app/components/dnd/SortableItem.tsx +72 -0
- package/corpus/templates/tasks/app/components/dnd/SortableList.tsx +136 -0
- package/corpus/templates/tasks/app/components/dnd/reorder-moving-items.ts +160 -0
- package/corpus/templates/tasks/app/components/dnd/sortable-drag-props.ts +60 -0
- package/corpus/templates/tasks/app/components/inbox/InboxList.tsx +222 -0
- package/corpus/templates/tasks/app/components/inbox/InboxListPage.tsx +39 -0
- package/corpus/templates/tasks/app/components/inbox/InboxListRow.tsx +122 -0
- package/corpus/templates/tasks/app/components/layout/Header.tsx +55 -0
- package/corpus/templates/tasks/app/components/layout/HeaderActions.tsx +84 -0
- package/corpus/templates/tasks/app/components/layout/Layout.tsx +134 -0
- package/corpus/templates/tasks/app/components/layout/Sidebar.tsx +211 -0
- package/corpus/templates/tasks/app/components/shared/AddListItemInput.tsx +57 -0
- package/corpus/templates/tasks/app/components/shared/AlertDialog.tsx +53 -0
- package/corpus/templates/tasks/app/components/shared/BulkDeleteDialog.tsx +76 -0
- package/corpus/templates/tasks/app/components/shared/ChipSelect.tsx +240 -0
- package/corpus/templates/tasks/app/components/shared/DeleteItemDialog.tsx +40 -0
- package/corpus/templates/tasks/app/components/shared/InlineEditable.tsx +166 -0
- package/corpus/templates/tasks/app/components/shared/ListEmptyState.tsx +13 -0
- package/corpus/templates/tasks/app/components/shared/ListErrorMessage.tsx +15 -0
- package/corpus/templates/tasks/app/components/shared/ListViewHeader.tsx +75 -0
- package/corpus/templates/tasks/app/components/shared/PageHeader.tsx +25 -0
- package/corpus/templates/tasks/app/components/shared/RowActionsMenu.tsx +42 -0
- package/corpus/templates/tasks/app/components/shared/SidePanel.tsx +99 -0
- package/corpus/templates/tasks/app/components/shared/dnd/ListRowPreview.tsx +37 -0
- package/corpus/templates/tasks/app/components/shared/list/List.tsx +63 -0
- package/corpus/templates/tasks/app/components/shared/list/ListRow.tsx +159 -0
- package/corpus/templates/tasks/app/components/shared/list/ListRowDragHandle.tsx +52 -0
- package/corpus/templates/tasks/app/components/shared/list/ListSkeletonRows.tsx +11 -0
- package/corpus/templates/tasks/app/components/shared/list/SortableListItemShell.tsx +32 -0
- package/corpus/templates/tasks/app/components/shared/list/types.ts +1 -0
- package/corpus/templates/tasks/app/components/shared/selection/ListSelectionBar.tsx +158 -0
- package/corpus/templates/tasks/app/components/shared/selection/ListSelectionHeaderToggle.tsx +28 -0
- package/corpus/templates/tasks/app/components/shared/selection/ListSelectionToolbar.tsx +81 -0
- package/corpus/templates/tasks/app/components/shared/selection/get-list-row-selection-ui.ts +41 -0
- package/corpus/templates/tasks/app/components/shared/selection/use-list-selection.ts +196 -0
- package/corpus/templates/tasks/app/components/tasks/TaskList.tsx +333 -0
- package/corpus/templates/tasks/app/components/tasks/TaskListHeaderRow.tsx +46 -0
- package/corpus/templates/tasks/app/components/tasks/TaskListPage.tsx +115 -0
- package/corpus/templates/tasks/app/components/tasks/TaskListRow.css +49 -0
- package/corpus/templates/tasks/app/components/tasks/TaskListRow.tsx +307 -0
- package/corpus/templates/tasks/app/components/tasks/fields/TaskFieldsSidebar.tsx +102 -0
- package/corpus/templates/tasks/app/components/tasks/fields/TaskTitleSection.tsx +27 -0
- package/corpus/templates/tasks/app/components/tasks/fields/controls/DateValueControl.tsx +21 -0
- package/corpus/templates/tasks/app/components/tasks/fields/controls/FieldValueControl.tsx +76 -0
- package/corpus/templates/tasks/app/components/tasks/fields/controls/MultiSelectValueControl.tsx +52 -0
- package/corpus/templates/tasks/app/components/tasks/fields/controls/NumberValueControl.tsx +56 -0
- package/corpus/templates/tasks/app/components/tasks/fields/controls/RichTextValueControl.tsx +115 -0
- package/corpus/templates/tasks/app/components/tasks/fields/controls/SingleSelectValueControl.tsx +61 -0
- package/corpus/templates/tasks/app/components/tasks/fields/controls/TextValueControl.tsx +20 -0
- package/corpus/templates/tasks/app/components/tasks/use-task-row-completion-animation.ts +181 -0
- package/corpus/templates/tasks/app/components/ui/accordion.tsx +56 -0
- package/corpus/templates/tasks/app/components/ui/alert-dialog.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/alert.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/aspect-ratio.tsx +5 -0
- package/corpus/templates/tasks/app/components/ui/avatar.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/badge.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/breadcrumb.tsx +115 -0
- package/corpus/templates/tasks/app/components/ui/button.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/calendar.tsx +70 -0
- package/corpus/templates/tasks/app/components/ui/card.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/carousel.tsx +260 -0
- package/corpus/templates/tasks/app/components/ui/chart.tsx +379 -0
- package/corpus/templates/tasks/app/components/ui/checkbox.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/collapsible.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/command.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/context-menu.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/dialog.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/drawer.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/dropdown-menu.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/form.tsx +177 -0
- package/corpus/templates/tasks/app/components/ui/hover-card.tsx +27 -0
- package/corpus/templates/tasks/app/components/ui/input-otp.tsx +69 -0
- package/corpus/templates/tasks/app/components/ui/input.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/label.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/menubar.tsx +254 -0
- package/corpus/templates/tasks/app/components/ui/navigation-menu.tsx +128 -0
- package/corpus/templates/tasks/app/components/ui/pagination.tsx +121 -0
- package/corpus/templates/tasks/app/components/ui/popover.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/progress.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/radio-group.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/resizable.tsx +43 -0
- package/corpus/templates/tasks/app/components/ui/scroll-area.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/select.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/separator.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/sheet.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/sidebar.tsx +782 -0
- package/corpus/templates/tasks/app/components/ui/skeleton.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/slider.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/sonner.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/spinner.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/switch.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/table.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/tabs.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/textarea.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/toast.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/toaster.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/toggle-group.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/toggle.tsx +43 -0
- package/corpus/templates/tasks/app/components/ui/tooltip.tsx +1 -0
- package/corpus/templates/tasks/app/components/ui/use-toast.ts +3 -0
- package/corpus/templates/tasks/app/entry.client.tsx +19 -0
- package/corpus/templates/tasks/app/entry.server.tsx +10 -0
- package/corpus/templates/tasks/app/global.css +93 -0
- package/corpus/templates/tasks/app/hooks/cache.ts +31 -0
- package/corpus/templates/tasks/app/hooks/use-custom-fields.ts +93 -0
- package/corpus/templates/tasks/app/hooks/use-inbox-items.ts +196 -0
- package/corpus/templates/tasks/app/hooks/use-mobile.tsx +21 -0
- package/corpus/templates/tasks/app/hooks/use-navigation-state.ts +40 -0
- package/corpus/templates/tasks/app/hooks/use-tasks.ts +276 -0
- package/corpus/templates/tasks/app/hooks/use-toast.ts +188 -0
- package/corpus/templates/tasks/app/hooks/use-visible-task-fields.ts +140 -0
- package/corpus/templates/tasks/app/lib/app-config.ts +11 -0
- package/corpus/templates/tasks/app/lib/tab-id.ts +1 -0
- package/corpus/templates/tasks/app/lib/utils.ts +1 -0
- package/corpus/templates/tasks/app/root.tsx +130 -0
- package/corpus/templates/tasks/app/routes/_index.tsx +22 -0
- package/corpus/templates/tasks/app/routes/extensions.$id.$slug.tsx +2 -0
- package/corpus/templates/tasks/app/routes/extensions.$id.tsx +11 -0
- package/corpus/templates/tasks/app/routes/extensions._index.tsx +11 -0
- package/corpus/templates/tasks/app/routes/extensions.tsx +5 -0
- package/corpus/templates/tasks/app/routes/fields.tsx +16 -0
- package/corpus/templates/tasks/app/routes/inbox.tsx +16 -0
- package/corpus/templates/tasks/app/routes/tasks.tsx +17 -0
- package/corpus/templates/tasks/app/routes/team.tsx +17 -0
- package/corpus/templates/tasks/app/routes.ts +4 -0
- package/corpus/templates/tasks/app/vite-env.d.ts +6 -0
- package/corpus/templates/tasks/components.json +20 -0
- package/corpus/templates/tasks/data/sync-config.json +1 -0
- package/corpus/templates/tasks/docs/features/README.md +81 -0
- package/corpus/templates/tasks/docs/features/f1-tasks.mdx +67 -0
- package/corpus/templates/tasks/docs/features/f2-custom-fields.mdx +68 -0
- package/corpus/templates/tasks/docs/features/f3-projects.mdx +33 -0
- package/corpus/templates/tasks/docs/features/f4-inbox.mdx +55 -0
- package/corpus/templates/tasks/docs/features/f5-views.mdx +65 -0
- package/corpus/templates/tasks/docs/features/f6-search.mdx +43 -0
- package/corpus/templates/tasks/docs/features/f7-first-run.mdx +66 -0
- package/corpus/templates/tasks/docs/features/f8-chat.mdx +120 -0
- package/corpus/templates/tasks/e2e/global-setup.ts +42 -0
- package/corpus/templates/tasks/e2e/helpers/inbox.ts +71 -0
- package/corpus/templates/tasks/e2e/helpers/tasks.ts +99 -0
- package/corpus/templates/tasks/learnings.defaults.md +5 -0
- package/corpus/templates/tasks/netlify.toml +10 -0
- package/corpus/templates/tasks/package.json +104 -0
- package/corpus/templates/tasks/playwright.config.ts +34 -0
- package/corpus/templates/tasks/public/agent-native-icon-dark.svg +10 -0
- package/corpus/templates/tasks/public/agent-native-icon-light.svg +10 -0
- package/corpus/templates/tasks/public/agent-native-logo-dark.svg +21 -0
- package/corpus/templates/tasks/public/agent-native-logo-light.svg +21 -0
- package/corpus/templates/tasks/public/favicon.svg +1 -0
- package/corpus/templates/tasks/public/icon-180.svg +1 -0
- package/corpus/templates/tasks/public/icon-192.svg +1 -0
- package/corpus/templates/tasks/public/icon-512.svg +1 -0
- package/corpus/templates/tasks/public/manifest.json +21 -0
- package/corpus/templates/tasks/react-router.config.ts +7 -0
- package/corpus/templates/tasks/server/custom-fields/normalize.ts +163 -0
- package/corpus/templates/tasks/server/custom-fields/parse.ts +146 -0
- package/corpus/templates/tasks/server/custom-fields/schema.ts +147 -0
- package/corpus/templates/tasks/server/custom-fields/store.ts +425 -0
- package/corpus/templates/tasks/server/custom-fields/task-fields.ts +104 -0
- package/corpus/templates/tasks/server/custom-fields/types.ts +98 -0
- package/corpus/templates/tasks/server/custom-fields/validate.ts +210 -0
- package/corpus/templates/tasks/server/custom-fields/values/store.ts +386 -0
- package/corpus/templates/tasks/server/db/bulk-write.ts +30 -0
- package/corpus/templates/tasks/server/db/index.ts +5 -0
- package/corpus/templates/tasks/server/db/record-utils.ts +7 -0
- package/corpus/templates/tasks/server/db/schema.ts +67 -0
- package/corpus/templates/tasks/server/db/test-tasks-table.ts +76 -0
- package/corpus/templates/tasks/server/db/transaction.ts +6 -0
- package/corpus/templates/tasks/server/errors.ts +31 -0
- package/corpus/templates/tasks/server/inbox/store.ts +216 -0
- package/corpus/templates/tasks/server/middleware/auth.ts +15 -0
- package/corpus/templates/tasks/server/plugins/agent-chat.ts +46 -0
- package/corpus/templates/tasks/server/plugins/auth.ts +15 -0
- package/corpus/templates/tasks/server/plugins/db.ts +90 -0
- package/corpus/templates/tasks/server/routes/[...page].get.ts +5 -0
- package/corpus/templates/tasks/server/stored-items/store.ts +548 -0
- package/corpus/templates/tasks/server/tasks/store.ts +306 -0
- package/corpus/templates/tasks/server/user-config/store.ts +138 -0
- package/corpus/templates/tasks/shared/app-state-tabs.ts +15 -0
- package/corpus/templates/tasks/shared/boolean-param.ts +22 -0
- package/corpus/templates/tasks/shared/bulk-limits.ts +7 -0
- package/corpus/templates/tasks/shared/list-screen-snapshot.ts +90 -0
- package/corpus/templates/tasks/shared/navigation.ts +104 -0
- package/corpus/templates/tasks/shared/visible-task-fields.ts +2 -0
- package/corpus/templates/tasks/ssr-entry.ts +15 -0
- package/corpus/templates/tasks/tsconfig.json +24 -0
- package/corpus/templates/tasks/vite.config.ts +19 -0
- package/corpus/templates/tasks/vitest.config.ts +8 -0
- package/dist/cli/templates-meta.d.ts.map +1 -1
- package/dist/cli/templates-meta.js +13 -0
- package/dist/cli/templates-meta.js.map +1 -1
- package/dist/client/agent-page/AgentTabsPage.js +1 -1
- package/dist/client/agent-page/AgentTabsPage.js.map +1 -1
- package/dist/client/org/OrgSwitcher.d.ts.map +1 -1
- package/dist/client/org/OrgSwitcher.js +2 -1
- package/dist/client/org/OrgSwitcher.js.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/notifications/routes.d.ts +2 -2
- package/dist/observability/routes.d.ts +5 -5
- package/dist/resources/handlers.d.ts +3 -3
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
import { IconChecks, IconTrash } from "@tabler/icons-react";
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
|
|
4
|
+
import { selectColorClass } from "@/components/custom-fields/editor/config/select-colors";
|
|
5
|
+
import type { SortableItemRenderProps } from "@/components/dnd/SortableItem";
|
|
6
|
+
import {
|
|
7
|
+
InlineEditable,
|
|
8
|
+
LIST_ROW_TITLE_FIELD_CLASS,
|
|
9
|
+
} from "@/components/shared/InlineEditable";
|
|
10
|
+
import { ListRow } from "@/components/shared/list/ListRow";
|
|
11
|
+
import { ListRowDragHandle } from "@/components/shared/list/ListRowDragHandle";
|
|
12
|
+
import { RowActionsMenu } from "@/components/shared/RowActionsMenu";
|
|
13
|
+
import type { ListSelection } from "@/components/shared/selection/use-list-selection";
|
|
14
|
+
import { useTaskRowCompletionAnimation } from "@/components/tasks/use-task-row-completion-animation";
|
|
15
|
+
import { Badge } from "@/components/ui/badge";
|
|
16
|
+
import { Checkbox } from "@/components/ui/checkbox";
|
|
17
|
+
import { DropdownMenuItem } from "@/components/ui/dropdown-menu";
|
|
18
|
+
import type { TaskFieldValue } from "@/hooks/use-custom-fields";
|
|
19
|
+
import {
|
|
20
|
+
TASK_CARD_FIELD_LIMIT,
|
|
21
|
+
useVisibleTaskFieldIds,
|
|
22
|
+
} from "@/hooks/use-visible-task-fields";
|
|
23
|
+
import { cn } from "@/lib/utils";
|
|
24
|
+
|
|
25
|
+
import "./TaskListRow.css";
|
|
26
|
+
|
|
27
|
+
export interface TaskListRowProps {
|
|
28
|
+
sortable: SortableItemRenderProps;
|
|
29
|
+
selection: ListSelection<{ id: string }>;
|
|
30
|
+
item: { id: string; title: string };
|
|
31
|
+
fields?: TaskFieldValue[];
|
|
32
|
+
done?: boolean;
|
|
33
|
+
highlighted?: boolean;
|
|
34
|
+
hideAfterComplete: boolean;
|
|
35
|
+
onOpenDetails: () => void;
|
|
36
|
+
onUpdateTitle: (title: string) => Promise<unknown>;
|
|
37
|
+
onUpdateDone: (done: boolean) => Promise<unknown>;
|
|
38
|
+
onRequestDelete: () => void;
|
|
39
|
+
onBeginExit: () => void;
|
|
40
|
+
onExitAfterComplete: () => void;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function TaskListRow({
|
|
44
|
+
sortable,
|
|
45
|
+
selection,
|
|
46
|
+
item,
|
|
47
|
+
fields,
|
|
48
|
+
done = false,
|
|
49
|
+
highlighted = false,
|
|
50
|
+
hideAfterComplete,
|
|
51
|
+
onOpenDetails,
|
|
52
|
+
onUpdateTitle,
|
|
53
|
+
onUpdateDone,
|
|
54
|
+
onRequestDelete,
|
|
55
|
+
onBeginExit,
|
|
56
|
+
onExitAfterComplete,
|
|
57
|
+
}: TaskListRowProps) {
|
|
58
|
+
const selected = selection.state.selectedItems.some(
|
|
59
|
+
(entry) => entry.id === item.id,
|
|
60
|
+
);
|
|
61
|
+
const [displayTitle, setDisplayTitle] = useState(item.title);
|
|
62
|
+
|
|
63
|
+
const completion = useTaskRowCompletionAnimation({
|
|
64
|
+
taskDone: done,
|
|
65
|
+
hideAfterComplete,
|
|
66
|
+
onBeginExit,
|
|
67
|
+
onExitAfterComplete,
|
|
68
|
+
onUpdateTask: (patch) => onUpdateDone(patch.done),
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
if (completion.completionPhase === "exited") {
|
|
72
|
+
return null;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
const displayDone = completion.displayDone;
|
|
76
|
+
const completionPhase = completion.completionPhase;
|
|
77
|
+
const busy = completion.isAnimating;
|
|
78
|
+
|
|
79
|
+
return (
|
|
80
|
+
<ListRow
|
|
81
|
+
sortable={sortable}
|
|
82
|
+
item={item}
|
|
83
|
+
itemLabel={displayTitle}
|
|
84
|
+
selection={selection}
|
|
85
|
+
highlighted={highlighted}
|
|
86
|
+
onActivate={onOpenDetails}
|
|
87
|
+
onAnimationEnd={completion.handleRowAnimationEnd}
|
|
88
|
+
dataAttributes={{ "data-task-id": item.id }}
|
|
89
|
+
className={cn(
|
|
90
|
+
"will-change-[opacity,transform]",
|
|
91
|
+
displayDone && completionPhase === "idle" && !selected && "opacity-60",
|
|
92
|
+
completionPhase === "completing" &&
|
|
93
|
+
hideAfterComplete &&
|
|
94
|
+
"task-row-exit opacity-60",
|
|
95
|
+
completionPhase === "completing" &&
|
|
96
|
+
!hideAfterComplete &&
|
|
97
|
+
"task-row-complete opacity-60",
|
|
98
|
+
completionPhase === "uncompleting" && "task-row-restore",
|
|
99
|
+
)}
|
|
100
|
+
>
|
|
101
|
+
{({ rowDrag, rowSelection }) => {
|
|
102
|
+
const selectionTitleClassName = cn(
|
|
103
|
+
LIST_ROW_TITLE_FIELD_CLASS,
|
|
104
|
+
"flex items-center truncate border-transparent bg-transparent text-left text-foreground",
|
|
105
|
+
displayDone && "line-through text-muted-foreground",
|
|
106
|
+
rowSelection.selected && displayDone && "text-foreground/80",
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
return (
|
|
110
|
+
<>
|
|
111
|
+
<ListRowDragHandle
|
|
112
|
+
rowDrag={rowDrag}
|
|
113
|
+
rowSelection={rowSelection}
|
|
114
|
+
displayTitle={displayTitle}
|
|
115
|
+
disabled={busy}
|
|
116
|
+
/>
|
|
117
|
+
|
|
118
|
+
<Checkbox
|
|
119
|
+
checked={displayDone}
|
|
120
|
+
disabled={busy}
|
|
121
|
+
onCheckedChange={completion.handleDoneToggle}
|
|
122
|
+
onClick={
|
|
123
|
+
rowSelection.selectionMode ? rowSelection.selectRow : undefined
|
|
124
|
+
}
|
|
125
|
+
aria-label={`Mark ${displayTitle} ${displayDone ? "incomplete" : "complete"}`}
|
|
126
|
+
/>
|
|
127
|
+
|
|
128
|
+
<div className="min-w-0 flex-1">
|
|
129
|
+
{rowSelection.selectionMode ? (
|
|
130
|
+
<div className={selectionTitleClassName}>{displayTitle}</div>
|
|
131
|
+
) : (
|
|
132
|
+
<InlineEditable
|
|
133
|
+
value={item.title}
|
|
134
|
+
onSave={onUpdateTitle}
|
|
135
|
+
onDisplayTitleChange={setDisplayTitle}
|
|
136
|
+
ariaLabel="Edit title"
|
|
137
|
+
disabled={busy}
|
|
138
|
+
titleDragProps={rowDrag.titleDragProps}
|
|
139
|
+
displayDone={displayDone}
|
|
140
|
+
/>
|
|
141
|
+
)}
|
|
142
|
+
<div className="min-w-0 md:hidden">
|
|
143
|
+
<TaskListRowFieldBadges fields={fields} />
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
|
|
147
|
+
<div className="hidden min-w-0 shrink-0 md:block">
|
|
148
|
+
<TaskListRowFieldStrip fields={fields} />
|
|
149
|
+
</div>
|
|
150
|
+
|
|
151
|
+
<RowActionsMenu
|
|
152
|
+
ariaLabel={`Actions for ${displayTitle}`}
|
|
153
|
+
disabled={busy || rowSelection.selectionMode}
|
|
154
|
+
>
|
|
155
|
+
<DropdownMenuItem
|
|
156
|
+
className="gap-2"
|
|
157
|
+
onSelect={() => selection.actions.startSelection(item.id)}
|
|
158
|
+
>
|
|
159
|
+
<IconChecks className="size-4" />
|
|
160
|
+
Select
|
|
161
|
+
</DropdownMenuItem>
|
|
162
|
+
<DropdownMenuItem
|
|
163
|
+
className="gap-2 text-destructive focus:bg-destructive focus:text-destructive-foreground"
|
|
164
|
+
onSelect={onRequestDelete}
|
|
165
|
+
>
|
|
166
|
+
<IconTrash className="size-4" />
|
|
167
|
+
Delete
|
|
168
|
+
</DropdownMenuItem>
|
|
169
|
+
</RowActionsMenu>
|
|
170
|
+
</>
|
|
171
|
+
);
|
|
172
|
+
}}
|
|
173
|
+
</ListRow>
|
|
174
|
+
);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
function TaskListRowFieldBadges({ fields }: { fields?: TaskFieldValue[] }) {
|
|
178
|
+
const { fieldIds } = useVisibleTaskFieldIds();
|
|
179
|
+
const visible = taskCardDisplayFields(fieldIds, fields).filter(
|
|
180
|
+
(item) => item.value,
|
|
181
|
+
);
|
|
182
|
+
if (visible.length === 0) return null;
|
|
183
|
+
|
|
184
|
+
return (
|
|
185
|
+
<div className="mt-1 flex min-w-0 flex-wrap gap-1.5">
|
|
186
|
+
{visible.map((item) => (
|
|
187
|
+
<Badge
|
|
188
|
+
key={item.id}
|
|
189
|
+
variant="secondary"
|
|
190
|
+
className="max-w-48 gap-1.5 px-1.5 py-0 text-xs font-normal"
|
|
191
|
+
title={`${item.title}: ${item.value}`}
|
|
192
|
+
>
|
|
193
|
+
<span
|
|
194
|
+
className={cn("size-1.5 shrink-0 rounded-full", item.colorClass)}
|
|
195
|
+
/>
|
|
196
|
+
<span className="truncate">
|
|
197
|
+
{item.title}: {item.value}
|
|
198
|
+
</span>
|
|
199
|
+
</Badge>
|
|
200
|
+
))}
|
|
201
|
+
</div>
|
|
202
|
+
);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
function TaskListRowFieldStrip({ fields }: { fields?: TaskFieldValue[] }) {
|
|
206
|
+
const { fieldIds } = useVisibleTaskFieldIds();
|
|
207
|
+
const items = taskCardDisplayFields(fieldIds, fields);
|
|
208
|
+
const columnCount = Math.min(fieldIds.length, TASK_CARD_FIELD_LIMIT);
|
|
209
|
+
|
|
210
|
+
return (
|
|
211
|
+
<div
|
|
212
|
+
className="grid items-center gap-2 text-xs"
|
|
213
|
+
style={{
|
|
214
|
+
gridTemplateColumns: `repeat(${columnCount}, minmax(6.5rem, 8rem))`,
|
|
215
|
+
}}
|
|
216
|
+
aria-label="Visible task fields"
|
|
217
|
+
>
|
|
218
|
+
{items.map((item) => (
|
|
219
|
+
<div
|
|
220
|
+
key={item.id}
|
|
221
|
+
className={cn(
|
|
222
|
+
"flex h-8 min-w-0 items-center gap-1.5 rounded-md border border-transparent px-2 text-muted-foreground",
|
|
223
|
+
item.value && "bg-muted/45 text-foreground",
|
|
224
|
+
)}
|
|
225
|
+
title={item.value ? `${item.title}: ${item.value}` : item.title}
|
|
226
|
+
>
|
|
227
|
+
{item.value ? (
|
|
228
|
+
<span
|
|
229
|
+
className={cn("size-1.5 shrink-0 rounded-full", item.colorClass)}
|
|
230
|
+
/>
|
|
231
|
+
) : null}
|
|
232
|
+
<span className="truncate">{item.value ?? "—"}</span>
|
|
233
|
+
</div>
|
|
234
|
+
))}
|
|
235
|
+
</div>
|
|
236
|
+
);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
type TaskCardDisplayField = {
|
|
240
|
+
id: string;
|
|
241
|
+
title: string;
|
|
242
|
+
value: string | null;
|
|
243
|
+
colorClass: string;
|
|
244
|
+
};
|
|
245
|
+
|
|
246
|
+
function taskCardDisplayFields(
|
|
247
|
+
fieldIds: readonly string[],
|
|
248
|
+
fields?: TaskFieldValue[],
|
|
249
|
+
): TaskCardDisplayField[] {
|
|
250
|
+
return fieldIds.slice(0, TASK_CARD_FIELD_LIMIT).map((fieldId) => {
|
|
251
|
+
const field = fields?.find((candidate) => candidate.id === fieldId);
|
|
252
|
+
return {
|
|
253
|
+
id: fieldId,
|
|
254
|
+
title: field?.title ?? fieldId,
|
|
255
|
+
value: field ? formatTaskFieldDisplayValue(field) : null,
|
|
256
|
+
colorClass: taskFieldDisplayDotClass(field),
|
|
257
|
+
};
|
|
258
|
+
});
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
function optionById(field: TaskFieldValue, optionId: string) {
|
|
262
|
+
const options = "options" in field.config ? field.config.options : [];
|
|
263
|
+
return options.find((option) => option.id === optionId);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
function formatTaskFieldDisplayValue(field: TaskFieldValue) {
|
|
267
|
+
const { value } = field;
|
|
268
|
+
if (value == null || (Array.isArray(value) && value.length === 0)) {
|
|
269
|
+
return null;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
if (field.type === "currency" && typeof value === "number") {
|
|
273
|
+
return `${field.config.symbol}${value.toFixed(field.config.precision ?? 2)}`;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
if (field.type === "percent" && typeof value === "number") {
|
|
277
|
+
return `${value}%`;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
if (typeof value === "number") {
|
|
281
|
+
return value.toLocaleString(undefined, {
|
|
282
|
+
maximumFractionDigits:
|
|
283
|
+
field.type === "number" ? (field.config.precision ?? 6) : 6,
|
|
284
|
+
});
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
if (field.type === "single_select" && typeof value === "string") {
|
|
288
|
+
return optionById(field, value)?.name ?? null;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
if (field.type === "multi_select" && Array.isArray(value)) {
|
|
292
|
+
return value
|
|
293
|
+
.map((optionId) => optionById(field, optionId)?.name)
|
|
294
|
+
.filter(Boolean)
|
|
295
|
+
.join(", ");
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
return typeof value === "string" ? value : null;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
function taskFieldDisplayDotClass(field?: TaskFieldValue) {
|
|
302
|
+
if (!field) return "bg-muted-foreground/30";
|
|
303
|
+
if (field.type === "single_select" && typeof field.value === "string") {
|
|
304
|
+
return selectColorClass(optionById(field, field.value)?.color);
|
|
305
|
+
}
|
|
306
|
+
return "bg-muted-foreground/40";
|
|
307
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { useCallback } from "react";
|
|
2
|
+
import { toast } from "sonner";
|
|
3
|
+
|
|
4
|
+
import { SidePanel } from "@/components/shared/SidePanel";
|
|
5
|
+
import { Label } from "@/components/ui/label";
|
|
6
|
+
import type { FieldValue, TaskFieldValue } from "@/hooks/use-custom-fields";
|
|
7
|
+
import { useUpdateTask, type TaskWithFields } from "@/hooks/use-tasks";
|
|
8
|
+
|
|
9
|
+
import { FieldValueControl } from "./controls/FieldValueControl";
|
|
10
|
+
import { TaskTitleSection } from "./TaskTitleSection";
|
|
11
|
+
|
|
12
|
+
export function TaskFieldsSidebar({
|
|
13
|
+
task,
|
|
14
|
+
onClose,
|
|
15
|
+
}: {
|
|
16
|
+
task: TaskWithFields | null;
|
|
17
|
+
onClose: () => void;
|
|
18
|
+
}) {
|
|
19
|
+
if (!task) return null;
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<SidePanel
|
|
23
|
+
title="Fields"
|
|
24
|
+
subtitle="Task details"
|
|
25
|
+
closeLabel="Close fields panel"
|
|
26
|
+
onClose={onClose}
|
|
27
|
+
>
|
|
28
|
+
<TaskFieldsSidebarPanel task={task} />
|
|
29
|
+
</SidePanel>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function TaskFieldsSidebarPanel({ task }: { task: TaskWithFields }) {
|
|
34
|
+
const fields = task.fields ?? [];
|
|
35
|
+
const updateTask = useUpdateTask();
|
|
36
|
+
|
|
37
|
+
const saveUpdate = useCallback(
|
|
38
|
+
(payload: {
|
|
39
|
+
title?: string;
|
|
40
|
+
fieldValues?: Array<{ fieldId: string; value: FieldValue | null }>;
|
|
41
|
+
}) => {
|
|
42
|
+
void updateTask
|
|
43
|
+
.mutateAsync({ taskId: task.id, ...payload })
|
|
44
|
+
.catch((caught) => {
|
|
45
|
+
toast.error((caught as Error)?.message ?? "Could not update task.");
|
|
46
|
+
});
|
|
47
|
+
},
|
|
48
|
+
[task.id, updateTask],
|
|
49
|
+
);
|
|
50
|
+
|
|
51
|
+
return (
|
|
52
|
+
<div className="min-h-0 flex-1 overflow-y-auto">
|
|
53
|
+
<TaskTitleSection
|
|
54
|
+
title={task.title}
|
|
55
|
+
onChange={(title) => saveUpdate({ title })}
|
|
56
|
+
/>
|
|
57
|
+
|
|
58
|
+
{fields.length === 0 ? (
|
|
59
|
+
<div className="m-3 rounded-lg border border-dashed border-border p-6 text-center text-[13px] text-muted-foreground">
|
|
60
|
+
No fields defined.
|
|
61
|
+
</div>
|
|
62
|
+
) : (
|
|
63
|
+
fields.map((field) => (
|
|
64
|
+
<TaskFieldEditorSection
|
|
65
|
+
key={field.id}
|
|
66
|
+
field={field}
|
|
67
|
+
value={field.value ?? null}
|
|
68
|
+
onChange={(value) =>
|
|
69
|
+
saveUpdate({ fieldValues: [{ fieldId: field.id, value }] })
|
|
70
|
+
}
|
|
71
|
+
/>
|
|
72
|
+
))
|
|
73
|
+
)}
|
|
74
|
+
</div>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function TaskFieldEditorSection({
|
|
79
|
+
field,
|
|
80
|
+
value,
|
|
81
|
+
onChange,
|
|
82
|
+
}: {
|
|
83
|
+
field: TaskFieldValue;
|
|
84
|
+
value: FieldValue | null;
|
|
85
|
+
onChange: (value: FieldValue | null) => void;
|
|
86
|
+
}) {
|
|
87
|
+
return (
|
|
88
|
+
<section className="grid gap-2 border-b border-border/70 px-3 py-3 last:border-b-0">
|
|
89
|
+
<div className="flex min-w-0 items-center justify-between gap-2">
|
|
90
|
+
<Label className="min-w-0 truncate text-[13px] font-medium">
|
|
91
|
+
{field.title}
|
|
92
|
+
</Label>
|
|
93
|
+
</div>
|
|
94
|
+
<FieldValueControl
|
|
95
|
+
field={field}
|
|
96
|
+
value={value}
|
|
97
|
+
disabled={false}
|
|
98
|
+
onChange={onChange}
|
|
99
|
+
/>
|
|
100
|
+
</section>
|
|
101
|
+
);
|
|
102
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Input } from "@/components/ui/input";
|
|
2
|
+
import { Label } from "@/components/ui/label";
|
|
3
|
+
|
|
4
|
+
export function TaskTitleSection({
|
|
5
|
+
title,
|
|
6
|
+
onChange,
|
|
7
|
+
}: {
|
|
8
|
+
title: string;
|
|
9
|
+
onChange: (title: string) => void;
|
|
10
|
+
}) {
|
|
11
|
+
return (
|
|
12
|
+
<section className="grid gap-2 border-b border-border/70 px-3 py-3">
|
|
13
|
+
<div className="flex min-w-0 items-center justify-between gap-2">
|
|
14
|
+
<Label className="min-w-0 truncate text-[13px] font-medium">
|
|
15
|
+
Title
|
|
16
|
+
</Label>
|
|
17
|
+
<span className="shrink-0 text-[11px] text-muted-foreground">Task</span>
|
|
18
|
+
</div>
|
|
19
|
+
<Input
|
|
20
|
+
value={title}
|
|
21
|
+
onChange={(event) => onChange(event.currentTarget.value)}
|
|
22
|
+
aria-label="Edit task title"
|
|
23
|
+
className="h-9 text-[13px]"
|
|
24
|
+
/>
|
|
25
|
+
</section>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Input } from "@/components/ui/input";
|
|
2
|
+
import type { FieldValue } from "@/hooks/use-custom-fields";
|
|
3
|
+
|
|
4
|
+
export function DateValueControl({
|
|
5
|
+
value,
|
|
6
|
+
disabled,
|
|
7
|
+
onChange,
|
|
8
|
+
}: {
|
|
9
|
+
value: FieldValue | null;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
onChange: (value: FieldValue | null) => void;
|
|
12
|
+
}) {
|
|
13
|
+
return (
|
|
14
|
+
<Input
|
|
15
|
+
type="date"
|
|
16
|
+
value={typeof value === "string" ? value : ""}
|
|
17
|
+
disabled={disabled}
|
|
18
|
+
onChange={(event) => onChange(event.currentTarget.value || null)}
|
|
19
|
+
/>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import type { FieldValue, TaskFieldValue } from "@/hooks/use-custom-fields";
|
|
2
|
+
|
|
3
|
+
import { DateValueControl } from "./DateValueControl";
|
|
4
|
+
import { MultiSelectValueControl } from "./MultiSelectValueControl";
|
|
5
|
+
import { NumberValueControl } from "./NumberValueControl";
|
|
6
|
+
import { RichTextValueControl } from "./RichTextValueControl";
|
|
7
|
+
import { SingleSelectValueControl } from "./SingleSelectValueControl";
|
|
8
|
+
import { TextValueControl } from "./TextValueControl";
|
|
9
|
+
|
|
10
|
+
export function FieldValueControl({
|
|
11
|
+
field,
|
|
12
|
+
value,
|
|
13
|
+
disabled,
|
|
14
|
+
onChange,
|
|
15
|
+
}: {
|
|
16
|
+
field: TaskFieldValue;
|
|
17
|
+
value: FieldValue | null;
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
onChange: (value: FieldValue | null) => void;
|
|
20
|
+
}) {
|
|
21
|
+
switch (field.type) {
|
|
22
|
+
case "text":
|
|
23
|
+
return (
|
|
24
|
+
<TextValueControl
|
|
25
|
+
value={value}
|
|
26
|
+
disabled={disabled}
|
|
27
|
+
onChange={onChange}
|
|
28
|
+
/>
|
|
29
|
+
);
|
|
30
|
+
case "rich_text":
|
|
31
|
+
return (
|
|
32
|
+
<RichTextValueControl
|
|
33
|
+
value={typeof value === "string" ? value : ""}
|
|
34
|
+
disabled={disabled}
|
|
35
|
+
onChange={(next) => onChange(next || null)}
|
|
36
|
+
/>
|
|
37
|
+
);
|
|
38
|
+
case "number":
|
|
39
|
+
case "percent":
|
|
40
|
+
case "currency":
|
|
41
|
+
return (
|
|
42
|
+
<NumberValueControl
|
|
43
|
+
field={field}
|
|
44
|
+
value={value}
|
|
45
|
+
disabled={disabled}
|
|
46
|
+
onChange={onChange}
|
|
47
|
+
/>
|
|
48
|
+
);
|
|
49
|
+
case "date":
|
|
50
|
+
return (
|
|
51
|
+
<DateValueControl
|
|
52
|
+
value={value}
|
|
53
|
+
disabled={disabled}
|
|
54
|
+
onChange={onChange}
|
|
55
|
+
/>
|
|
56
|
+
);
|
|
57
|
+
case "single_select":
|
|
58
|
+
return (
|
|
59
|
+
<SingleSelectValueControl
|
|
60
|
+
field={field}
|
|
61
|
+
value={value}
|
|
62
|
+
disabled={disabled}
|
|
63
|
+
onChange={onChange}
|
|
64
|
+
/>
|
|
65
|
+
);
|
|
66
|
+
case "multi_select":
|
|
67
|
+
return (
|
|
68
|
+
<MultiSelectValueControl
|
|
69
|
+
field={field}
|
|
70
|
+
value={value}
|
|
71
|
+
disabled={disabled}
|
|
72
|
+
onChange={onChange}
|
|
73
|
+
/>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
}
|
package/corpus/templates/tasks/app/components/tasks/fields/controls/MultiSelectValueControl.tsx
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { selectColorClass } from "@/components/custom-fields/editor/config/select-colors";
|
|
2
|
+
import { optionsFromConfig } from "@/components/custom-fields/editor/config/utils";
|
|
3
|
+
import { Checkbox } from "@/components/ui/checkbox";
|
|
4
|
+
import type { FieldValue, TaskFieldValue } from "@/hooks/use-custom-fields";
|
|
5
|
+
import { cn } from "@/lib/utils";
|
|
6
|
+
|
|
7
|
+
export function MultiSelectValueControl({
|
|
8
|
+
field,
|
|
9
|
+
value,
|
|
10
|
+
disabled,
|
|
11
|
+
onChange,
|
|
12
|
+
}: {
|
|
13
|
+
field: TaskFieldValue & { type: "multi_select" };
|
|
14
|
+
value: FieldValue | null;
|
|
15
|
+
disabled: boolean;
|
|
16
|
+
onChange: (value: FieldValue | null) => void;
|
|
17
|
+
}) {
|
|
18
|
+
const options = optionsFromConfig(field.config);
|
|
19
|
+
const selected = Array.isArray(value) ? value : [];
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<div className="grid gap-2">
|
|
23
|
+
{options.map((option) => {
|
|
24
|
+
const checked = selected.includes(option.id);
|
|
25
|
+
return (
|
|
26
|
+
<label
|
|
27
|
+
key={option.id}
|
|
28
|
+
className="flex min-h-9 items-center gap-2 rounded-md border border-border/80 bg-background px-2.5 py-2 text-[13px] transition-colors hover:bg-muted/35"
|
|
29
|
+
>
|
|
30
|
+
<Checkbox
|
|
31
|
+
checked={checked}
|
|
32
|
+
disabled={disabled}
|
|
33
|
+
onCheckedChange={(next) => {
|
|
34
|
+
const nextSelected = next
|
|
35
|
+
? [...selected, option.id]
|
|
36
|
+
: selected.filter((optionId) => optionId !== option.id);
|
|
37
|
+
onChange(nextSelected.length > 0 ? nextSelected : null);
|
|
38
|
+
}}
|
|
39
|
+
/>
|
|
40
|
+
<span
|
|
41
|
+
className={cn(
|
|
42
|
+
"size-2 rounded-full",
|
|
43
|
+
selectColorClass(option.color),
|
|
44
|
+
)}
|
|
45
|
+
/>
|
|
46
|
+
<span className="min-w-0 flex-1 truncate">{option.name}</span>
|
|
47
|
+
</label>
|
|
48
|
+
);
|
|
49
|
+
})}
|
|
50
|
+
</div>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { Input } from "@/components/ui/input";
|
|
2
|
+
import type { FieldValue, TaskFieldValue } from "@/hooks/use-custom-fields";
|
|
3
|
+
|
|
4
|
+
function numericPrecision(
|
|
5
|
+
field: TaskFieldValue & { type: "number" | "percent" | "currency" },
|
|
6
|
+
) {
|
|
7
|
+
switch (field.type) {
|
|
8
|
+
case "number":
|
|
9
|
+
case "percent":
|
|
10
|
+
return field.config.precision ?? 0;
|
|
11
|
+
case "currency":
|
|
12
|
+
return field.config.precision ?? 2;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export function NumberValueControl({
|
|
17
|
+
field,
|
|
18
|
+
value,
|
|
19
|
+
disabled,
|
|
20
|
+
onChange,
|
|
21
|
+
}: {
|
|
22
|
+
field: TaskFieldValue & { type: "number" | "percent" | "currency" };
|
|
23
|
+
value: FieldValue | null;
|
|
24
|
+
disabled: boolean;
|
|
25
|
+
onChange: (value: FieldValue | null) => void;
|
|
26
|
+
}) {
|
|
27
|
+
const min =
|
|
28
|
+
field.type === "number" && field.config.positiveOnly ? 0 : undefined;
|
|
29
|
+
const precision = numericPrecision(field);
|
|
30
|
+
const step = precision === 0 ? 1 : 1 / 10 ** precision;
|
|
31
|
+
|
|
32
|
+
return (
|
|
33
|
+
<Input
|
|
34
|
+
type="number"
|
|
35
|
+
min={min}
|
|
36
|
+
step={step}
|
|
37
|
+
value={typeof value === "number" ? String(value) : ""}
|
|
38
|
+
disabled={disabled}
|
|
39
|
+
onChange={(event) => {
|
|
40
|
+
const next = event.currentTarget.value;
|
|
41
|
+
if (next === "") {
|
|
42
|
+
onChange(null);
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
let parsed = Number(next);
|
|
46
|
+
if (precision === 0) {
|
|
47
|
+
parsed = Math.trunc(parsed);
|
|
48
|
+
}
|
|
49
|
+
if (field.type === "number" && field.config.positiveOnly) {
|
|
50
|
+
parsed = Math.max(0, parsed);
|
|
51
|
+
}
|
|
52
|
+
onChange(parsed);
|
|
53
|
+
}}
|
|
54
|
+
/>
|
|
55
|
+
);
|
|
56
|
+
}
|