@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.
Files changed (382) hide show
  1. package/README.md +13 -0
  2. package/dist/plugin/.vendure-dashboard-temp/dev-config.js +227 -0
  3. package/dist/plugin/.vendure-dashboard-temp/dev-config.js.map +1 -0
  4. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js +33 -0
  5. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js.map +1 -0
  6. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js +69 -0
  7. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js.map +1 -0
  8. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js +110 -0
  9. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js.map +1 -0
  10. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js +134 -0
  11. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js.map +1 -0
  12. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js +86 -0
  13. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js.map +1 -0
  14. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js +49 -0
  15. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js.map +1 -0
  16. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js +57 -0
  17. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js.map +1 -0
  18. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js +20 -0
  19. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js.map +1 -0
  20. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js +151 -0
  21. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js.map +1 -0
  22. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js +47 -0
  23. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js.map +1 -0
  24. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js +222 -0
  25. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js.map +1 -0
  26. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js +4 -0
  27. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js.map +1 -0
  28. package/dist/plugin/.vendure-dashboard-temp/package.json +3 -0
  29. package/dist/plugin/.vendure-dashboard-temp/schema.graphql +6378 -0
  30. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js +103 -0
  31. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js.map +1 -0
  32. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js +105 -0
  33. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js.map +1 -0
  34. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js +183 -0
  35. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js.map +1 -0
  36. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js +113 -0
  37. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js.map +1 -0
  38. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js +112 -0
  39. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js.map +1 -0
  40. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js +111 -0
  41. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js.map +1 -0
  42. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js +616 -0
  43. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js.map +1 -0
  44. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js +563 -0
  45. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js.map +1 -0
  46. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js +135 -0
  47. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js.map +1 -0
  48. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js +4 -0
  49. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js.map +1 -0
  50. package/dist/plugin/.vendure-dashboard-temp/tsconfig.json +10 -0
  51. package/dist/plugin/config-loader.d.ts +27 -0
  52. package/dist/plugin/config-loader.js +141 -0
  53. package/dist/plugin/constants.d.ts +5 -0
  54. package/dist/plugin/constants.js +277 -0
  55. package/dist/plugin/index.d.ts +1 -0
  56. package/dist/plugin/index.js +1 -0
  57. package/dist/plugin/schema-generator.d.ts +5 -0
  58. package/dist/plugin/schema-generator.js +24 -0
  59. package/dist/plugin/ui-config.d.ts +3 -0
  60. package/dist/plugin/ui-config.js +35 -0
  61. package/dist/plugin/vite-plugin-admin-api-schema.d.ts +24 -0
  62. package/dist/plugin/vite-plugin-admin-api-schema.js +82 -0
  63. package/dist/plugin/vite-plugin-config-loader.d.ts +17 -0
  64. package/dist/plugin/vite-plugin-config-loader.js +56 -0
  65. package/dist/plugin/vite-plugin-config.d.ts +4 -0
  66. package/dist/plugin/vite-plugin-config.js +38 -0
  67. package/dist/plugin/vite-plugin-dashboard-metadata.d.ts +9 -0
  68. package/dist/plugin/vite-plugin-dashboard-metadata.js +52 -0
  69. package/dist/plugin/vite-plugin-gql-tada.d.ts +6 -0
  70. package/dist/plugin/vite-plugin-gql-tada.js +51 -0
  71. package/dist/plugin/vite-plugin-set-root.d.ts +4 -0
  72. package/dist/plugin/vite-plugin-set-root.js +15 -0
  73. package/dist/plugin/vite-plugin-ui-config.d.ts +15 -0
  74. package/dist/plugin/vite-plugin-ui-config.js +43 -0
  75. package/dist/plugin/vite-plugin-vendure-dashboard.d.ts +35 -0
  76. package/dist/plugin/vite-plugin-vendure-dashboard.js +81 -0
  77. package/index.html +15 -0
  78. package/lingui.config.js +12 -0
  79. package/package.json +118 -0
  80. package/src/app/app-providers.tsx +30 -0
  81. package/src/app/main.tsx +97 -0
  82. package/src/app/routeTree.gen.ts +1372 -0
  83. package/src/app/routes/__root.tsx +24 -0
  84. package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +79 -0
  85. package/src/app/routes/_authenticated/_administrators/administrators.tsx +86 -0
  86. package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +155 -0
  87. package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +133 -0
  88. package/src/app/routes/_authenticated/_assets/assets.tsx +19 -0
  89. package/src/app/routes/_authenticated/_channels/channels.graphql.ts +93 -0
  90. package/src/app/routes/_authenticated/_channels/channels.tsx +60 -0
  91. package/src/app/routes/_authenticated/_channels/channels_.$id.tsx +248 -0
  92. package/src/app/routes/_authenticated/_collections/collections.graphql.ts +133 -0
  93. package/src/app/routes/_authenticated/_collections/collections.tsx +195 -0
  94. package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +224 -0
  95. package/src/app/routes/_authenticated/_collections/components/collection-contents-preview-table.tsx +127 -0
  96. package/src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx +46 -0
  97. package/src/app/routes/_authenticated/_collections/components/collection-contents-table.tsx +82 -0
  98. package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +91 -0
  99. package/src/app/routes/_authenticated/_countries/countries.graphql.ts +69 -0
  100. package/src/app/routes/_authenticated/_countries/countries.tsx +67 -0
  101. package/src/app/routes/_authenticated/_countries/countries_.$id.tsx +122 -0
  102. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx +44 -0
  103. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx +129 -0
  104. package/src/app/routes/_authenticated/_customer-groups/customer-groups.graphql.ts +71 -0
  105. package/src/app/routes/_authenticated/_customer-groups/customer-groups.tsx +68 -0
  106. package/src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx +111 -0
  107. package/src/app/routes/_authenticated/_customers/components/customer-address-card.tsx +155 -0
  108. package/src/app/routes/_authenticated/_customers/components/customer-address-form.tsx +344 -0
  109. package/src/app/routes/_authenticated/_customers/components/customer-group-controls.tsx +4 -0
  110. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx +78 -0
  111. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx +77 -0
  112. package/src/app/routes/_authenticated/_customers/components/customer-history/index.ts +3 -0
  113. package/src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts +169 -0
  114. package/src/app/routes/_authenticated/_customers/components/customer-order-table.tsx +88 -0
  115. package/src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx +33 -0
  116. package/src/app/routes/_authenticated/_customers/customers.graphql.ts +204 -0
  117. package/src/app/routes/_authenticated/_customers/customers.tsx +82 -0
  118. package/src/app/routes/_authenticated/_customers/customers_.$id.tsx +274 -0
  119. package/src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx +129 -0
  120. package/src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx +46 -0
  121. package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +97 -0
  122. package/src/app/routes/_authenticated/_facets/facets.graphql.ts +104 -0
  123. package/src/app/routes/_authenticated/_facets/facets.tsx +97 -0
  124. package/src/app/routes/_authenticated/_facets/facets_.$id.tsx +139 -0
  125. package/src/app/routes/_authenticated/_global-settings/global-settings.graphql.ts +28 -0
  126. package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +161 -0
  127. package/src/app/routes/_authenticated/_orders/components/order-address.tsx +58 -0
  128. package/src/app/routes/_authenticated/_orders/components/order-history/index.ts +3 -0
  129. package/src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx +73 -0
  130. package/src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx +96 -0
  131. package/src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts +171 -0
  132. package/src/app/routes/_authenticated/_orders/components/order-table.tsx +169 -0
  133. package/src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx +39 -0
  134. package/src/app/routes/_authenticated/_orders/components/payment-details.tsx +61 -0
  135. package/src/app/routes/_authenticated/_orders/orders.graphql.ts +325 -0
  136. package/src/app/routes/_authenticated/_orders/orders.tsx +120 -0
  137. package/src/app/routes/_authenticated/_orders/orders_.$id.tsx +133 -0
  138. package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +104 -0
  139. package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +100 -0
  140. package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +83 -0
  141. package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +64 -0
  142. package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +183 -0
  143. package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +87 -0
  144. package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +123 -0
  145. package/src/app/routes/_authenticated/_product-variants/product-variants.tsx +78 -0
  146. package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +331 -0
  147. package/src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx +228 -0
  148. package/src/app/routes/_authenticated/_products/components/create-product-variants.tsx +462 -0
  149. package/src/app/routes/_authenticated/_products/components/option-value-input.tsx +96 -0
  150. package/src/app/routes/_authenticated/_products/components/product-variants-table.tsx +87 -0
  151. package/src/app/routes/_authenticated/_products/products.graphql.ts +116 -0
  152. package/src/app/routes/_authenticated/_products/products.tsx +48 -0
  153. package/src/app/routes/_authenticated/_products/products_.$id.tsx +196 -0
  154. package/src/app/routes/_authenticated/_profile/profile.graphql.ts +23 -0
  155. package/src/app/routes/_authenticated/_profile/profile.tsx +122 -0
  156. package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +107 -0
  157. package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +107 -0
  158. package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +96 -0
  159. package/src/app/routes/_authenticated/_promotions/promotions.tsx +61 -0
  160. package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +235 -0
  161. package/src/app/routes/_authenticated/_roles/components/expandable-permissions.tsx +54 -0
  162. package/src/app/routes/_authenticated/_roles/components/permissions-grid.tsx +116 -0
  163. package/src/app/routes/_authenticated/_roles/roles.graphql.ts +67 -0
  164. package/src/app/routes/_authenticated/_roles/roles.tsx +96 -0
  165. package/src/app/routes/_authenticated/_roles/roles_.$id.tsx +142 -0
  166. package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +61 -0
  167. package/src/app/routes/_authenticated/_sellers/sellers.tsx +51 -0
  168. package/src/app/routes/_authenticated/_sellers/sellers_.$id.tsx +111 -0
  169. package/src/app/routes/_authenticated/_shipping-methods/components/fulfillment-handler-selector.tsx +56 -0
  170. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +101 -0
  171. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +101 -0
  172. package/src/app/routes/_authenticated/_shipping-methods/components/test-shipping-method-dialog.tsx +32 -0
  173. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +83 -0
  174. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +55 -0
  175. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +171 -0
  176. package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +62 -0
  177. package/src/app/routes/_authenticated/_stock-locations/stock-locations.tsx +48 -0
  178. package/src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx +115 -0
  179. package/src/app/routes/_authenticated/_system/components/payload-dialog.tsx +34 -0
  180. package/src/app/routes/_authenticated/_system/healthchecks.tsx +93 -0
  181. package/src/app/routes/_authenticated/_system/job-queue.graphql.ts +43 -0
  182. package/src/app/routes/_authenticated/_system/job-queue.tsx +161 -0
  183. package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +63 -0
  184. package/src/app/routes/_authenticated/_tax-categories/tax-categories.tsx +65 -0
  185. package/src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx +115 -0
  186. package/src/app/routes/_authenticated/_tax-rates/tax-rates.graphql.ts +75 -0
  187. package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +108 -0
  188. package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +148 -0
  189. package/src/app/routes/_authenticated/_zones/components/zone-countries-add.tsx +0 -0
  190. package/src/app/routes/_authenticated/_zones/components/zone-countries-sheet.tsx +31 -0
  191. package/src/app/routes/_authenticated/_zones/components/zone-countries-table.tsx +79 -0
  192. package/src/app/routes/_authenticated/_zones/zones.graphql.ts +96 -0
  193. package/src/app/routes/_authenticated/_zones/zones.tsx +57 -0
  194. package/src/app/routes/_authenticated/_zones/zones_.$id.tsx +103 -0
  195. package/src/app/routes/_authenticated/index.tsx +194 -0
  196. package/src/app/routes/_authenticated.tsx +25 -0
  197. package/src/app/routes/login.tsx +48 -0
  198. package/src/app/styles.css +82 -0
  199. package/src/app/tailwindcss-animate.css +275 -0
  200. package/src/i18n/locales/de.po +1579 -0
  201. package/src/i18n/locales/en.po +1579 -0
  202. package/src/lib/components/data-display/boolean.tsx +23 -0
  203. package/src/lib/components/data-display/date-time.tsx +13 -0
  204. package/src/lib/components/data-display/json.tsx +5 -0
  205. package/src/lib/components/data-display/money.tsx +15 -0
  206. package/src/lib/components/data-input/affixed-input.tsx +49 -0
  207. package/src/lib/components/data-input/customer-group-input.tsx +72 -0
  208. package/src/lib/components/data-input/datetime-input.tsx +150 -0
  209. package/src/lib/components/data-input/facet-value-input.tsx +68 -0
  210. package/src/lib/components/data-input/money-input.tsx +112 -0
  211. package/src/lib/components/data-input/richt-text-input.tsx +99 -0
  212. package/src/lib/components/data-table/data-table-column-header.tsx +73 -0
  213. package/src/lib/components/data-table/data-table-faceted-filter.tsx +172 -0
  214. package/src/lib/components/data-table/data-table-filter-dialog.tsx +73 -0
  215. package/src/lib/components/data-table/data-table-pagination.tsx +87 -0
  216. package/src/lib/components/data-table/data-table-view-options.tsx +53 -0
  217. package/src/lib/components/data-table/data-table.tsx +218 -0
  218. package/src/lib/components/layout/app-layout.tsx +42 -0
  219. package/src/lib/components/layout/app-sidebar.tsx +34 -0
  220. package/src/lib/components/layout/channel-switcher.tsx +87 -0
  221. package/src/lib/components/layout/content-language-selector.tsx +41 -0
  222. package/src/lib/components/layout/generated-breadcrumbs.tsx +82 -0
  223. package/src/lib/components/layout/language-dialog.tsx +104 -0
  224. package/src/lib/components/layout/nav-main.tsx +178 -0
  225. package/src/lib/components/layout/nav-projects.tsx +81 -0
  226. package/src/lib/components/layout/nav-user.tsx +176 -0
  227. package/src/lib/components/layout/prerelease-popup.tsx +38 -0
  228. package/src/lib/components/login/login-form.tsx +173 -0
  229. package/src/lib/components/shared/alerts.tsx +20 -0
  230. package/src/lib/components/shared/animated-number.tsx +49 -0
  231. package/src/lib/components/shared/asset-gallery.tsx +433 -0
  232. package/src/lib/components/shared/asset-picker-dialog.tsx +72 -0
  233. package/src/lib/components/shared/asset-preview-dialog.tsx +48 -0
  234. package/src/lib/components/shared/asset-preview.tsx +345 -0
  235. package/src/lib/components/shared/assigned-facet-values.tsx +68 -0
  236. package/src/lib/components/shared/channel-code-label.tsx +7 -0
  237. package/src/lib/components/shared/channel-selector.tsx +51 -0
  238. package/src/lib/components/shared/configurable-operation-arg-input.tsx +51 -0
  239. package/src/lib/components/shared/configurable-operation-input.tsx +133 -0
  240. package/src/lib/components/shared/confirmation-dialog.tsx +58 -0
  241. package/src/lib/components/shared/copyable-text.tsx +31 -0
  242. package/src/lib/components/shared/country-selector.tsx +105 -0
  243. package/src/lib/components/shared/currency-selector.tsx +33 -0
  244. package/src/lib/components/shared/custom-fields-form.tsx +86 -0
  245. package/src/lib/components/shared/customer-address-form.tsx +330 -0
  246. package/src/lib/components/shared/customer-group-chip.tsx +30 -0
  247. package/src/lib/components/shared/customer-group-selector.tsx +62 -0
  248. package/src/lib/components/shared/customer-selector.tsx +107 -0
  249. package/src/lib/components/shared/detail-page-button.tsx +22 -0
  250. package/src/lib/components/shared/entity-assets.tsx +340 -0
  251. package/src/lib/components/shared/error-page.tsx +31 -0
  252. package/src/lib/components/shared/facet-value-chip.tsx +45 -0
  253. package/src/lib/components/shared/facet-value-selector.tsx +306 -0
  254. package/src/lib/components/shared/focal-point-control.tsx +65 -0
  255. package/src/lib/components/shared/form-field-wrapper.tsx +37 -0
  256. package/src/lib/components/shared/history-timeline/history-entry.tsx +112 -0
  257. package/src/lib/components/shared/history-timeline/history-note-checkbox.tsx +28 -0
  258. package/src/lib/components/shared/history-timeline/history-note-editor.tsx +60 -0
  259. package/src/lib/components/shared/history-timeline/history-note-input.tsx +39 -0
  260. package/src/lib/components/shared/history-timeline/history-timeline.tsx +56 -0
  261. package/src/lib/components/shared/icon-mark.tsx +18 -0
  262. package/src/lib/components/shared/language-selector.tsx +48 -0
  263. package/src/lib/components/shared/logo-mark.tsx +24 -0
  264. package/src/lib/components/shared/multi-select.tsx +159 -0
  265. package/src/lib/components/shared/option-value-input.tsx +95 -0
  266. package/src/lib/components/shared/paginated-list-data-table.tsx +520 -0
  267. package/src/lib/components/shared/permission-guard.tsx +21 -0
  268. package/src/lib/components/shared/rich-text-editor.tsx +0 -0
  269. package/src/lib/components/shared/role-code-label.tsx +8 -0
  270. package/src/lib/components/shared/role-selector.tsx +56 -0
  271. package/src/lib/components/shared/seller-selector.tsx +107 -0
  272. package/src/lib/components/shared/tax-category-selector.tsx +65 -0
  273. package/src/lib/components/shared/translatable-form-field.tsx +74 -0
  274. package/src/lib/components/shared/vendure-image.tsx +159 -0
  275. package/src/lib/components/shared/zone-selector.tsx +66 -0
  276. package/src/lib/components/ui/accordion.tsx +59 -0
  277. package/src/lib/components/ui/alert-dialog.tsx +128 -0
  278. package/src/lib/components/ui/alert.tsx +60 -0
  279. package/src/lib/components/ui/avatar.tsx +38 -0
  280. package/src/lib/components/ui/badge.tsx +38 -0
  281. package/src/lib/components/ui/breadcrumb.tsx +102 -0
  282. package/src/lib/components/ui/button.tsx +51 -0
  283. package/src/lib/components/ui/calendar.tsx +69 -0
  284. package/src/lib/components/ui/card.tsx +47 -0
  285. package/src/lib/components/ui/checkbox.tsx +27 -0
  286. package/src/lib/components/ui/collapsible.tsx +33 -0
  287. package/src/lib/components/ui/command.tsx +133 -0
  288. package/src/lib/components/ui/dialog.tsx +116 -0
  289. package/src/lib/components/ui/dropdown-menu.tsx +220 -0
  290. package/src/lib/components/ui/form.tsx +141 -0
  291. package/src/lib/components/ui/hover-card.tsx +36 -0
  292. package/src/lib/components/ui/input.tsx +19 -0
  293. package/src/lib/components/ui/label.tsx +21 -0
  294. package/src/lib/components/ui/pagination.tsx +127 -0
  295. package/src/lib/components/ui/popover.tsx +40 -0
  296. package/src/lib/components/ui/scroll-area.tsx +50 -0
  297. package/src/lib/components/ui/select.tsx +161 -0
  298. package/src/lib/components/ui/separator.tsx +26 -0
  299. package/src/lib/components/ui/sheet.tsx +118 -0
  300. package/src/lib/components/ui/sidebar.tsx +696 -0
  301. package/src/lib/components/ui/skeleton.tsx +13 -0
  302. package/src/lib/components/ui/sonner.tsx +27 -0
  303. package/src/lib/components/ui/switch.tsx +26 -0
  304. package/src/lib/components/ui/table.tsx +82 -0
  305. package/src/lib/components/ui/tabs.tsx +48 -0
  306. package/src/lib/components/ui/textarea.tsx +18 -0
  307. package/src/lib/components/ui/tooltip.tsx +51 -0
  308. package/src/lib/constants.ts +326 -0
  309. package/src/lib/framework/component-registry/component-registry.tsx +70 -0
  310. package/src/lib/framework/component-registry/dynamic-component.tsx +58 -0
  311. package/src/lib/framework/dashboard-widget/base-widget.tsx +97 -0
  312. package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +96 -0
  313. package/src/lib/framework/dashboard-widget/latest-orders-widget/latest-orders-widget.graphql.ts +35 -0
  314. package/src/lib/framework/dashboard-widget/metrics-widget/chart.tsx +24 -0
  315. package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +82 -0
  316. package/src/lib/framework/dashboard-widget/metrics-widget/metrics-widget.graphql.ts +14 -0
  317. package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +167 -0
  318. package/src/lib/framework/dashboard-widget/orders-summary/order-summary-widget.graphql.ts +14 -0
  319. package/src/lib/framework/dashboard-widget/types.ts +22 -0
  320. package/src/lib/framework/dashboard-widget/widget-extensions.tsx +19 -0
  321. package/src/lib/framework/defaults.ts +219 -0
  322. package/src/lib/framework/document-introspection/add-custom-fields.spec.ts +242 -0
  323. package/src/lib/framework/document-introspection/add-custom-fields.ts +246 -0
  324. package/src/lib/framework/document-introspection/get-document-structure.spec.ts +310 -0
  325. package/src/lib/framework/document-introspection/get-document-structure.ts +460 -0
  326. package/src/lib/framework/document-introspection/hooks.ts +10 -0
  327. package/src/lib/framework/extension-api/define-dashboard-extension.ts +66 -0
  328. package/src/lib/framework/extension-api/extension-api-types.ts +58 -0
  329. package/src/lib/framework/extension-api/use-dashboard-extensions.ts +26 -0
  330. package/src/lib/framework/form-engine/form-schema-tools.ts +98 -0
  331. package/src/lib/framework/form-engine/use-generated-form.tsx +116 -0
  332. package/src/lib/framework/layout-engine/layout-extensions.ts +30 -0
  333. package/src/lib/framework/layout-engine/location-wrapper.tsx +96 -0
  334. package/src/lib/framework/layout-engine/page-layout.tsx +272 -0
  335. package/src/lib/framework/nav-menu/nav-menu-extensions.ts +66 -0
  336. package/src/lib/framework/page/detail-page-route-loader.tsx +48 -0
  337. package/src/lib/framework/page/detail-page.tsx +131 -0
  338. package/src/lib/framework/page/list-page.tsx +166 -0
  339. package/src/lib/framework/page/page-api.ts +9 -0
  340. package/src/lib/framework/page/page-types.ts +51 -0
  341. package/src/lib/framework/page/use-detail-page.ts +217 -0
  342. package/src/lib/framework/page/use-extended-router.tsx +69 -0
  343. package/src/lib/framework/registry/global-registry.ts +46 -0
  344. package/src/lib/framework/registry/registry-types.ts +15 -0
  345. package/src/lib/graphql/api.ts +61 -0
  346. package/src/lib/graphql/fragments.tsx +54 -0
  347. package/src/lib/graphql/graphql-env.d.ts +499 -0
  348. package/src/lib/graphql/graphql.ts +15 -0
  349. package/src/lib/hooks/use-auth.tsx +11 -0
  350. package/src/lib/hooks/use-channel.ts +12 -0
  351. package/src/lib/hooks/use-custom-field-config.ts +10 -0
  352. package/src/lib/hooks/use-grouped-permissions.ts +54 -0
  353. package/src/lib/hooks/use-local-format.ts +119 -0
  354. package/src/lib/hooks/use-mobile.ts +19 -0
  355. package/src/lib/hooks/use-page.tsx +11 -0
  356. package/src/lib/hooks/use-permissions.ts +22 -0
  357. package/src/lib/hooks/use-server-config.ts +4 -0
  358. package/src/lib/hooks/use-theme.ts +10 -0
  359. package/src/lib/hooks/use-user-settings.tsx +12 -0
  360. package/src/lib/index.ts +149 -0
  361. package/src/lib/lib/trans.tsx +16 -0
  362. package/src/lib/lib/utils.ts +60 -0
  363. package/src/lib/providers/auth.tsx +152 -0
  364. package/src/lib/providers/channel-provider.tsx +121 -0
  365. package/src/lib/providers/i18n-provider.tsx +28 -0
  366. package/src/lib/providers/server-config.tsx +279 -0
  367. package/src/lib/providers/theme-provider.tsx +54 -0
  368. package/src/lib/providers/user-settings.tsx +89 -0
  369. package/src/lib/virtual.d.ts +12 -0
  370. package/vite/config-loader.ts +181 -0
  371. package/vite/constants.ts +280 -0
  372. package/vite/index.ts +1 -0
  373. package/vite/schema-generator.ts +40 -0
  374. package/vite/ui-config.ts +60 -0
  375. package/vite/vite-plugin-admin-api-schema.ts +141 -0
  376. package/vite/vite-plugin-config-loader.ts +64 -0
  377. package/vite/vite-plugin-config.ts +42 -0
  378. package/vite/vite-plugin-dashboard-metadata.ts +58 -0
  379. package/vite/vite-plugin-gql-tada.ts +62 -0
  380. package/vite/vite-plugin-theme.ts +195 -0
  381. package/vite/vite-plugin-ui-config.ts +60 -0
  382. package/vite/vite-plugin-vendure-dashboard.ts +118 -0
