@inventreedb/ui 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (541) hide show
  1. package/.babelrc +8 -0
  2. package/.linguirc +55 -0
  3. package/README.md +17 -0
  4. package/index.html +15 -0
  5. package/lib/enums/ApiEndpoints.tsx +233 -0
  6. package/lib/enums/ModelType.tsx +38 -0
  7. package/lib/enums/Roles.tsx +25 -0
  8. package/lib/functions/Api.tsx +42 -0
  9. package/lib/functions/Plugins.tsx +27 -0
  10. package/lib/index.ts +11 -0
  11. package/lib/types/Auth.tsx +51 -0
  12. package/lib/types/Core.tsx +13 -0
  13. package/lib/types/Filters.tsx +69 -0
  14. package/lib/types/Forms.tsx +185 -0
  15. package/lib/types/Modals.tsx +17 -0
  16. package/lib/types/Plugins.tsx +68 -0
  17. package/lib/types/Server.tsx +8 -0
  18. package/lib/types/Settings.tsx +55 -0
  19. package/lib/types/Tables.tsx +69 -0
  20. package/lib/types/User.tsx +62 -0
  21. package/netlify.toml +22 -0
  22. package/package.json +125 -0
  23. package/playwright/global-setup.ts +45 -0
  24. package/playwright.config.ts +99 -0
  25. package/public/inventree.svg +291 -0
  26. package/src/App.tsx +35 -0
  27. package/src/assets/inventree.svg +1 -0
  28. package/src/components/Boundary.tsx +43 -0
  29. package/src/components/SplashScreen.tsx +35 -0
  30. package/src/components/barcodes/BarcodeCameraInput.tsx +207 -0
  31. package/src/components/barcodes/BarcodeInput.tsx +127 -0
  32. package/src/components/barcodes/BarcodeKeyboardInput.tsx +50 -0
  33. package/src/components/barcodes/BarcodeScanDialog.tsx +101 -0
  34. package/src/components/barcodes/BarcodeScanItem.tsx +23 -0
  35. package/src/components/barcodes/QRCode.tsx +211 -0
  36. package/src/components/buttons/ActionButton.tsx +61 -0
  37. package/src/components/buttons/AddItemButton.tsx +10 -0
  38. package/src/components/buttons/AdminButton.tsx +91 -0
  39. package/src/components/buttons/ButtonMenu.tsx +33 -0
  40. package/src/components/buttons/CopyButton.tsx +52 -0
  41. package/src/components/buttons/PrimaryActionButton.tsx +40 -0
  42. package/src/components/buttons/PrintingActions.tsx +191 -0
  43. package/src/components/buttons/RemoveRowButton.tsx +22 -0
  44. package/src/components/buttons/SSOButton.tsx +53 -0
  45. package/src/components/buttons/ScanButton.tsx +27 -0
  46. package/src/components/buttons/SegmentedIconControl.tsx +51 -0
  47. package/src/components/buttons/SplitButton.css.ts +19 -0
  48. package/src/components/buttons/SplitButton.tsx +111 -0
  49. package/src/components/buttons/SpotlightButton.tsx +22 -0
  50. package/src/components/buttons/StarredToggleButton.tsx +62 -0
  51. package/src/components/buttons/YesNoButton.tsx +42 -0
  52. package/src/components/calendar/Calendar.tsx +193 -0
  53. package/src/components/calendar/OrderCalendar.tsx +209 -0
  54. package/src/components/charts/colors.tsx +12 -0
  55. package/src/components/charts/tooltipFormatter.tsx +12 -0
  56. package/src/components/dashboard/DashboardLayout.tsx +327 -0
  57. package/src/components/dashboard/DashboardMenu.tsx +136 -0
  58. package/src/components/dashboard/DashboardWidget.tsx +82 -0
  59. package/src/components/dashboard/DashboardWidgetDrawer.tsx +130 -0
  60. package/src/components/dashboard/DashboardWidgetLibrary.tsx +189 -0
  61. package/src/components/dashboard/widgets/ColorToggleWidget.tsx +28 -0
  62. package/src/components/dashboard/widgets/GetStartedWidget.tsx +19 -0
  63. package/src/components/dashboard/widgets/LanguageSelectWidget.tsx +28 -0
  64. package/src/components/dashboard/widgets/NewsWidget.tsx +143 -0
  65. package/src/components/dashboard/widgets/QueryCountDashboardWidget.tsx +134 -0
  66. package/src/components/details/Details.tsx +514 -0
  67. package/src/components/details/DetailsBadge.tsx +20 -0
  68. package/src/components/details/DetailsImage.tsx +462 -0
  69. package/src/components/details/ItemDetails.tsx +17 -0
  70. package/src/components/editors/NotesEditor.tsx +232 -0
  71. package/src/components/editors/TemplateEditor/CodeEditor/CodeEditor.tsx +158 -0
  72. package/src/components/editors/TemplateEditor/CodeEditor/index.tsx +12 -0
  73. package/src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx +90 -0
  74. package/src/components/editors/TemplateEditor/PdfPreview/index.tsx +12 -0
  75. package/src/components/editors/TemplateEditor/TemplateEditor.tsx +425 -0
  76. package/src/components/editors/TemplateEditor/index.tsx +3 -0
  77. package/src/components/errors/ClientError.tsx +28 -0
  78. package/src/components/errors/GenericErrorPage.tsx +73 -0
  79. package/src/components/errors/NotAuthenticated.tsx +12 -0
  80. package/src/components/errors/NotFound.tsx +12 -0
  81. package/src/components/errors/PermissionDenied.tsx +12 -0
  82. package/src/components/errors/ServerError.tsx +13 -0
  83. package/src/components/forms/ApiForm.tsx +718 -0
  84. package/src/components/forms/AuthFormOptions.tsx +39 -0
  85. package/src/components/forms/AuthenticationForm.tsx +332 -0
  86. package/src/components/forms/HostOptionsForm.tsx +96 -0
  87. package/src/components/forms/InstanceOptions.tsx +178 -0
  88. package/src/components/forms/StandaloneField.tsx +55 -0
  89. package/src/components/forms/fields/ApiFormField.tsx +281 -0
  90. package/src/components/forms/fields/ChoiceField.tsx +86 -0
  91. package/src/components/forms/fields/DateField.tsx +79 -0
  92. package/src/components/forms/fields/DependentField.tsx +91 -0
  93. package/src/components/forms/fields/IconField.tsx +353 -0
  94. package/src/components/forms/fields/NestedObjectField.tsx +45 -0
  95. package/src/components/forms/fields/RelatedModelField.tsx +339 -0
  96. package/src/components/forms/fields/TableField.tsx +275 -0
  97. package/src/components/forms/fields/TextField.tsx +81 -0
  98. package/src/components/images/ApiImage.tsx +35 -0
  99. package/src/components/images/Thumbnail.tsx +52 -0
  100. package/src/components/importer/ImportDataSelector.tsx +433 -0
  101. package/src/components/importer/ImporterColumnSelector.tsx +244 -0
  102. package/src/components/importer/ImporterDrawer.tsx +173 -0
  103. package/src/components/importer/ImporterImportProgress.tsx +45 -0
  104. package/src/components/items/ActionDropdown.tsx +290 -0
  105. package/src/components/items/ApiIcon.css.ts +13 -0
  106. package/src/components/items/ApiIcon.tsx +32 -0
  107. package/src/components/items/AttachmentLink.tsx +79 -0
  108. package/src/components/items/ColorToggle.tsx +34 -0
  109. package/src/components/items/DashboardItem.tsx +33 -0
  110. package/src/components/items/DocInfo.tsx +20 -0
  111. package/src/components/items/DocTooltip.tsx +98 -0
  112. package/src/components/items/ErrorItem.tsx +17 -0
  113. package/src/components/items/Expand.tsx +14 -0
  114. package/src/components/items/GettingStartedCarousel.css.ts +30 -0
  115. package/src/components/items/GettingStartedCarousel.tsx +49 -0
  116. package/src/components/items/InfoItem.tsx +64 -0
  117. package/src/components/items/InvenTreeLogo.tsx +24 -0
  118. package/src/components/items/LanguageSelect.tsx +43 -0
  119. package/src/components/items/LanguageToggle.tsx +37 -0
  120. package/src/components/items/MenuLinks.tsx +113 -0
  121. package/src/components/items/OnlyStaff.tsx +10 -0
  122. package/src/components/items/ProgressBar.tsx +45 -0
  123. package/src/components/items/StylishText.tsx +59 -0
  124. package/src/components/items/TitleWithDoc.tsx +26 -0
  125. package/src/components/items/UnavailableIndicator.tsx +5 -0
  126. package/src/components/items/inventree.svg +1 -0
  127. package/src/components/modals/AboutInvenTreeModal.tsx +203 -0
  128. package/src/components/modals/LicenseModal.tsx +116 -0
  129. package/src/components/modals/QrModal.tsx +21 -0
  130. package/src/components/modals/ServerInfoModal.tsx +136 -0
  131. package/src/components/nav/Alerts.tsx +130 -0
  132. package/src/components/nav/BreadcrumbList.tsx +84 -0
  133. package/src/components/nav/DetailDrawer.css.ts +6 -0
  134. package/src/components/nav/DetailDrawer.tsx +105 -0
  135. package/src/components/nav/Footer.tsx +11 -0
  136. package/src/components/nav/Header.tsx +226 -0
  137. package/src/components/nav/InstanceDetail.tsx +46 -0
  138. package/src/components/nav/Layout.tsx +85 -0
  139. package/src/components/nav/MainMenu.tsx +101 -0
  140. package/src/components/nav/NavHoverMenu.tsx +15 -0
  141. package/src/components/nav/NavigationDrawer.tsx +230 -0
  142. package/src/components/nav/NavigationTree.tsx +210 -0
  143. package/src/components/nav/NotificationDrawer.tsx +231 -0
  144. package/src/components/nav/PageDetail.tsx +171 -0
  145. package/src/components/nav/PageTitle.tsx +53 -0
  146. package/src/components/nav/SearchDrawer.tsx +598 -0
  147. package/src/components/nav/SettingsHeader.tsx +50 -0
  148. package/src/components/panels/AttachmentPanel.tsx +27 -0
  149. package/src/components/panels/NotesPanel.tsx +36 -0
  150. package/src/components/panels/Panel.tsx +15 -0
  151. package/src/components/panels/PanelGroup.css.ts +10 -0
  152. package/src/components/panels/PanelGroup.tsx +292 -0
  153. package/src/components/plugins/LocateItemButton.tsx +94 -0
  154. package/src/components/plugins/PluginContext.tsx +67 -0
  155. package/src/components/plugins/PluginDrawer.tsx +156 -0
  156. package/src/components/plugins/PluginInterface.tsx +34 -0
  157. package/src/components/plugins/PluginPanel.tsx +37 -0
  158. package/src/components/plugins/PluginSettingsPanel.tsx +34 -0
  159. package/src/components/plugins/PluginSource.tsx +48 -0
  160. package/src/components/plugins/PluginUIFeature.tsx +174 -0
  161. package/src/components/plugins/PluginUIFeatureTypes.ts +78 -0
  162. package/src/components/plugins/RemoteComponent.tsx +137 -0
  163. package/src/components/render/Build.tsx +54 -0
  164. package/src/components/render/Company.tsx +114 -0
  165. package/src/components/render/Generic.tsx +49 -0
  166. package/src/components/render/Instance.tsx +240 -0
  167. package/src/components/render/InstanceFromUrl.tsx +33 -0
  168. package/src/components/render/ModelType.tsx +293 -0
  169. package/src/components/render/Order.tsx +124 -0
  170. package/src/components/render/Part.tsx +109 -0
  171. package/src/components/render/Plugin.tsx +21 -0
  172. package/src/components/render/Report.tsx +29 -0
  173. package/src/components/render/StatusRenderer.tsx +178 -0
  174. package/src/components/render/Stock.tsx +84 -0
  175. package/src/components/render/User.tsx +42 -0
  176. package/src/components/settings/FactCollection.tsx +31 -0
  177. package/src/components/settings/FactItem.tsx +17 -0
  178. package/src/components/settings/SettingItem.tsx +176 -0
  179. package/src/components/settings/SettingList.tsx +217 -0
  180. package/src/components/wizards/OrderPartsWizard.tsx +473 -0
  181. package/src/components/wizards/WizardDrawer.tsx +188 -0
  182. package/src/contexts/ApiContext.tsx +31 -0
  183. package/src/contexts/LanguageContext.tsx +155 -0
  184. package/src/contexts/ThemeContext.tsx +58 -0
  185. package/src/contexts/colorSchema.tsx +67 -0
  186. package/src/defaults/actions.tsx +87 -0
  187. package/src/defaults/backendMappings.tsx +32 -0
  188. package/src/defaults/defaultHostList.tsx +4 -0
  189. package/src/defaults/defaults.tsx +38 -0
  190. package/src/defaults/formatters.tsx +176 -0
  191. package/src/defaults/links.tsx +193 -0
  192. package/src/defaults/templates.tsx +53 -0
  193. package/src/forms/BomForms.tsx +26 -0
  194. package/src/forms/BuildForms.tsx +615 -0
  195. package/src/forms/CommonForms.tsx +89 -0
  196. package/src/forms/CompanyForms.tsx +133 -0
  197. package/src/forms/ImporterForms.tsx +20 -0
  198. package/src/forms/PartForms.tsx +281 -0
  199. package/src/forms/PurchaseOrderForms.tsx +779 -0
  200. package/src/forms/ReturnOrderForms.tsx +263 -0
  201. package/src/forms/SalesOrderForms.tsx +408 -0
  202. package/src/forms/StockForms.tsx +1296 -0
  203. package/src/forms/selectionListFields.tsx +120 -0
  204. package/src/functions/api.tsx +61 -0
  205. package/src/functions/auth.tsx +574 -0
  206. package/src/functions/conversion.tsx +42 -0
  207. package/src/functions/events.tsx +6 -0
  208. package/src/functions/forms.tsx +173 -0
  209. package/src/functions/icons.tsx +294 -0
  210. package/src/functions/loading.tsx +29 -0
  211. package/src/functions/navigation.tsx +20 -0
  212. package/src/functions/notifications.tsx +101 -0
  213. package/src/functions/tables.tsx +26 -0
  214. package/src/functions/uid.tsx +15 -0
  215. package/src/functions/urls.tsx +58 -0
  216. package/src/hooks/UseCalendar.tsx +178 -0
  217. package/src/hooks/UseDashboardItems.tsx +118 -0
  218. package/src/hooks/UseDataExport.tsx +125 -0
  219. package/src/hooks/UseDataOutput.tsx +109 -0
  220. package/src/hooks/UseFilter.tsx +67 -0
  221. package/src/hooks/UseFilterSet.tsx +24 -0
  222. package/src/hooks/UseForm.tsx +161 -0
  223. package/src/hooks/UseGenerator.tsx +92 -0
  224. package/src/hooks/UseImportSession.tsx +139 -0
  225. package/src/hooks/UseInstance.tsx +137 -0
  226. package/src/hooks/UseInstanceName.tsx +14 -0
  227. package/src/hooks/UseModal.tsx +38 -0
  228. package/src/hooks/UsePlaceholder.tsx +66 -0
  229. package/src/hooks/UsePluginPanels.tsx +123 -0
  230. package/src/hooks/UsePluginUIFeature.tsx +95 -0
  231. package/src/hooks/UsePlugins.tsx +45 -0
  232. package/src/hooks/UseSelectedRows.tsx +37 -0
  233. package/src/hooks/UseStatusCodes.tsx +50 -0
  234. package/src/hooks/UseTable.tsx +145 -0
  235. package/src/hooks/UseWizard.tsx +133 -0
  236. package/src/locales/ar/messages.d.ts +4 -0
  237. package/src/locales/ar/messages.po +10695 -0
  238. package/src/locales/ar/messages.ts +1 -0
  239. package/src/locales/bg/messages.d.ts +4 -0
  240. package/src/locales/bg/messages.po +10695 -0
  241. package/src/locales/bg/messages.ts +1 -0
  242. package/src/locales/cs/messages.d.ts +4 -0
  243. package/src/locales/cs/messages.po +10695 -0
  244. package/src/locales/cs/messages.ts +1 -0
  245. package/src/locales/da/messages.d.ts +4 -0
  246. package/src/locales/da/messages.po +10695 -0
  247. package/src/locales/da/messages.ts +1 -0
  248. package/src/locales/de/messages.d.ts +4 -0
  249. package/src/locales/de/messages.po +10695 -0
  250. package/src/locales/de/messages.ts +1 -0
  251. package/src/locales/el/messages.d.ts +4 -0
  252. package/src/locales/el/messages.po +10695 -0
  253. package/src/locales/el/messages.ts +1 -0
  254. package/src/locales/en/messages.d.ts +4 -0
  255. package/src/locales/en/messages.po +10689 -0
  256. package/src/locales/en/messages.ts +1 -0
  257. package/src/locales/es/messages.d.ts +4 -0
  258. package/src/locales/es/messages.po +10695 -0
  259. package/src/locales/es/messages.ts +1 -0
  260. package/src/locales/es_MX/messages.d.ts +4 -0
  261. package/src/locales/es_MX/messages.po +10695 -0
  262. package/src/locales/es_MX/messages.ts +1 -0
  263. package/src/locales/et/messages.d.ts +4 -0
  264. package/src/locales/et/messages.po +10695 -0
  265. package/src/locales/et/messages.ts +1 -0
  266. package/src/locales/fa/messages.d.ts +4 -0
  267. package/src/locales/fa/messages.po +10695 -0
  268. package/src/locales/fa/messages.ts +1 -0
  269. package/src/locales/fi/messages.d.ts +4 -0
  270. package/src/locales/fi/messages.po +10695 -0
  271. package/src/locales/fi/messages.ts +1 -0
  272. package/src/locales/fr/messages.d.ts +4 -0
  273. package/src/locales/fr/messages.po +10695 -0
  274. package/src/locales/fr/messages.ts +1 -0
  275. package/src/locales/he/messages.d.ts +4 -0
  276. package/src/locales/he/messages.po +10695 -0
  277. package/src/locales/he/messages.ts +1 -0
  278. package/src/locales/hi/messages.d.ts +4 -0
  279. package/src/locales/hi/messages.po +10695 -0
  280. package/src/locales/hi/messages.ts +1 -0
  281. package/src/locales/hu/messages.d.ts +4 -0
  282. package/src/locales/hu/messages.po +10695 -0
  283. package/src/locales/hu/messages.ts +1 -0
  284. package/src/locales/id/messages.po +10695 -0
  285. package/src/locales/it/messages.d.ts +4 -0
  286. package/src/locales/it/messages.po +10695 -0
  287. package/src/locales/it/messages.ts +1 -0
  288. package/src/locales/ja/messages.d.ts +4 -0
  289. package/src/locales/ja/messages.po +10695 -0
  290. package/src/locales/ja/messages.ts +1 -0
  291. package/src/locales/ko/messages.d.ts +4 -0
  292. package/src/locales/ko/messages.po +10695 -0
  293. package/src/locales/ko/messages.ts +1 -0
  294. package/src/locales/lt/messages.d.ts +4 -0
  295. package/src/locales/lt/messages.po +10695 -0
  296. package/src/locales/lt/messages.ts +1 -0
  297. package/src/locales/lv/messages.d.ts +4 -0
  298. package/src/locales/lv/messages.po +10695 -0
  299. package/src/locales/lv/messages.ts +1 -0
  300. package/src/locales/nl/messages.d.ts +4 -0
  301. package/src/locales/nl/messages.po +10695 -0
  302. package/src/locales/nl/messages.ts +1 -0
  303. package/src/locales/no/messages.d.ts +4 -0
  304. package/src/locales/no/messages.po +10695 -0
  305. package/src/locales/no/messages.ts +1 -0
  306. package/src/locales/pl/messages.d.ts +4 -0
  307. package/src/locales/pl/messages.po +10695 -0
  308. package/src/locales/pl/messages.ts +1 -0
  309. package/src/locales/pseudo-LOCALE/messages.d.ts +4 -0
  310. package/src/locales/pseudo-LOCALE/messages.po +8003 -0
  311. package/src/locales/pseudo-LOCALE/messages.ts +1 -0
  312. package/src/locales/pt/messages.d.ts +4 -0
  313. package/src/locales/pt/messages.po +10696 -0
  314. package/src/locales/pt/messages.ts +1 -0
  315. package/src/locales/pt_BR/messages.d.ts +4 -0
  316. package/src/locales/pt_BR/messages.po +10695 -0
  317. package/src/locales/pt_BR/messages.ts +1 -0
  318. package/src/locales/ro/messages.po +10695 -0
  319. package/src/locales/ro/messages.ts +1 -0
  320. package/src/locales/ru/messages.d.ts +4 -0
  321. package/src/locales/ru/messages.po +10695 -0
  322. package/src/locales/ru/messages.ts +1 -0
  323. package/src/locales/sk/messages.d.ts +4 -0
  324. package/src/locales/sk/messages.po +10695 -0
  325. package/src/locales/sk/messages.ts +1 -0
  326. package/src/locales/sl/messages.d.ts +4 -0
  327. package/src/locales/sl/messages.po +10695 -0
  328. package/src/locales/sl/messages.ts +1 -0
  329. package/src/locales/sr/messages.d.ts +4 -0
  330. package/src/locales/sr/messages.po +10695 -0
  331. package/src/locales/sr/messages.ts +1 -0
  332. package/src/locales/sv/messages.d.ts +4 -0
  333. package/src/locales/sv/messages.po +10695 -0
  334. package/src/locales/sv/messages.ts +1 -0
  335. package/src/locales/th/messages.d.ts +4 -0
  336. package/src/locales/th/messages.po +10695 -0
  337. package/src/locales/th/messages.ts +1 -0
  338. package/src/locales/tr/messages.d.ts +4 -0
  339. package/src/locales/tr/messages.po +10695 -0
  340. package/src/locales/tr/messages.ts +1 -0
  341. package/src/locales/uk/messages.d.ts +3 -0
  342. package/src/locales/uk/messages.po +10695 -0
  343. package/src/locales/uk/messages.ts +1 -0
  344. package/src/locales/vi/messages.d.ts +4 -0
  345. package/src/locales/vi/messages.po +10695 -0
  346. package/src/locales/vi/messages.ts +1 -0
  347. package/src/locales/zh_Hans/messages.d.ts +4 -0
  348. package/src/locales/zh_Hans/messages.po +10695 -0
  349. package/src/locales/zh_Hans/messages.ts +1 -0
  350. package/src/locales/zh_Hant/messages.d.ts +4 -0
  351. package/src/locales/zh_Hant/messages.po +10695 -0
  352. package/src/locales/zh_Hant/messages.ts +1 -0
  353. package/src/main.css.ts +148 -0
  354. package/src/main.tsx +123 -0
  355. package/src/pages/Auth/ChangePassword.tsx +84 -0
  356. package/src/pages/Auth/Layout.tsx +74 -0
  357. package/src/pages/Auth/LoggedIn.tsx +21 -0
  358. package/src/pages/Auth/Login.tsx +133 -0
  359. package/src/pages/Auth/Logout.tsx +16 -0
  360. package/src/pages/Auth/MFA.tsx +36 -0
  361. package/src/pages/Auth/MFASetup.tsx +38 -0
  362. package/src/pages/Auth/Register.tsx +28 -0
  363. package/src/pages/Auth/Reset.tsx +30 -0
  364. package/src/pages/Auth/ResetPassword.tsx +48 -0
  365. package/src/pages/Auth/VerifyEmail.tsx +34 -0
  366. package/src/pages/ErrorPage.tsx +26 -0
  367. package/src/pages/Index/Home.tsx +12 -0
  368. package/src/pages/Index/Scan.tsx +258 -0
  369. package/src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx +162 -0
  370. package/src/pages/Index/Settings/AccountSettings/QrRegistrationForm.tsx +38 -0
  371. package/src/pages/Index/Settings/AccountSettings/SecurityContent.tsx +713 -0
  372. package/src/pages/Index/Settings/AccountSettings/UserPanel.tsx +24 -0
  373. package/src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx +207 -0
  374. package/src/pages/Index/Settings/AccountSettings/useConfirm.tsx +117 -0
  375. package/src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx +111 -0
  376. package/src/pages/Index/Settings/AdminCenter/Index.tsx +251 -0
  377. package/src/pages/Index/Settings/AdminCenter/LabelTemplatePanel.tsx +23 -0
  378. package/src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx +110 -0
  379. package/src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx +29 -0
  380. package/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx +84 -0
  381. package/src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx +38 -0
  382. package/src/pages/Index/Settings/AdminCenter/StocktakePanel.tsx +31 -0
  383. package/src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx +73 -0
  384. package/src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx +74 -0
  385. package/src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx +49 -0
  386. package/src/pages/Index/Settings/SystemSettings.tsx +339 -0
  387. package/src/pages/Index/Settings/UserSettings.tsx +143 -0
  388. package/src/pages/Notifications.tsx +134 -0
  389. package/src/pages/build/BuildDetail.tsx +579 -0
  390. package/src/pages/build/BuildIndex.tsx +100 -0
  391. package/src/pages/company/CompanyDetail.tsx +352 -0
  392. package/src/pages/company/CustomerDetail.tsx +13 -0
  393. package/src/pages/company/ManufacturerDetail.tsx +13 -0
  394. package/src/pages/company/ManufacturerPartDetail.tsx +307 -0
  395. package/src/pages/company/SupplierDetail.tsx +13 -0
  396. package/src/pages/company/SupplierPartDetail.tsx +433 -0
  397. package/src/pages/core/CoreIndex.tsx +50 -0
  398. package/src/pages/core/GroupDetail.tsx +97 -0
  399. package/src/pages/core/UserDetail.tsx +193 -0
  400. package/src/pages/part/CategoryDetail.tsx +369 -0
  401. package/src/pages/part/PartAllocationPanel.tsx +40 -0
  402. package/src/pages/part/PartDetail.tsx +1071 -0
  403. package/src/pages/part/PartPricingPanel.tsx +155 -0
  404. package/src/pages/part/PartSchedulingDetail.tsx +315 -0
  405. package/src/pages/part/PartStocktakeDetail.tsx +285 -0
  406. package/src/pages/part/PartSupplierDetail.tsx +31 -0
  407. package/src/pages/part/pricing/BomPricingPanel.tsx +269 -0
  408. package/src/pages/part/pricing/PriceBreakPanel.tsx +182 -0
  409. package/src/pages/part/pricing/PricingOverviewPanel.tsx +338 -0
  410. package/src/pages/part/pricing/PricingPanel.tsx +82 -0
  411. package/src/pages/part/pricing/PurchaseHistoryPanel.tsx +134 -0
  412. package/src/pages/part/pricing/SaleHistoryPanel.tsx +95 -0
  413. package/src/pages/part/pricing/SupplierPricingPanel.tsx +80 -0
  414. package/src/pages/part/pricing/VariantPricingPanel.tsx +112 -0
  415. package/src/pages/purchasing/PurchaseOrderDetail.tsx +547 -0
  416. package/src/pages/purchasing/PurchasingIndex.tsx +131 -0
  417. package/src/pages/sales/ReturnOrderDetail.tsx +529 -0
  418. package/src/pages/sales/SalesIndex.tsx +148 -0
  419. package/src/pages/sales/SalesOrderDetail.tsx +593 -0
  420. package/src/pages/sales/SalesOrderShipmentDetail.tsx +385 -0
  421. package/src/pages/stock/LocationDetail.tsx +413 -0
  422. package/src/pages/stock/StockDetail.tsx +951 -0
  423. package/src/router.tsx +213 -0
  424. package/src/states/ApiState.tsx +85 -0
  425. package/src/states/IconState.tsx +94 -0
  426. package/src/states/LocalState.tsx +181 -0
  427. package/src/states/SettingsState.tsx +206 -0
  428. package/src/states/StatusState.tsx +55 -0
  429. package/src/states/UserState.tsx +202 -0
  430. package/src/states/states.tsx +69 -0
  431. package/src/tables/Column.tsx +29 -0
  432. package/src/tables/ColumnRenderers.tsx +320 -0
  433. package/src/tables/ColumnSelect.tsx +39 -0
  434. package/src/tables/Filter.tsx +297 -0
  435. package/src/tables/FilterSelectDrawer.tsx +358 -0
  436. package/src/tables/InvenTreeTable.tsx +750 -0
  437. package/src/tables/InvenTreeTableHeader.tsx +257 -0
  438. package/src/tables/RowActions.tsx +176 -0
  439. package/src/tables/RowExpansionIcon.tsx +16 -0
  440. package/src/tables/Search.tsx +42 -0
  441. package/src/tables/TableHoverCard.tsx +91 -0
  442. package/src/tables/bom/BomTable.tsx +590 -0
  443. package/src/tables/bom/UsedInTable.tsx +114 -0
  444. package/src/tables/build/BuildAllocatedStockTable.tsx +233 -0
  445. package/src/tables/build/BuildLineTable.tsx +800 -0
  446. package/src/tables/build/BuildOrderTable.tsx +226 -0
  447. package/src/tables/build/BuildOrderTestTable.tsx +265 -0
  448. package/src/tables/build/BuildOutputTable.tsx +599 -0
  449. package/src/tables/company/AddressTable.tsx +211 -0
  450. package/src/tables/company/CompanyTable.tsx +176 -0
  451. package/src/tables/company/ContactTable.tsx +182 -0
  452. package/src/tables/core/UserTable.tsx +88 -0
  453. package/src/tables/general/AttachmentTable.tsx +404 -0
  454. package/src/tables/general/BarcodeScanTable.tsx +124 -0
  455. package/src/tables/general/ExtraLineItemTable.tsx +174 -0
  456. package/src/tables/machine/MachineListTable.tsx +634 -0
  457. package/src/tables/machine/MachineTypeTable.tsx +395 -0
  458. package/src/tables/notifications/NotificationTable.tsx +60 -0
  459. package/src/tables/part/ParametricPartTable.tsx +297 -0
  460. package/src/tables/part/PartBuildAllocationsTable.tsx +128 -0
  461. package/src/tables/part/PartCategoryTable.tsx +208 -0
  462. package/src/tables/part/PartCategoryTemplateTable.tsx +157 -0
  463. package/src/tables/part/PartParameterTable.tsx +226 -0
  464. package/src/tables/part/PartParameterTemplateTable.tsx +168 -0
  465. package/src/tables/part/PartPurchaseOrdersTable.tsx +163 -0
  466. package/src/tables/part/PartSalesAllocationsTable.tsx +130 -0
  467. package/src/tables/part/PartTable.tsx +423 -0
  468. package/src/tables/part/PartTestTemplateTable.tsx +290 -0
  469. package/src/tables/part/PartThumbTable.tsx +230 -0
  470. package/src/tables/part/PartVariantTable.tsx +52 -0
  471. package/src/tables/part/RelatedPartTable.tsx +182 -0
  472. package/src/tables/part/SelectionListTable.tsx +134 -0
  473. package/src/tables/plugin/PluginErrorTable.tsx +58 -0
  474. package/src/tables/plugin/PluginListTable.tsx +440 -0
  475. package/src/tables/purchasing/ManufacturerPartParameterTable.tsx +136 -0
  476. package/src/tables/purchasing/ManufacturerPartTable.tsx +158 -0
  477. package/src/tables/purchasing/PurchaseOrderLineItemTable.tsx +424 -0
  478. package/src/tables/purchasing/PurchaseOrderTable.tsx +193 -0
  479. package/src/tables/purchasing/SupplierPartTable.tsx +281 -0
  480. package/src/tables/purchasing/SupplierPriceBreakTable.tsx +222 -0
  481. package/src/tables/sales/ReturnOrderLineItemTable.tsx +271 -0
  482. package/src/tables/sales/ReturnOrderTable.tsx +201 -0
  483. package/src/tables/sales/SalesOrderAllocationTable.tsx +330 -0
  484. package/src/tables/sales/SalesOrderLineItemTable.tsx +508 -0
  485. package/src/tables/sales/SalesOrderShipmentTable.tsx +225 -0
  486. package/src/tables/sales/SalesOrderTable.tsx +212 -0
  487. package/src/tables/settings/ApiTokenTable.tsx +203 -0
  488. package/src/tables/settings/BarcodeScanHistoryTable.tsx +281 -0
  489. package/src/tables/settings/CustomStateTable.tsx +226 -0
  490. package/src/tables/settings/CustomUnitsTable.tsx +125 -0
  491. package/src/tables/settings/ErrorTable.tsx +170 -0
  492. package/src/tables/settings/ExportSessionTable.tsx +60 -0
  493. package/src/tables/settings/FailedTasksTable.tsx +103 -0
  494. package/src/tables/settings/GroupTable.tsx +240 -0
  495. package/src/tables/settings/ImportSessionTable.tsx +175 -0
  496. package/src/tables/settings/PendingTasksTable.tsx +63 -0
  497. package/src/tables/settings/ProjectCodeTable.tsx +115 -0
  498. package/src/tables/settings/ScheduledTasksTable.tsx +62 -0
  499. package/src/tables/settings/StocktakeReportTable.tsx +111 -0
  500. package/src/tables/settings/TemplateTable.tsx +404 -0
  501. package/src/tables/settings/UserTable.tsx +329 -0
  502. package/src/tables/stock/InstalledItemsTable.tsx +146 -0
  503. package/src/tables/stock/LocationTypesTable.tsx +132 -0
  504. package/src/tables/stock/StockItemTable.tsx +707 -0
  505. package/src/tables/stock/StockItemTestResultTable.tsx +487 -0
  506. package/src/tables/stock/StockLocationTable.tsx +208 -0
  507. package/src/tables/stock/StockTrackingTable.tsx +244 -0
  508. package/src/theme.ts +5 -0
  509. package/src/views/DesktopAppView.tsx +28 -0
  510. package/src/views/MainView.tsx +38 -0
  511. package/src/views/MobileAppView.tsx +43 -0
  512. package/tests/baseFixtures.ts +93 -0
  513. package/tests/defaults.ts +18 -0
  514. package/tests/helpers.ts +122 -0
  515. package/tests/login.ts +97 -0
  516. package/tests/pages/pui_build.spec.ts +373 -0
  517. package/tests/pages/pui_company.spec.ts +40 -0
  518. package/tests/pages/pui_core.spec.ts +26 -0
  519. package/tests/pages/pui_dashboard.spec.ts +64 -0
  520. package/tests/pages/pui_part.spec.ts +413 -0
  521. package/tests/pages/pui_purchase_order.spec.ts +388 -0
  522. package/tests/pages/pui_sales_order.spec.ts +224 -0
  523. package/tests/pages/pui_scan.spec.ts +114 -0
  524. package/tests/pages/pui_stock.spec.ts +259 -0
  525. package/tests/pui_exporting.spec.ts +124 -0
  526. package/tests/pui_forms.spec.ts +131 -0
  527. package/tests/pui_general.spec.ts +60 -0
  528. package/tests/pui_login.spec.ts +74 -0
  529. package/tests/pui_modals.spec.ts +144 -0
  530. package/tests/pui_plugins.spec.ts +216 -0
  531. package/tests/pui_printing.spec.ts +149 -0
  532. package/tests/pui_settings.spec.ts +285 -0
  533. package/tests/pui_tables.spec.ts +65 -0
  534. package/tests/settings/selectionList.spec.ts +103 -0
  535. package/tests/settings.ts +54 -0
  536. package/tsconfig.json +25 -0
  537. package/tsconfig.lib.json +13 -0
  538. package/tsconfig.node.json +11 -0
  539. package/vite-env.d.ts +11 -0
  540. package/vite.config.ts +98 -0
  541. package/vite.lib.config.ts +50 -0
