@vendure/dashboard 3.3.6-master-202507020959 → 3.3.6-master-202507030234
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/README.md +41 -4
- package/dist/plugin/vite-plugin-config.js +5 -7
- package/package.json +4 -4
- package/src/app/app-providers.tsx +6 -6
- package/src/app/common/delete-bulk-action.tsx +4 -4
- package/src/app/common/duplicate-bulk-action.tsx +5 -5
- package/src/app/main.tsx +9 -9
- package/src/app/routes/__root.tsx +1 -2
- package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_administrators/administrators.tsx +8 -8
- package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +11 -11
- package/src/app/routes/_authenticated/_administrators/components/administrator-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +16 -16
- package/src/app/routes/_authenticated/_assets/assets.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_assets/assets.tsx +12 -8
- package/src/app/routes/_authenticated/_assets/assets_.$id.tsx +14 -14
- package/src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx +5 -5
- package/src/app/routes/_authenticated/_channels/channels.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_channels/channels.tsx +10 -10
- package/src/app/routes/_authenticated/_channels/channels_.$id.tsx +16 -16
- package/src/app/routes/_authenticated/_channels/components/channel-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_collections/collections.graphql.ts +3 -3
- package/src/app/routes/_authenticated/_collections/collections.tsx +7 -7
- package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +15 -15
- package/src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx +4 -5
- package/src/app/routes/_authenticated/_collections/components/collection-contents-preview-table.tsx +7 -8
- package/src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx +9 -5
- package/src/app/routes/_authenticated/_collections/components/collection-contents-table.tsx +10 -9
- package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +7 -7
- package/src/app/routes/_authenticated/_countries/components/country-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_countries/countries.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_countries/countries.tsx +6 -6
- package/src/app/routes/_authenticated/_countries/countries_.$id.tsx +12 -12
- package/src/app/routes/_authenticated/_customer-groups/components/customer-group-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx +12 -5
- package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx +22 -17
- package/src/app/routes/_authenticated/_customer-groups/customer-groups.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_customer-groups/customer-groups.tsx +6 -6
- package/src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx +10 -10
- package/src/app/routes/_authenticated/_customers/components/customer-address-card.tsx +19 -19
- package/src/app/routes/_authenticated/_customers/components/customer-address-form.tsx +10 -10
- package/src/app/routes/_authenticated/_customers/components/customer-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx +5 -5
- package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx +11 -7
- package/src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts +4 -4
- package/src/app/routes/_authenticated/_customers/components/customer-order-table.tsx +75 -73
- package/src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx +4 -4
- package/src/app/routes/_authenticated/_customers/customers.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_customers/customers.tsx +6 -6
- package/src/app/routes/_authenticated/_customers/customers_.$id.tsx +14 -14
- package/src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx +9 -9
- package/src/app/routes/_authenticated/_facets/components/facet-bulk-actions.tsx +6 -7
- package/src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx +4 -4
- package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +15 -11
- package/src/app/routes/_authenticated/_facets/facets.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_facets/facets.tsx +7 -7
- package/src/app/routes/_authenticated/_facets/facets_.$id.tsx +12 -12
- package/src/app/routes/_authenticated/_global-settings/global-settings.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +12 -12
- package/src/app/routes/_authenticated/_orders/components/customer-address-selector.tsx +11 -14
- package/src/app/routes/_authenticated/_orders/components/edit-order-table.tsx +92 -54
- package/src/app/routes/_authenticated/_orders/components/money-gross-net.tsx +11 -9
- package/src/app/routes/_authenticated/_orders/components/order-address.tsx +3 -4
- package/src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx +67 -62
- package/src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx +11 -6
- package/src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts +4 -4
- package/src/app/routes/_authenticated/_orders/components/order-line-custom-fields-form.tsx +11 -7
- package/src/app/routes/_authenticated/_orders/components/order-table-totals.tsx +39 -19
- package/src/app/routes/_authenticated/_orders/components/order-table.tsx +4 -4
- package/src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx +38 -36
- package/src/app/routes/_authenticated/_orders/components/payment-details.tsx +4 -4
- package/src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx +43 -44
- package/src/app/routes/_authenticated/_orders/orders.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_orders/orders.tsx +21 -20
- package/src/app/routes/_authenticated/_orders/orders_.$id.tsx +9 -9
- package/src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx +188 -90
- package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +10 -7
- package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +11 -11
- package/src/app/routes/_authenticated/_payment-methods/components/payment-method-bulk-actions.tsx +4 -5
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +7 -7
- package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +13 -13
- package/src/app/routes/_authenticated/_product-variants/components/product-variant-bulk-actions.tsx +7 -8
- package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +7 -6
- package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_product-variants/product-variants.tsx +6 -6
- package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +19 -19
- package/src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx +10 -10
- package/src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx +7 -7
- package/src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx +57 -41
- package/src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx +11 -11
- package/src/app/routes/_authenticated/_products/components/create-product-variants.tsx +18 -14
- package/src/app/routes/_authenticated/_products/components/option-value-input.tsx +21 -15
- package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +7 -8
- package/src/app/routes/_authenticated/_products/components/product-option-select.tsx +28 -34
- package/src/app/routes/_authenticated/_products/components/product-variants-table.tsx +6 -6
- package/src/app/routes/_authenticated/_products/products.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_products/products.tsx +6 -6
- package/src/app/routes/_authenticated/_products/products_.$id.tsx +16 -16
- package/src/app/routes/_authenticated/_profile/profile.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_profile/profile.tsx +8 -8
- package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +14 -11
- package/src/app/routes/_authenticated/_promotions/components/promotion-bulk-actions.tsx +4 -5
- package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +14 -11
- package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_promotions/promotions.tsx +7 -7
- package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +14 -14
- package/src/app/routes/_authenticated/_roles/components/expandable-permissions.tsx +5 -5
- package/src/app/routes/_authenticated/_roles/components/permissions-grid.tsx +21 -17
- package/src/app/routes/_authenticated/_roles/components/role-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_roles/roles.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_roles/roles.tsx +10 -10
- package/src/app/routes/_authenticated/_roles/roles_.$id.tsx +11 -11
- package/src/app/routes/_authenticated/_sellers/components/seller-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_sellers/sellers.tsx +7 -7
- package/src/app/routes/_authenticated/_sellers/sellers_.$id.tsx +10 -10
- package/src/app/routes/_authenticated/_shipping-methods/components/fulfillment-handler-selector.tsx +6 -6
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +23 -21
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +25 -21
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-method-bulk-actions.tsx +4 -5
- package/src/app/routes/_authenticated/_shipping-methods/components/test-shipping-method-dialog.tsx +3 -3
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +6 -6
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +12 -12
- package/src/app/routes/_authenticated/_stock-locations/components/stock-location-bulk-actions.tsx +4 -5
- package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_stock-locations/stock-locations.tsx +6 -6
- package/src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx +11 -11
- package/src/app/routes/_authenticated/_system/components/payload-dialog.tsx +4 -4
- package/src/app/routes/_authenticated/_system/healthchecks.tsx +4 -4
- package/src/app/routes/_authenticated/_system/job-queue.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_system/job-queue.tsx +10 -6
- package/src/app/routes/_authenticated/_system/scheduled-tasks.tsx +34 -28
- package/src/app/routes/_authenticated/_tax-categories/components/tax-category-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_tax-categories/tax-categories.tsx +7 -7
- package/src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx +11 -11
- package/src/app/routes/_authenticated/_tax-rates/components/tax-rate-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_tax-rates/tax-rates.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +8 -8
- package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +14 -14
- package/src/app/routes/_authenticated/_zones/components/zone-bulk-actions.tsx +1 -1
- package/src/app/routes/_authenticated/_zones/components/zone-countries-sheet.tsx +4 -4
- package/src/app/routes/_authenticated/_zones/components/zone-countries-table.tsx +12 -8
- package/src/app/routes/_authenticated/_zones/zones.graphql.ts +1 -1
- package/src/app/routes/_authenticated/_zones/zones.tsx +6 -6
- package/src/app/routes/_authenticated/_zones/zones_.$id.tsx +10 -10
- package/src/app/routes/_authenticated/index.tsx +4 -4
- package/src/app/routes/_authenticated.tsx +3 -3
- package/src/app/routes/login.tsx +2 -2
- package/src/lib/components/data-display/boolean.tsx +1 -1
- package/src/lib/components/data-display/date-time.tsx +2 -2
- package/src/lib/components/data-display/json.tsx +1 -1
- package/src/lib/components/data-display/money.tsx +2 -3
- package/src/lib/components/data-input/affixed-input.tsx +3 -8
- package/src/lib/components/data-input/customer-group-input.tsx +2 -2
- package/src/lib/components/data-input/datetime-input.tsx +129 -146
- package/src/lib/components/data-input/facet-value-input.tsx +30 -22
- package/src/lib/components/data-input/money-input.tsx +3 -3
- package/src/lib/components/data-input/richt-text-input.tsx +1 -1
- package/src/lib/components/data-table/add-filter-menu.tsx +9 -18
- package/src/lib/components/data-table/data-table-bulk-action-item.tsx +3 -3
- package/src/lib/components/data-table/data-table-bulk-actions.tsx +7 -7
- package/src/lib/components/data-table/data-table-column-header.tsx +4 -22
- package/src/lib/components/data-table/data-table-faceted-filter.tsx +8 -8
- package/src/lib/components/data-table/data-table-filter-badge.tsx +1 -1
- package/src/lib/components/data-table/data-table-filter-dialog.tsx +4 -4
- package/src/lib/components/data-table/data-table-pagination.tsx +2 -2
- package/src/lib/components/data-table/data-table-view-options.tsx +25 -21
- package/src/lib/components/data-table/data-table.tsx +8 -8
- package/src/lib/components/data-table/filters/data-table-boolean-filter.tsx +11 -8
- package/src/lib/components/data-table/filters/data-table-datetime-filter.tsx +14 -23
- package/src/lib/components/data-table/filters/data-table-id-filter.tsx +15 -10
- package/src/lib/components/data-table/filters/data-table-number-filter.tsx +18 -17
- package/src/lib/components/data-table/filters/data-table-string-filter.tsx +29 -12
- package/src/lib/components/data-table/human-readable-operator.tsx +1 -1
- package/src/lib/components/data-table/refresh-button.tsx +5 -2
- package/src/lib/components/layout/app-layout.tsx +8 -8
- package/src/lib/components/layout/app-sidebar.tsx +5 -5
- package/src/lib/components/layout/channel-switcher.tsx +8 -8
- package/src/lib/components/layout/content-language-selector.tsx +16 -10
- package/src/lib/components/layout/generated-breadcrumbs.tsx +1 -1
- package/src/lib/components/layout/language-dialog.tsx +5 -11
- package/src/lib/components/layout/nav-main.tsx +4 -4
- package/src/lib/components/layout/nav-projects.tsx +2 -2
- package/src/lib/components/layout/nav-user.tsx +7 -7
- package/src/lib/components/layout/prerelease-popup.tsx +1 -1
- package/src/lib/components/login/login-form.tsx +5 -5
- package/src/lib/components/shared/alerts.tsx +3 -3
- package/src/lib/components/shared/animated-number.tsx +2 -2
- package/src/lib/components/shared/asset/asset-bulk-actions.tsx +12 -8
- package/src/lib/components/shared/asset/asset-focal-point-editor.tsx +29 -19
- package/src/lib/components/shared/asset/asset-gallery.tsx +12 -12
- package/src/lib/components/shared/asset/asset-picker-dialog.tsx +63 -66
- package/src/lib/components/shared/asset/asset-preview-dialog.tsx +3 -7
- package/src/lib/components/shared/asset/asset-preview-selector.tsx +4 -6
- package/src/lib/components/shared/asset/asset-preview.tsx +7 -15
- package/src/lib/components/shared/asset/asset-properties.tsx +7 -9
- package/src/lib/components/shared/asset/focal-point-control.tsx +5 -13
- package/src/lib/components/shared/assign-to-channel-bulk-action.tsx +4 -4
- package/src/lib/components/shared/assign-to-channel-dialog.tsx +8 -8
- package/src/lib/components/shared/channel-code-label.tsx +3 -4
- package/src/lib/components/shared/channel-selector.tsx +6 -6
- package/src/lib/components/shared/configurable-operation-arg-input.tsx +2 -2
- package/src/lib/components/shared/configurable-operation-input.tsx +15 -16
- package/src/lib/components/shared/confirmation-dialog.tsx +2 -2
- package/src/lib/components/shared/copyable-text.tsx +2 -3
- package/src/lib/components/shared/country-selector.tsx +21 -18
- package/src/lib/components/shared/currency-selector.tsx +5 -5
- package/src/lib/components/shared/custom-fields-form.tsx +9 -9
- package/src/lib/components/shared/customer-address-form.tsx +3 -3
- package/src/lib/components/shared/customer-group-selector.tsx +6 -6
- package/src/lib/components/shared/customer-selector.tsx +24 -18
- package/src/lib/components/shared/entity-assets.tsx +33 -34
- package/src/lib/components/shared/error-page.tsx +6 -6
- package/src/lib/components/shared/facet-value-chip.tsx +12 -5
- package/src/lib/components/shared/facet-value-selector.tsx +64 -63
- package/src/lib/components/shared/history-timeline/history-entry.tsx +12 -6
- package/src/lib/components/shared/history-timeline/history-note-checkbox.tsx +3 -3
- package/src/lib/components/shared/history-timeline/history-note-editor.tsx +4 -4
- package/src/lib/components/shared/history-timeline/history-note-input.tsx +3 -3
- package/src/lib/components/shared/history-timeline/history-timeline.tsx +15 -8
- package/src/lib/components/shared/language-selector.tsx +5 -5
- package/src/lib/components/shared/multi-select.tsx +5 -5
- package/src/lib/components/shared/navigation-confirmation.tsx +24 -9
- package/src/lib/components/shared/option-value-input.tsx +17 -15
- package/src/lib/components/shared/paginated-list-data-table.tsx +12 -12
- package/src/lib/components/shared/permission-guard.tsx +4 -4
- package/src/lib/components/shared/product-variant-selector.tsx +32 -31
- package/src/lib/components/shared/remove-from-channel-bulk-action.tsx +4 -4
- package/src/lib/components/shared/role-code-label.tsx +10 -6
- package/src/lib/components/shared/role-selector.tsx +4 -4
- package/src/lib/components/shared/seller-selector.tsx +21 -17
- package/src/lib/components/shared/stock-level-label.tsx +5 -5
- package/src/lib/components/shared/tax-category-selector.tsx +5 -5
- package/src/lib/components/shared/translatable-form-field.tsx +1 -1
- package/src/lib/components/shared/vendure-image.tsx +1 -1
- package/src/lib/components/shared/zone-selector.tsx +5 -6
- package/src/lib/components/ui/accordion.tsx +3 -3
- package/src/lib/components/ui/alert-dialog.tsx +10 -10
- package/src/lib/components/ui/alert.tsx +3 -3
- package/src/lib/components/ui/badge.tsx +2 -2
- package/src/lib/components/ui/breadcrumb.tsx +4 -4
- package/src/lib/components/ui/button.tsx +10 -3
- package/src/lib/components/ui/calendar.tsx +392 -459
- package/src/lib/components/ui/card.tsx +2 -2
- package/src/lib/components/ui/checkbox.tsx +2 -2
- package/src/lib/components/ui/command.tsx +12 -6
- package/src/lib/components/ui/dialog.tsx +2 -2
- package/src/lib/components/ui/dropdown-menu.tsx +7 -7
- package/src/lib/components/ui/form.tsx +4 -4
- package/src/lib/components/ui/hover-card.tsx +3 -3
- package/src/lib/components/ui/input.tsx +1 -1
- package/src/lib/components/ui/label.tsx +2 -2
- package/src/lib/components/ui/pagination.tsx +87 -108
- package/src/lib/components/ui/popover.tsx +3 -3
- package/src/lib/components/ui/scroll-area.tsx +2 -2
- package/src/lib/components/ui/select.tsx +2 -2
- package/src/lib/components/ui/separator.tsx +2 -2
- package/src/lib/components/ui/sheet.tsx +5 -5
- package/src/lib/components/ui/sidebar.tsx +10 -10
- package/src/lib/components/ui/skeleton.tsx +1 -1
- package/src/lib/components/ui/switch.tsx +2 -2
- package/src/lib/components/ui/table.tsx +2 -2
- package/src/lib/components/ui/tabs.tsx +3 -3
- package/src/lib/components/ui/textarea.tsx +1 -1
- package/src/lib/components/ui/tooltip.tsx +3 -3
- package/src/lib/framework/alert/alert-extensions.tsx +2 -3
- package/src/lib/framework/alert/alert-item.tsx +5 -3
- package/src/lib/framework/dashboard-widget/base-widget.tsx +5 -13
- package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +7 -8
- package/src/lib/framework/dashboard-widget/latest-orders-widget/latest-orders-widget.graphql.ts +1 -1
- package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +6 -7
- package/src/lib/framework/dashboard-widget/metrics-widget/metrics-widget.graphql.ts +1 -1
- package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +6 -6
- package/src/lib/framework/dashboard-widget/orders-summary/order-summary-widget.graphql.ts +1 -1
- package/src/lib/framework/dashboard-widget/widget-extensions.tsx +1 -1
- package/src/lib/framework/data-table/data-table-extensions.ts +1 -1
- package/src/lib/framework/defaults.ts +1 -1
- package/src/lib/framework/document-extension/extend-detail-form-query.ts +2 -2
- package/src/lib/framework/document-extension/extend-document.spec.ts +1 -1
- package/src/lib/framework/document-extension/extend-document.ts +1 -1
- package/src/lib/framework/document-introspection/add-custom-fields.ts +2 -2
- package/src/lib/framework/document-introspection/hooks.ts +4 -1
- package/src/lib/framework/extension-api/display-component-extensions.tsx +4 -4
- package/src/lib/framework/extension-api/extension-api-types.ts +0 -3
- package/src/lib/framework/extension-api/input-component-extensions.tsx +5 -5
- package/src/lib/framework/extension-api/logic/detail-forms.ts +1 -1
- package/src/lib/framework/extension-api/types/data-table.ts +25 -2
- package/src/lib/framework/extension-api/types/detail-forms.ts +1 -1
- package/src/lib/framework/extension-api/types/widgets.ts +7 -4
- package/src/lib/framework/form-engine/form-schema-tools.ts +1 -1
- package/src/lib/framework/layout-engine/location-wrapper.tsx +11 -8
- package/src/lib/framework/layout-engine/page-block-provider.tsx +1 -1
- package/src/lib/framework/layout-engine/page-layout.tsx +26 -19
- package/src/lib/framework/page/detail-page-route-loader.tsx +3 -3
- package/src/lib/framework/page/detail-page.tsx +9 -9
- package/src/lib/framework/page/list-page.tsx +3 -3
- package/src/lib/framework/page/use-detail-page.ts +1 -1
- package/src/lib/framework/registry/registry-types.ts +7 -7
- package/src/lib/hooks/use-auth.tsx +1 -1
- package/src/lib/hooks/use-channel.ts +1 -2
- package/src/lib/hooks/use-extended-detail-query.ts +2 -3
- package/src/lib/hooks/use-extended-list-query.ts +3 -4
- package/src/lib/hooks/use-grouped-permissions.ts +1 -2
- package/src/lib/hooks/use-page-block.tsx +1 -1
- package/src/lib/hooks/use-page.tsx +1 -1
- package/src/lib/hooks/use-server-config.ts +1 -2
- package/src/lib/hooks/use-theme.ts +1 -2
- package/src/lib/hooks/use-user-settings.tsx +1 -1
- package/src/lib/index.ts +26 -6
- package/src/lib/lib/trans.tsx +3 -3
- package/src/lib/providers/auth.tsx +4 -4
- package/src/lib/providers/channel-provider.tsx +4 -4
- package/src/lib/providers/server-config.tsx +13 -11
- package/src/lib/providers/theme-provider.tsx +2 -3
- package/vite/vite-plugin-config.ts +5 -7
- package/src/lib/framework/alert/types.ts +0 -13
- package/src/lib/framework/dashboard-widget/types.ts +0 -22
- package/src/lib/framework/data-table/data-table-types.ts +0 -25
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { useQueryClient } from '@tanstack/react-query';
|
|
2
2
|
|
|
3
|
-
import { AssignToChannelBulkAction } from '@/components/shared/assign-to-channel-bulk-action.js';
|
|
4
|
-
import { RemoveFromChannelBulkAction } from '@/components/shared/remove-from-channel-bulk-action.js';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { useChannel } from '@/index.js';
|
|
3
|
+
import { AssignToChannelBulkAction } from '@/vdb/components/shared/assign-to-channel-bulk-action.js';
|
|
4
|
+
import { RemoveFromChannelBulkAction } from '@/vdb/components/shared/remove-from-channel-bulk-action.js';
|
|
5
|
+
import { api } from '@/vdb/graphql/api.js';
|
|
6
|
+
import { BulkActionComponent, useChannel } from '@/vdb/index.js';
|
|
8
7
|
import { DeleteBulkAction } from '../../../../common/delete-bulk-action.js';
|
|
9
8
|
import { DuplicateBulkAction } from '../../../../common/duplicate-bulk-action.js';
|
|
10
9
|
import {
|
package/src/app/routes/_authenticated/_collections/components/collection-contents-preview-table.tsx
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PaginatedListDataTable } from '@/components/shared/paginated-list-data-table.js';
|
|
2
|
-
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert.js';
|
|
3
|
-
import { Button } from '@/components/ui/button.js';
|
|
4
|
-
import { addCustomFields } from '@/framework/document-introspection/add-custom-fields.js';
|
|
5
|
-
import { graphql } from '@/graphql/graphql.js';
|
|
1
|
+
import { PaginatedListDataTable } from '@/vdb/components/shared/paginated-list-data-table.js';
|
|
2
|
+
import { Alert, AlertDescription, AlertTitle } from '@/vdb/components/ui/alert.js';
|
|
3
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
4
|
+
import { addCustomFields } from '@/vdb/framework/document-introspection/add-custom-fields.js';
|
|
5
|
+
import { graphql } from '@/vdb/graphql/graphql.js';
|
|
6
6
|
import { useQuery } from '@tanstack/react-query';
|
|
7
7
|
import { Link } from '@tanstack/react-router';
|
|
8
8
|
import { ColumnFiltersState, SortingState } from '@tanstack/react-table';
|
|
@@ -65,9 +65,8 @@ export function CollectionContentsPreviewTable({
|
|
|
65
65
|
<Eye className="h-4 w-4" />
|
|
66
66
|
<AlertTitle>Preview</AlertTitle>
|
|
67
67
|
<AlertDescription>
|
|
68
|
-
This is a preview of the collection contents based on the current
|
|
69
|
-
|
|
70
|
-
updated to reflect the new filter settings.
|
|
68
|
+
This is a preview of the collection contents based on the current filter settings. Once
|
|
69
|
+
you save the collection, the contents will be updated to reflect the new filter settings.
|
|
71
70
|
</AlertDescription>
|
|
72
71
|
</Alert>
|
|
73
72
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
1
2
|
import {
|
|
2
3
|
Sheet,
|
|
3
4
|
SheetContent,
|
|
4
5
|
SheetDescription,
|
|
5
6
|
SheetHeader,
|
|
6
7
|
SheetTitle,
|
|
7
|
-
SheetTrigger
|
|
8
|
-
} from '@/components/ui/sheet.js';
|
|
9
|
-
import { Trans } from '@/lib/trans.js';
|
|
8
|
+
SheetTrigger,
|
|
9
|
+
} from '@/vdb/components/ui/sheet.js';
|
|
10
|
+
import { Trans } from '@/vdb/lib/trans.js';
|
|
10
11
|
import { PanelLeftOpen } from 'lucide-react';
|
|
11
12
|
import { CollectionContentsTable } from './collection-contents-table.js';
|
|
12
|
-
import { Button } from '@/components/ui/button.js';
|
|
13
13
|
|
|
14
14
|
export interface CollectionContentsSheetProps {
|
|
15
15
|
collectionId: string;
|
|
@@ -17,7 +17,11 @@ export interface CollectionContentsSheetProps {
|
|
|
17
17
|
children?: React.ReactNode;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
export function CollectionContentsSheet({
|
|
20
|
+
export function CollectionContentsSheet({
|
|
21
|
+
collectionId,
|
|
22
|
+
collectionName,
|
|
23
|
+
children,
|
|
24
|
+
}: CollectionContentsSheetProps) {
|
|
21
25
|
return (
|
|
22
26
|
<Sheet>
|
|
23
27
|
<SheetTrigger asChild>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { PaginatedListDataTable } from '@/components/shared/paginated-list-data-table.js';
|
|
2
|
-
import { Button } from '@/components/ui/button.js';
|
|
3
|
-
import { addCustomFields } from '@/framework/document-introspection/add-custom-fields.js';
|
|
4
|
-
import { graphql } from '@/graphql/graphql.js';
|
|
1
|
+
import { PaginatedListDataTable } from '@/vdb/components/shared/paginated-list-data-table.js';
|
|
2
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
3
|
+
import { addCustomFields } from '@/vdb/framework/document-introspection/add-custom-fields.js';
|
|
4
|
+
import { graphql } from '@/vdb/graphql/graphql.js';
|
|
5
5
|
import { Link } from '@tanstack/react-router';
|
|
6
6
|
import { ColumnFiltersState, SortingState } from '@tanstack/react-table';
|
|
7
7
|
import { useState } from 'react';
|
|
@@ -24,21 +24,20 @@ export const collectionContentsDocument = graphql(`
|
|
|
24
24
|
}
|
|
25
25
|
`);
|
|
26
26
|
|
|
27
|
-
|
|
28
27
|
export interface CollectionContentsTableProps {
|
|
29
28
|
collectionId?: string;
|
|
30
29
|
}
|
|
31
30
|
|
|
32
|
-
export function CollectionContentsTable({ collectionId }: CollectionContentsTableProps) {
|
|
31
|
+
export function CollectionContentsTable({ collectionId }: Readonly<CollectionContentsTableProps>) {
|
|
33
32
|
const [sorting, setSorting] = useState<SortingState>([]);
|
|
34
33
|
const [page, setPage] = useState(1);
|
|
35
34
|
const [pageSize, setPageSize] = useState(10);
|
|
36
35
|
const [filters, setFilters] = useState<ColumnFiltersState>([]);
|
|
37
|
-
|
|
36
|
+
|
|
38
37
|
return (
|
|
39
38
|
<PaginatedListDataTable
|
|
40
39
|
listQuery={addCustomFields(collectionContentsDocument)}
|
|
41
|
-
transformVariables={
|
|
40
|
+
transformVariables={variables => {
|
|
42
41
|
return {
|
|
43
42
|
...variables,
|
|
44
43
|
collectionId: collectionId,
|
|
@@ -50,7 +49,9 @@ export function CollectionContentsTable({ collectionId }: CollectionContentsTabl
|
|
|
50
49
|
cell: ({ row }) => {
|
|
51
50
|
return (
|
|
52
51
|
<Button asChild variant="ghost">
|
|
53
|
-
<Link to={`../../product-variants/${row.original.id}`}>
|
|
52
|
+
<Link to={`../../product-variants/${row.original.id}`}>
|
|
53
|
+
{row.original.name}{' '}
|
|
54
|
+
</Link>
|
|
54
55
|
</Button>
|
|
55
56
|
);
|
|
56
57
|
},
|
package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { ConfigurableOperationInput } from '@/components/shared/configurable-operation-input.js';
|
|
2
|
-
import { Button } from '@/components/ui/button.js';
|
|
1
|
+
import { ConfigurableOperationInput } from '@/vdb/components/shared/configurable-operation-input.js';
|
|
2
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
3
3
|
import {
|
|
4
4
|
DropdownMenu,
|
|
5
5
|
DropdownMenuContent,
|
|
6
6
|
DropdownMenuItem,
|
|
7
7
|
DropdownMenuTrigger,
|
|
8
|
-
} from '@/components/ui/dropdown-menu.js';
|
|
9
|
-
import { Separator } from '@/components/ui/separator.js';
|
|
10
|
-
import { ConfigurableOperationDefFragment } from '@/graphql/fragments.js';
|
|
11
|
-
import { Trans } from '@/lib/trans.js';
|
|
8
|
+
} from '@/vdb/components/ui/dropdown-menu.js';
|
|
9
|
+
import { Separator } from '@/vdb/components/ui/separator.js';
|
|
10
|
+
import { ConfigurableOperationDefFragment } from '@/vdb/graphql/fragments.js';
|
|
11
|
+
import { Trans } from '@/vdb/lib/trans.js';
|
|
12
12
|
import { useQuery } from '@tanstack/react-query';
|
|
13
13
|
import { ConfigurableOperationInput as ConfigurableOperationInputType } from '@vendure/common/lib/generated-types';
|
|
14
14
|
import { Plus } from 'lucide-react';
|
|
@@ -19,7 +19,7 @@ export interface CollectionFiltersSelectorProps {
|
|
|
19
19
|
onChange: (filters: ConfigurableOperationInputType[]) => void;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
export function CollectionFiltersSelector({ value, onChange }: CollectionFiltersSelectorProps) {
|
|
22
|
+
export function CollectionFiltersSelector({ value, onChange }: Readonly<CollectionFiltersSelectorProps>) {
|
|
23
23
|
const { data: filtersData } = useQuery(getCollectionFiltersQueryOptions);
|
|
24
24
|
|
|
25
25
|
const filters = filtersData?.collectionFilters;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BulkActionComponent } from '@/framework/
|
|
1
|
+
import { BulkActionComponent } from '@/vdb/framework/extension-api/types/index.js';
|
|
2
2
|
import { DeleteBulkAction } from '../../../../common/delete-bulk-action.js';
|
|
3
3
|
import { deleteCountriesDocument } from '../countries.graphql.js';
|
|
4
4
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { DetailPageButton } from '@/components/shared/detail-page-button.js';
|
|
2
|
-
import { PermissionGuard } from '@/components/shared/permission-guard.js';
|
|
3
|
-
import { Button } from '@/components/ui/button.js';
|
|
4
|
-
import { PageActionBarRight } from '@/framework/layout-engine/page-layout.js';
|
|
5
|
-
import { ListPage } from '@/framework/page/list-page.js';
|
|
6
|
-
import { Trans } from '@/lib/trans.js';
|
|
1
|
+
import { DetailPageButton } from '@/vdb/components/shared/detail-page-button.js';
|
|
2
|
+
import { PermissionGuard } from '@/vdb/components/shared/permission-guard.js';
|
|
3
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
4
|
+
import { PageActionBarRight } from '@/vdb/framework/layout-engine/page-layout.js';
|
|
5
|
+
import { ListPage } from '@/vdb/framework/page/list-page.js';
|
|
6
|
+
import { Trans } from '@/vdb/lib/trans.js';
|
|
7
7
|
import { createFileRoute, Link } from '@tanstack/react-router';
|
|
8
8
|
import { PlusIcon } from 'lucide-react';
|
|
9
9
|
import { DeleteCountriesBulkAction } from './components/country-bulk-actions.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ErrorPage } from '@/components/shared/error-page.js';
|
|
2
|
-
import { FormFieldWrapper } from '@/components/shared/form-field-wrapper.js';
|
|
3
|
-
import { PermissionGuard } from '@/components/shared/permission-guard.js';
|
|
4
|
-
import { TranslatableFormFieldWrapper } from '@/components/shared/translatable-form-field.js';
|
|
5
|
-
import { Button } from '@/components/ui/button.js';
|
|
6
|
-
import { Input } from '@/components/ui/input.js';
|
|
7
|
-
import { Switch } from '@/components/ui/switch.js';
|
|
8
|
-
import { NEW_ENTITY_PATH } from '@/constants.js';
|
|
1
|
+
import { ErrorPage } from '@/vdb/components/shared/error-page.js';
|
|
2
|
+
import { FormFieldWrapper } from '@/vdb/components/shared/form-field-wrapper.js';
|
|
3
|
+
import { PermissionGuard } from '@/vdb/components/shared/permission-guard.js';
|
|
4
|
+
import { TranslatableFormFieldWrapper } from '@/vdb/components/shared/translatable-form-field.js';
|
|
5
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
6
|
+
import { Input } from '@/vdb/components/ui/input.js';
|
|
7
|
+
import { Switch } from '@/vdb/components/ui/switch.js';
|
|
8
|
+
import { NEW_ENTITY_PATH } from '@/vdb/constants.js';
|
|
9
9
|
import {
|
|
10
10
|
CustomFieldsPageBlock,
|
|
11
11
|
DetailFormGrid,
|
|
@@ -15,10 +15,10 @@ import {
|
|
|
15
15
|
PageBlock,
|
|
16
16
|
PageLayout,
|
|
17
17
|
PageTitle,
|
|
18
|
-
} from '@/framework/layout-engine/page-layout.js';
|
|
19
|
-
import { detailPageRouteLoader } from '@/framework/page/detail-page-route-loader.js';
|
|
20
|
-
import { useDetailPage } from '@/framework/page/use-detail-page.js';
|
|
21
|
-
import { Trans, useLingui } from '@/lib/trans.js';
|
|
18
|
+
} from '@/vdb/framework/layout-engine/page-layout.js';
|
|
19
|
+
import { detailPageRouteLoader } from '@/vdb/framework/page/detail-page-route-loader.js';
|
|
20
|
+
import { useDetailPage } from '@/vdb/framework/page/use-detail-page.js';
|
|
21
|
+
import { Trans, useLingui } from '@/vdb/lib/trans.js';
|
|
22
22
|
import { createFileRoute, useNavigate } from '@tanstack/react-router';
|
|
23
23
|
import { toast } from 'sonner';
|
|
24
24
|
import { countryDetailDocument, createCountryDocument, updateCountryDocument } from './countries.graphql.js';
|
package/src/app/routes/_authenticated/_customer-groups/components/customer-group-bulk-actions.tsx
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BulkActionComponent } from '@/framework/
|
|
1
|
+
import { BulkActionComponent } from '@/vdb/framework/extension-api/types/index.js';
|
|
2
2
|
import { DeleteBulkAction } from '../../../../common/delete-bulk-action.js';
|
|
3
3
|
import { deleteCustomerGroupsDocument } from '../customer-groups.graphql.js';
|
|
4
4
|
|
package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
1
2
|
import {
|
|
2
3
|
Sheet,
|
|
3
4
|
SheetContent,
|
|
@@ -5,11 +6,10 @@ import {
|
|
|
5
6
|
SheetHeader,
|
|
6
7
|
SheetTitle,
|
|
7
8
|
SheetTrigger,
|
|
8
|
-
} from '@/components/ui/sheet.js';
|
|
9
|
-
import { Trans } from '@/lib/trans.js';
|
|
9
|
+
} from '@/vdb/components/ui/sheet.js';
|
|
10
|
+
import { Trans } from '@/vdb/lib/trans.js';
|
|
10
11
|
import { PanelLeftOpen } from 'lucide-react';
|
|
11
12
|
import { CustomerGroupMembersTable } from './customer-group-members-table.js';
|
|
12
|
-
import { Button } from '@/components/ui/button.js';
|
|
13
13
|
|
|
14
14
|
export interface CustomerGroupMembersSheetProps {
|
|
15
15
|
customerGroupName: string;
|
|
@@ -17,7 +17,11 @@ export interface CustomerGroupMembersSheetProps {
|
|
|
17
17
|
children?: React.ReactNode;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
export function CustomerGroupMembersSheet({
|
|
20
|
+
export function CustomerGroupMembersSheet({
|
|
21
|
+
customerGroupName,
|
|
22
|
+
customerGroupId,
|
|
23
|
+
children,
|
|
24
|
+
}: CustomerGroupMembersSheetProps) {
|
|
21
25
|
return (
|
|
22
26
|
<Sheet>
|
|
23
27
|
<SheetTrigger asChild>
|
|
@@ -32,7 +36,10 @@ export function CustomerGroupMembersSheet({ customerGroupName, customerGroupId,
|
|
|
32
36
|
<Trans>Customer group members for {customerGroupName}</Trans>
|
|
33
37
|
</SheetTitle>
|
|
34
38
|
<SheetDescription>
|
|
35
|
-
<Trans>
|
|
39
|
+
<Trans>
|
|
40
|
+
These are the customers in the <strong>{customerGroupName}</strong> customer
|
|
41
|
+
group.
|
|
42
|
+
</Trans>
|
|
36
43
|
</SheetDescription>
|
|
37
44
|
</SheetHeader>
|
|
38
45
|
<div className="px-4">
|
package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
|
-
import { CustomerSelector } from '@/components/shared/customer-selector.js';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import { CustomerSelector } from '@/vdb/components/shared/customer-selector.js';
|
|
2
|
+
import {
|
|
3
|
+
PaginatedListDataTable,
|
|
4
|
+
PaginatedListDataTableKey,
|
|
5
|
+
} from '@/vdb/components/shared/paginated-list-data-table.js';
|
|
6
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
7
|
+
import { addCustomFields } from '@/vdb/framework/document-introspection/add-custom-fields.js';
|
|
8
|
+
import { api } from '@/vdb/graphql/api.js';
|
|
9
|
+
import { graphql } from '@/vdb/graphql/graphql.js';
|
|
10
|
+
import { Trans, useLingui } from '@/vdb/lib/trans.js';
|
|
11
|
+
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
|
8
12
|
import { Link } from '@tanstack/react-router';
|
|
9
13
|
import { ColumnFiltersState, SortingState } from '@tanstack/react-table';
|
|
10
14
|
import { useState } from 'react';
|
|
11
|
-
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
|
12
|
-
import { addCustomerToGroupDocument } from '../../_customers/customers.graphql.js';
|
|
13
15
|
import { toast } from 'sonner';
|
|
14
|
-
import {
|
|
16
|
+
import { addCustomerToGroupDocument } from '../../_customers/customers.graphql.js';
|
|
15
17
|
|
|
16
18
|
export const customerGroupMemberListDocument = graphql(`
|
|
17
19
|
query CustomerGroupMemberList($id: ID!, $options: CustomerListOptions) {
|
|
@@ -36,7 +38,10 @@ export interface CustomerGroupMembersTableProps {
|
|
|
36
38
|
canAddCustomers?: boolean;
|
|
37
39
|
}
|
|
38
40
|
|
|
39
|
-
export function CustomerGroupMembersTable({
|
|
41
|
+
export function CustomerGroupMembersTable({
|
|
42
|
+
customerGroupId,
|
|
43
|
+
canAddCustomers = true,
|
|
44
|
+
}: CustomerGroupMembersTableProps) {
|
|
40
45
|
const [sorting, setSorting] = useState<SortingState>([]);
|
|
41
46
|
const [page, setPage] = useState(1);
|
|
42
47
|
const [pageSize, setPageSize] = useState(10);
|
|
@@ -48,8 +53,8 @@ export function CustomerGroupMembersTable({ customerGroupId, canAddCustomers = t
|
|
|
48
53
|
mutationFn: api.mutate(addCustomerToGroupDocument),
|
|
49
54
|
onSuccess: () => {
|
|
50
55
|
toast.success(i18n.t('Customer added to group'));
|
|
51
|
-
queryClient.invalidateQueries({
|
|
52
|
-
queryKey: [PaginatedListDataTableKey, customerGroupMemberListDocument]
|
|
56
|
+
queryClient.invalidateQueries({
|
|
57
|
+
queryKey: [PaginatedListDataTableKey, customerGroupMemberListDocument],
|
|
53
58
|
});
|
|
54
59
|
},
|
|
55
60
|
onError: () => {
|
|
@@ -117,10 +122,10 @@ export function CustomerGroupMembersTable({ customerGroupId, canAddCustomers = t
|
|
|
117
122
|
<CustomerSelector
|
|
118
123
|
onSelect={customer => {
|
|
119
124
|
addCustomerToGroup({
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
125
|
+
customerId: customer.id,
|
|
126
|
+
groupId: customerGroupId,
|
|
127
|
+
});
|
|
128
|
+
}}
|
|
124
129
|
label={<Trans>Add customer</Trans>}
|
|
125
130
|
/>
|
|
126
131
|
)}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { DetailPageButton } from '@/components/shared/detail-page-button.js';
|
|
2
|
-
import { PermissionGuard } from '@/components/shared/permission-guard.js';
|
|
3
|
-
import { Button } from '@/components/ui/button.js';
|
|
4
|
-
import { PageActionBarRight } from '@/framework/layout-engine/page-layout.js';
|
|
5
|
-
import { ListPage } from '@/framework/page/list-page.js';
|
|
6
|
-
import { Trans } from '@/lib/trans.js';
|
|
1
|
+
import { DetailPageButton } from '@/vdb/components/shared/detail-page-button.js';
|
|
2
|
+
import { PermissionGuard } from '@/vdb/components/shared/permission-guard.js';
|
|
3
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
4
|
+
import { PageActionBarRight } from '@/vdb/framework/layout-engine/page-layout.js';
|
|
5
|
+
import { ListPage } from '@/vdb/framework/page/list-page.js';
|
|
6
|
+
import { Trans } from '@/vdb/lib/trans.js';
|
|
7
7
|
import { createFileRoute, Link } from '@tanstack/react-router';
|
|
8
8
|
import { PlusIcon } from 'lucide-react';
|
|
9
9
|
import { DeleteCustomerGroupsBulkAction } from './components/customer-group-bulk-actions.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ErrorPage } from '@/components/shared/error-page.js';
|
|
2
|
-
import { FormFieldWrapper } from '@/components/shared/form-field-wrapper.js';
|
|
3
|
-
import { PermissionGuard } from '@/components/shared/permission-guard.js';
|
|
4
|
-
import { Button } from '@/components/ui/button.js';
|
|
5
|
-
import { Input } from '@/components/ui/input.js';
|
|
6
|
-
import { NEW_ENTITY_PATH } from '@/constants.js';
|
|
1
|
+
import { ErrorPage } from '@/vdb/components/shared/error-page.js';
|
|
2
|
+
import { FormFieldWrapper } from '@/vdb/components/shared/form-field-wrapper.js';
|
|
3
|
+
import { PermissionGuard } from '@/vdb/components/shared/permission-guard.js';
|
|
4
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
5
|
+
import { Input } from '@/vdb/components/ui/input.js';
|
|
6
|
+
import { NEW_ENTITY_PATH } from '@/vdb/constants.js';
|
|
7
7
|
import {
|
|
8
8
|
CustomFieldsPageBlock,
|
|
9
9
|
DetailFormGrid,
|
|
@@ -13,10 +13,10 @@ import {
|
|
|
13
13
|
PageBlock,
|
|
14
14
|
PageLayout,
|
|
15
15
|
PageTitle,
|
|
16
|
-
} from '@/framework/layout-engine/page-layout.js';
|
|
17
|
-
import { detailPageRouteLoader } from '@/framework/page/detail-page-route-loader.js';
|
|
18
|
-
import { useDetailPage } from '@/framework/page/use-detail-page.js';
|
|
19
|
-
import { Trans, useLingui } from '@/lib/trans.js';
|
|
16
|
+
} from '@/vdb/framework/layout-engine/page-layout.js';
|
|
17
|
+
import { detailPageRouteLoader } from '@/vdb/framework/page/detail-page-route-loader.js';
|
|
18
|
+
import { useDetailPage } from '@/vdb/framework/page/use-detail-page.js';
|
|
19
|
+
import { Trans, useLingui } from '@/vdb/lib/trans.js';
|
|
20
20
|
import { createFileRoute, useNavigate } from '@tanstack/react-router';
|
|
21
21
|
import { toast } from 'sonner';
|
|
22
22
|
import { CustomerGroupMembersTable } from './components/customer-group-members-table.js';
|
|
@@ -1,24 +1,27 @@
|
|
|
1
|
-
import { ResultOf } from '@/graphql/graphql.js';
|
|
1
|
+
import { ResultOf } from '@/vdb/graphql/graphql.js';
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { ConfirmationDialog } from '@/vdb/components/shared/confirmation-dialog.js';
|
|
4
|
+
import { Badge } from '@/vdb/components/ui/badge.js';
|
|
4
5
|
import {
|
|
5
|
-
DialogContent,
|
|
6
6
|
Dialog,
|
|
7
|
-
|
|
7
|
+
DialogContent,
|
|
8
|
+
DialogDescription,
|
|
8
9
|
DialogHeader,
|
|
9
10
|
DialogTitle,
|
|
10
|
-
|
|
11
|
-
} from '@/components/ui/dialog.js';
|
|
12
|
-
import {
|
|
13
|
-
import { useLingui } from '@/lib/trans.js';
|
|
14
|
-
import {
|
|
11
|
+
DialogTrigger,
|
|
12
|
+
} from '@/vdb/components/ui/dialog.js';
|
|
13
|
+
import { api } from '@/vdb/graphql/api.js';
|
|
14
|
+
import { Trans, useLingui } from '@/vdb/lib/trans.js';
|
|
15
|
+
import { useMutation } from '@tanstack/react-query';
|
|
15
16
|
import { EditIcon, TrashIcon } from 'lucide-react';
|
|
16
17
|
import { useState } from 'react';
|
|
17
|
-
import { Badge } from '@/components/ui/badge.js';
|
|
18
|
-
import { api } from '@/graphql/api.js';
|
|
19
|
-
import { useMutation } from '@tanstack/react-query';
|
|
20
18
|
import { toast } from 'sonner';
|
|
21
|
-
import {
|
|
19
|
+
import {
|
|
20
|
+
addressFragment,
|
|
21
|
+
deleteCustomerAddressDocument,
|
|
22
|
+
updateCustomerAddressDocument,
|
|
23
|
+
} from '../customers.graphql.js';
|
|
24
|
+
import { AddressFormValues, CustomerAddressForm } from './customer-address-form.js';
|
|
22
25
|
|
|
23
26
|
export function CustomerAddressCard({
|
|
24
27
|
address,
|
|
@@ -44,8 +47,8 @@ export function CustomerAddressCard({
|
|
|
44
47
|
onError: () => {
|
|
45
48
|
toast.error(i18n.t('Failed to delete address'));
|
|
46
49
|
},
|
|
47
|
-
});
|
|
48
|
-
|
|
50
|
+
});
|
|
51
|
+
|
|
49
52
|
// Set up mutation for updating address
|
|
50
53
|
const { mutate: updateAddress } = useMutation({
|
|
51
54
|
mutationFn: api.mutate(updateCustomerAddressDocument),
|
|
@@ -129,10 +132,7 @@ export function CustomerAddressCard({
|
|
|
129
132
|
<Trans>Edit the address details below.</Trans>
|
|
130
133
|
</DialogDescription>
|
|
131
134
|
</DialogHeader>
|
|
132
|
-
<CustomerAddressForm
|
|
133
|
-
address={address}
|
|
134
|
-
onSubmit={onSubmit}
|
|
135
|
-
/>
|
|
135
|
+
<CustomerAddressForm address={address} onSubmit={onSubmit} />
|
|
136
136
|
</DialogContent>
|
|
137
137
|
</Dialog>
|
|
138
138
|
)}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Button } from '@/components/ui/button.js';
|
|
2
|
-
import { Checkbox } from '@/components/ui/checkbox.js';
|
|
1
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
2
|
+
import { Checkbox } from '@/vdb/components/ui/checkbox.js';
|
|
3
3
|
import {
|
|
4
4
|
Form,
|
|
5
5
|
FormControl,
|
|
@@ -8,15 +8,15 @@ import {
|
|
|
8
8
|
FormItem,
|
|
9
9
|
FormLabel,
|
|
10
10
|
FormMessage,
|
|
11
|
-
} from '@/components/ui/form.js';
|
|
12
|
-
import { Input } from '@/components/ui/input.js';
|
|
13
|
-
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select.js';
|
|
14
|
-
import { api } from '@/graphql/api.js';
|
|
15
|
-
import { graphql, ResultOf } from '@/graphql/graphql.js';
|
|
11
|
+
} from '@/vdb/components/ui/form.js';
|
|
12
|
+
import { Input } from '@/vdb/components/ui/input.js';
|
|
13
|
+
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/vdb/components/ui/select.js';
|
|
14
|
+
import { api } from '@/vdb/graphql/api.js';
|
|
15
|
+
import { graphql, ResultOf } from '@/vdb/graphql/graphql.js';
|
|
16
|
+
import { Trans, useLingui } from '@/vdb/lib/trans.js';
|
|
16
17
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
17
|
-
import { Trans, useLingui } from '@/lib/trans.js';
|
|
18
18
|
import { useQuery } from '@tanstack/react-query';
|
|
19
|
-
import {
|
|
19
|
+
import { useForm } from 'react-hook-form';
|
|
20
20
|
import { z } from 'zod';
|
|
21
21
|
import { addressFragment } from '../customers.graphql.js';
|
|
22
22
|
|
|
@@ -58,7 +58,7 @@ interface CustomerAddressFormProps {
|
|
|
58
58
|
onCancel?: () => void;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
export function CustomerAddressForm({ address, onSubmit, onCancel }: CustomerAddressFormProps) {
|
|
61
|
+
export function CustomerAddressForm({ address, onSubmit, onCancel }: Readonly<CustomerAddressFormProps>) {
|
|
62
62
|
const { i18n } = useLingui();
|
|
63
63
|
|
|
64
64
|
// Fetch available countries
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BulkActionComponent } from '@/framework/
|
|
1
|
+
import { BulkActionComponent } from '@/vdb/framework/extension-api/types/index.js';
|
|
2
2
|
import { DeleteBulkAction } from '../../../../common/delete-bulk-action.js';
|
|
3
3
|
import { deleteCustomersDocument } from '../customers.graphql.js';
|
|
4
4
|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { Alert, AlertDescription } from '@/components/ui/alert.js';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { Alert, AlertDescription } from '@/vdb/components/ui/alert.js';
|
|
2
|
+
import { Button } from '@/vdb/components/ui/button.js';
|
|
3
|
+
import { Skeleton } from '@/vdb/components/ui/skeleton.js';
|
|
4
|
+
import { Trans } from '@/vdb/lib/trans.js';
|
|
4
5
|
import { TriangleAlert } from 'lucide-react';
|
|
5
6
|
import { CustomerHistory } from './customer-history.js';
|
|
6
7
|
import { useCustomerHistory } from './use-customer-history.js';
|
|
7
|
-
import { Button } from '@/components/ui/button.js';
|
|
8
8
|
|
|
9
9
|
interface CustomerHistoryContainerProps {
|
|
10
10
|
customerId: string;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
export function CustomerHistoryContainer({ customerId }: CustomerHistoryContainerProps) {
|
|
13
|
+
export function CustomerHistoryContainer({ customerId }: Readonly<CustomerHistoryContainerProps>) {
|
|
14
14
|
const {
|
|
15
15
|
historyEntries,
|
|
16
16
|
customer,
|
package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { HistoryEntry, HistoryEntryItem } from '@/components/shared/history-timeline/history-entry.js';
|
|
2
|
-
import { HistoryNoteInput } from '@/components/shared/history-timeline/history-note-input.js';
|
|
3
|
-
import { HistoryTimeline } from '@/components/shared/history-timeline/history-timeline.js';
|
|
4
|
-
import { Badge } from '@/components/ui/badge.js';
|
|
5
|
-
import { Trans } from '@/lib/trans.js';
|
|
1
|
+
import { HistoryEntry, HistoryEntryItem } from '@/vdb/components/shared/history-timeline/history-entry.js';
|
|
2
|
+
import { HistoryNoteInput } from '@/vdb/components/shared/history-timeline/history-note-input.js';
|
|
3
|
+
import { HistoryTimeline } from '@/vdb/components/shared/history-timeline/history-timeline.js';
|
|
4
|
+
import { Badge } from '@/vdb/components/ui/badge.js';
|
|
5
|
+
import { Trans } from '@/vdb/lib/trans.js';
|
|
6
6
|
import { CheckIcon, SquarePen } from 'lucide-react';
|
|
7
7
|
|
|
8
8
|
interface CustomerHistoryProps {
|
|
@@ -15,7 +15,12 @@ interface CustomerHistoryProps {
|
|
|
15
15
|
onDeleteNote?: (entryId: string) => void;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
export function CustomerHistory({
|
|
18
|
+
export function CustomerHistory({
|
|
19
|
+
historyEntries,
|
|
20
|
+
onAddNote,
|
|
21
|
+
onUpdateNote,
|
|
22
|
+
onDeleteNote,
|
|
23
|
+
}: CustomerHistoryProps) {
|
|
19
24
|
const getTimelineIcon = (entry: CustomerHistoryProps['historyEntries'][0]) => {
|
|
20
25
|
switch (entry.type) {
|
|
21
26
|
case 'CUSTOMER_NOTE':
|
|
@@ -70,7 +75,6 @@ export function CustomerHistory({ historyEntries, onAddNote, onUpdateNote, onDel
|
|
|
70
75
|
</div>
|
|
71
76
|
</HistoryEntry>
|
|
72
77
|
))}
|
|
73
|
-
|
|
74
78
|
</HistoryTimeline>
|
|
75
79
|
</div>
|
|
76
80
|
);
|
package/src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { api } from '@/graphql/api.js';
|
|
2
|
-
import { graphql, ResultOf } from '@/graphql/graphql.js';
|
|
3
|
-
import { useLingui } from '@/lib/trans.js';
|
|
4
|
-
import { useInfiniteQuery, useMutation
|
|
1
|
+
import { api } from '@/vdb/graphql/api.js';
|
|
2
|
+
import { graphql, ResultOf } from '@/vdb/graphql/graphql.js';
|
|
3
|
+
import { useLingui } from '@/vdb/lib/trans.js';
|
|
4
|
+
import { useInfiniteQuery, useMutation } from '@tanstack/react-query';
|
|
5
5
|
import { useState } from 'react';
|
|
6
6
|
import { toast } from 'sonner';
|
|
7
7
|
|