@vendure/dashboard 3.2.0
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 +13 -0
- package/dist/plugin/.vendure-dashboard-temp/dev-config.js +227 -0
- package/dist/plugin/.vendure-dashboard-temp/dev-config.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js +33 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js +69 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js +110 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js +134 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js +86 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js +49 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js +57 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js +20 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js +151 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js +47 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js +222 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js +4 -0
- package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/package.json +3 -0
- package/dist/plugin/.vendure-dashboard-temp/schema.graphql +6378 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js +103 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js +105 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js +183 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js +113 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js +112 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js +111 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js +616 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js +563 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js +135 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js +4 -0
- package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js.map +1 -0
- package/dist/plugin/.vendure-dashboard-temp/tsconfig.json +10 -0
- package/dist/plugin/config-loader.d.ts +27 -0
- package/dist/plugin/config-loader.js +141 -0
- package/dist/plugin/constants.d.ts +5 -0
- package/dist/plugin/constants.js +277 -0
- package/dist/plugin/index.d.ts +1 -0
- package/dist/plugin/index.js +1 -0
- package/dist/plugin/schema-generator.d.ts +5 -0
- package/dist/plugin/schema-generator.js +24 -0
- package/dist/plugin/ui-config.d.ts +3 -0
- package/dist/plugin/ui-config.js +35 -0
- package/dist/plugin/vite-plugin-admin-api-schema.d.ts +24 -0
- package/dist/plugin/vite-plugin-admin-api-schema.js +82 -0
- package/dist/plugin/vite-plugin-config-loader.d.ts +17 -0
- package/dist/plugin/vite-plugin-config-loader.js +56 -0
- package/dist/plugin/vite-plugin-config.d.ts +4 -0
- package/dist/plugin/vite-plugin-config.js +38 -0
- package/dist/plugin/vite-plugin-dashboard-metadata.d.ts +9 -0
- package/dist/plugin/vite-plugin-dashboard-metadata.js +52 -0
- package/dist/plugin/vite-plugin-gql-tada.d.ts +6 -0
- package/dist/plugin/vite-plugin-gql-tada.js +51 -0
- package/dist/plugin/vite-plugin-set-root.d.ts +4 -0
- package/dist/plugin/vite-plugin-set-root.js +15 -0
- package/dist/plugin/vite-plugin-ui-config.d.ts +15 -0
- package/dist/plugin/vite-plugin-ui-config.js +43 -0
- package/dist/plugin/vite-plugin-vendure-dashboard.d.ts +35 -0
- package/dist/plugin/vite-plugin-vendure-dashboard.js +81 -0
- package/index.html +15 -0
- package/lingui.config.js +12 -0
- package/package.json +118 -0
- package/src/app/app-providers.tsx +30 -0
- package/src/app/main.tsx +97 -0
- package/src/app/routeTree.gen.ts +1372 -0
- package/src/app/routes/__root.tsx +24 -0
- package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +79 -0
- package/src/app/routes/_authenticated/_administrators/administrators.tsx +86 -0
- package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +155 -0
- package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +133 -0
- package/src/app/routes/_authenticated/_assets/assets.tsx +19 -0
- package/src/app/routes/_authenticated/_channels/channels.graphql.ts +93 -0
- package/src/app/routes/_authenticated/_channels/channels.tsx +60 -0
- package/src/app/routes/_authenticated/_channels/channels_.$id.tsx +248 -0
- package/src/app/routes/_authenticated/_collections/collections.graphql.ts +133 -0
- package/src/app/routes/_authenticated/_collections/collections.tsx +195 -0
- package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +224 -0
- package/src/app/routes/_authenticated/_collections/components/collection-contents-preview-table.tsx +127 -0
- package/src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx +46 -0
- package/src/app/routes/_authenticated/_collections/components/collection-contents-table.tsx +82 -0
- package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +91 -0
- package/src/app/routes/_authenticated/_countries/countries.graphql.ts +69 -0
- package/src/app/routes/_authenticated/_countries/countries.tsx +67 -0
- package/src/app/routes/_authenticated/_countries/countries_.$id.tsx +122 -0
- package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx +44 -0
- package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx +129 -0
- package/src/app/routes/_authenticated/_customer-groups/customer-groups.graphql.ts +71 -0
- package/src/app/routes/_authenticated/_customer-groups/customer-groups.tsx +68 -0
- package/src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx +111 -0
- package/src/app/routes/_authenticated/_customers/components/customer-address-card.tsx +155 -0
- package/src/app/routes/_authenticated/_customers/components/customer-address-form.tsx +344 -0
- package/src/app/routes/_authenticated/_customers/components/customer-group-controls.tsx +4 -0
- package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx +78 -0
- package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx +77 -0
- package/src/app/routes/_authenticated/_customers/components/customer-history/index.ts +3 -0
- package/src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts +169 -0
- package/src/app/routes/_authenticated/_customers/components/customer-order-table.tsx +88 -0
- package/src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx +33 -0
- package/src/app/routes/_authenticated/_customers/customers.graphql.ts +204 -0
- package/src/app/routes/_authenticated/_customers/customers.tsx +82 -0
- package/src/app/routes/_authenticated/_customers/customers_.$id.tsx +274 -0
- package/src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx +129 -0
- package/src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx +46 -0
- package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +97 -0
- package/src/app/routes/_authenticated/_facets/facets.graphql.ts +104 -0
- package/src/app/routes/_authenticated/_facets/facets.tsx +97 -0
- package/src/app/routes/_authenticated/_facets/facets_.$id.tsx +139 -0
- package/src/app/routes/_authenticated/_global-settings/global-settings.graphql.ts +28 -0
- package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +161 -0
- package/src/app/routes/_authenticated/_orders/components/order-address.tsx +58 -0
- package/src/app/routes/_authenticated/_orders/components/order-history/index.ts +3 -0
- package/src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx +73 -0
- package/src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx +96 -0
- package/src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts +171 -0
- package/src/app/routes/_authenticated/_orders/components/order-table.tsx +169 -0
- package/src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx +39 -0
- package/src/app/routes/_authenticated/_orders/components/payment-details.tsx +61 -0
- package/src/app/routes/_authenticated/_orders/orders.graphql.ts +325 -0
- package/src/app/routes/_authenticated/_orders/orders.tsx +120 -0
- package/src/app/routes/_authenticated/_orders/orders_.$id.tsx +133 -0
- package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +104 -0
- package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +100 -0
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +83 -0
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +64 -0
- package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +183 -0
- package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +87 -0
- package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +123 -0
- package/src/app/routes/_authenticated/_product-variants/product-variants.tsx +78 -0
- package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +331 -0
- package/src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx +228 -0
- package/src/app/routes/_authenticated/_products/components/create-product-variants.tsx +462 -0
- package/src/app/routes/_authenticated/_products/components/option-value-input.tsx +96 -0
- package/src/app/routes/_authenticated/_products/components/product-variants-table.tsx +87 -0
- package/src/app/routes/_authenticated/_products/products.graphql.ts +116 -0
- package/src/app/routes/_authenticated/_products/products.tsx +48 -0
- package/src/app/routes/_authenticated/_products/products_.$id.tsx +196 -0
- package/src/app/routes/_authenticated/_profile/profile.graphql.ts +23 -0
- package/src/app/routes/_authenticated/_profile/profile.tsx +122 -0
- package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +107 -0
- package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +107 -0
- package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +96 -0
- package/src/app/routes/_authenticated/_promotions/promotions.tsx +61 -0
- package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +235 -0
- package/src/app/routes/_authenticated/_roles/components/expandable-permissions.tsx +54 -0
- package/src/app/routes/_authenticated/_roles/components/permissions-grid.tsx +116 -0
- package/src/app/routes/_authenticated/_roles/roles.graphql.ts +67 -0
- package/src/app/routes/_authenticated/_roles/roles.tsx +96 -0
- package/src/app/routes/_authenticated/_roles/roles_.$id.tsx +142 -0
- package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +61 -0
- package/src/app/routes/_authenticated/_sellers/sellers.tsx +51 -0
- package/src/app/routes/_authenticated/_sellers/sellers_.$id.tsx +111 -0
- package/src/app/routes/_authenticated/_shipping-methods/components/fulfillment-handler-selector.tsx +56 -0
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +101 -0
- package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +101 -0
- package/src/app/routes/_authenticated/_shipping-methods/components/test-shipping-method-dialog.tsx +32 -0
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +83 -0
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +55 -0
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +171 -0
- package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +62 -0
- package/src/app/routes/_authenticated/_stock-locations/stock-locations.tsx +48 -0
- package/src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx +115 -0
- package/src/app/routes/_authenticated/_system/components/payload-dialog.tsx +34 -0
- package/src/app/routes/_authenticated/_system/healthchecks.tsx +93 -0
- package/src/app/routes/_authenticated/_system/job-queue.graphql.ts +43 -0
- package/src/app/routes/_authenticated/_system/job-queue.tsx +161 -0
- package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +63 -0
- package/src/app/routes/_authenticated/_tax-categories/tax-categories.tsx +65 -0
- package/src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx +115 -0
- package/src/app/routes/_authenticated/_tax-rates/tax-rates.graphql.ts +75 -0
- package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +108 -0
- package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +148 -0
- package/src/app/routes/_authenticated/_zones/components/zone-countries-add.tsx +0 -0
- package/src/app/routes/_authenticated/_zones/components/zone-countries-sheet.tsx +31 -0
- package/src/app/routes/_authenticated/_zones/components/zone-countries-table.tsx +79 -0
- package/src/app/routes/_authenticated/_zones/zones.graphql.ts +96 -0
- package/src/app/routes/_authenticated/_zones/zones.tsx +57 -0
- package/src/app/routes/_authenticated/_zones/zones_.$id.tsx +103 -0
- package/src/app/routes/_authenticated/index.tsx +194 -0
- package/src/app/routes/_authenticated.tsx +25 -0
- package/src/app/routes/login.tsx +48 -0
- package/src/app/styles.css +82 -0
- package/src/app/tailwindcss-animate.css +275 -0
- package/src/i18n/locales/de.po +1579 -0
- package/src/i18n/locales/en.po +1579 -0
- package/src/lib/components/data-display/boolean.tsx +23 -0
- package/src/lib/components/data-display/date-time.tsx +13 -0
- package/src/lib/components/data-display/json.tsx +5 -0
- package/src/lib/components/data-display/money.tsx +15 -0
- package/src/lib/components/data-input/affixed-input.tsx +49 -0
- package/src/lib/components/data-input/customer-group-input.tsx +72 -0
- package/src/lib/components/data-input/datetime-input.tsx +150 -0
- package/src/lib/components/data-input/facet-value-input.tsx +68 -0
- package/src/lib/components/data-input/money-input.tsx +112 -0
- package/src/lib/components/data-input/richt-text-input.tsx +99 -0
- package/src/lib/components/data-table/data-table-column-header.tsx +73 -0
- package/src/lib/components/data-table/data-table-faceted-filter.tsx +172 -0
- package/src/lib/components/data-table/data-table-filter-dialog.tsx +73 -0
- package/src/lib/components/data-table/data-table-pagination.tsx +87 -0
- package/src/lib/components/data-table/data-table-view-options.tsx +53 -0
- package/src/lib/components/data-table/data-table.tsx +218 -0
- package/src/lib/components/layout/app-layout.tsx +42 -0
- package/src/lib/components/layout/app-sidebar.tsx +34 -0
- package/src/lib/components/layout/channel-switcher.tsx +87 -0
- package/src/lib/components/layout/content-language-selector.tsx +41 -0
- package/src/lib/components/layout/generated-breadcrumbs.tsx +82 -0
- package/src/lib/components/layout/language-dialog.tsx +104 -0
- package/src/lib/components/layout/nav-main.tsx +178 -0
- package/src/lib/components/layout/nav-projects.tsx +81 -0
- package/src/lib/components/layout/nav-user.tsx +176 -0
- package/src/lib/components/layout/prerelease-popup.tsx +38 -0
- package/src/lib/components/login/login-form.tsx +173 -0
- package/src/lib/components/shared/alerts.tsx +20 -0
- package/src/lib/components/shared/animated-number.tsx +49 -0
- package/src/lib/components/shared/asset-gallery.tsx +433 -0
- package/src/lib/components/shared/asset-picker-dialog.tsx +72 -0
- package/src/lib/components/shared/asset-preview-dialog.tsx +48 -0
- package/src/lib/components/shared/asset-preview.tsx +345 -0
- package/src/lib/components/shared/assigned-facet-values.tsx +68 -0
- package/src/lib/components/shared/channel-code-label.tsx +7 -0
- package/src/lib/components/shared/channel-selector.tsx +51 -0
- package/src/lib/components/shared/configurable-operation-arg-input.tsx +51 -0
- package/src/lib/components/shared/configurable-operation-input.tsx +133 -0
- package/src/lib/components/shared/confirmation-dialog.tsx +58 -0
- package/src/lib/components/shared/copyable-text.tsx +31 -0
- package/src/lib/components/shared/country-selector.tsx +105 -0
- package/src/lib/components/shared/currency-selector.tsx +33 -0
- package/src/lib/components/shared/custom-fields-form.tsx +86 -0
- package/src/lib/components/shared/customer-address-form.tsx +330 -0
- package/src/lib/components/shared/customer-group-chip.tsx +30 -0
- package/src/lib/components/shared/customer-group-selector.tsx +62 -0
- package/src/lib/components/shared/customer-selector.tsx +107 -0
- package/src/lib/components/shared/detail-page-button.tsx +22 -0
- package/src/lib/components/shared/entity-assets.tsx +340 -0
- package/src/lib/components/shared/error-page.tsx +31 -0
- package/src/lib/components/shared/facet-value-chip.tsx +45 -0
- package/src/lib/components/shared/facet-value-selector.tsx +306 -0
- package/src/lib/components/shared/focal-point-control.tsx +65 -0
- package/src/lib/components/shared/form-field-wrapper.tsx +37 -0
- package/src/lib/components/shared/history-timeline/history-entry.tsx +112 -0
- package/src/lib/components/shared/history-timeline/history-note-checkbox.tsx +28 -0
- package/src/lib/components/shared/history-timeline/history-note-editor.tsx +60 -0
- package/src/lib/components/shared/history-timeline/history-note-input.tsx +39 -0
- package/src/lib/components/shared/history-timeline/history-timeline.tsx +56 -0
- package/src/lib/components/shared/icon-mark.tsx +18 -0
- package/src/lib/components/shared/language-selector.tsx +48 -0
- package/src/lib/components/shared/logo-mark.tsx +24 -0
- package/src/lib/components/shared/multi-select.tsx +159 -0
- package/src/lib/components/shared/option-value-input.tsx +95 -0
- package/src/lib/components/shared/paginated-list-data-table.tsx +520 -0
- package/src/lib/components/shared/permission-guard.tsx +21 -0
- package/src/lib/components/shared/rich-text-editor.tsx +0 -0
- package/src/lib/components/shared/role-code-label.tsx +8 -0
- package/src/lib/components/shared/role-selector.tsx +56 -0
- package/src/lib/components/shared/seller-selector.tsx +107 -0
- package/src/lib/components/shared/tax-category-selector.tsx +65 -0
- package/src/lib/components/shared/translatable-form-field.tsx +74 -0
- package/src/lib/components/shared/vendure-image.tsx +159 -0
- package/src/lib/components/shared/zone-selector.tsx +66 -0
- package/src/lib/components/ui/accordion.tsx +59 -0
- package/src/lib/components/ui/alert-dialog.tsx +128 -0
- package/src/lib/components/ui/alert.tsx +60 -0
- package/src/lib/components/ui/avatar.tsx +38 -0
- package/src/lib/components/ui/badge.tsx +38 -0
- package/src/lib/components/ui/breadcrumb.tsx +102 -0
- package/src/lib/components/ui/button.tsx +51 -0
- package/src/lib/components/ui/calendar.tsx +69 -0
- package/src/lib/components/ui/card.tsx +47 -0
- package/src/lib/components/ui/checkbox.tsx +27 -0
- package/src/lib/components/ui/collapsible.tsx +33 -0
- package/src/lib/components/ui/command.tsx +133 -0
- package/src/lib/components/ui/dialog.tsx +116 -0
- package/src/lib/components/ui/dropdown-menu.tsx +220 -0
- package/src/lib/components/ui/form.tsx +141 -0
- package/src/lib/components/ui/hover-card.tsx +36 -0
- package/src/lib/components/ui/input.tsx +19 -0
- package/src/lib/components/ui/label.tsx +21 -0
- package/src/lib/components/ui/pagination.tsx +127 -0
- package/src/lib/components/ui/popover.tsx +40 -0
- package/src/lib/components/ui/scroll-area.tsx +50 -0
- package/src/lib/components/ui/select.tsx +161 -0
- package/src/lib/components/ui/separator.tsx +26 -0
- package/src/lib/components/ui/sheet.tsx +118 -0
- package/src/lib/components/ui/sidebar.tsx +696 -0
- package/src/lib/components/ui/skeleton.tsx +13 -0
- package/src/lib/components/ui/sonner.tsx +27 -0
- package/src/lib/components/ui/switch.tsx +26 -0
- package/src/lib/components/ui/table.tsx +82 -0
- package/src/lib/components/ui/tabs.tsx +48 -0
- package/src/lib/components/ui/textarea.tsx +18 -0
- package/src/lib/components/ui/tooltip.tsx +51 -0
- package/src/lib/constants.ts +326 -0
- package/src/lib/framework/component-registry/component-registry.tsx +70 -0
- package/src/lib/framework/component-registry/dynamic-component.tsx +58 -0
- package/src/lib/framework/dashboard-widget/base-widget.tsx +97 -0
- package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +96 -0
- package/src/lib/framework/dashboard-widget/latest-orders-widget/latest-orders-widget.graphql.ts +35 -0
- package/src/lib/framework/dashboard-widget/metrics-widget/chart.tsx +24 -0
- package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +82 -0
- package/src/lib/framework/dashboard-widget/metrics-widget/metrics-widget.graphql.ts +14 -0
- package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +167 -0
- package/src/lib/framework/dashboard-widget/orders-summary/order-summary-widget.graphql.ts +14 -0
- package/src/lib/framework/dashboard-widget/types.ts +22 -0
- package/src/lib/framework/dashboard-widget/widget-extensions.tsx +19 -0
- package/src/lib/framework/defaults.ts +219 -0
- package/src/lib/framework/document-introspection/add-custom-fields.spec.ts +242 -0
- package/src/lib/framework/document-introspection/add-custom-fields.ts +246 -0
- package/src/lib/framework/document-introspection/get-document-structure.spec.ts +310 -0
- package/src/lib/framework/document-introspection/get-document-structure.ts +460 -0
- package/src/lib/framework/document-introspection/hooks.ts +10 -0
- package/src/lib/framework/extension-api/define-dashboard-extension.ts +66 -0
- package/src/lib/framework/extension-api/extension-api-types.ts +58 -0
- package/src/lib/framework/extension-api/use-dashboard-extensions.ts +26 -0
- package/src/lib/framework/form-engine/form-schema-tools.ts +98 -0
- package/src/lib/framework/form-engine/use-generated-form.tsx +116 -0
- package/src/lib/framework/layout-engine/layout-extensions.ts +30 -0
- package/src/lib/framework/layout-engine/location-wrapper.tsx +96 -0
- package/src/lib/framework/layout-engine/page-layout.tsx +272 -0
- package/src/lib/framework/nav-menu/nav-menu-extensions.ts +66 -0
- package/src/lib/framework/page/detail-page-route-loader.tsx +48 -0
- package/src/lib/framework/page/detail-page.tsx +131 -0
- package/src/lib/framework/page/list-page.tsx +166 -0
- package/src/lib/framework/page/page-api.ts +9 -0
- package/src/lib/framework/page/page-types.ts +51 -0
- package/src/lib/framework/page/use-detail-page.ts +217 -0
- package/src/lib/framework/page/use-extended-router.tsx +69 -0
- package/src/lib/framework/registry/global-registry.ts +46 -0
- package/src/lib/framework/registry/registry-types.ts +15 -0
- package/src/lib/graphql/api.ts +61 -0
- package/src/lib/graphql/fragments.tsx +54 -0
- package/src/lib/graphql/graphql-env.d.ts +499 -0
- package/src/lib/graphql/graphql.ts +15 -0
- package/src/lib/hooks/use-auth.tsx +11 -0
- package/src/lib/hooks/use-channel.ts +12 -0
- package/src/lib/hooks/use-custom-field-config.ts +10 -0
- package/src/lib/hooks/use-grouped-permissions.ts +54 -0
- package/src/lib/hooks/use-local-format.ts +119 -0
- package/src/lib/hooks/use-mobile.ts +19 -0
- package/src/lib/hooks/use-page.tsx +11 -0
- package/src/lib/hooks/use-permissions.ts +22 -0
- package/src/lib/hooks/use-server-config.ts +4 -0
- package/src/lib/hooks/use-theme.ts +10 -0
- package/src/lib/hooks/use-user-settings.tsx +12 -0
- package/src/lib/index.ts +149 -0
- package/src/lib/lib/trans.tsx +16 -0
- package/src/lib/lib/utils.ts +60 -0
- package/src/lib/providers/auth.tsx +152 -0
- package/src/lib/providers/channel-provider.tsx +121 -0
- package/src/lib/providers/i18n-provider.tsx +28 -0
- package/src/lib/providers/server-config.tsx +279 -0
- package/src/lib/providers/theme-provider.tsx +54 -0
- package/src/lib/providers/user-settings.tsx +89 -0
- package/src/lib/virtual.d.ts +12 -0
- package/vite/config-loader.ts +181 -0
- package/vite/constants.ts +280 -0
- package/vite/index.ts +1 -0
- package/vite/schema-generator.ts +40 -0
- package/vite/ui-config.ts +60 -0
- package/vite/vite-plugin-admin-api-schema.ts +141 -0
- package/vite/vite-plugin-config-loader.ts +64 -0
- package/vite/vite-plugin-config.ts +42 -0
- package/vite/vite-plugin-dashboard-metadata.ts +58 -0
- package/vite/vite-plugin-gql-tada.ts +62 -0
- package/vite/vite-plugin-theme.ts +195 -0
- package/vite/vite-plugin-ui-config.ts +60 -0
- package/vite/vite-plugin-vendure-dashboard.ts +118 -0
package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { ConfigurableOperationInput } from '@/components/shared/configurable-operation-input.js';
|
|
2
|
+
import { Button } from '@/components/ui/button.js';
|
|
3
|
+
import {
|
|
4
|
+
DropdownMenu,
|
|
5
|
+
DropdownMenuContent,
|
|
6
|
+
DropdownMenuItem,
|
|
7
|
+
DropdownMenuTrigger,
|
|
8
|
+
} from '@/components/ui/dropdown-menu.js';
|
|
9
|
+
import { api } from '@/graphql/api.js';
|
|
10
|
+
import { configurableOperationDefFragment, ConfigurableOperationDefFragment } from '@/graphql/fragments.js';
|
|
11
|
+
import { graphql } from '@/graphql/graphql.js';
|
|
12
|
+
import { Trans } from '@/lib/trans.js';
|
|
13
|
+
import { useQuery } from '@tanstack/react-query';
|
|
14
|
+
import { ConfigurableOperationInput as ConfigurableOperationInputType } from '@vendure/common/lib/generated-types';
|
|
15
|
+
import { Plus } from 'lucide-react';
|
|
16
|
+
|
|
17
|
+
export const paymentHandlersDocument = graphql(
|
|
18
|
+
`
|
|
19
|
+
query GetPaymentHandlers {
|
|
20
|
+
paymentMethodHandlers {
|
|
21
|
+
...ConfigurableOperationDef
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
`,
|
|
25
|
+
[configurableOperationDefFragment],
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
interface PaymentHandlerSelectorProps {
|
|
29
|
+
value: ConfigurableOperationInputType | undefined;
|
|
30
|
+
onChange: (value: ConfigurableOperationInputType | undefined) => void;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function PaymentHandlerSelector({
|
|
34
|
+
value,
|
|
35
|
+
onChange,
|
|
36
|
+
}: PaymentHandlerSelectorProps) {
|
|
37
|
+
const { data: handlersData } = useQuery({
|
|
38
|
+
queryKey: ['paymentMethodHandlers'],
|
|
39
|
+
queryFn: () => api.query(paymentHandlersDocument),
|
|
40
|
+
staleTime: 1000 * 60 * 60 * 5,
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
const handlers = handlersData?.paymentMethodHandlers;
|
|
44
|
+
|
|
45
|
+
const onHandlerSelected = (handler: ConfigurableOperationDefFragment) => {
|
|
46
|
+
const handlerDef = handlers?.find(h => h.code === handler.code);
|
|
47
|
+
if (!handlerDef) {
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
onChange({
|
|
51
|
+
code: handler.code,
|
|
52
|
+
arguments: handlerDef.args.map(arg => ({
|
|
53
|
+
name: arg.name,
|
|
54
|
+
value: arg.defaultValue != null ? arg.defaultValue.toString() : '',
|
|
55
|
+
})),
|
|
56
|
+
});
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
const onOperationValueChange = (newVal: ConfigurableOperationInputType) => {
|
|
60
|
+
onChange(newVal);
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const onOperationRemove = () => {
|
|
64
|
+
onChange(undefined);
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
const handlerDef = handlers?.find(h => h.code === value?.code);
|
|
68
|
+
|
|
69
|
+
return (
|
|
70
|
+
<div className="flex flex-col gap-2 mt-4">
|
|
71
|
+
{value && handlerDef && (
|
|
72
|
+
<div className="flex flex-col gap-2">
|
|
73
|
+
<ConfigurableOperationInput
|
|
74
|
+
operationDefinition={handlerDef}
|
|
75
|
+
value={value}
|
|
76
|
+
onChange={value => onOperationValueChange(value)}
|
|
77
|
+
onRemove={() => onOperationRemove()}
|
|
78
|
+
/>
|
|
79
|
+
</div>
|
|
80
|
+
)}
|
|
81
|
+
<DropdownMenu>
|
|
82
|
+
{!value?.code && (
|
|
83
|
+
<DropdownMenuTrigger asChild>
|
|
84
|
+
<Button variant="outline">
|
|
85
|
+
<Plus />
|
|
86
|
+
<Trans>Select Payment Handler</Trans>
|
|
87
|
+
</Button>
|
|
88
|
+
</DropdownMenuTrigger>
|
|
89
|
+
)}
|
|
90
|
+
<DropdownMenuContent className="w-96">
|
|
91
|
+
{handlers?.map(handler => (
|
|
92
|
+
<DropdownMenuItem key={handler.code} onClick={() => onHandlerSelected(handler)}>
|
|
93
|
+
{handler.description}
|
|
94
|
+
</DropdownMenuItem>
|
|
95
|
+
))}
|
|
96
|
+
</DropdownMenuContent>
|
|
97
|
+
</DropdownMenu>
|
|
98
|
+
</div>
|
|
99
|
+
);
|
|
100
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { configurableOperationFragment } from '@/graphql/fragments.js';
|
|
2
|
+
import { graphql } from '@/graphql/graphql.js';
|
|
3
|
+
|
|
4
|
+
export const paymentMethodItemFragment = graphql(`
|
|
5
|
+
fragment PaymentMethodItem on PaymentMethod {
|
|
6
|
+
id
|
|
7
|
+
createdAt
|
|
8
|
+
updatedAt
|
|
9
|
+
name
|
|
10
|
+
description
|
|
11
|
+
code
|
|
12
|
+
enabled
|
|
13
|
+
}
|
|
14
|
+
`);
|
|
15
|
+
|
|
16
|
+
export const paymentMethodListQuery = graphql(
|
|
17
|
+
`
|
|
18
|
+
query PaymentMethodList {
|
|
19
|
+
paymentMethods {
|
|
20
|
+
items {
|
|
21
|
+
...PaymentMethodItem
|
|
22
|
+
}
|
|
23
|
+
totalItems
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
`,
|
|
27
|
+
[paymentMethodItemFragment],
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
export const paymentMethodDetailDocument = graphql(
|
|
31
|
+
`
|
|
32
|
+
query PaymentMethodDetail($id: ID!) {
|
|
33
|
+
paymentMethod(id: $id) {
|
|
34
|
+
id
|
|
35
|
+
createdAt
|
|
36
|
+
updatedAt
|
|
37
|
+
name
|
|
38
|
+
code
|
|
39
|
+
description
|
|
40
|
+
enabled
|
|
41
|
+
translations {
|
|
42
|
+
id
|
|
43
|
+
languageCode
|
|
44
|
+
name
|
|
45
|
+
description
|
|
46
|
+
}
|
|
47
|
+
checker {
|
|
48
|
+
...ConfigurableOperation
|
|
49
|
+
}
|
|
50
|
+
handler {
|
|
51
|
+
...ConfigurableOperation
|
|
52
|
+
}
|
|
53
|
+
customFields
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
`,
|
|
57
|
+
[configurableOperationFragment],
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
export const createPaymentMethodDocument = graphql(`
|
|
61
|
+
mutation CreatePaymentMethod($input: CreatePaymentMethodInput!) {
|
|
62
|
+
createPaymentMethod(input: $input) {
|
|
63
|
+
id
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
`);
|
|
67
|
+
|
|
68
|
+
export const updatePaymentMethodDocument = graphql(`
|
|
69
|
+
mutation UpdatePaymentMethod($input: UpdatePaymentMethodInput!) {
|
|
70
|
+
updatePaymentMethod(input: $input) {
|
|
71
|
+
id
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
`);
|
|
75
|
+
|
|
76
|
+
export const deletePaymentMethodDocument = graphql(`
|
|
77
|
+
mutation DeletePaymentMethod($id: ID!) {
|
|
78
|
+
deletePaymentMethod(id: $id) {
|
|
79
|
+
result
|
|
80
|
+
message
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
`);
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { BooleanDisplayBadge } from '@/components/data-display/boolean.js';
|
|
2
|
+
import { DetailPageButton } from '@/components/shared/detail-page-button.js';
|
|
3
|
+
import { PermissionGuard } from '@/components/shared/permission-guard.js';
|
|
4
|
+
import { Button } from '@/components/ui/button.js';
|
|
5
|
+
import { ListPage } from '@/framework/page/list-page.js';
|
|
6
|
+
import { Trans } from '@/lib/trans.js';
|
|
7
|
+
import { createFileRoute, Link } from '@tanstack/react-router';
|
|
8
|
+
import { PlusIcon } from 'lucide-react';
|
|
9
|
+
import { deletePaymentMethodDocument, paymentMethodListQuery } from './payment-methods.graphql.js';
|
|
10
|
+
|
|
11
|
+
export const Route = createFileRoute('/_authenticated/_payment-methods/payment-methods')({
|
|
12
|
+
component: PaymentMethodListPage,
|
|
13
|
+
loader: () => ({ breadcrumb: () => <Trans>Payment Methods</Trans> }),
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
function PaymentMethodListPage() {
|
|
17
|
+
return (
|
|
18
|
+
<ListPage
|
|
19
|
+
pageId="payment-method-list"
|
|
20
|
+
listQuery={paymentMethodListQuery}
|
|
21
|
+
deleteMutation={deletePaymentMethodDocument}
|
|
22
|
+
route={Route}
|
|
23
|
+
title="Payment Methods"
|
|
24
|
+
defaultVisibility={{
|
|
25
|
+
name: true,
|
|
26
|
+
code: true,
|
|
27
|
+
enabled: true,
|
|
28
|
+
}}
|
|
29
|
+
onSearchTermChange={searchTerm => {
|
|
30
|
+
return {
|
|
31
|
+
name: { contains: searchTerm },
|
|
32
|
+
};
|
|
33
|
+
}}
|
|
34
|
+
facetedFilters={{
|
|
35
|
+
enabled: {
|
|
36
|
+
title: 'Enabled',
|
|
37
|
+
options: [
|
|
38
|
+
{ label: 'Enabled', value: true },
|
|
39
|
+
{ label: 'Disabled', value: false },
|
|
40
|
+
],
|
|
41
|
+
},
|
|
42
|
+
}}
|
|
43
|
+
customizeColumns={{
|
|
44
|
+
name: {
|
|
45
|
+
header: 'Name',
|
|
46
|
+
cell: ({ row }) => <DetailPageButton id={row.original.id} label={row.original.name} />,
|
|
47
|
+
},
|
|
48
|
+
enabled: {
|
|
49
|
+
header: 'Enabled',
|
|
50
|
+
cell: ({ row }) => <BooleanDisplayBadge value={row.original.enabled} />,
|
|
51
|
+
},
|
|
52
|
+
}}
|
|
53
|
+
>
|
|
54
|
+
<PermissionGuard requires={['CreatePaymentMethod']}>
|
|
55
|
+
<Button asChild>
|
|
56
|
+
<Link to="./new">
|
|
57
|
+
<PlusIcon className="mr-2 h-4 w-4" />
|
|
58
|
+
New Payment Method
|
|
59
|
+
</Link>
|
|
60
|
+
</Button>
|
|
61
|
+
</PermissionGuard>
|
|
62
|
+
</ListPage>
|
|
63
|
+
);
|
|
64
|
+
}
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import { RichTextInput } from '@/components/data-input/richt-text-input.js';
|
|
2
|
+
import { ErrorPage } from '@/components/shared/error-page.js';
|
|
3
|
+
import { FormFieldWrapper } from '@/components/shared/form-field-wrapper.js';
|
|
4
|
+
import { PermissionGuard } from '@/components/shared/permission-guard.js';
|
|
5
|
+
import { TranslatableFormFieldWrapper } from '@/components/shared/translatable-form-field.js';
|
|
6
|
+
import { Button } from '@/components/ui/button.js';
|
|
7
|
+
import { Input } from '@/components/ui/input.js';
|
|
8
|
+
import { Switch } from '@/components/ui/switch.js';
|
|
9
|
+
import { NEW_ENTITY_PATH } from '@/constants.js';
|
|
10
|
+
import {
|
|
11
|
+
CustomFieldsPageBlock,
|
|
12
|
+
DetailFormGrid,
|
|
13
|
+
Page,
|
|
14
|
+
PageActionBar,
|
|
15
|
+
PageActionBarRight,
|
|
16
|
+
PageBlock,
|
|
17
|
+
PageLayout,
|
|
18
|
+
PageTitle,
|
|
19
|
+
} from '@/framework/layout-engine/page-layout.js';
|
|
20
|
+
import { detailPageRouteLoader } from '@/framework/page/detail-page-route-loader.js';
|
|
21
|
+
import { useDetailPage } from '@/framework/page/use-detail-page.js';
|
|
22
|
+
import { Trans, useLingui } from '@/lib/trans.js';
|
|
23
|
+
import { createFileRoute, useNavigate } from '@tanstack/react-router';
|
|
24
|
+
import { toast } from 'sonner';
|
|
25
|
+
import { PaymentEligibilityCheckerSelector } from './components/payment-eligibility-checker-selector.js';
|
|
26
|
+
import { PaymentHandlerSelector } from './components/payment-handler-selector.js';
|
|
27
|
+
import {
|
|
28
|
+
createPaymentMethodDocument,
|
|
29
|
+
paymentMethodDetailDocument,
|
|
30
|
+
updatePaymentMethodDocument,
|
|
31
|
+
} from './payment-methods.graphql.js';
|
|
32
|
+
|
|
33
|
+
export const Route = createFileRoute('/_authenticated/_payment-methods/payment-methods_/$id')({
|
|
34
|
+
component: PaymentMethodDetailPage,
|
|
35
|
+
loader: detailPageRouteLoader({
|
|
36
|
+
queryDocument: paymentMethodDetailDocument,
|
|
37
|
+
breadcrumb(_isNew, entity) {
|
|
38
|
+
return [{ path: '/payment-methods', label: 'Payment methods' }, entity?.name];
|
|
39
|
+
},
|
|
40
|
+
}),
|
|
41
|
+
errorComponent: ({ error }) => <ErrorPage message={error.message} />,
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
function PaymentMethodDetailPage() {
|
|
45
|
+
const params = Route.useParams();
|
|
46
|
+
const navigate = useNavigate();
|
|
47
|
+
const creatingNewEntity = params.id === NEW_ENTITY_PATH;
|
|
48
|
+
const { i18n } = useLingui();
|
|
49
|
+
|
|
50
|
+
const { form, submitHandler, entity, isPending, resetForm } = useDetailPage({
|
|
51
|
+
queryDocument: paymentMethodDetailDocument,
|
|
52
|
+
createDocument: createPaymentMethodDocument,
|
|
53
|
+
updateDocument: updatePaymentMethodDocument,
|
|
54
|
+
setValuesForUpdate: entity => {
|
|
55
|
+
return {
|
|
56
|
+
id: entity.id,
|
|
57
|
+
enabled: entity.enabled,
|
|
58
|
+
name: entity.name,
|
|
59
|
+
code: entity.code,
|
|
60
|
+
description: entity.description,
|
|
61
|
+
checker: entity.checker?.code
|
|
62
|
+
? {
|
|
63
|
+
code: entity.checker?.code,
|
|
64
|
+
arguments: entity.checker?.args,
|
|
65
|
+
}
|
|
66
|
+
: null,
|
|
67
|
+
handler: entity.handler?.code
|
|
68
|
+
? {
|
|
69
|
+
code: entity.handler?.code,
|
|
70
|
+
arguments: entity.handler?.args,
|
|
71
|
+
}
|
|
72
|
+
: null,
|
|
73
|
+
translations: entity.translations.map(translation => ({
|
|
74
|
+
id: translation.id,
|
|
75
|
+
languageCode: translation.languageCode,
|
|
76
|
+
name: translation.name,
|
|
77
|
+
description: translation.description,
|
|
78
|
+
})),
|
|
79
|
+
customFields: entity.customFields,
|
|
80
|
+
};
|
|
81
|
+
},
|
|
82
|
+
transformCreateInput: input => {
|
|
83
|
+
return {
|
|
84
|
+
...input,
|
|
85
|
+
checker: input.checker?.code ? input.checker : undefined,
|
|
86
|
+
handler: input.handler,
|
|
87
|
+
};
|
|
88
|
+
},
|
|
89
|
+
params: { id: params.id },
|
|
90
|
+
onSuccess: async data => {
|
|
91
|
+
toast.success(i18n.t('Successfully updated payment method'));
|
|
92
|
+
resetForm();
|
|
93
|
+
if (creatingNewEntity) {
|
|
94
|
+
await navigate({ to: `../$id`, params: { id: data.id } });
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
onError: err => {
|
|
98
|
+
toast.error(i18n.t('Failed to update payment method'), {
|
|
99
|
+
description: err instanceof Error ? err.message : 'Unknown error',
|
|
100
|
+
});
|
|
101
|
+
},
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
return (
|
|
105
|
+
<Page pageId="payment-method-detail" form={form} submitHandler={submitHandler}>
|
|
106
|
+
<PageTitle>
|
|
107
|
+
{creatingNewEntity ? <Trans>New payment method</Trans> : (entity?.name ?? '')}
|
|
108
|
+
</PageTitle>
|
|
109
|
+
<PageActionBar>
|
|
110
|
+
<PageActionBarRight>
|
|
111
|
+
<PermissionGuard requires={['UpdatePaymentMethod']}>
|
|
112
|
+
<Button
|
|
113
|
+
type="submit"
|
|
114
|
+
disabled={!form.formState.isDirty || !form.formState.isValid || isPending}
|
|
115
|
+
>
|
|
116
|
+
<Trans>Update</Trans>
|
|
117
|
+
</Button>
|
|
118
|
+
</PermissionGuard>
|
|
119
|
+
</PageActionBarRight>
|
|
120
|
+
</PageActionBar>
|
|
121
|
+
<PageLayout>
|
|
122
|
+
<PageBlock column="side" blockId="enabled">
|
|
123
|
+
<FormFieldWrapper
|
|
124
|
+
control={form.control}
|
|
125
|
+
name="enabled"
|
|
126
|
+
label={<Trans>Enabled</Trans>}
|
|
127
|
+
render={({ field }) => (
|
|
128
|
+
<Switch checked={field.value ?? false} onCheckedChange={field.onChange} />
|
|
129
|
+
)}
|
|
130
|
+
/>
|
|
131
|
+
</PageBlock>
|
|
132
|
+
<PageBlock column="main" blockId="main-form">
|
|
133
|
+
<DetailFormGrid>
|
|
134
|
+
<TranslatableFormFieldWrapper
|
|
135
|
+
control={form.control}
|
|
136
|
+
name="name"
|
|
137
|
+
label={<Trans>Name</Trans>}
|
|
138
|
+
render={({ field }) => <Input {...field} />}
|
|
139
|
+
/>
|
|
140
|
+
<FormFieldWrapper
|
|
141
|
+
control={form.control}
|
|
142
|
+
name="code"
|
|
143
|
+
label={<Trans>Code</Trans>}
|
|
144
|
+
render={({ field }) => <Input {...field} />}
|
|
145
|
+
/>
|
|
146
|
+
</DetailFormGrid>
|
|
147
|
+
<TranslatableFormFieldWrapper
|
|
148
|
+
control={form.control}
|
|
149
|
+
name="description"
|
|
150
|
+
label={<Trans>Description</Trans>}
|
|
151
|
+
render={({ field }) => <RichTextInput {...field} />}
|
|
152
|
+
/>
|
|
153
|
+
</PageBlock>
|
|
154
|
+
<CustomFieldsPageBlock column="main" entityType="PaymentMethod" control={form.control} />
|
|
155
|
+
<PageBlock
|
|
156
|
+
column="main"
|
|
157
|
+
blockId="payment-eligibility-checker"
|
|
158
|
+
title={<Trans>Payment eligibility checker</Trans>}
|
|
159
|
+
>
|
|
160
|
+
<FormFieldWrapper
|
|
161
|
+
control={form.control}
|
|
162
|
+
name="checker"
|
|
163
|
+
render={({ field }) => (
|
|
164
|
+
<PaymentEligibilityCheckerSelector
|
|
165
|
+
value={field.value}
|
|
166
|
+
onChange={field.onChange}
|
|
167
|
+
/>
|
|
168
|
+
)}
|
|
169
|
+
/>
|
|
170
|
+
</PageBlock>
|
|
171
|
+
<PageBlock column="main" blockId="payment-handler" title={<Trans>Calculator</Trans>}>
|
|
172
|
+
<FormFieldWrapper
|
|
173
|
+
control={form.control}
|
|
174
|
+
name="handler"
|
|
175
|
+
render={({ field }) => (
|
|
176
|
+
<PaymentHandlerSelector value={field.value} onChange={field.onChange} />
|
|
177
|
+
)}
|
|
178
|
+
/>
|
|
179
|
+
</PageBlock>
|
|
180
|
+
</PageLayout>
|
|
181
|
+
</Page>
|
|
182
|
+
);
|
|
183
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { useEffect, useState } from 'react';
|
|
2
|
+
import { useQuery } from '@tanstack/react-query';
|
|
3
|
+
import { Trans } from '@/lib/trans.js';
|
|
4
|
+
import { graphql } from '@/graphql/graphql.js';
|
|
5
|
+
import { api } from '@/graphql/api.js';
|
|
6
|
+
import { useChannel } from '@/hooks/use-channel.js';
|
|
7
|
+
import { Money } from '@/components/data-display/money.js';
|
|
8
|
+
|
|
9
|
+
const taxRatesDocument = graphql(`
|
|
10
|
+
query TaxRates($options: TaxRateListOptions) {
|
|
11
|
+
taxRates(options: $options) {
|
|
12
|
+
items {
|
|
13
|
+
id
|
|
14
|
+
value
|
|
15
|
+
zone {
|
|
16
|
+
id
|
|
17
|
+
}
|
|
18
|
+
category {
|
|
19
|
+
id
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
`);
|
|
25
|
+
interface VariantPriceDetailProps {
|
|
26
|
+
priceIncludesTax: boolean;
|
|
27
|
+
price: number | undefined;
|
|
28
|
+
currencyCode: string;
|
|
29
|
+
taxCategoryId: string | undefined;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export function VariantPriceDetail({
|
|
33
|
+
priceIncludesTax,
|
|
34
|
+
price,
|
|
35
|
+
currencyCode,
|
|
36
|
+
taxCategoryId,
|
|
37
|
+
}: VariantPriceDetailProps) {
|
|
38
|
+
const { activeChannel } = useChannel();
|
|
39
|
+
const [taxRate, setTaxRate] = useState(0);
|
|
40
|
+
const [grossPrice, setGrossPrice] = useState(0);
|
|
41
|
+
|
|
42
|
+
// Fetch tax rates
|
|
43
|
+
const { data: taxRatesData } = useQuery({
|
|
44
|
+
queryKey: ['taxRates'],
|
|
45
|
+
queryFn: () => api.query(taxRatesDocument, { options: { take: 999, skip: 0 } }),
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
useEffect(() => {
|
|
49
|
+
if (!taxRatesData?.taxRates.items || !activeChannel) {
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const defaultTaxZone = activeChannel.defaultTaxZone?.id;
|
|
54
|
+
if (!defaultTaxZone) {
|
|
55
|
+
setTaxRate(0);
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
const applicableRate = taxRatesData.taxRates.items.find(
|
|
60
|
+
taxRate => taxRate.zone.id === defaultTaxZone && taxRate.category.id === taxCategoryId,
|
|
61
|
+
);
|
|
62
|
+
|
|
63
|
+
if (!applicableRate) {
|
|
64
|
+
setTaxRate(0);
|
|
65
|
+
return;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
setTaxRate(applicableRate.value);
|
|
69
|
+
}, [taxRatesData, activeChannel, taxCategoryId]);
|
|
70
|
+
|
|
71
|
+
useEffect(() => {
|
|
72
|
+
setGrossPrice(Math.round((price ?? 0) * ((100 + taxRate) / 100)));
|
|
73
|
+
}, [price, taxRate]);
|
|
74
|
+
|
|
75
|
+
return (
|
|
76
|
+
<div className="space-y-1">
|
|
77
|
+
<div className="text-sm text-muted-foreground">
|
|
78
|
+
<Trans>Tax rate: {taxRate}%</Trans>
|
|
79
|
+
</div>
|
|
80
|
+
<div className="text-sm">
|
|
81
|
+
<Trans>
|
|
82
|
+
Gross price: <Money value={grossPrice} currency={currencyCode} />
|
|
83
|
+
</Trans>
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
);
|
|
87
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { assetFragment } from '@/graphql/fragments.js';
|
|
2
|
+
import { graphql } from '@/graphql/graphql.js';
|
|
3
|
+
|
|
4
|
+
export const productVariantListDocument = graphql(
|
|
5
|
+
`
|
|
6
|
+
query ProductVariantLis($options: ProductVariantListOptions) {
|
|
7
|
+
productVariants(options: $options) {
|
|
8
|
+
items {
|
|
9
|
+
id
|
|
10
|
+
createdAt
|
|
11
|
+
updatedAt
|
|
12
|
+
featuredAsset {
|
|
13
|
+
...Asset
|
|
14
|
+
}
|
|
15
|
+
name
|
|
16
|
+
sku
|
|
17
|
+
currencyCode
|
|
18
|
+
price
|
|
19
|
+
priceWithTax
|
|
20
|
+
stockLevels {
|
|
21
|
+
id
|
|
22
|
+
stockOnHand
|
|
23
|
+
stockAllocated
|
|
24
|
+
}
|
|
25
|
+
customFields
|
|
26
|
+
}
|
|
27
|
+
totalItems
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
`,
|
|
31
|
+
[assetFragment],
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
export const productVariantDetailDocument = graphql(
|
|
35
|
+
`
|
|
36
|
+
query ProductVariantDetail($id: ID!) {
|
|
37
|
+
productVariant(id: $id) {
|
|
38
|
+
id
|
|
39
|
+
createdAt
|
|
40
|
+
updatedAt
|
|
41
|
+
product {
|
|
42
|
+
id
|
|
43
|
+
name
|
|
44
|
+
}
|
|
45
|
+
enabled
|
|
46
|
+
featuredAsset {
|
|
47
|
+
...Asset
|
|
48
|
+
}
|
|
49
|
+
assets {
|
|
50
|
+
...Asset
|
|
51
|
+
}
|
|
52
|
+
facetValues {
|
|
53
|
+
id
|
|
54
|
+
code
|
|
55
|
+
name
|
|
56
|
+
facet {
|
|
57
|
+
id
|
|
58
|
+
code
|
|
59
|
+
name
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
translations {
|
|
63
|
+
id
|
|
64
|
+
languageCode
|
|
65
|
+
name
|
|
66
|
+
}
|
|
67
|
+
name
|
|
68
|
+
sku
|
|
69
|
+
currencyCode
|
|
70
|
+
taxCategory {
|
|
71
|
+
id
|
|
72
|
+
name
|
|
73
|
+
isDefault
|
|
74
|
+
}
|
|
75
|
+
price
|
|
76
|
+
priceWithTax
|
|
77
|
+
prices {
|
|
78
|
+
currencyCode
|
|
79
|
+
price
|
|
80
|
+
customFields
|
|
81
|
+
}
|
|
82
|
+
trackInventory
|
|
83
|
+
outOfStockThreshold
|
|
84
|
+
stockLevels {
|
|
85
|
+
id
|
|
86
|
+
stockOnHand
|
|
87
|
+
stockAllocated
|
|
88
|
+
stockLocation {
|
|
89
|
+
id
|
|
90
|
+
name
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
customFields
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
`,
|
|
97
|
+
[assetFragment],
|
|
98
|
+
);
|
|
99
|
+
|
|
100
|
+
export const createProductVariantDocument = graphql(`
|
|
101
|
+
mutation CreateProductVariant($input: [CreateProductVariantInput!]!) {
|
|
102
|
+
createProductVariants(input: $input) {
|
|
103
|
+
id
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
`);
|
|
107
|
+
|
|
108
|
+
export const updateProductVariantDocument = graphql(`
|
|
109
|
+
mutation UpdateProductVariant($input: UpdateProductVariantInput!) {
|
|
110
|
+
updateProductVariant(input: $input) {
|
|
111
|
+
id
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
`);
|
|
115
|
+
|
|
116
|
+
export const deleteProductVariantDocument = graphql(`
|
|
117
|
+
mutation DeleteProductVariant($id: ID!) {
|
|
118
|
+
deleteProductVariant(id: $id) {
|
|
119
|
+
result
|
|
120
|
+
message
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
`);
|