@@ -0,0 +1,1071 @@
1
+ import { t } from '@lingui/core/macro';
2
+ import {
3
+ Alert,
4
+ Center,
5
+ Grid,
6
+ Loader,
7
+ Skeleton,
8
+ Stack,
9
+ Text
10
+ } from '@mantine/core';
11
+ import {
12
+ IconBookmarks,
13
+ IconBuilding,
14
+ IconCalendarStats,
15
+ IconClipboardList,
16
+ IconCurrencyDollar,
17
+ IconInfoCircle,
18
+ IconLayersLinked,
19
+ IconList,
20
+ IconListTree,
21
+ IconLock,
22
+ IconPackages,
23
+ IconShoppingCart,
24
+ IconStack2,
25
+ IconTestPipe,
26
+ IconTools,
27
+ IconTruckDelivery,
28
+ IconTruckReturn,
29
+ IconVersions
30
+ } from '@tabler/icons-react';
31
+ import { useQuery } from '@tanstack/react-query';
32
+ import { type ReactNode, useMemo, useState } from 'react';
33
+ import { useNavigate, useParams } from 'react-router-dom';
34
+ import Select from 'react-select';
35
+
36
+ import { ApiEndpoints } from '@lib/enums/ApiEndpoints';
37
+ import { ModelType } from '@lib/enums/ModelType';
38
+ import { UserRoles } from '@lib/enums/Roles';
39
+ import { apiUrl } from '@lib/functions/Api';
40
+ import type { ApiFormFieldSet } from '@lib/types/Forms';
41
+ import AdminButton from '../../components/buttons/AdminButton';
42
+ import { PrintingActions } from '../../components/buttons/PrintingActions';
43
+ import StarredToggleButton from '../../components/buttons/StarredToggleButton';
44
+ import {
45
+ type DetailsField,
46
+ DetailsTable
47
+ } from '../../components/details/Details';
48
+ import DetailsBadge from '../../components/details/DetailsBadge';
49
+ import { DetailsImage } from '../../components/details/DetailsImage';
50
+ import { ItemDetailsGrid } from '../../components/details/ItemDetails';
51
+ import { Thumbnail } from '../../components/images/Thumbnail';
52
+ import {
53
+ ActionDropdown,
54
+ BarcodeActionDropdown,
55
+ DeleteItemAction,
56
+ DuplicateItemAction,
57
+ EditItemAction,
58
+ OptionsActionDropdown
59
+ } from '../../components/items/ActionDropdown';
60
+ import InstanceDetail from '../../components/nav/InstanceDetail';
61
+ import NavigationTree from '../../components/nav/NavigationTree';
62
+ import { PageDetail } from '../../components/nav/PageDetail';
63
+ import AttachmentPanel from '../../components/panels/AttachmentPanel';
64
+ import NotesPanel from '../../components/panels/NotesPanel';
65
+ import type { PanelType } from '../../components/panels/Panel';
66
+ import { PanelGroup } from '../../components/panels/PanelGroup';
67
+ import { RenderPart } from '../../components/render/Part';
68
+ import OrderPartsWizard from '../../components/wizards/OrderPartsWizard';
69
+ import { useApi } from '../../contexts/ApiContext';
70
+ import { formatPriceRange } from '../../defaults/formatters';
71
+ import { usePartFields } from '../../forms/PartForms';
72
+ import {
73
+ type StockOperationProps,
74
+ useCountStockItem,
75
+ useTransferStockItem
76
+ } from '../../forms/StockForms';
77
+ import { InvenTreeIcon } from '../../functions/icons';
78
+ import { getDetailUrl } from '../../functions/urls';
79
+ import {
80
+ useCreateApiFormModal,
81
+ useDeleteApiFormModal,
82
+ useEditApiFormModal
83
+ } from '../../hooks/UseForm';
84
+ import { useInstance } from '../../hooks/UseInstance';
85
+ import {
86
+ useGlobalSettingsState,
87
+ useUserSettingsState
88
+ } from '../../states/SettingsState';
89
+ import { useUserState } from '../../states/UserState';
90
+ import { BomTable } from '../../tables/bom/BomTable';
91
+ import { UsedInTable } from '../../tables/bom/UsedInTable';
92
+ import { BuildOrderTable } from '../../tables/build/BuildOrderTable';
93
+ import { PartParameterTable } from '../../tables/part/PartParameterTable';
94
+ import PartPurchaseOrdersTable from '../../tables/part/PartPurchaseOrdersTable';
95
+ import PartTestTemplateTable from '../../tables/part/PartTestTemplateTable';
96
+ import { PartVariantTable } from '../../tables/part/PartVariantTable';
97
+ import { RelatedPartTable } from '../../tables/part/RelatedPartTable';
98
+ import { ReturnOrderTable } from '../../tables/sales/ReturnOrderTable';
99
+ import { SalesOrderTable } from '../../tables/sales/SalesOrderTable';
100
+ import { StockItemTable } from '../../tables/stock/StockItemTable';
101
+ import PartAllocationPanel from './PartAllocationPanel';
102
+ import PartPricingPanel from './PartPricingPanel';
103
+ import PartSchedulingDetail from './PartSchedulingDetail';
104
+ import PartStocktakeDetail from './PartStocktakeDetail';
105
+ import PartSupplierDetail from './PartSupplierDetail';
106
+
107
+ /**
108
+ * Detail view for a single Part instance
109
+ */
110
+ export default function PartDetail() {
111
+ const { id } = useParams();
112
+
113
+ const api = useApi();
114
+ const navigate = useNavigate();
115
+ const user = useUserState();
116
+
117
+ const [treeOpen, setTreeOpen] = useState(false);
118
+
119
+ const globalSettings = useGlobalSettingsState();
120
+ const userSettings = useUserSettingsState();
121
+
122
+ const { instance: serials } = useInstance({
123
+ endpoint: ApiEndpoints.part_serial_numbers,
124
+ pk: id,
125
+ hasPrimaryKey: true,
126
+ refetchOnMount: false,
127
+ defaultValue: {}
128
+ });
129
+
130
+ const {
131
+ instance: part,
132
+ refreshInstance,
133
+ instanceQuery,
134
+ requestStatus
135
+ } = useInstance({
136
+ endpoint: ApiEndpoints.part_list,
137
+ pk: id,
138
+ params: {
139
+ path_detail: true
140
+ },
141
+ refetchOnMount: true
142
+ });
143
+
144
+ const detailsPanel = useMemo(() => {
145
+ if (instanceQuery.isFetching) {
146
+ return <Skeleton />;
147
+ }
148
+
149
+ const data = { ...part };
150
+
151
+ data.required =
152
+ (data?.required_for_build_orders ?? 0) +
153
+ (data?.required_for_sales_orders ?? 0);
154
+
155
+ // Provide latest serial number info
156
+ if (!!serials.latest) {
157
+ data.latest_serial_number = serials.latest;
158
+ }
159
+
160
+ // Construct the details tables
161
+ const tl: DetailsField[] = [
162
+ {
163
+ type: 'string',
164
+ name: 'name',
165
+ label: t`Name`,
166
+ icon: 'part',
167
+ copy: true
168
+ },
169
+ {
170
+ type: 'string',
171
+ name: 'IPN',
172
+ label: t`IPN`,
173
+ copy: true,
174
+ hidden: !part.IPN
175
+ },
176
+ {
177
+ type: 'string',
178
+ name: 'description',
179
+ label: t`Description`,
180
+ copy: true
181
+ },
182
+ {
183
+ type: 'link',
184
+ name: 'variant_of',
185
+ label: t`Variant of`,
186
+ model: ModelType.part,
187
+ hidden: !part.variant_of
188
+ },
189
+ {
190
+ type: 'link',
191
+ name: 'revision_of',
192
+ label: t`Revision of`,
193
+ model: ModelType.part,
194
+ hidden: !part.revision_of
195
+ },
196
+ {
197
+ type: 'string',
198
+ name: 'revision',
199
+ label: t`Revision`,
200
+ hidden: !part.revision,
201
+ copy: true
202
+ },
203
+ {
204
+ type: 'link',
205
+ name: 'category',
206
+ label: t`Category`,
207
+ model: ModelType.partcategory
208
+ },
209
+ {
210
+ type: 'link',
211
+ name: 'default_location',
212
+ label: t`Default Location`,
213
+ model: ModelType.stocklocation,
214
+ hidden: !part.default_location
215
+ },
216
+ {
217
+ type: 'link',
218
+ name: 'category_default_location',
219
+ label: t`Category Default Location`,
220
+ model: ModelType.stocklocation,
221
+ hidden: part.default_location || !part.category_default_location
222
+ },
223
+ {
224
+ type: 'string',
225
+ name: 'units',
226
+ label: t`Units`,
227
+ copy: true,
228
+ hidden: !part.units
229
+ },
230
+ {
231
+ type: 'string',
232
+ name: 'keywords',
233
+ label: t`Keywords`,
234
+ copy: true,
235
+ hidden: !part.keywords
236
+ },
237
+ {
238
+ type: 'link',
239
+ name: 'link',
240
+ label: t`Link`,
241
+ external: true,
242
+ copy: true,
243
+ hidden: !part.link
244
+ }
245
+ ];
246
+
247
+ const tr: DetailsField[] = [
248
+ {
249
+ type: 'string',
250
+ name: 'total_in_stock',
251
+ unit: true,
252
+ label: t`In Stock`
253
+ },
254
+ {
255
+ type: 'string',
256
+ name: 'unallocated_stock',
257
+ unit: true,
258
+ label: t`Available Stock`,
259
+ hidden: part.total_in_stock == part.unallocated_stock
260
+ },
261
+ {
262
+ type: 'string',
263
+ name: 'variant_stock',
264
+ unit: true,
265
+ label: t`Variant Stock`,
266
+ hidden: !part.variant_stock,
267
+ icon: 'stock'
268
+ },
269
+ {
270
+ type: 'string',
271
+ name: 'minimum_stock',
272
+ unit: true,
273
+ label: t`Minimum Stock`,
274
+ hidden: part.minimum_stock <= 0
275
+ },
276
+ {
277
+ type: 'string',
278
+ name: 'ordering',
279
+ label: t`On order`,
280
+ unit: true,
281
+ hidden: !part.purchaseable || part.ordering <= 0
282
+ },
283
+ {
284
+ type: 'string',
285
+ name: 'required',
286
+ label: t`Required for Orders`,
287
+ hidden: part.required <= 0,
288
+ icon: 'tick_off'
289
+ },
290
+ {
291
+ type: 'progressbar',
292
+ name: 'allocated_to_build_orders',
293
+ total: part.required_for_build_orders,
294
+ progress: part.allocated_to_build_orders,
295
+ label: t`Allocated to Build Orders`,
296
+ hidden:
297
+ !part.component ||
298
+ (part.required_for_build_orders <= 0 &&
299
+ part.allocated_to_build_orders <= 0)
300
+ },
301
+ {
302
+ type: 'progressbar',
303
+ name: 'allocated_to_sales_orders',
304
+ total: part.required_for_sales_orders,
305
+ progress: part.allocated_to_sales_orders,
306
+ label: t`Allocated to Sales Orders`,
307
+ hidden:
308
+ !part.salable ||
309
+ (part.required_for_sales_orders <= 0 &&
310
+ part.allocated_to_sales_orders <= 0)
311
+ },
312
+ {
313
+ type: 'string',
314
+ name: 'can_build',
315
+ unit: true,
316
+ label: t`Can Build`,
317
+ hidden: true // TODO: Expose "can_build" to the API
318
+ },
319
+ {
320
+ type: 'string',
321
+ name: 'building',
322
+ unit: true,
323
+ label: t`In Production`,
324
+ hidden: !part.assembly || !part.building
325
+ }
326
+ ];
327
+
328
+ const bl: DetailsField[] = [
329
+ {
330
+ type: 'boolean',
331
+ name: 'active',
332
+ label: t`Active`
333
+ },
334
+ {
335
+ type: 'boolean',
336
+ name: 'locked',
337
+ label: t`Locked`
338
+ },
339
+ {
340
+ type: 'boolean',
341
+ icon: 'template',
342
+ name: 'is_template',
343
+ label: t`Template Part`
344
+ },
345
+ {
346
+ type: 'boolean',
347
+ name: 'assembly',
348
+ label: t`Assembled Part`
349
+ },
350
+ {
351
+ type: 'boolean',
352
+ name: 'component',
353
+ label: t`Component Part`
354
+ },
355
+ {
356
+ type: 'boolean',
357
+ name: 'testable',
358
+ label: t`Testable Part`,
359
+ icon: 'test'
360
+ },
361
+ {
362
+ type: 'boolean',
363
+ name: 'trackable',
364
+ label: t`Trackable Part`
365
+ },
366
+ {
367
+ type: 'boolean',
368
+ name: 'purchaseable',
369
+ label: t`Purchaseable Part`
370
+ },
371
+ {
372
+ type: 'boolean',
373
+ name: 'salable',
374
+ icon: 'saleable',
375
+ label: t`Saleable Part`
376
+ },
377
+ {
378
+ type: 'boolean',
379
+ name: 'virtual',
380
+ label: t`Virtual Part`
381
+ },
382
+ {
383
+ type: 'boolean',
384
+ name: 'starred',
385
+ label: t`Subscribed`,
386
+ icon: 'bell'
387
+ }
388
+ ];
389
+
390
+ const br: DetailsField[] = [
391
+ {
392
+ type: 'string',
393
+ name: 'creation_date',
394
+ label: t`Creation Date`
395
+ },
396
+ {
397
+ type: 'string',
398
+ name: 'creation_user',
399
+ label: t`Created By`,
400
+ badge: 'user',
401
+ icon: 'user',
402
+ hidden: !part.creation_user
403
+ },
404
+ {
405
+ type: 'string',
406
+ name: 'responsible',
407
+ label: t`Responsible`,
408
+ badge: 'owner',
409
+ hidden: !part.responsible
410
+ },
411
+ {
412
+ type: 'link',
413
+ name: 'default_supplier',
414
+ label: t`Default Supplier`,
415
+ model: ModelType.supplierpart,
416
+ hidden: !part.default_supplier
417
+ }
418
+ ];
419
+
420
+ // Add in price range data
421
+ if (part.pricing_min || part.pricing_max) {
422
+ br.push({
423
+ type: 'string',
424
+ name: 'pricing',
425
+ label: t`Price Range`,
426
+ value_formatter: () => {
427
+ return formatPriceRange(part.pricing_min, part.pricing_max);
428
+ }
429
+ });
430
+ }
431
+
432
+ br.push({
433
+ type: 'string',
434
+ name: 'latest_serial_number',
435
+ label: t`Latest Serial Number`,
436
+ hidden: !part.trackable || !data.latest_serial_number,
437
+ icon: 'serial'
438
+ });
439
+
440
+ return part ? (
441
+ <ItemDetailsGrid>
442
+ <Grid grow>
443
+ <DetailsImage
444
+ appRole={UserRoles.part}
445
+ imageActions={{
446
+ selectExisting: true,
447
+ downloadImage: true,
448
+ uploadFile: true,
449
+ deleteFile: true
450
+ }}
451
+ src={part.image}
452
+ apiPath={apiUrl(ApiEndpoints.part_list, part.pk)}
453
+ refresh={refreshInstance}
454
+ pk={part.pk}
455
+ />
456
+ <Grid.Col span={{ base: 12, sm: 8 }}>
457
+ <DetailsTable fields={tl} item={data} />
458
+ </Grid.Col>
459
+ </Grid>
460
+ <DetailsTable fields={tr} item={data} />
461
+ <DetailsTable fields={bl} item={data} />
462
+ <DetailsTable fields={br} item={data} />
463
+ </ItemDetailsGrid>
464
+ ) : (
465
+ <Skeleton />
466
+ );
467
+ }, [
468
+ globalSettings,
469
+ part,
470
+ id,
471
+ serials,
472
+ instanceQuery.isFetching,
473
+ instanceQuery.data
474
+ ]);
475
+
476
+ // Part data panels (recalculate when part data changes)
477
+ const partPanels: PanelType[] = useMemo(() => {
478
+ return [
479
+ {
480
+ name: 'details',
481
+ label: t`Part Details`,
482
+ icon: <IconInfoCircle />,
483
+ content: detailsPanel
484
+ },
485
+ {
486
+ name: 'parameters',
487
+ label: t`Parameters`,
488
+ icon: <IconList />,
489
+ content: (
490
+ <PartParameterTable
491
+ partId={id ?? -1}
492
+ partLocked={part?.locked == true}
493
+ />
494
+ )
495
+ },
496
+ {
497
+ name: 'stock',
498
+ label: t`Stock`,
499
+ icon: <IconPackages />,
500
+ content: part.pk ? (
501
+ <StockItemTable
502
+ tableName='part-stock'
503
+ allowAdd
504
+ params={{
505
+ part: part.pk
506
+ }}
507
+ />
508
+ ) : (
509
+ <Center>
510
+ <Loader />
511
+ </Center>
512
+ )
513
+ },
514
+ {
515
+ name: 'variants',
516
+ label: t`Variants`,
517
+ icon: <IconVersions />,
518
+ hidden: !part.is_template,
519
+ content: <PartVariantTable part={part} />
520
+ },
521
+ {
522
+ name: 'allocations',
523
+ label: t`Allocations`,
524
+ icon: <IconBookmarks />,
525
+ hidden: !part.component && !part.salable,
526
+ content: part.pk ? <PartAllocationPanel part={part} /> : <Skeleton />
527
+ },
528
+ {
529
+ name: 'bom',
530
+ label: t`Bill of Materials`,
531
+ icon: <IconListTree />,
532
+ hidden: !part.assembly,
533
+ content: part?.pk ? (
534
+ <BomTable partId={part.pk ?? -1} partLocked={part?.locked == true} />
535
+ ) : (
536
+ <Skeleton />
537
+ )
538
+ },
539
+ {
540
+ name: 'builds',
541
+ label: t`Build Orders`,
542
+ icon: <IconTools />,
543
+ hidden: !part.assembly || !user.hasViewRole(UserRoles.build),
544
+ content: part.pk ? <BuildOrderTable partId={part.pk} /> : <Skeleton />
545
+ },
546
+ {
547
+ name: 'used_in',
548
+ label: t`Used In`,
549
+ icon: <IconStack2 />,
550
+ hidden: !part.component,
551
+ content: <UsedInTable partId={part.pk ?? -1} />
552
+ },
553
+ {
554
+ name: 'pricing',
555
+ label: t`Part Pricing`,
556
+ icon: <IconCurrencyDollar />,
557
+ content: part ? <PartPricingPanel part={part} /> : <Skeleton />
558
+ },
559
+ {
560
+ name: 'suppliers',
561
+ label: t`Suppliers`,
562
+ icon: <IconBuilding />,
563
+ hidden:
564
+ !part.purchaseable || !user.hasViewRole(UserRoles.purchase_order),
565
+
566
+ content: part.pk ? (
567
+ <PartSupplierDetail partId={part.pk} />
568
+ ) : (
569
+ <Skeleton />
570
+ )
571
+ },
572
+ {
573
+ name: 'purchase_orders',
574
+ label: t`Purchase Orders`,
575
+ icon: <IconShoppingCart />,
576
+ hidden:
577
+ !part.purchaseable || !user.hasViewRole(UserRoles.purchase_order),
578
+ content: part.pk ? (
579
+ <PartPurchaseOrdersTable partId={part.pk} />
580
+ ) : (
581
+ <Skeleton />
582
+ )
583
+ },
584
+ {
585
+ name: 'sales_orders',
586
+ label: t`Sales Orders`,
587
+ icon: <IconTruckDelivery />,
588
+ hidden: !part.salable || !user.hasViewRole(UserRoles.sales_order),
589
+ content: part.pk ? <SalesOrderTable partId={part.pk} /> : <Skeleton />
590
+ },
591
+ {
592
+ name: 'return_orders',
593
+ label: t`Return Orders`,
594
+ icon: <IconTruckReturn />,
595
+ hidden:
596
+ !part.salable ||
597
+ !user.hasViewRole(UserRoles.return_order) ||
598
+ !globalSettings.isSet('RETURNORDER_ENABLED'),
599
+ content: part.pk ? <ReturnOrderTable partId={part.pk} /> : <Skeleton />
600
+ },
601
+ {
602
+ name: 'stocktake',
603
+ label: t`Stock History`,
604
+ icon: <IconClipboardList />,
605
+ content: part ? <PartStocktakeDetail partId={part.pk} /> : <Skeleton />,
606
+ hidden:
607
+ !user.hasViewRole(UserRoles.stocktake) ||
608
+ !globalSettings.isSet('STOCKTAKE_ENABLE') ||
609
+ !userSettings.isSet('DISPLAY_STOCKTAKE_TAB')
610
+ },
611
+ {
612
+ name: 'scheduling',
613
+ label: t`Scheduling`,
614
+ icon: <IconCalendarStats />,
615
+ content: part ? <PartSchedulingDetail part={part} /> : <Skeleton />,
616
+ hidden: !userSettings.isSet('DISPLAY_SCHEDULE_TAB')
617
+ },
618
+ {
619
+ name: 'test_templates',
620
+ label: t`Test Templates`,
621
+ icon: <IconTestPipe />,
622
+ hidden: !part.testable,
623
+ content: part?.pk ? (
624
+ <PartTestTemplateTable partId={part?.pk} partLocked={part.locked} />
625
+ ) : (
626
+ <Skeleton />
627
+ )
628
+ },
629
+ {
630
+ name: 'related_parts',
631
+ label: t`Related Parts`,
632
+ icon: <IconLayersLinked />,
633
+ content: <RelatedPartTable partId={part.pk ?? -1} />
634
+ },
635
+ AttachmentPanel({
636
+ model_type: ModelType.part,
637
+ model_id: part?.pk
638
+ }),
639
+ NotesPanel({
640
+ model_type: ModelType.part,
641
+ model_id: part?.pk
642
+ })
643
+ ];
644
+ }, [id, part, user, globalSettings, userSettings, detailsPanel]);
645
+
646
+ // Fetch information on part revision
647
+ const partRevisionQuery = useQuery({
648
+ refetchOnMount: true,
649
+ queryKey: [
650
+ 'part_revisions',
651
+ part.pk,
652
+ part.revision_of,
653
+ part.revision_count
654
+ ],
655
+ queryFn: async () => {
656
+ if (!part.revision_of && !part.revision_count) {
657
+ return [];
658
+ }
659
+
660
+ const revisions = [];
661
+
662
+ // First, fetch information for the top-level part
663
+ if (part.revision_of) {
664
+ await api
665
+ .get(apiUrl(ApiEndpoints.part_list, part.revision_of))
666
+ .then((response) => {
667
+ revisions.push(response.data);
668
+ });
669
+ } else {
670
+ revisions.push(part);
671
+ }
672
+
673
+ const url = apiUrl(ApiEndpoints.part_list);
674
+
675
+ await api
676
+ .get(url, {
677
+ params: {
678
+ revision_of: part.revision_of || part.pk
679
+ }
680
+ })
681
+ .then((response) => {
682
+ switch (response.status) {
683
+ case 200:
684
+ response.data.forEach((r: any) => {
685
+ revisions.push(r);
686
+ });
687
+ break;
688
+ default:
689
+ break;
690
+ }
691
+ })
692
+ .catch(() => {});
693
+
694
+ return revisions;
695
+ }
696
+ });
697
+
698
+ const partRevisionOptions: any[] = useMemo(() => {
699
+ if (partRevisionQuery.isFetching || !partRevisionQuery.data) {
700
+ return [];
701
+ }
702
+
703
+ if (!part.revision_of && !part.revision_count) {
704
+ return [];
705
+ }
706
+
707
+ const options: any[] = partRevisionQuery.data.map((revision: any) => {
708
+ return {
709
+ value: revision.pk,
710
+ label: revision.full_name,
711
+ part: revision
712
+ };
713
+ });
714
+
715
+ // Add this part if not already available
716
+ if (!options.find((o) => o.value == part.pk)) {
717
+ options.push({
718
+ value: part.pk,
719
+ label: part.full_name,
720
+ part: part
721
+ });
722
+ }
723
+
724
+ return options.sort((a, b) => {
725
+ return `${a.part.revision}`.localeCompare(b.part.revision);
726
+ });
727
+ }, [part, partRevisionQuery.isFetching, partRevisionQuery.data]);
728
+
729
+ const breadcrumbs = useMemo(() => {
730
+ return [
731
+ { name: t`Parts`, url: '/part' },
732
+ ...(part.category_path ?? []).map((c: any) => ({
733
+ name: c.name,
734
+ url: getDetailUrl(ModelType.partcategory, c.pk)
735
+ }))
736
+ ];
737
+ }, [part]);
738
+
739
+ const badges: ReactNode[] = useMemo(() => {
740
+ if (instanceQuery.isFetching) {
741
+ return [];
742
+ }
743
+
744
+ const required =
745
+ part.required_for_build_orders + part.required_for_sales_orders;
746
+
747
+ return [
748
+ <DetailsBadge
749
+ label={`${t`In Stock`}: ${part.total_in_stock}`}
750
+ color={part.total_in_stock >= part.minimum_stock ? 'green' : 'orange'}
751
+ visible={part.total_in_stock > 0}
752
+ key='in_stock'
753
+ />,
754
+ <DetailsBadge
755
+ label={`${t`Available`}: ${part.unallocated_stock}`}
756
+ color='yellow'
757
+ key='available_stock'
758
+ visible={part.unallocated_stock != part.total_in_stock}
759
+ />,
760
+ <DetailsBadge
761
+ label={t`No Stock`}
762
+ color='orange'
763
+ visible={part.total_in_stock == 0}
764
+ key='no_stock'
765
+ />,
766
+ <DetailsBadge
767
+ label={`${t`Required`}: ${required}`}
768
+ color='grape'
769
+ visible={required > 0}
770
+ key='required'
771
+ />,
772
+ <DetailsBadge
773
+ label={`${t`On Order`}: ${part.ordering}`}
774
+ color='blue'
775
+ visible={part.ordering > 0}
776
+ key='on_order'
777
+ />,
778
+ <DetailsBadge
779
+ label={`${t`In Production`}: ${part.building}`}
780
+ color='blue'
781
+ visible={part.building > 0}
782
+ key='in_production'
783
+ />,
784
+ <DetailsBadge
785
+ label={t`Inactive`}
786
+ color='red'
787
+ visible={!part.active}
788
+ key='inactive'
789
+ />
790
+ ];
791
+ }, [part, instanceQuery.isFetching]);
792
+
793
+ const partFields = usePartFields({ create: false });
794
+
795
+ const editPart = useEditApiFormModal({
796
+ url: ApiEndpoints.part_list,
797
+ pk: part.pk,
798
+ title: t`Edit Part`,
799
+ fields: partFields,
800
+ onFormSuccess: refreshInstance
801
+ });
802
+
803
+ const createPartFields = usePartFields({ create: true });
804
+
805
+ const duplicatePartFields: ApiFormFieldSet = useMemo(() => {
806
+ return {
807
+ ...createPartFields,
808
+ duplicate: {
809
+ children: {
810
+ part: {
811
+ value: part.pk,
812
+ hidden: true
813
+ },
814
+ copy_image: {
815
+ value: true
816
+ },
817
+ copy_bom: {
818
+ value: globalSettings.isSet('PART_COPY_BOM')
819
+ },
820
+ copy_notes: {
821
+ value: true
822
+ },
823
+ copy_parameters: {
824
+ value: globalSettings.isSet('PART_COPY_PARAMETERS')
825
+ }
826
+ }
827
+ }
828
+ };
829
+ }, [createPartFields, globalSettings, part]);
830
+
831
+ const duplicatePart = useCreateApiFormModal({
832
+ url: ApiEndpoints.part_list,
833
+ title: t`Add Part`,
834
+ fields: duplicatePartFields,
835
+ initialData: {
836
+ ...part,
837
+ active: true,
838
+ locked: false
839
+ },
840
+ follow: true,
841
+ modelType: ModelType.part
842
+ });
843
+
844
+ const deletePart = useDeleteApiFormModal({
845
+ url: ApiEndpoints.part_list,
846
+ pk: part.pk,
847
+ title: t`Delete Part`,
848
+ onFormSuccess: () => {
849
+ if (part.category) {
850
+ navigate(getDetailUrl(ModelType.partcategory, part.category));
851
+ } else {
852
+ navigate('/part/');
853
+ }
854
+ },
855
+ preFormContent: (
856
+ <Alert color='red' title={t`Deleting this part cannot be reversed`}>
857
+ <Stack gap='xs'>
858
+ <Thumbnail src={part.thumbnail ?? part.image} text={part.full_name} />
859
+ </Stack>
860
+ </Alert>
861
+ )
862
+ });
863
+
864
+ const stockActionProps: StockOperationProps = useMemo(() => {
865
+ return {
866
+ pk: part.pk,
867
+ model: ModelType.part,
868
+ refresh: refreshInstance,
869
+ filters: {
870
+ in_stock: true
871
+ }
872
+ };
873
+ }, [part]);
874
+
875
+ const countStockItems = useCountStockItem(stockActionProps);
876
+ const transferStockItems = useTransferStockItem(stockActionProps);
877
+
878
+ const orderPartsWizard = OrderPartsWizard({
879
+ parts: [part]
880
+ });
881
+
882
+ const partActions = useMemo(() => {
883
+ return [
884
+ <AdminButton model={ModelType.part} id={part.pk} />,
885
+ <StarredToggleButton
886
+ key='starred_change'
887
+ instance={part}
888
+ model={ModelType.part}
889
+ successFunction={() => {
890
+ refreshInstance();
891
+ }}
892
+ />,
893
+ <BarcodeActionDropdown
894
+ model={ModelType.part}
895
+ pk={part.pk}
896
+ hash={part?.barcode_hash}
897
+ perm={user.hasChangeRole(UserRoles.part)}
898
+ key='action_dropdown'
899
+ />,
900
+ <PrintingActions
901
+ modelType={ModelType.part}
902
+ items={[part.pk]}
903
+ enableReports
904
+ enableLabels
905
+ />,
906
+ <ActionDropdown
907
+ tooltip={t`Stock Actions`}
908
+ icon={<IconPackages />}
909
+ actions={[
910
+ {
911
+ icon: (
912
+ <InvenTreeIcon icon='stocktake' iconProps={{ color: 'blue' }} />
913
+ ),
914
+ name: t`Count Stock`,
915
+ tooltip: t`Count part stock`,
916
+ hidden: !user.hasChangeRole(UserRoles.stock),
917
+ onClick: () => {
918
+ part.pk && countStockItems.open();
919
+ }
920
+ },
921
+ {
922
+ icon: (
923
+ <InvenTreeIcon icon='transfer' iconProps={{ color: 'blue' }} />
924
+ ),
925
+ name: t`Transfer Stock`,
926
+ tooltip: t`Transfer part stock`,
927
+ hidden: !user.hasChangeRole(UserRoles.stock),
928
+ onClick: () => {
929
+ part.pk && transferStockItems.open();
930
+ }
931
+ },
932
+ {
933
+ name: t`Order`,
934
+ tooltip: t`Order Stock`,
935
+ hidden:
936
+ !user.hasAddRole(UserRoles.purchase_order) ||
937
+ !part?.active ||
938
+ !part?.purchaseable,
939
+ icon: <IconShoppingCart color='blue' />,
940
+ onClick: () => {
941
+ orderPartsWizard.openWizard();
942
+ }
943
+ }
944
+ ]}
945
+ />,
946
+ <OptionsActionDropdown
947
+ tooltip={t`Part Actions`}
948
+ actions={[
949
+ DuplicateItemAction({
950
+ hidden: !user.hasAddRole(UserRoles.part),
951
+ onClick: () => duplicatePart.open()
952
+ }),
953
+ EditItemAction({
954
+ hidden: !user.hasChangeRole(UserRoles.part),
955
+ onClick: () => editPart.open()
956
+ }),
957
+ DeleteItemAction({
958
+ hidden: !user.hasDeleteRole(UserRoles.part),
959
+ disabled: part.active,
960
+ onClick: () => deletePart.open()
961
+ })
962
+ ]}
963
+ />
964
+ ];
965
+ }, [id, part, user]);
966
+
967
+ const enableRevisionSelection: boolean = useMemo(() => {
968
+ return (
969
+ partRevisionOptions.length > 0 &&
970
+ globalSettings.isSet('PART_ENABLE_REVISION')
971
+ );
972
+ }, [partRevisionOptions, globalSettings]);
973
+
974
+ return (
975
+ <>
976
+ {duplicatePart.modal}
977
+ {editPart.modal}
978
+ {deletePart.modal}
979
+ {orderPartsWizard.wizard}
980
+ <InstanceDetail
981
+ status={requestStatus}
982
+ loading={instanceQuery.isFetching}
983
+ requiredRole={UserRoles.part}
984
+ >
985
+ <Stack gap='xs'>
986
+ {user.hasViewRole(UserRoles.part_category) && (
987
+ <NavigationTree
988
+ title={t`Part Categories`}
989
+ modelType={ModelType.partcategory}
990
+ endpoint={ApiEndpoints.category_tree}
991
+ opened={treeOpen}
992
+ onClose={() => {
993
+ setTreeOpen(false);
994
+ }}
995
+ selectedId={part?.category}
996
+ />
997
+ )}
998
+ <PageDetail
999
+ title={`${t`Part`}: ${part.full_name}`}
1000
+ icon={
1001
+ part?.locked ? (
1002
+ <IconLock aria-label='part-lock-icon' />
1003
+ ) : undefined
1004
+ }
1005
+ subtitle={part.description}
1006
+ imageUrl={part.image}
1007
+ badges={badges}
1008
+ breadcrumbs={
1009
+ user.hasViewRole(UserRoles.part_category)
1010
+ ? breadcrumbs
1011
+ : undefined
1012
+ }
1013
+ lastCrumb={[
1014
+ {
1015
+ name: part.name,
1016
+ url: `/part/${part.pk}/`
1017
+ }
1018
+ ]}
1019
+ breadcrumbAction={() => {
1020
+ setTreeOpen(true);
1021
+ }}
1022
+ editAction={editPart.open}
1023
+ editEnabled={user.hasChangeRole(UserRoles.part)}
1024
+ actions={partActions}
1025
+ detail={
1026
+ enableRevisionSelection ? (
1027
+ <Stack gap='xs'>
1028
+ <Text>{t`Select Part Revision`}</Text>
1029
+ <Select
1030
+ id='part-revision-select'
1031
+ aria-label='part-revision-select'
1032
+ options={partRevisionOptions}
1033
+ value={{
1034
+ value: part.pk,
1035
+ label: part.full_name,
1036
+ part: part
1037
+ }}
1038
+ isSearchable={false}
1039
+ formatOptionLabel={(option: any) =>
1040
+ RenderPart({
1041
+ instance: option.part,
1042
+ showSecondary: false
1043
+ })
1044
+ }
1045
+ onChange={(value: any) => {
1046
+ navigate(getDetailUrl(ModelType.part, value.value));
1047
+ }}
1048
+ styles={{
1049
+ menuPortal: (base: any) => ({ ...base, zIndex: 9999 }),
1050
+ menu: (base: any) => ({ ...base, zIndex: 9999 }),
1051
+ menuList: (base: any) => ({ ...base, zIndex: 9999 })
1052
+ }}
1053
+ />
1054
+ </Stack>
1055
+ ) : null
1056
+ }
1057
+ />
1058
+ <PanelGroup
1059
+ pageKey='part'
1060
+ panels={partPanels}
1061
+ instance={part}
1062
+ model={ModelType.part}
1063
+ id={part.pk}
1064
+ />
1065
+ {transferStockItems.modal}
1066
+ {countStockItems.modal}
1067
+ </Stack>
1068
+ </InstanceDetail>
1069
+ </>
1070
+ );
1071
+ }