@@ -0,0 +1,103 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ adminApiExtensions: function() {
13
+ return adminApiExtensions;
14
+ },
15
+ commonApiExtensions: function() {
16
+ return commonApiExtensions;
17
+ },
18
+ shopApiExtensions: function() {
19
+ return shopApiExtensions;
20
+ }
21
+ });
22
+ const _graphqltag = require("graphql-tag");
23
+ const commonApiExtensions = (0, _graphqltag.gql)`
24
+ type ProductReview implements Node {
25
+ id: ID!
26
+ createdAt: DateTime!
27
+ updatedAt: DateTime!
28
+ product: Product!
29
+ productVariant: ProductVariant
30
+ summary: String!
31
+ body: String
32
+ rating: Float!
33
+ authorName: String!
34
+ authorLocation: String
35
+ upvotes: Int!
36
+ downvotes: Int!
37
+ state: String!
38
+ response: String
39
+ responseCreatedAt: DateTime
40
+ }
41
+
42
+ type ProductReviewList implements PaginatedList {
43
+ items: [ProductReview!]!
44
+ totalItems: Int!
45
+ }
46
+
47
+ type ProductReviewHistogramItem {
48
+ bin: Int!
49
+ frequency: Int!
50
+ }
51
+
52
+ extend type Product {
53
+ reviews(options: ProductReviewListOptions): ProductReviewList!
54
+ reviewsHistogram: [ProductReviewHistogramItem!]!
55
+ }
56
+
57
+ # Auto-generated at runtime
58
+ input ProductReviewListOptions
59
+ `;
60
+ const adminApiExtensions = (0, _graphqltag.gql)`
61
+ ${commonApiExtensions}
62
+
63
+ input UpdateProductReviewInput {
64
+ id: ID!
65
+ summary: String
66
+ body: String
67
+ response: String
68
+ }
69
+
70
+ extend type ProductReview {
71
+ author: Customer
72
+ }
73
+
74
+ extend type Query {
75
+ productReviews(options: ProductReviewListOptions): ProductReviewList!
76
+ productReview(id: ID!): ProductReview
77
+ }
78
+
79
+ extend type Mutation {
80
+ updateProductReview(input: UpdateProductReviewInput!): ProductReview!
81
+ approveProductReview(id: ID!): ProductReview
82
+ rejectProductReview(id: ID!): ProductReview
83
+ }
84
+ `;
85
+ const shopApiExtensions = (0, _graphqltag.gql)`
86
+ ${commonApiExtensions}
87
+
88
+ input SubmitProductReviewInput {
89
+ productId: ID!
90
+ variantId: ID
91
+ customerId: ID
92
+ summary: String!
93
+ body: String!
94
+ rating: Float!
95
+ authorName: String!
96
+ authorLocation: String
97
+ }
98
+
99
+ extend type Mutation {
100
+ submitProductReview(input: SubmitProductReviewInput!): ProductReview!
101
+ voteOnReview(id: ID!, vote: Boolean!): ProductReview!
102
+ }
103
+ `;
@@ -0,0 +1 @@
1
+ "{\"version\":3,\"sources\":[\"C:\\\\Development\\\\vendure\\\\vendure\\\\packages\\\\dev-server\\\\test-plugins\\\\reviews\\\\api\\\\api-extensions.ts\"],\"sourcesContent\":[\"import { gql } from 'graphql-tag';\\r\\n\\r\\nexport const commonApiExtensions = gql`\\r\\n type ProductReview implements Node {\\r\\n id: ID!\\r\\n createdAt: DateTime!\\r\\n updatedAt: DateTime!\\r\\n product: Product!\\r\\n productVariant: ProductVariant\\r\\n summary: String!\\r\\n body: String\\r\\n rating: Float!\\r\\n authorName: String!\\r\\n authorLocation: String\\r\\n upvotes: Int!\\r\\n downvotes: Int!\\r\\n state: String!\\r\\n response: String\\r\\n responseCreatedAt: DateTime\\r\\n }\\r\\n\\r\\n type ProductReviewList implements PaginatedList {\\r\\n items: [ProductReview!]!\\r\\n totalItems: Int!\\r\\n }\\r\\n\\r\\n type ProductReviewHistogramItem {\\r\\n bin: Int!\\r\\n frequency: Int!\\r\\n }\\r\\n\\r\\n extend type Product {\\r\\n reviews(options: ProductReviewListOptions): ProductReviewList!\\r\\n reviewsHistogram: [ProductReviewHistogramItem!]!\\r\\n }\\r\\n\\r\\n # Auto-generated at runtime\\r\\n input ProductReviewListOptions\\r\\n`;\\r\\n\\r\\nexport const adminApiExtensions = gql`\\r\\n ${commonApiExtensions}\\r\\n\\r\\n input UpdateProductReviewInput {\\r\\n id: ID!\\r\\n summary: String\\r\\n body: String\\r\\n response: String\\r\\n }\\r\\n\\r\\n extend type ProductReview {\\r\\n author: Customer\\r\\n }\\r\\n\\r\\n extend type Query {\\r\\n productReviews(options: ProductReviewListOptions): ProductReviewList!\\r\\n productReview(id: ID!): ProductReview\\r\\n }\\r\\n\\r\\n extend type Mutation {\\r\\n updateProductReview(input: UpdateProductReviewInput!): ProductReview!\\r\\n approveProductReview(id: ID!): ProductReview\\r\\n rejectProductReview(id: ID!): ProductReview\\r\\n }\\r\\n`;\\r\\n\\r\\nexport const shopApiExtensions = gql`\\r\\n ${commonApiExtensions}\\r\\n\\r\\n input SubmitProductReviewInput {\\r\\n productId: ID!\\r\\n variantId: ID\\r\\n customerId: ID\\r\\n summary: String!\\r\\n body: String!\\r\\n rating: Float!\\r\\n authorName: String!\\r\\n authorLocation: String\\r\\n }\\r\\n\\r\\n extend type Mutation {\\r\\n submitProductReview(input: SubmitProductReviewInput!): ProductReview!\\r\\n voteOnReview(id: ID!, vote: Boolean!): ProductReview!\\r\\n }\\r\\n`;\\r\\n\"],\"names\":[\"adminApiExtensions\",\"commonApiExtensions\",\"shopApiExtensions\",\"gql\"],\"mappings\":\";;;;;;;;;;;IAwCaA,kBAAkB;eAAlBA;;IAtCAC,mBAAmB;eAAnBA;;IAgEAC,iBAAiB;eAAjBA;;;4BAlEO;AAEb,MAAMD,sBAAsBE,IAAAA,eAAG,CAAA,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCvC,CAAC;AAEM,MAAMH,qBAAqBG,IAAAA,eAAG,CAAA,CAAC;IAClC,EAAEF,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;AAuB1B,CAAC;AAEM,MAAMC,oBAAoBC,IAAAA,eAAG,CAAA,CAAC;IACjC,EAAEF,oBAAoB;;;;;;;;;;;;;;;;;AAiB1B,CAAC\"}"
@@ -0,0 +1,105 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "ProductEntityResolver", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return ProductEntityResolver;
9
+ }
10
+ });
11
+ const _graphql = require("@nestjs/graphql");
12
+ const _core = require("@vendure/core");
13
+ const _productreviewentity = require("../entities/product-review.entity");
14
+ const _generatedshoptypes = require("../generated-shop-types");
15
+ function _define_property(obj, key, value) {
16
+ if (key in obj) {
17
+ Object.defineProperty(obj, key, {
18
+ value: value,
19
+ enumerable: true,
20
+ configurable: true,
21
+ writable: true
22
+ });
23
+ } else {
24
+ obj[key] = value;
25
+ }
26
+ return obj;
27
+ }
28
+ function _ts_decorate(decorators, target, key, desc) {
29
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
30
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
31
+ else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
32
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
33
+ }
34
+ function _ts_metadata(k, v) {
35
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
36
+ }
37
+ function _ts_param(paramIndex, decorator) {
38
+ return function(target, key) {
39
+ decorator(target, key, paramIndex);
40
+ };
41
+ }
42
+ class ProductEntityResolver {
43
+ reviews(apiType, product, args) {
44
+ return this.listQueryBuilder.build(_productreviewentity.ProductReview, args.options || undefined, {
45
+ where: {
46
+ product: {
47
+ id: product.id
48
+ },
49
+ ...apiType === 'shop' ? {
50
+ state: 'approved'
51
+ } : {}
52
+ },
53
+ relations: [
54
+ 'product',
55
+ 'product.featuredAsset'
56
+ ]
57
+ }).getManyAndCount().then(([items, totalItems])=>({
58
+ items,
59
+ totalItems
60
+ }));
61
+ }
62
+ reviewsHistogram(product) {
63
+ return this.connection.rawConnection.createQueryBuilder().select('ROUND(`rating`)', 'bin').addSelect('COUNT(*)', 'frequency').from(_productreviewentity.ProductReview, 'review').where('review.product = :productId', {
64
+ productId: product.id
65
+ }).andWhere('review.state = :state', {
66
+ state: 'approved'
67
+ }).groupBy('ROUND(`rating`)').getRawMany();
68
+ }
69
+ constructor(listQueryBuilder, connection){
70
+ _define_property(this, "listQueryBuilder", void 0);
71
+ _define_property(this, "connection", void 0);
72
+ this.listQueryBuilder = listQueryBuilder;
73
+ this.connection = connection;
74
+ }
75
+ }
76
+ _ts_decorate([
77
+ (0, _graphql.ResolveField)(),
78
+ _ts_param(0, (0, _core.Api)()),
79
+ _ts_param(1, (0, _graphql.Parent)()),
80
+ _ts_param(2, (0, _graphql.Args)()),
81
+ _ts_metadata("design:type", Function),
82
+ _ts_metadata("design:paramtypes", [
83
+ typeof _core.ApiType === "undefined" ? Object : _core.ApiType,
84
+ typeof _core.Product === "undefined" ? Object : _core.Product,
85
+ typeof _generatedshoptypes.ProductReviewsArgs === "undefined" ? Object : _generatedshoptypes.ProductReviewsArgs
86
+ ]),
87
+ _ts_metadata("design:returntype", void 0)
88
+ ], ProductEntityResolver.prototype, "reviews", null);
89
+ _ts_decorate([
90
+ (0, _graphql.ResolveField)(),
91
+ _ts_param(0, (0, _graphql.Parent)()),
92
+ _ts_metadata("design:type", Function),
93
+ _ts_metadata("design:paramtypes", [
94
+ typeof _core.Product === "undefined" ? Object : _core.Product
95
+ ]),
96
+ _ts_metadata("design:returntype", void 0)
97
+ ], ProductEntityResolver.prototype, "reviewsHistogram", null);
98
+ ProductEntityResolver = _ts_decorate([
99
+ (0, _graphql.Resolver)('Product'),
100
+ _ts_metadata("design:type", Function),
101
+ _ts_metadata("design:paramtypes", [
102
+ typeof _core.ListQueryBuilder === "undefined" ? Object : _core.ListQueryBuilder,
103
+ typeof _core.TransactionalConnection === "undefined" ? Object : _core.TransactionalConnection
104
+ ])
105
+ ], ProductEntityResolver);
@@ -0,0 +1 @@
1
+ "{\"version\":3,\"sources\":[\"C:\\\\Development\\\\vendure\\\\vendure\\\\packages\\\\dev-server\\\\test-plugins\\\\reviews\\\\api\\\\product-entity.resolver.ts\"],\"sourcesContent\":[\"import { Args, Parent, ResolveField, Resolver } from '@nestjs/graphql';\\r\\nimport { Api, ApiType, ListQueryBuilder, Product, TransactionalConnection } from '@vendure/core';\\r\\n\\r\\nimport { ProductReview } from '../entities/product-review.entity';\\r\\nimport { ProductReviewsArgs } from '../generated-shop-types';\\r\\n\\r\\n@Resolver('Product')\\r\\nexport class ProductEntityResolver {\\r\\n constructor(private listQueryBuilder: ListQueryBuilder, private connection: TransactionalConnection) {}\\r\\n\\r\\n @ResolveField()\\r\\n reviews(@Api() apiType: ApiType, @Parent() product: Product, @Args() args: ProductReviewsArgs) {\\r\\n return this.listQueryBuilder\\r\\n .build(ProductReview, args.options || undefined, {\\r\\n where: {\\r\\n product: { id: product.id },\\r\\n ...(apiType === 'shop' ? { state: 'approved' } : {}),\\r\\n },\\r\\n relations: ['product', 'product.featuredAsset'],\\r\\n })\\r\\n .getManyAndCount()\\r\\n .then(([items, totalItems]) => ({\\r\\n items,\\r\\n totalItems,\\r\\n }));\\r\\n }\\r\\n\\r\\n @ResolveField()\\r\\n reviewsHistogram(@Parent() product: Product) {\\r\\n return this.connection.rawConnection\\r\\n .createQueryBuilder()\\r\\n .select('ROUND(`rating`)', 'bin')\\r\\n .addSelect('COUNT(*)', 'frequency')\\r\\n .from(ProductReview, 'review')\\r\\n .where('review.product = :productId', { productId: product.id })\\r\\n .andWhere('review.state = :state', { state: 'approved' })\\r\\n .groupBy('ROUND(`rating`)')\\r\\n .getRawMany();\\r\\n }\\r\\n}\\r\\n\"],\"names\":[\"ProductEntityResolver\",\"reviews\",\"apiType\",\"product\",\"args\",\"listQueryBuilder\",\"build\",\"ProductReview\",\"options\",\"undefined\",\"where\",\"id\",\"state\",\"relations\",\"getManyAndCount\",\"then\",\"items\",\"totalItems\",\"reviewsHistogram\",\"connection\",\"rawConnection\",\"createQueryBuilder\",\"select\",\"addSelect\",\"from\",\"productId\",\"andWhere\",\"groupBy\",\"getRawMany\",\"constructor\"],\"mappings\":\";;;;+BAOaA;;;eAAAA;;;yBAPwC;sBAC4B;qCAEnD;oCACK;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAG5B,MAAMA;IAITC,QAAQ,AAAOC,OAAgB,EAAE,AAAUC,OAAgB,EAAE,AAAQC,IAAwB,EAAE;QAC3F,OAAO,IAAI,CAACC,gBAAgB,CACvBC,KAAK,CAACC,kCAAa,EAAEH,KAAKI,OAAO,IAAIC,WAAW;YAC7CC,OAAO;gBACHP,SAAS;oBAAEQ,IAAIR,QAAQQ,EAAE;gBAAC;gBAC1B,GAAIT,YAAY,SAAS;oBAAEU,OAAO;gBAAW,IAAI,CAAC,CAAC;YACvD;YACAC,WAAW;gBAAC;gBAAW;aAAwB;QACnD,GACCC,eAAe,GACfC,IAAI,CAAC,CAAC,CAACC,OAAOC,WAAW,GAAM,CAAA;gBAC5BD;gBACAC;YACJ,CAAA;IACR;IAGAC,iBAAiB,AAAUf,OAAgB,EAAE;QACzC,OAAO,IAAI,CAACgB,UAAU,CAACC,aAAa,CAC/BC,kBAAkB,GAClBC,MAAM,CAAC,mBAAmB,OAC1BC,SAAS,CAAC,YAAY,aACtBC,IAAI,CAACjB,kCAAa,EAAE,UACpBG,KAAK,CAAC,+BAA+B;YAAEe,WAAWtB,QAAQQ,EAAE;QAAC,GAC7De,QAAQ,CAAC,yBAAyB;YAAEd,OAAO;QAAW,GACtDe,OAAO,CAAC,mBACRC,UAAU;IACnB;IA9BAC,YAAY,AAAQxB,gBAAkC,EAAE,AAAQc,UAAmC,CAAE;;;aAAjFd,mBAAAA;aAA4Cc,aAAAA;IAAsC;AA+B1G\"}"
@@ -0,0 +1,183 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "ProductReviewAdminResolver", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return ProductReviewAdminResolver;
9
+ }
10
+ });
11
+ const _graphql = require("@nestjs/graphql");
12
+ const _core = require("@vendure/core");
13
+ const _productreviewentity = require("../entities/product-review.entity");
14
+ const _generatedadmintypes = require("../generated-admin-types");
15
+ function _define_property(obj, key, value) {
16
+ if (key in obj) {
17
+ Object.defineProperty(obj, key, {
18
+ value: value,
19
+ enumerable: true,
20
+ configurable: true,
21
+ writable: true
22
+ });
23
+ } else {
24
+ obj[key] = value;
25
+ }
26
+ return obj;
27
+ }
28
+ function _ts_decorate(decorators, target, key, desc) {
29
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
30
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
31
+ else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
32
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
33
+ }
34
+ function _ts_metadata(k, v) {
35
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
36
+ }
37
+ function _ts_param(paramIndex, decorator) {
38
+ return function(target, key) {
39
+ decorator(target, key, paramIndex);
40
+ };
41
+ }
42
+ class ProductReviewAdminResolver {
43
+ async productReviews(ctx, args) {
44
+ return this.listQueryBuilder.build(_productreviewentity.ProductReview, args.options || undefined, {
45
+ relations: [
46
+ 'product'
47
+ ],
48
+ ctx
49
+ }).getManyAndCount().then(([items, totalItems])=>({
50
+ items,
51
+ totalItems
52
+ }));
53
+ }
54
+ async productReview(ctx, args) {
55
+ return this.connection.getRepository(ctx, _productreviewentity.ProductReview).findOne({
56
+ where: {
57
+ id: args.id
58
+ },
59
+ relations: {
60
+ author: true,
61
+ product: true,
62
+ productVariant: true
63
+ }
64
+ });
65
+ }
66
+ async updateProductReview(ctx, { input }) {
67
+ const review = await this.connection.getEntityOrThrow(ctx, _productreviewentity.ProductReview, input.id);
68
+ const originalResponse = review.response;
69
+ const updatedProductReview = (0, _core.patchEntity)(review, input);
70
+ if (input.response !== originalResponse) {
71
+ updatedProductReview.responseCreatedAt = new Date();
72
+ }
73
+ return this.connection.getRepository(ctx, _productreviewentity.ProductReview).save(updatedProductReview);
74
+ }
75
+ async approveProductReview(ctx, { id }) {
76
+ const review = await this.connection.getEntityOrThrow(ctx, _productreviewentity.ProductReview, id, {
77
+ relations: [
78
+ 'product'
79
+ ]
80
+ });
81
+ if (review.state !== 'new') {
82
+ return review;
83
+ }
84
+ const { product } = review;
85
+ const newRating = this.calculateNewReviewAverage(review.rating, product);
86
+ product.customFields.reviewCount++;
87
+ product.customFields.reviewRating = newRating;
88
+ await this.connection.getRepository(ctx, _core.Product).save(product);
89
+ review.state = 'approved';
90
+ return this.connection.getRepository(ctx, _productreviewentity.ProductReview).save(review);
91
+ }
92
+ async rejectProductReview(ctx, { id }) {
93
+ const review = await this.connection.getEntityOrThrow(ctx, _productreviewentity.ProductReview, id);
94
+ if (review.state !== 'new') {
95
+ return review;
96
+ }
97
+ review.state = 'rejected';
98
+ return this.connection.getRepository(ctx, _productreviewentity.ProductReview).save(review);
99
+ }
100
+ calculateNewReviewAverage(rating, product) {
101
+ const count = product.customFields.reviewCount;
102
+ const currentRating = product.customFields.reviewRating || 0;
103
+ const newRating = (currentRating * count + rating) / (count + 1);
104
+ return newRating;
105
+ }
106
+ constructor(connection, listQueryBuilder){
107
+ _define_property(this, "connection", void 0);
108
+ _define_property(this, "listQueryBuilder", void 0);
109
+ this.connection = connection;
110
+ this.listQueryBuilder = listQueryBuilder;
111
+ }
112
+ }
113
+ _ts_decorate([
114
+ (0, _graphql.Query)(),
115
+ (0, _core.Allow)(_core.Permission.ReadCatalog),
116
+ _ts_param(0, (0, _core.Ctx)()),
117
+ _ts_param(1, (0, _graphql.Args)()),
118
+ _ts_metadata("design:type", Function),
119
+ _ts_metadata("design:paramtypes", [
120
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext,
121
+ typeof _generatedadmintypes.QueryProductReviewsArgs === "undefined" ? Object : _generatedadmintypes.QueryProductReviewsArgs
122
+ ]),
123
+ _ts_metadata("design:returntype", Promise)
124
+ ], ProductReviewAdminResolver.prototype, "productReviews", null);
125
+ _ts_decorate([
126
+ (0, _graphql.Query)(),
127
+ (0, _core.Allow)(_core.Permission.ReadCatalog),
128
+ _ts_param(0, (0, _core.Ctx)()),
129
+ _ts_param(1, (0, _graphql.Args)()),
130
+ _ts_metadata("design:type", Function),
131
+ _ts_metadata("design:paramtypes", [
132
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext,
133
+ typeof _generatedadmintypes.QueryProductReviewArgs === "undefined" ? Object : _generatedadmintypes.QueryProductReviewArgs
134
+ ]),
135
+ _ts_metadata("design:returntype", Promise)
136
+ ], ProductReviewAdminResolver.prototype, "productReview", null);
137
+ _ts_decorate([
138
+ (0, _core.Transaction)(),
139
+ (0, _graphql.Mutation)(),
140
+ (0, _core.Allow)(_core.Permission.UpdateCatalog),
141
+ _ts_param(0, (0, _core.Ctx)()),
142
+ _ts_param(1, (0, _graphql.Args)()),
143
+ _ts_metadata("design:type", Function),
144
+ _ts_metadata("design:paramtypes", [
145
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext,
146
+ typeof _generatedadmintypes.MutationUpdateProductReviewArgs === "undefined" ? Object : _generatedadmintypes.MutationUpdateProductReviewArgs
147
+ ]),
148
+ _ts_metadata("design:returntype", Promise)
149
+ ], ProductReviewAdminResolver.prototype, "updateProductReview", null);
150
+ _ts_decorate([
151
+ (0, _core.Transaction)(),
152
+ (0, _graphql.Mutation)(),
153
+ (0, _core.Allow)(_core.Permission.UpdateCatalog),
154
+ _ts_param(0, (0, _core.Ctx)()),
155
+ _ts_param(1, (0, _graphql.Args)()),
156
+ _ts_metadata("design:type", Function),
157
+ _ts_metadata("design:paramtypes", [
158
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext,
159
+ typeof _generatedadmintypes.MutationApproveProductReviewArgs === "undefined" ? Object : _generatedadmintypes.MutationApproveProductReviewArgs
160
+ ]),
161
+ _ts_metadata("design:returntype", Promise)
162
+ ], ProductReviewAdminResolver.prototype, "approveProductReview", null);
163
+ _ts_decorate([
164
+ (0, _core.Transaction)(),
165
+ (0, _graphql.Mutation)(),
166
+ (0, _core.Allow)(_core.Permission.UpdateCatalog),
167
+ _ts_param(0, (0, _core.Ctx)()),
168
+ _ts_param(1, (0, _graphql.Args)()),
169
+ _ts_metadata("design:type", Function),
170
+ _ts_metadata("design:paramtypes", [
171
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext,
172
+ typeof _generatedadmintypes.MutationRejectProductReviewArgs === "undefined" ? Object : _generatedadmintypes.MutationRejectProductReviewArgs
173
+ ]),
174
+ _ts_metadata("design:returntype", Promise)
175
+ ], ProductReviewAdminResolver.prototype, "rejectProductReview", null);
176
+ ProductReviewAdminResolver = _ts_decorate([
177
+ (0, _graphql.Resolver)(),
178
+ _ts_metadata("design:type", Function),
179
+ _ts_metadata("design:paramtypes", [
180
+ typeof _core.TransactionalConnection === "undefined" ? Object : _core.TransactionalConnection,
181
+ typeof _core.ListQueryBuilder === "undefined" ? Object : _core.ListQueryBuilder
182
+ ])
183
+ ], ProductReviewAdminResolver);
@@ -0,0 +1 @@
1
+ "{\"version\":3,\"sources\":[\"C:\\\\Development\\\\vendure\\\\vendure\\\\packages\\\\dev-server\\\\test-plugins\\\\reviews\\\\api\\\\product-review-admin.resolver.ts\"],\"sourcesContent\":[\"import { Args, Mutation, Query, Resolver } from '@nestjs/graphql';\\nimport {\\n Allow,\\n Ctx,\\n ListQueryBuilder,\\n patchEntity,\\n Permission,\\n Product,\\n RequestContext,\\n Transaction,\\n TransactionalConnection,\\n} from '@vendure/core';\\n\\nimport { ProductReview } from '../entities/product-review.entity';\\nimport {\\n MutationApproveProductReviewArgs,\\n MutationRejectProductReviewArgs,\\n MutationUpdateProductReviewArgs,\\n QueryProductReviewArgs,\\n QueryProductReviewsArgs,\\n} from '../generated-admin-types';\\n\\n@Resolver()\\nexport class ProductReviewAdminResolver {\\n constructor(private connection: TransactionalConnection, private listQueryBuilder: ListQueryBuilder) {}\\n\\n @Query()\\n @Allow(Permission.ReadCatalog)\\n async productReviews(@Ctx() ctx: RequestContext, @Args() args: QueryProductReviewsArgs) {\\n return this.listQueryBuilder\\n .build(ProductReview, args.options || undefined, {\\n relations: ['product'],\\n ctx,\\n })\\n .getManyAndCount()\\n .then(([items, totalItems]) => ({\\n items,\\n totalItems,\\n }));\\n }\\n\\n @Query()\\n @Allow(Permission.ReadCatalog)\\n async productReview(@Ctx() ctx: RequestContext, @Args() args: QueryProductReviewArgs) {\\n return this.connection.getRepository(ctx, ProductReview).findOne({\\n where: { id: args.id },\\n relations: {\\n author: true,\\n product: true,\\n productVariant: true,\\n },\\n });\\n }\\n\\n @Transaction()\\n @Mutation()\\n @Allow(Permission.UpdateCatalog)\\n async updateProductReview(\\n @Ctx() ctx: RequestContext,\\n @Args() { input }: MutationUpdateProductReviewArgs,\\n ) {\\n const review = await this.connection.getEntityOrThrow(ctx, ProductReview, input.id);\\n const originalResponse = review.response;\\n const updatedProductReview = patchEntity(review, input);\\n if (input.response !== originalResponse) {\\n updatedProductReview.responseCreatedAt = new Date();\\n }\\n return this.connection.getRepository(ctx, ProductReview).save(updatedProductReview);\\n }\\n\\n @Transaction()\\n @Mutation()\\n @Allow(Permission.UpdateCatalog)\\n async approveProductReview(@Ctx() ctx: RequestContext, @Args() { id }: MutationApproveProductReviewArgs) {\\n const review = await this.connection.getEntityOrThrow(ctx, ProductReview, id, {\\n relations: ['product'],\\n });\\n if (review.state !== 'new') {\\n return review;\\n }\\n const { product } = review;\\n const newRating = this.calculateNewReviewAverage(review.rating, product);\\n product.customFields.reviewCount++;\\n product.customFields.reviewRating = newRating;\\n await this.connection.getRepository(ctx, Product).save(product);\\n review.state = 'approved';\\n return this.connection.getRepository(ctx, ProductReview).save(review);\\n }\\n\\n @Transaction()\\n @Mutation()\\n @Allow(Permission.UpdateCatalog)\\n async rejectProductReview(@Ctx() ctx: RequestContext, @Args() { id }: MutationRejectProductReviewArgs) {\\n const review = await this.connection.getEntityOrThrow(ctx, ProductReview, id);\\n if (review.state !== 'new') {\\n return review;\\n }\\n review.state = 'rejected';\\n return this.connection.getRepository(ctx, ProductReview).save(review);\\n }\\n\\n private calculateNewReviewAverage(rating: number, product: Product): number {\\n const count = product.customFields.reviewCount;\\n const currentRating = product.customFields.reviewRating || 0;\\n const newRating = (currentRating * count + rating) / (count + 1);\\n return newRating;\\n }\\n}\\n\"],\"names\":[\"ProductReviewAdminResolver\",\"productReviews\",\"ctx\",\"args\",\"listQueryBuilder\",\"build\",\"ProductReview\",\"options\",\"undefined\",\"relations\",\"getManyAndCount\",\"then\",\"items\",\"totalItems\",\"productReview\",\"connection\",\"getRepository\",\"findOne\",\"where\",\"id\",\"author\",\"product\",\"productVariant\",\"updateProductReview\",\"input\",\"review\",\"getEntityOrThrow\",\"originalResponse\",\"response\",\"updatedProductReview\",\"patchEntity\",\"responseCreatedAt\",\"Date\",\"save\",\"approveProductReview\",\"state\",\"newRating\",\"calculateNewReviewAverage\",\"rating\",\"customFields\",\"reviewCount\",\"reviewRating\",\"Product\",\"rejectProductReview\",\"count\",\"currentRating\",\"constructor\",\"ReadCatalog\",\"UpdateCatalog\"],\"mappings\":\";;;;+BAuBaA;;;eAAAA;;;yBAvBmC;sBAWzC;qCAEuB;qCAOvB;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,MAAMA;IAGT,MAEMC,eAAe,AAAOC,GAAmB,EAAE,AAAQC,IAA6B,EAAE;QACpF,OAAO,IAAI,CAACC,gBAAgB,CACvBC,KAAK,CAACC,kCAAa,EAAEH,KAAKI,OAAO,IAAIC,WAAW;YAC7CC,WAAW;gBAAC;aAAU;YACtBP;QACJ,GACCQ,eAAe,GACfC,IAAI,CAAC,CAAC,CAACC,OAAOC,WAAW,GAAM,CAAA;gBAC5BD;gBACAC;YACJ,CAAA;IACR;IAEA,MAEMC,cAAc,AAAOZ,GAAmB,EAAE,AAAQC,IAA4B,EAAE;QAClF,OAAO,IAAI,CAACY,UAAU,CAACC,aAAa,CAACd,KAAKI,kCAAa,EAAEW,OAAO,CAAC;YAC7DC,OAAO;gBAAEC,IAAIhB,KAAKgB,EAAE;YAAC;YACrBV,WAAW;gBACPW,QAAQ;gBACRC,SAAS;gBACTC,gBAAgB;YACpB;QACJ;IACJ;IAEA,MAGMC,oBACF,AAAOrB,GAAmB,EAC1B,AAAQ,EAAEsB,KAAK,EAAmC,EACpD;QACE,MAAMC,SAAS,MAAM,IAAI,CAACV,UAAU,CAACW,gBAAgB,CAACxB,KAAKI,kCAAa,EAAEkB,MAAML,EAAE;QAClF,MAAMQ,mBAAmBF,OAAOG,QAAQ;QACxC,MAAMC,uBAAuBC,IAAAA,iBAAW,EAACL,QAAQD;QACjD,IAAIA,MAAMI,QAAQ,KAAKD,kBAAkB;YACrCE,qBAAqBE,iBAAiB,GAAG,IAAIC;QACjD;QACA,OAAO,IAAI,CAACjB,UAAU,CAACC,aAAa,CAACd,KAAKI,kCAAa,EAAE2B,IAAI,CAACJ;IAClE;IAEA,MAGMK,qBAAqB,AAAOhC,GAAmB,EAAE,AAAQ,EAAEiB,EAAE,EAAoC,EAAE;QACrG,MAAMM,SAAS,MAAM,IAAI,CAACV,UAAU,CAACW,gBAAgB,CAACxB,KAAKI,kCAAa,EAAEa,IAAI;YAC1EV,WAAW;gBAAC;aAAU;QAC1B;QACA,IAAIgB,OAAOU,KAAK,KAAK,OAAO;YACxB,OAAOV;QACX;QACA,MAAM,EAAEJ,OAAO,EAAE,GAAGI;QACpB,MAAMW,YAAY,IAAI,CAACC,yBAAyB,CAACZ,OAAOa,MAAM,EAAEjB;QAChEA,QAAQkB,YAAY,CAACC,WAAW;QAChCnB,QAAQkB,YAAY,CAACE,YAAY,GAAGL;QACpC,MAAM,IAAI,CAACrB,UAAU,CAACC,aAAa,CAACd,KAAKwC,aAAO,EAAET,IAAI,CAACZ;QACvDI,OAAOU,KAAK,GAAG;QACf,OAAO,IAAI,CAACpB,UAAU,CAACC,aAAa,CAACd,KAAKI,kCAAa,EAAE2B,IAAI,CAACR;IAClE;IAEA,MAGMkB,oBAAoB,AAAOzC,GAAmB,EAAE,AAAQ,EAAEiB,EAAE,EAAmC,EAAE;QACnG,MAAMM,SAAS,MAAM,IAAI,CAACV,UAAU,CAACW,gBAAgB,CAACxB,KAAKI,kCAAa,EAAEa;QAC1E,IAAIM,OAAOU,KAAK,KAAK,OAAO;YACxB,OAAOV;QACX;QACAA,OAAOU,KAAK,GAAG;QACf,OAAO,IAAI,CAACpB,UAAU,CAACC,aAAa,CAACd,KAAKI,kCAAa,EAAE2B,IAAI,CAACR;IAClE;IAEQY,0BAA0BC,MAAc,EAAEjB,OAAgB,EAAU;QACxE,MAAMuB,QAAQvB,QAAQkB,YAAY,CAACC,WAAW;QAC9C,MAAMK,gBAAgBxB,QAAQkB,YAAY,CAACE,YAAY,IAAI;QAC3D,MAAML,YAAY,AAACS,CAAAA,gBAAgBD,QAAQN,MAAK,IAAMM,CAAAA,QAAQ,CAAA;QAC9D,OAAOR;IACX;IAlFAU,YAAY,AAAQ/B,UAAmC,EAAE,AAAQX,gBAAkC,CAAE;;;aAAjFW,aAAAA;aAA6CX,mBAAAA;IAAqC;AAmF1G;;;sCAhFsB2C;;;;;;;;;;;;sCAeAA;;;;;;;;;;;;;sCAcAC;;;;;;;;;;;;;sCAgBAA;;;;;;;;;;;;;sCAmBAA\"}"
@@ -0,0 +1,113 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "ProductReviewEntityResolver", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return ProductReviewEntityResolver;
9
+ }
10
+ });
11
+ const _graphql = require("@nestjs/graphql");
12
+ const _core = require("@vendure/core");
13
+ const _productreviewentity = require("../entities/product-review.entity");
14
+ function _define_property(obj, key, value) {
15
+ if (key in obj) {
16
+ Object.defineProperty(obj, key, {
17
+ value: value,
18
+ enumerable: true,
19
+ configurable: true,
20
+ writable: true
21
+ });
22
+ } else {
23
+ obj[key] = value;
24
+ }
25
+ return obj;
26
+ }
27
+ function _ts_decorate(decorators, target, key, desc) {
28
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
29
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
30
+ else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
31
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
32
+ }
33
+ function _ts_metadata(k, v) {
34
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
35
+ }
36
+ function _ts_param(paramIndex, decorator) {
37
+ return function(target, key) {
38
+ decorator(target, key, paramIndex);
39
+ };
40
+ }
41
+ class ProductReviewEntityResolver {
42
+ async product(review, ctx) {
43
+ let product = review.product;
44
+ if (!product) {
45
+ const reviewWithProduct = await this.connection.getRepository(ctx, _productreviewentity.ProductReview).findOne({
46
+ where: {
47
+ id: review.id
48
+ },
49
+ relations: {
50
+ product: true
51
+ }
52
+ });
53
+ if (reviewWithProduct) {
54
+ product = reviewWithProduct.product;
55
+ }
56
+ }
57
+ if (product) {
58
+ return (0, _core.translateDeep)(product, ctx.languageCode);
59
+ }
60
+ }
61
+ async productVariant(review, ctx) {
62
+ let productVariant = review.productVariant;
63
+ if (!productVariant) {
64
+ const reviewWithProductVariant = await this.connection.getRepository(ctx, _productreviewentity.ProductReview).findOne({
65
+ where: {
66
+ id: review.id
67
+ },
68
+ relations: {
69
+ productVariant: true
70
+ }
71
+ });
72
+ if (reviewWithProductVariant) {
73
+ productVariant = reviewWithProductVariant.productVariant;
74
+ }
75
+ }
76
+ if (productVariant) {
77
+ return (0, _core.translateDeep)(productVariant, ctx.languageCode);
78
+ }
79
+ }
80
+ constructor(connection){
81
+ _define_property(this, "connection", void 0);
82
+ this.connection = connection;
83
+ }
84
+ }
85
+ _ts_decorate([
86
+ (0, _graphql.ResolveField)(),
87
+ _ts_param(0, (0, _graphql.Parent)()),
88
+ _ts_param(1, (0, _core.Ctx)()),
89
+ _ts_metadata("design:type", Function),
90
+ _ts_metadata("design:paramtypes", [
91
+ typeof _productreviewentity.ProductReview === "undefined" ? Object : _productreviewentity.ProductReview,
92
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext
93
+ ]),
94
+ _ts_metadata("design:returntype", Promise)
95
+ ], ProductReviewEntityResolver.prototype, "product", null);
96
+ _ts_decorate([
97
+ (0, _graphql.ResolveField)(),
98
+ _ts_param(0, (0, _graphql.Parent)()),
99
+ _ts_param(1, (0, _core.Ctx)()),
100
+ _ts_metadata("design:type", Function),
101
+ _ts_metadata("design:paramtypes", [
102
+ typeof _productreviewentity.ProductReview === "undefined" ? Object : _productreviewentity.ProductReview,
103
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext
104
+ ]),
105
+ _ts_metadata("design:returntype", Promise)
106
+ ], ProductReviewEntityResolver.prototype, "productVariant", null);
107
+ ProductReviewEntityResolver = _ts_decorate([
108
+ (0, _graphql.Resolver)('ProductReview'),
109
+ _ts_metadata("design:type", Function),
110
+ _ts_metadata("design:paramtypes", [
111
+ typeof _core.TransactionalConnection === "undefined" ? Object : _core.TransactionalConnection
112
+ ])
113
+ ], ProductReviewEntityResolver);
@@ -0,0 +1 @@
1
+ "{\"version\":3,\"sources\":[\"C:\\\\Development\\\\vendure\\\\vendure\\\\packages\\\\dev-server\\\\test-plugins\\\\reviews\\\\api\\\\product-review-entity.resolver.ts\"],\"sourcesContent\":[\"import { Parent, ResolveField, Resolver } from '@nestjs/graphql';\\r\\nimport {\\r\\n Ctx,\\r\\n Product,\\r\\n ProductVariant,\\r\\n RequestContext,\\r\\n TransactionalConnection,\\r\\n translateDeep,\\r\\n} from '@vendure/core';\\r\\n\\r\\nimport { ProductReview } from '../entities/product-review.entity';\\r\\n\\r\\n@Resolver('ProductReview')\\r\\nexport class ProductReviewEntityResolver {\\r\\n constructor(private connection: TransactionalConnection) {}\\r\\n\\r\\n @ResolveField()\\r\\n async product(@Parent() review: ProductReview, @Ctx() ctx: RequestContext) {\\r\\n let product: Product | null = review.product;\\r\\n if (!product) {\\r\\n const reviewWithProduct = await this.connection.getRepository(ctx, ProductReview).findOne({\\r\\n where: { id: review.id },\\r\\n relations: {\\r\\n product: true,\\r\\n },\\r\\n });\\r\\n if (reviewWithProduct) {\\r\\n product = reviewWithProduct.product;\\r\\n }\\r\\n }\\r\\n if (product) {\\r\\n return translateDeep(product, ctx.languageCode);\\r\\n }\\r\\n }\\r\\n\\r\\n @ResolveField()\\r\\n async productVariant(@Parent() review: ProductReview, @Ctx() ctx: RequestContext) {\\r\\n let productVariant: ProductVariant | null = review.productVariant;\\r\\n if (!productVariant) {\\r\\n const reviewWithProductVariant = await this.connection.getRepository(ctx, ProductReview).findOne({\\r\\n where: { id: review.id },\\r\\n relations: {\\r\\n productVariant: true,\\r\\n },\\r\\n });\\r\\n if (reviewWithProductVariant) {\\r\\n productVariant = reviewWithProductVariant.productVariant;\\r\\n }\\r\\n }\\r\\n if (productVariant) {\\r\\n return translateDeep(productVariant, ctx.languageCode);\\r\\n }\\r\\n }\\r\\n}\\r\\n\"],\"names\":[\"ProductReviewEntityResolver\",\"product\",\"review\",\"ctx\",\"reviewWithProduct\",\"connection\",\"getRepository\",\"ProductReview\",\"findOne\",\"where\",\"id\",\"relations\",\"translateDeep\",\"languageCode\",\"productVariant\",\"reviewWithProductVariant\",\"constructor\"],\"mappings\":\";;;;+BAaaA;;;eAAAA;;;yBAbkC;sBAQxC;qCAEuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGvB,MAAMA;IAGT,MACMC,QAAQ,AAAUC,MAAqB,EAAE,AAAOC,GAAmB,EAAE;QACvE,IAAIF,UAA0BC,OAAOD,OAAO;QAC5C,IAAI,CAACA,SAAS;YACV,MAAMG,oBAAoB,MAAM,IAAI,CAACC,UAAU,CAACC,aAAa,CAACH,KAAKI,kCAAa,EAAEC,OAAO,CAAC;gBACtFC,OAAO;oBAAEC,IAAIR,OAAOQ,EAAE;gBAAC;gBACvBC,WAAW;oBACPV,SAAS;gBACb;YACJ;YACA,IAAIG,mBAAmB;gBACnBH,UAAUG,kBAAkBH,OAAO;YACvC;QACJ;QACA,IAAIA,SAAS;YACT,OAAOW,IAAAA,mBAAa,EAACX,SAASE,IAAIU,YAAY;QAClD;IACJ;IAEA,MACMC,eAAe,AAAUZ,MAAqB,EAAE,AAAOC,GAAmB,EAAE;QAC9E,IAAIW,iBAAwCZ,OAAOY,cAAc;QACjE,IAAI,CAACA,gBAAgB;YACjB,MAAMC,2BAA2B,MAAM,IAAI,CAACV,UAAU,CAACC,aAAa,CAACH,KAAKI,kCAAa,EAAEC,OAAO,CAAC;gBAC7FC,OAAO;oBAAEC,IAAIR,OAAOQ,EAAE;gBAAC;gBACvBC,WAAW;oBACPG,gBAAgB;gBACpB;YACJ;YACA,IAAIC,0BAA0B;gBAC1BD,iBAAiBC,yBAAyBD,cAAc;YAC5D;QACJ;QACA,IAAIA,gBAAgB;YAChB,OAAOF,IAAAA,mBAAa,EAACE,gBAAgBX,IAAIU,YAAY;QACzD;IACJ;IAtCAG,YAAY,AAAQX,UAAmC,CAAE;;aAArCA,aAAAA;IAAsC;AAuC9D\"}"
@@ -0,0 +1,112 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "ProductReviewShopResolver", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return ProductReviewShopResolver;
9
+ }
10
+ });
11
+ const _graphql = require("@nestjs/graphql");
12
+ const _core = require("@vendure/core");
13
+ const _productreviewentity = require("../entities/product-review.entity");
14
+ const _generatedshoptypes = require("../generated-shop-types");
15
+ function _define_property(obj, key, value) {
16
+ if (key in obj) {
17
+ Object.defineProperty(obj, key, {
18
+ value: value,
19
+ enumerable: true,
20
+ configurable: true,
21
+ writable: true
22
+ });
23
+ } else {
24
+ obj[key] = value;
25
+ }
26
+ return obj;
27
+ }
28
+ function _ts_decorate(decorators, target, key, desc) {
29
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
30
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
31
+ else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
32
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
33
+ }
34
+ function _ts_metadata(k, v) {
35
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
36
+ }
37
+ function _ts_param(paramIndex, decorator) {
38
+ return function(target, key) {
39
+ decorator(target, key, paramIndex);
40
+ };
41
+ }
42
+ class ProductReviewShopResolver {
43
+ async submitProductReview(ctx, { input }) {
44
+ const review = new _productreviewentity.ProductReview(input);
45
+ const product = await this.connection.getEntityOrThrow(ctx, _core.Product, input.productId);
46
+ review.product = product;
47
+ review.state = 'new';
48
+ if (input.variantId) {
49
+ const variant = await this.connection.getEntityOrThrow(ctx, _core.ProductVariant, input.variantId);
50
+ review.productVariant = variant;
51
+ }
52
+ if (input.customerId) {
53
+ const customer = await this.connection.getEntityOrThrow(ctx, _core.Customer, input.customerId);
54
+ review.author = customer;
55
+ }
56
+ return this.connection.getRepository(ctx, _productreviewentity.ProductReview).save(review);
57
+ }
58
+ async voteOnReview(ctx, { id, vote }) {
59
+ const review = await this.connection.getEntityOrThrow(ctx, _productreviewentity.ProductReview, id, {
60
+ relations: [
61
+ 'product'
62
+ ],
63
+ where: {
64
+ state: 'approved'
65
+ }
66
+ });
67
+ if (vote) {
68
+ review.upvotes++;
69
+ } else {
70
+ review.downvotes++;
71
+ }
72
+ return this.connection.getRepository(ctx, _productreviewentity.ProductReview).save(review);
73
+ }
74
+ constructor(connection, listQueryBuilder){
75
+ _define_property(this, "connection", void 0);
76
+ _define_property(this, "listQueryBuilder", void 0);
77
+ this.connection = connection;
78
+ this.listQueryBuilder = listQueryBuilder;
79
+ }
80
+ }
81
+ _ts_decorate([
82
+ (0, _core.Transaction)(),
83
+ (0, _graphql.Mutation)(),
84
+ _ts_param(0, (0, _core.Ctx)()),
85
+ _ts_param(1, (0, _graphql.Args)()),
86
+ _ts_metadata("design:type", Function),
87
+ _ts_metadata("design:paramtypes", [
88
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext,
89
+ typeof _generatedshoptypes.MutationSubmitProductReviewArgs === "undefined" ? Object : _generatedshoptypes.MutationSubmitProductReviewArgs
90
+ ]),
91
+ _ts_metadata("design:returntype", Promise)
92
+ ], ProductReviewShopResolver.prototype, "submitProductReview", null);
93
+ _ts_decorate([
94
+ (0, _core.Transaction)(),
95
+ (0, _graphql.Mutation)(),
96
+ _ts_param(0, (0, _core.Ctx)()),
97
+ _ts_param(1, (0, _graphql.Args)()),
98
+ _ts_metadata("design:type", Function),
99
+ _ts_metadata("design:paramtypes", [
100
+ typeof _core.RequestContext === "undefined" ? Object : _core.RequestContext,
101
+ typeof _generatedshoptypes.MutationVoteOnReviewArgs === "undefined" ? Object : _generatedshoptypes.MutationVoteOnReviewArgs
102
+ ]),
103
+ _ts_metadata("design:returntype", Promise)
104
+ ], ProductReviewShopResolver.prototype, "voteOnReview", null);
105
+ ProductReviewShopResolver = _ts_decorate([
106
+ (0, _graphql.Resolver)(),
107
+ _ts_metadata("design:type", Function),
108
+ _ts_metadata("design:paramtypes", [
109
+ typeof _core.TransactionalConnection === "undefined" ? Object : _core.TransactionalConnection,
110
+ typeof _core.ListQueryBuilder === "undefined" ? Object : _core.ListQueryBuilder
111
+ ])
112
+ ], ProductReviewShopResolver);