@rebasepro/studio 0.0.1-canary.09e5ec5

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 (361) hide show
  1. package/LICENSE +114 -0
  2. package/README.md +159 -0
  3. package/dist/ApiExplorer-gMJt5JrS.js +1053 -0
  4. package/dist/ApiExplorer-gMJt5JrS.js.map +1 -0
  5. package/dist/AuthSimulationSelector-BF4rkRGp.js +118 -0
  6. package/dist/AuthSimulationSelector-BF4rkRGp.js.map +1 -0
  7. package/dist/BranchesView-DcHZtvXo.js +292 -0
  8. package/dist/BranchesView-DcHZtvXo.js.map +1 -0
  9. package/dist/CronJobsView-CijCToeK.js +456 -0
  10. package/dist/CronJobsView-CijCToeK.js.map +1 -0
  11. package/dist/JSEditor-D8nVp3Lp.js +1308 -0
  12. package/dist/JSEditor-D8nVp3Lp.js.map +1 -0
  13. package/dist/MonacoEditor-CMYEjiRf.js +161 -0
  14. package/dist/MonacoEditor-CMYEjiRf.js.map +1 -0
  15. package/dist/RLSEditor-DBH09u9v.js +1831 -0
  16. package/dist/RLSEditor-DBH09u9v.js.map +1 -0
  17. package/dist/SQLEditor-CkVx9vgr.js +1792 -0
  18. package/dist/SQLEditor-CkVx9vgr.js.map +1 -0
  19. package/dist/SchemaVisualizer-BgD5Zb77.js +1069 -0
  20. package/dist/SchemaVisualizer-BgD5Zb77.js.map +1 -0
  21. package/dist/StorageView-CTqGFhY9.js +907 -0
  22. package/dist/StorageView-CTqGFhY9.js.map +1 -0
  23. package/dist/common/src/collections/CollectionRegistry.d.ts +56 -0
  24. package/dist/common/src/collections/index.d.ts +1 -0
  25. package/dist/common/src/data/buildRebaseData.d.ts +14 -0
  26. package/dist/common/src/index.d.ts +3 -0
  27. package/dist/common/src/util/builders.d.ts +57 -0
  28. package/dist/common/src/util/callbacks.d.ts +6 -0
  29. package/dist/common/src/util/collections.d.ts +11 -0
  30. package/dist/common/src/util/common.d.ts +2 -0
  31. package/dist/common/src/util/conditions.d.ts +26 -0
  32. package/dist/common/src/util/entities.d.ts +58 -0
  33. package/dist/common/src/util/enums.d.ts +3 -0
  34. package/dist/common/src/util/index.d.ts +16 -0
  35. package/dist/common/src/util/navigation_from_path.d.ts +34 -0
  36. package/dist/common/src/util/navigation_utils.d.ts +20 -0
  37. package/dist/common/src/util/parent_references_from_path.d.ts +6 -0
  38. package/dist/common/src/util/paths.d.ts +14 -0
  39. package/dist/common/src/util/permissions.d.ts +5 -0
  40. package/dist/common/src/util/references.d.ts +2 -0
  41. package/dist/common/src/util/relations.d.ts +22 -0
  42. package/dist/common/src/util/resolutions.d.ts +72 -0
  43. package/dist/common/src/util/storage.d.ts +24 -0
  44. package/dist/core/src/components/AIIcon.d.ts +16 -0
  45. package/dist/core/src/components/ConfirmationDialog.d.ts +9 -0
  46. package/dist/core/src/components/Debug/UIReferenceView.d.ts +1 -0
  47. package/dist/core/src/components/Debug/UIStyleGuide.d.ts +1 -0
  48. package/dist/core/src/components/ErrorTooltip.d.ts +2 -0
  49. package/dist/core/src/components/ErrorView.d.ts +21 -0
  50. package/dist/core/src/components/LanguageToggle.d.ts +1 -0
  51. package/dist/core/src/components/LoginView/LoginView.d.ts +68 -0
  52. package/dist/core/src/components/LoginView/index.d.ts +2 -0
  53. package/dist/core/src/components/NotFoundPage.d.ts +1 -0
  54. package/dist/core/src/components/RebaseAuth.d.ts +10 -0
  55. package/dist/core/src/components/RebaseLogo.d.ts +7 -0
  56. package/dist/core/src/components/UnsavedChangesDialog.d.ts +9 -0
  57. package/dist/core/src/components/UserDisplay.d.ts +7 -0
  58. package/dist/core/src/components/UserSelectPopover.d.ts +62 -0
  59. package/dist/core/src/components/UserSettingsView.d.ts +1 -0
  60. package/dist/core/src/components/common/index.d.ts +6 -0
  61. package/dist/core/src/components/common/table_height.d.ts +5 -0
  62. package/dist/core/src/components/common/types.d.ts +63 -0
  63. package/dist/core/src/components/common/useColumnsIds.d.ts +9 -0
  64. package/dist/core/src/components/common/useDataTableController.d.ts +45 -0
  65. package/dist/core/src/components/common/useDebouncedData.d.ts +9 -0
  66. package/dist/core/src/components/common/useScrollRestoration.d.ts +14 -0
  67. package/dist/core/src/components/index.d.ts +16 -0
  68. package/dist/core/src/contexts/AdminModeController.d.ts +4 -0
  69. package/dist/core/src/contexts/AnalyticsContext.d.ts +3 -0
  70. package/dist/core/src/contexts/AuthControllerContext.d.ts +3 -0
  71. package/dist/core/src/contexts/CustomizationControllerContext.d.ts +3 -0
  72. package/dist/core/src/contexts/DataDriverContext.d.ts +3 -0
  73. package/dist/core/src/contexts/DatabaseAdminContext.d.ts +3 -0
  74. package/dist/core/src/contexts/DialogsProvider.d.ts +4 -0
  75. package/dist/core/src/contexts/EffectiveRoleController.d.ts +4 -0
  76. package/dist/core/src/contexts/InternalUserManagementContext.d.ts +3 -0
  77. package/dist/core/src/contexts/ModeController.d.ts +4 -0
  78. package/dist/core/src/contexts/RebaseClientInstanceContext.d.ts +6 -0
  79. package/dist/core/src/contexts/RebaseDataContext.d.ts +3 -0
  80. package/dist/core/src/contexts/SnackbarProvider.d.ts +2 -0
  81. package/dist/core/src/contexts/StorageSourceContext.d.ts +3 -0
  82. package/dist/core/src/contexts/UserConfigurationPersistenceContext.d.ts +3 -0
  83. package/dist/core/src/contexts/index.d.ts +13 -0
  84. package/dist/core/src/core/PluginLifecycleManager.d.ts +17 -0
  85. package/dist/core/src/core/PluginProviderStack.d.ts +21 -0
  86. package/dist/core/src/core/Rebase.d.ts +14 -0
  87. package/dist/core/src/core/RebaseProps.d.ts +136 -0
  88. package/dist/core/src/core/RebaseRouter.d.ts +4 -0
  89. package/dist/core/src/core/RebaseRoutes.d.ts +17 -0
  90. package/dist/core/src/core/index.d.ts +4 -0
  91. package/dist/core/src/hooks/ApiConfigContext.d.ts +24 -0
  92. package/dist/core/src/hooks/data/delete.d.ts +31 -0
  93. package/dist/core/src/hooks/data/save.d.ts +34 -0
  94. package/dist/core/src/hooks/data/useCollectionFetch.d.ts +51 -0
  95. package/dist/core/src/hooks/data/useData.d.ts +13 -0
  96. package/dist/core/src/hooks/data/useDataOrder.d.ts +12 -0
  97. package/dist/core/src/hooks/data/useEntityFetch.d.ts +38 -0
  98. package/dist/core/src/hooks/data/useRelationSelector.d.ts +52 -0
  99. package/dist/core/src/hooks/data/useUserSelector.d.ts +31 -0
  100. package/dist/core/src/hooks/index.d.ts +37 -0
  101. package/dist/core/src/hooks/useAdminModeController.d.ts +19 -0
  102. package/dist/core/src/hooks/useAnalyticsController.d.ts +5 -0
  103. package/dist/core/src/hooks/useAuthController.d.ts +11 -0
  104. package/dist/core/src/hooks/useAuthSubscription.d.ts +2 -0
  105. package/dist/core/src/hooks/useBackendStorageSource.d.ts +30 -0
  106. package/dist/core/src/hooks/useBridgeRegistration.d.ts +18 -0
  107. package/dist/core/src/hooks/useBrowserTitleAndIcon.d.ts +6 -0
  108. package/dist/core/src/hooks/useBuildAdminModeController.d.ts +6 -0
  109. package/dist/core/src/hooks/useBuildEffectiveRoleController.d.ts +8 -0
  110. package/dist/core/src/hooks/useBuildLocalConfigurationPersistence.d.ts +2 -0
  111. package/dist/core/src/hooks/useBuildModeController.d.ts +6 -0
  112. package/dist/core/src/hooks/useClipboard.d.ts +57 -0
  113. package/dist/core/src/hooks/useCollapsedGroups.d.ts +12 -0
  114. package/dist/core/src/hooks/useCustomizationController.d.ts +11 -0
  115. package/dist/core/src/hooks/useDialogsController.d.ts +11 -0
  116. package/dist/core/src/hooks/useEffectiveRoleController.d.ts +7 -0
  117. package/dist/core/src/hooks/useInternalUserManagementController.d.ts +12 -0
  118. package/dist/core/src/hooks/useLargeLayout.d.ts +1 -0
  119. package/dist/core/src/hooks/useModeController.d.ts +19 -0
  120. package/dist/core/src/hooks/usePermissions.d.ts +12 -0
  121. package/dist/core/src/hooks/useRebaseClient.d.ts +5 -0
  122. package/dist/core/src/hooks/useRebaseContext.d.ts +11 -0
  123. package/dist/core/src/hooks/useRebaseRegistry.d.ts +34 -0
  124. package/dist/core/src/hooks/useSlot.d.ts +18 -0
  125. package/dist/core/src/hooks/useSnackbarController.d.ts +20 -0
  126. package/dist/core/src/hooks/useStorageSource.d.ts +7 -0
  127. package/dist/core/src/hooks/useStudioBridge.d.ts +91 -0
  128. package/dist/core/src/hooks/useTranslation.d.ts +17 -0
  129. package/dist/core/src/hooks/useUnsavedChangesDialog.d.ts +12 -0
  130. package/dist/core/src/hooks/useUserConfigurationPersistence.d.ts +8 -0
  131. package/dist/core/src/hooks/useValidateAuthenticator.d.ts +21 -0
  132. package/dist/core/src/i18n/RebaseI18nProvider.d.ts +33 -0
  133. package/dist/core/src/index.d.ts +15 -0
  134. package/dist/core/src/internal/common.d.ts +3 -0
  135. package/dist/core/src/internal/useRestoreScroll.d.ts +6 -0
  136. package/dist/core/src/locales/de.d.ts +2 -0
  137. package/dist/core/src/locales/en.d.ts +10 -0
  138. package/dist/core/src/locales/es.d.ts +10 -0
  139. package/dist/core/src/locales/fr.d.ts +2 -0
  140. package/dist/core/src/locales/hi.d.ts +2 -0
  141. package/dist/core/src/locales/it.d.ts +2 -0
  142. package/dist/core/src/locales/pt.d.ts +7 -0
  143. package/dist/core/src/util/constants.d.ts +1 -0
  144. package/dist/core/src/util/createFormexStub.d.ts +2 -0
  145. package/dist/core/src/util/entity_cache.d.ts +27 -0
  146. package/dist/core/src/util/enums.d.ts +5 -0
  147. package/dist/core/src/util/icon_list.d.ts +5 -0
  148. package/dist/core/src/util/icon_synonyms.d.ts +1 -0
  149. package/dist/core/src/util/icons.d.ts +20 -0
  150. package/dist/core/src/util/index.d.ts +10 -0
  151. package/dist/core/src/util/previews.d.ts +4 -0
  152. package/dist/core/src/util/useStorageUploadController.d.ts +38 -0
  153. package/dist/core/src/util/useTraceUpdate.d.ts +2 -0
  154. package/dist/formex/src/Field.d.ts +52 -0
  155. package/dist/formex/src/Formex.d.ts +7 -0
  156. package/dist/formex/src/index.d.ts +5 -0
  157. package/dist/formex/src/types.d.ts +40 -0
  158. package/dist/formex/src/useCreateFormex.d.ts +14 -0
  159. package/dist/formex/src/utils.d.ts +16 -0
  160. package/dist/index.es.js +726 -0
  161. package/dist/index.es.js.map +1 -0
  162. package/dist/index.umd.js +9647 -0
  163. package/dist/index.umd.js.map +1 -0
  164. package/dist/studio/src/components/ApiExplorer/ApiExplorer.d.ts +9 -0
  165. package/dist/studio/src/components/ApiExplorer/EndpointDetail.d.ts +9 -0
  166. package/dist/studio/src/components/ApiExplorer/TryItPanel.d.ts +15 -0
  167. package/dist/studio/src/components/ApiExplorer/parseSpec.d.ts +16 -0
  168. package/dist/studio/src/components/ApiExplorer/types.d.ts +90 -0
  169. package/dist/studio/src/components/AuthSimulationSelector.d.ts +11 -0
  170. package/dist/studio/src/components/Branches/BranchesView.d.ts +1 -0
  171. package/dist/studio/src/components/CronJobs/CronJobsView.d.ts +1 -0
  172. package/dist/studio/src/components/JSEditor/JSEditor.d.ts +1 -0
  173. package/dist/studio/src/components/JSEditor/JSEditorSidebar.d.ts +21 -0
  174. package/dist/studio/src/components/JSEditor/JSMonacoEditor.d.ts +18 -0
  175. package/dist/studio/src/components/RLSEditor/PolicyEditor.d.ts +9 -0
  176. package/dist/studio/src/components/RLSEditor/RLSEditor.d.ts +19 -0
  177. package/dist/studio/src/components/RLSEditor/index.d.ts +1 -0
  178. package/dist/studio/src/components/RebaseStudio.d.ts +2 -0
  179. package/dist/studio/src/components/SQLEditor/ExplainVisualizer.d.ts +24 -0
  180. package/dist/studio/src/components/SQLEditor/MonacoEditor.d.ts +17 -0
  181. package/dist/studio/src/components/SQLEditor/SQLEditor.d.ts +11 -0
  182. package/dist/studio/src/components/SQLEditor/SQLEditorSidebar.d.ts +21 -0
  183. package/dist/studio/src/components/SQLEditor/SchemaBrowser.d.ts +8 -0
  184. package/dist/studio/src/components/SchemaVisualizer/RelationEdge.d.ts +3 -0
  185. package/dist/studio/src/components/SchemaVisualizer/SchemaVisualizer.d.ts +2 -0
  186. package/dist/studio/src/components/SchemaVisualizer/TableNode.d.ts +3 -0
  187. package/dist/studio/src/components/SchemaVisualizer/index.d.ts +5 -0
  188. package/dist/studio/src/components/SchemaVisualizer/schema-visualizer.utils.d.ts +42 -0
  189. package/dist/studio/src/components/SchemaVisualizer/useSchemaGraph.d.ts +37 -0
  190. package/dist/studio/src/components/StorageView/StorageView.d.ts +1 -0
  191. package/dist/studio/src/components/StudioHomePage.d.ts +9 -0
  192. package/dist/studio/src/index.d.ts +4 -0
  193. package/dist/studio/src/utils/entities.d.ts +0 -0
  194. package/dist/studio/src/utils/pgColumnToProperty.d.ts +6 -0
  195. package/dist/studio/src/utils/sql_utils.d.ts +52 -0
  196. package/dist/types/src/controllers/analytics_controller.d.ts +7 -0
  197. package/dist/types/src/controllers/auth.d.ts +119 -0
  198. package/dist/types/src/controllers/client.d.ts +170 -0
  199. package/dist/types/src/controllers/collection_registry.d.ts +45 -0
  200. package/dist/types/src/controllers/customization_controller.d.ts +60 -0
  201. package/dist/types/src/controllers/data.d.ts +168 -0
  202. package/dist/types/src/controllers/data_driver.d.ts +160 -0
  203. package/dist/types/src/controllers/database_admin.d.ts +11 -0
  204. package/dist/types/src/controllers/dialogs_controller.d.ts +36 -0
  205. package/dist/types/src/controllers/effective_role.d.ts +4 -0
  206. package/dist/types/src/controllers/email.d.ts +34 -0
  207. package/dist/types/src/controllers/index.d.ts +18 -0
  208. package/dist/types/src/controllers/local_config_persistence.d.ts +20 -0
  209. package/dist/types/src/controllers/navigation.d.ts +213 -0
  210. package/dist/types/src/controllers/registry.d.ts +54 -0
  211. package/dist/types/src/controllers/side_dialogs_controller.d.ts +67 -0
  212. package/dist/types/src/controllers/side_entity_controller.d.ts +90 -0
  213. package/dist/types/src/controllers/snackbar.d.ts +24 -0
  214. package/dist/types/src/controllers/storage.d.ts +171 -0
  215. package/dist/types/src/index.d.ts +4 -0
  216. package/dist/types/src/rebase_context.d.ts +105 -0
  217. package/dist/types/src/types/backend.d.ts +536 -0
  218. package/dist/types/src/types/builders.d.ts +15 -0
  219. package/dist/types/src/types/chips.d.ts +5 -0
  220. package/dist/types/src/types/collections.d.ts +856 -0
  221. package/dist/types/src/types/cron.d.ts +102 -0
  222. package/dist/types/src/types/data_source.d.ts +64 -0
  223. package/dist/types/src/types/entities.d.ts +145 -0
  224. package/dist/types/src/types/entity_actions.d.ts +98 -0
  225. package/dist/types/src/types/entity_callbacks.d.ts +173 -0
  226. package/dist/types/src/types/entity_link_builder.d.ts +7 -0
  227. package/dist/types/src/types/entity_overrides.d.ts +10 -0
  228. package/dist/types/src/types/entity_views.d.ts +61 -0
  229. package/dist/types/src/types/export_import.d.ts +21 -0
  230. package/dist/types/src/types/index.d.ts +23 -0
  231. package/dist/types/src/types/locales.d.ts +4 -0
  232. package/dist/types/src/types/modify_collections.d.ts +5 -0
  233. package/dist/types/src/types/plugins.d.ts +279 -0
  234. package/dist/types/src/types/properties.d.ts +1176 -0
  235. package/dist/types/src/types/property_config.d.ts +70 -0
  236. package/dist/types/src/types/relations.d.ts +336 -0
  237. package/dist/types/src/types/slots.d.ts +252 -0
  238. package/dist/types/src/types/translations.d.ts +870 -0
  239. package/dist/types/src/types/user_management_delegate.d.ts +121 -0
  240. package/dist/types/src/types/websockets.d.ts +78 -0
  241. package/dist/types/src/users/index.d.ts +2 -0
  242. package/dist/types/src/users/roles.d.ts +22 -0
  243. package/dist/types/src/users/user.d.ts +46 -0
  244. package/dist/ui/src/components/Alert.d.ts +12 -0
  245. package/dist/ui/src/components/Autocomplete.d.ts +21 -0
  246. package/dist/ui/src/components/Avatar.d.ts +11 -0
  247. package/dist/ui/src/components/Badge.d.ts +8 -0
  248. package/dist/ui/src/components/BooleanSwitch.d.ts +14 -0
  249. package/dist/ui/src/components/BooleanSwitchWithLabel.d.ts +17 -0
  250. package/dist/ui/src/components/Button.d.ts +14 -0
  251. package/dist/ui/src/components/Card.d.ts +9 -0
  252. package/dist/ui/src/components/CenteredView.d.ts +9 -0
  253. package/dist/ui/src/components/Checkbox.d.ts +13 -0
  254. package/dist/ui/src/components/Chip.d.ts +26 -0
  255. package/dist/ui/src/components/CircularProgress.d.ts +5 -0
  256. package/dist/ui/src/components/CircularProgressCenter.d.ts +11 -0
  257. package/dist/ui/src/components/Collapse.d.ts +9 -0
  258. package/dist/ui/src/components/ColorPicker.d.ts +30 -0
  259. package/dist/ui/src/components/Container.d.ts +8 -0
  260. package/dist/ui/src/components/DateTimeField.d.ts +24 -0
  261. package/dist/ui/src/components/DebouncedTextField.d.ts +2 -0
  262. package/dist/ui/src/components/Dialog.d.ts +39 -0
  263. package/dist/ui/src/components/DialogActions.d.ts +7 -0
  264. package/dist/ui/src/components/DialogContent.d.ts +7 -0
  265. package/dist/ui/src/components/DialogTitle.d.ts +10 -0
  266. package/dist/ui/src/components/ErrorBoundary.d.ts +11 -0
  267. package/dist/ui/src/components/ExpandablePanel.d.ts +12 -0
  268. package/dist/ui/src/components/FileUpload.d.ts +23 -0
  269. package/dist/ui/src/components/IconButton.d.ts +12 -0
  270. package/dist/ui/src/components/InfoLabel.d.ts +5 -0
  271. package/dist/ui/src/components/InputLabel.d.ts +11 -0
  272. package/dist/ui/src/components/Label.d.ts +7 -0
  273. package/dist/ui/src/components/LoadingButton.d.ts +7 -0
  274. package/dist/ui/src/components/Markdown.d.ts +10 -0
  275. package/dist/ui/src/components/Menu.d.ts +23 -0
  276. package/dist/ui/src/components/Menubar.d.ts +80 -0
  277. package/dist/ui/src/components/MultiSelect.d.ts +48 -0
  278. package/dist/ui/src/components/Paper.d.ts +6 -0
  279. package/dist/ui/src/components/Popover.d.ts +24 -0
  280. package/dist/ui/src/components/RadioGroup.d.ts +28 -0
  281. package/dist/ui/src/components/ResizablePanels.d.ts +18 -0
  282. package/dist/ui/src/components/SearchBar.d.ts +22 -0
  283. package/dist/ui/src/components/Select.d.ts +43 -0
  284. package/dist/ui/src/components/Separator.d.ts +5 -0
  285. package/dist/ui/src/components/Sheet.d.ts +22 -0
  286. package/dist/ui/src/components/Skeleton.d.ts +6 -0
  287. package/dist/ui/src/components/Slider.d.ts +21 -0
  288. package/dist/ui/src/components/Table.d.ts +34 -0
  289. package/dist/ui/src/components/Tabs.d.ts +19 -0
  290. package/dist/ui/src/components/TextField.d.ts +58 -0
  291. package/dist/ui/src/components/TextareaAutosize.d.ts +43 -0
  292. package/dist/ui/src/components/ToggleButtonGroup.d.ts +30 -0
  293. package/dist/ui/src/components/Tooltip.d.ts +19 -0
  294. package/dist/ui/src/components/Typography.d.ts +36 -0
  295. package/dist/ui/src/components/VirtualTable/VirtualTable.d.ts +11 -0
  296. package/dist/ui/src/components/VirtualTable/VirtualTableCell.d.ts +21 -0
  297. package/dist/ui/src/components/VirtualTable/VirtualTableHeader.d.ts +29 -0
  298. package/dist/ui/src/components/VirtualTable/VirtualTableHeaderRow.d.ts +2 -0
  299. package/dist/ui/src/components/VirtualTable/VirtualTableProps.d.ts +243 -0
  300. package/dist/ui/src/components/VirtualTable/VirtualTableRow.d.ts +3 -0
  301. package/dist/ui/src/components/VirtualTable/index.d.ts +3 -0
  302. package/dist/ui/src/components/VirtualTable/types.d.ts +38 -0
  303. package/dist/ui/src/components/common/SelectInputLabel.d.ts +5 -0
  304. package/dist/ui/src/components/index.d.ts +53 -0
  305. package/dist/ui/src/hooks/PortalContainerContext.d.ts +31 -0
  306. package/dist/ui/src/hooks/index.d.ts +6 -0
  307. package/dist/ui/src/hooks/useDebounceCallback.d.ts +1 -0
  308. package/dist/ui/src/hooks/useDebounceValue.d.ts +1 -0
  309. package/dist/ui/src/hooks/useDebouncedCallback.d.ts +1 -0
  310. package/dist/ui/src/hooks/useInjectStyles.d.ts +7 -0
  311. package/dist/ui/src/hooks/useOutsideAlerter.d.ts +5 -0
  312. package/dist/ui/src/icons/GitHubIcon.d.ts +2 -0
  313. package/dist/ui/src/icons/HandleIcon.d.ts +1 -0
  314. package/dist/ui/src/icons/Icon.d.ts +20 -0
  315. package/dist/ui/src/icons/cool_icon_keys.d.ts +1 -0
  316. package/dist/ui/src/icons/icon_keys.d.ts +1 -0
  317. package/dist/ui/src/icons/index.d.ts +6 -0
  318. package/dist/ui/src/index.d.ts +5 -0
  319. package/dist/ui/src/styles.d.ts +12 -0
  320. package/dist/ui/src/util/chip_colors.d.ts +4 -0
  321. package/dist/ui/src/util/cls.d.ts +2 -0
  322. package/dist/ui/src/util/debounce.d.ts +10 -0
  323. package/dist/ui/src/util/hash.d.ts +1 -0
  324. package/dist/ui/src/util/index.d.ts +4 -0
  325. package/dist/ui/src/util/key_to_icon_component.d.ts +1 -0
  326. package/package.json +84 -0
  327. package/src/components/ApiExplorer/ApiExplorer.tsx +290 -0
  328. package/src/components/ApiExplorer/EndpointDetail.tsx +271 -0
  329. package/src/components/ApiExplorer/TryItPanel.tsx +510 -0
  330. package/src/components/ApiExplorer/parseSpec.ts +104 -0
  331. package/src/components/ApiExplorer/types.ts +84 -0
  332. package/src/components/AuthSimulationSelector.tsx +77 -0
  333. package/src/components/Branches/BranchesView.tsx +370 -0
  334. package/src/components/CronJobs/CronJobsView.tsx +346 -0
  335. package/src/components/JSEditor/JSEditor.tsx +1033 -0
  336. package/src/components/JSEditor/JSEditorSidebar.tsx +340 -0
  337. package/src/components/JSEditor/JSMonacoEditor.tsx +390 -0
  338. package/src/components/RLSEditor/PolicyEditor.tsx +444 -0
  339. package/src/components/RLSEditor/RLSEditor.tsx +692 -0
  340. package/src/components/RLSEditor/index.ts +1 -0
  341. package/src/components/RebaseStudio.tsx +121 -0
  342. package/src/components/SQLEditor/ExplainVisualizer.tsx +128 -0
  343. package/src/components/SQLEditor/MonacoEditor.tsx +203 -0
  344. package/src/components/SQLEditor/SQLEditor.tsx +1419 -0
  345. package/src/components/SQLEditor/SQLEditorSidebar.tsx +174 -0
  346. package/src/components/SQLEditor/SchemaBrowser.tsx +158 -0
  347. package/src/components/SchemaVisualizer/RelationEdge.tsx +102 -0
  348. package/src/components/SchemaVisualizer/SchemaVisualizer.tsx +665 -0
  349. package/src/components/SchemaVisualizer/TableNode.tsx +257 -0
  350. package/src/components/SchemaVisualizer/index.ts +5 -0
  351. package/src/components/SchemaVisualizer/schema-visualizer.utils.ts +140 -0
  352. package/src/components/SchemaVisualizer/useSchemaGraph.ts +397 -0
  353. package/src/components/StorageView/StorageView.tsx +1035 -0
  354. package/src/components/StudioHomePage.tsx +357 -0
  355. package/src/index.ts +31 -0
  356. package/src/utils/entities.ts +2 -0
  357. package/src/utils/pgColumnToProperty.test.ts +401 -0
  358. package/src/utils/pgColumnToProperty.ts +275 -0
  359. package/src/utils/sql_utils.test.ts +265 -0
  360. package/src/utils/sql_utils.ts +291 -0
  361. package/src/vite-env.d.ts +1 -0
@@ -0,0 +1,907 @@
1
+ import { jsxs, jsx, Fragment } from "react/jsx-runtime";
2
+ import { c } from "react-compiler-runtime";
3
+ import React, { useState, useEffect, useCallback } from "react";
4
+ import { ResizablePanels, Tooltip, IconButton, iconSize, Typography, Button, cls, Chip, defaultBorderMixin, CircularProgress, DialogContent, Dialog, FileUpload, DialogActions } from "@rebasepro/ui";
5
+ import { ArrowLeftIcon, LayoutGridIcon, ListIcon, RefreshCwIcon, UploadCloudIcon, PlusIcon, FolderIcon, DownloadIcon, Trash2Icon, XIcon, HomeIcon, FileTextIcon, ImageIcon, VideoIcon, Music2Icon } from "lucide-react";
6
+ import { useStorageSource, useSnackbarController, ErrorView } from "@rebasepro/core";
7
+ function formatFileSize(bytes) {
8
+ if (bytes < 1024) return `${bytes} B`;
9
+ if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;
10
+ if (bytes < 1024 * 1024 * 1024) return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
11
+ return `${(bytes / (1024 * 1024 * 1024)).toFixed(2)} GB`;
12
+ }
13
+ function getFileIcon(contentType) {
14
+ if (!contentType) return FileTextIcon;
15
+ if (contentType.startsWith("image/")) return ImageIcon;
16
+ if (contentType.startsWith("video/")) return VideoIcon;
17
+ if (contentType.startsWith("audio/")) return Music2Icon;
18
+ return FileTextIcon;
19
+ }
20
+ function getExtension(name) {
21
+ const parts = name.split(".");
22
+ return parts.length > 1 ? parts[parts.length - 1].toUpperCase() : "";
23
+ }
24
+ function breadcrumbSegments(path) {
25
+ if (!path || path === "/") return [{
26
+ label: "Root",
27
+ path: ""
28
+ }];
29
+ const parts = path.split("/").filter(Boolean);
30
+ const segments = [{
31
+ label: "Root",
32
+ path: ""
33
+ }];
34
+ let accumulated = "";
35
+ for (const part of parts) {
36
+ accumulated = accumulated ? `${accumulated}/${part}` : part;
37
+ segments.push({
38
+ label: part,
39
+ path: accumulated
40
+ });
41
+ }
42
+ return segments;
43
+ }
44
+ function UploadDialog({
45
+ open,
46
+ currentPath,
47
+ onClose,
48
+ onUpload
49
+ }) {
50
+ const [uploading, setUploading] = useState(false);
51
+ const [selectedFiles, setSelectedFiles] = useState([]);
52
+ const [error, setError] = useState(null);
53
+ const handleFilesAdded = useCallback((files) => {
54
+ setSelectedFiles((prev) => [...prev, ...files]);
55
+ }, []);
56
+ const handleRemoveFile = useCallback((index) => {
57
+ setSelectedFiles((prev_0) => prev_0.filter((_, i) => i !== index));
58
+ }, []);
59
+ const handleUpload = useCallback(async () => {
60
+ if (selectedFiles.length === 0) return;
61
+ setUploading(true);
62
+ setError(null);
63
+ try {
64
+ await onUpload(selectedFiles);
65
+ setSelectedFiles([]);
66
+ onClose();
67
+ } catch (err) {
68
+ setError(err instanceof Error ? err.message : "Upload failed");
69
+ } finally {
70
+ setUploading(false);
71
+ }
72
+ }, [selectedFiles, onUpload, onClose]);
73
+ const handleClose = useCallback(() => {
74
+ if (!uploading) {
75
+ setSelectedFiles([]);
76
+ setError(null);
77
+ onClose();
78
+ }
79
+ }, [uploading, onClose]);
80
+ return /* @__PURE__ */ jsxs(Dialog, { open, onOpenChange: (o) => !o && handleClose(), maxWidth: "md", children: [
81
+ /* @__PURE__ */ jsxs(DialogContent, { className: "p-0", children: [
82
+ /* @__PURE__ */ jsxs("div", { className: "p-4 border-b border-surface-accent-200 dark:border-surface-accent-700", children: [
83
+ /* @__PURE__ */ jsx(Typography, { variant: "h6", children: "Upload Files" }),
84
+ /* @__PURE__ */ jsxs(Typography, { variant: "caption", className: "text-text-secondary dark:text-text-secondary-dark mt-1 block", children: [
85
+ "to ",
86
+ /* @__PURE__ */ jsxs("span", { className: "font-mono text-primary", children: [
87
+ "/",
88
+ currentPath || "root"
89
+ ] })
90
+ ] })
91
+ ] }),
92
+ /* @__PURE__ */ jsxs("div", { className: "p-4", children: [
93
+ /* @__PURE__ */ jsx(FileUpload, { accept: {}, onFilesAdded: handleFilesAdded, size: "large", uploadDescription: /* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center pointer-events-none mt-2", children: [
94
+ /* @__PURE__ */ jsx(UploadCloudIcon, { className: "text-surface-accent-400 mb-2 w-8 h-8" }),
95
+ /* @__PURE__ */ jsx(Typography, { variant: "h6", className: "font-bold", children: "Drop files here or click to browse" }),
96
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-surface-accent-500 font-medium", children: "Any file type supported" })
97
+ ] }) }),
98
+ error && /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-red-500 mt-2 block whitespace-pre-line", children: error }),
99
+ selectedFiles.length > 0 && /* @__PURE__ */ jsxs("div", { className: "mt-4 space-y-2", children: [
100
+ /* @__PURE__ */ jsxs(Typography, { variant: "caption", className: "text-surface-accent-500", children: [
101
+ "Selected files (",
102
+ selectedFiles.length,
103
+ ")"
104
+ ] }),
105
+ /* @__PURE__ */ jsx("div", { className: "max-h-40 overflow-auto space-y-1", children: selectedFiles.map((file, index_0) => /* @__PURE__ */ jsxs("div", { className: cls("flex items-center justify-between p-2 rounded", "bg-surface-accent-50 dark:bg-surface-accent-800"), children: [
106
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 min-w-0 mr-2", children: [
107
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "truncate", children: file.name }),
108
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-surface-accent-500", children: formatFileSize(file.size) })
109
+ ] }),
110
+ /* @__PURE__ */ jsx(Button, { variant: "text", size: "small", onClick: (e) => {
111
+ e.stopPropagation();
112
+ handleRemoveFile(index_0);
113
+ }, disabled: uploading, children: "Remove" })
114
+ ] }, `${file.name}-${index_0}`)) })
115
+ ] })
116
+ ] })
117
+ ] }),
118
+ /* @__PURE__ */ jsxs(DialogActions, { children: [
119
+ /* @__PURE__ */ jsx(Button, { variant: "text", onClick: handleClose, disabled: uploading, children: "Cancel" }),
120
+ /* @__PURE__ */ jsx(Button, { variant: "filled", onClick: handleUpload, disabled: selectedFiles.length === 0 || uploading, children: uploading ? /* @__PURE__ */ jsxs(Fragment, { children: [
121
+ /* @__PURE__ */ jsx(CircularProgress, { size: "smallest" }),
122
+ "Uploading..."
123
+ ] }) : `Upload ${selectedFiles.length > 0 ? `(${selectedFiles.length})` : ""}` })
124
+ ] })
125
+ ] });
126
+ }
127
+ function FilePreviewPanel(t0) {
128
+ const $ = c(79);
129
+ const {
130
+ file,
131
+ onClose,
132
+ onDelete,
133
+ downloadUrl
134
+ } = t0;
135
+ file.contentType?.startsWith("image/");
136
+ file.contentType?.startsWith("video/");
137
+ file.contentType?.startsWith("audio/");
138
+ let t1;
139
+ if ($[0] !== file.contentType) {
140
+ t1 = getFileIcon(file.contentType);
141
+ $[0] = file.contentType;
142
+ $[1] = t1;
143
+ } else {
144
+ t1 = $[1];
145
+ }
146
+ const FileIconComponent = t1;
147
+ const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
148
+ let t2;
149
+ let t3;
150
+ if ($[2] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
151
+ t2 = cls("flex flex-col h-full border-l", defaultBorderMixin, "bg-white dark:bg-surface-950");
152
+ t3 = cls("flex items-center justify-between p-3 border-b shrink-0", defaultBorderMixin);
153
+ $[2] = t2;
154
+ $[3] = t3;
155
+ } else {
156
+ t2 = $[2];
157
+ t3 = $[3];
158
+ }
159
+ let t4;
160
+ if ($[4] !== file.name) {
161
+ t4 = /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "font-medium truncate flex-1 mr-2", children: file.name });
162
+ $[4] = file.name;
163
+ $[5] = t4;
164
+ } else {
165
+ t4 = $[5];
166
+ }
167
+ let t5;
168
+ if ($[6] !== downloadUrl) {
169
+ t5 = downloadUrl && /* @__PURE__ */ jsx(Tooltip, { title: "Download", children: /* @__PURE__ */ jsx(IconButton, { size: "small", onClick: () => window.open(downloadUrl, "_blank"), children: /* @__PURE__ */ jsx(DownloadIcon, { size: iconSize.smallest }) }) });
170
+ $[6] = downloadUrl;
171
+ $[7] = t5;
172
+ } else {
173
+ t5 = $[7];
174
+ }
175
+ let t6;
176
+ if ($[8] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
177
+ t6 = () => setDeleteDialogOpen(true);
178
+ $[8] = t6;
179
+ } else {
180
+ t6 = $[8];
181
+ }
182
+ let t7;
183
+ if ($[9] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
184
+ t7 = /* @__PURE__ */ jsx(Tooltip, { title: "Delete", children: /* @__PURE__ */ jsx(IconButton, { size: "small", onClick: t6, className: "text-red-500 hover:bg-red-50 dark:hover:bg-red-900/20", children: /* @__PURE__ */ jsx(Trash2Icon, { size: iconSize.smallest }) }) });
185
+ $[9] = t7;
186
+ } else {
187
+ t7 = $[9];
188
+ }
189
+ let t8;
190
+ if ($[10] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
191
+ t8 = /* @__PURE__ */ jsx(XIcon, { size: iconSize.smallest });
192
+ $[10] = t8;
193
+ } else {
194
+ t8 = $[10];
195
+ }
196
+ let t9;
197
+ if ($[11] !== onClose) {
198
+ t9 = /* @__PURE__ */ jsx(IconButton, { size: "small", onClick: onClose, children: t8 });
199
+ $[11] = onClose;
200
+ $[12] = t9;
201
+ } else {
202
+ t9 = $[12];
203
+ }
204
+ let t10;
205
+ if ($[13] !== t5 || $[14] !== t9) {
206
+ t10 = /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-0.5", children: [
207
+ t5,
208
+ t7,
209
+ t9
210
+ ] });
211
+ $[13] = t5;
212
+ $[14] = t9;
213
+ $[15] = t10;
214
+ } else {
215
+ t10 = $[15];
216
+ }
217
+ let t11;
218
+ if ($[16] !== t10 || $[17] !== t4) {
219
+ t11 = /* @__PURE__ */ jsxs("div", { className: t3, children: [
220
+ t4,
221
+ t10
222
+ ] });
223
+ $[16] = t10;
224
+ $[17] = t4;
225
+ $[18] = t11;
226
+ } else {
227
+ t11 = $[18];
228
+ }
229
+ let t12;
230
+ const ext = getExtension(file.name)?.toLowerCase() || "";
231
+ const isImage_0 = file.contentType?.startsWith("image/") || ["jpg", "jpeg", "png", "gif", "webp", "svg"].includes(ext);
232
+ const isVideo_0 = file.contentType?.startsWith("video/") || ["mp4", "webm", "ogg", "mov"].includes(ext);
233
+ const isAudio_0 = file.contentType?.startsWith("audio/") || ["mp3", "wav", "ogg", "m4a"].includes(ext);
234
+ const downloadUrl_0 = file.downloadUrl;
235
+ if (isImage_0 && downloadUrl_0) {
236
+ let t132;
237
+ if ($[19] !== downloadUrl_0 || $[20] !== file.name) {
238
+ t132 = /* @__PURE__ */ jsx("img", { src: downloadUrl_0, alt: file.name, className: "max-w-full max-h-[400px] object-contain rounded-md shadow-sm" });
239
+ $[19] = downloadUrl_0;
240
+ $[20] = file.name;
241
+ $[21] = t132;
242
+ } else {
243
+ t132 = $[21];
244
+ }
245
+ t12 = t132;
246
+ } else {
247
+ if (isVideo_0 && downloadUrl_0) {
248
+ let t132;
249
+ if ($[22] !== downloadUrl_0) {
250
+ t132 = /* @__PURE__ */ jsx("video", { src: downloadUrl_0, className: "max-w-full max-h-[400px] rounded-md", controls: true });
251
+ $[22] = downloadUrl_0;
252
+ $[23] = t132;
253
+ } else {
254
+ t132 = $[23];
255
+ }
256
+ t12 = t132;
257
+ } else {
258
+ if (isAudio_0 && downloadUrl_0) {
259
+ let t132;
260
+ if ($[24] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
261
+ t132 = /* @__PURE__ */ jsx(Music2Icon, { className: "text-surface-accent-400 w-10 h-10" });
262
+ $[24] = t132;
263
+ } else {
264
+ t132 = $[24];
265
+ }
266
+ let t142;
267
+ if ($[25] !== downloadUrl_0) {
268
+ t142 = /* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center gap-4", children: [
269
+ t132,
270
+ /* @__PURE__ */ jsx("audio", { src: downloadUrl_0, controls: true, className: "w-full max-w-xs" })
271
+ ] });
272
+ $[25] = downloadUrl_0;
273
+ $[26] = t142;
274
+ } else {
275
+ t142 = $[26];
276
+ }
277
+ t12 = t142;
278
+ } else {
279
+ let t132;
280
+ if ($[27] !== FileIconComponent) {
281
+ t132 = /* @__PURE__ */ jsx(FileIconComponent, { className: "w-10 h-10" });
282
+ $[27] = FileIconComponent;
283
+ $[28] = t132;
284
+ } else {
285
+ t132 = $[28];
286
+ }
287
+ let t142;
288
+ if ($[29] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
289
+ t142 = /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-text-disabled dark:text-text-disabled-dark", children: "No preview available" });
290
+ $[29] = t142;
291
+ } else {
292
+ t142 = $[29];
293
+ }
294
+ let t152;
295
+ if ($[30] !== t132) {
296
+ t152 = /* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center gap-3 text-surface-accent-400", children: [
297
+ t132,
298
+ t142
299
+ ] });
300
+ $[30] = t132;
301
+ $[31] = t152;
302
+ } else {
303
+ t152 = $[31];
304
+ }
305
+ t12 = t152;
306
+ }
307
+ }
308
+ }
309
+ let t13;
310
+ if ($[32] !== t12) {
311
+ t13 = /* @__PURE__ */ jsx("div", { className: "flex-1 overflow-auto", children: /* @__PURE__ */ jsx("div", { className: "flex flex-col items-center justify-center min-h-[200px] p-4 bg-surface-50 dark:bg-surface-900 border-b border-surface-accent-200 dark:border-surface-accent-700", children: t12 }) });
312
+ $[32] = t12;
313
+ $[33] = t13;
314
+ } else {
315
+ t13 = $[33];
316
+ }
317
+ let t14;
318
+ if ($[34] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
319
+ t14 = /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-text-disabled dark:text-text-disabled-dark text-[10px] uppercase tracking-wider font-bold mb-1 block", children: "File Info" }) });
320
+ $[34] = t14;
321
+ } else {
322
+ t14 = $[34];
323
+ }
324
+ let t15;
325
+ if ($[35] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
326
+ t15 = /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-surface-accent-500 text-[11px]", children: "Name" });
327
+ $[35] = t15;
328
+ } else {
329
+ t15 = $[35];
330
+ }
331
+ let t16;
332
+ if ($[36] !== file.name) {
333
+ t16 = /* @__PURE__ */ jsxs("div", { children: [
334
+ t15,
335
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[13px] break-all", children: file.name })
336
+ ] });
337
+ $[36] = file.name;
338
+ $[37] = t16;
339
+ } else {
340
+ t16 = $[37];
341
+ }
342
+ let t17;
343
+ if ($[38] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
344
+ t17 = /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-surface-accent-500 text-[11px]", children: "Type" });
345
+ $[38] = t17;
346
+ } else {
347
+ t17 = $[38];
348
+ }
349
+ const t18 = file.contentType || "Unknown";
350
+ let t19;
351
+ if ($[39] !== t18) {
352
+ t19 = /* @__PURE__ */ jsxs("div", { children: [
353
+ t17,
354
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[13px]", children: t18 })
355
+ ] });
356
+ $[39] = t18;
357
+ $[40] = t19;
358
+ } else {
359
+ t19 = $[40];
360
+ }
361
+ let t20;
362
+ if ($[41] !== file.size) {
363
+ t20 = file.size !== void 0 && /* @__PURE__ */ jsxs("div", { children: [
364
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-surface-accent-500 text-[11px]", children: "Size" }),
365
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[13px]", children: formatFileSize(file.size) })
366
+ ] });
367
+ $[41] = file.size;
368
+ $[42] = t20;
369
+ } else {
370
+ t20 = $[42];
371
+ }
372
+ let t21;
373
+ if ($[43] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
374
+ t21 = /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-surface-accent-500 text-[11px]", children: "Extension" });
375
+ $[43] = t21;
376
+ } else {
377
+ t21 = $[43];
378
+ }
379
+ let t22;
380
+ if ($[44] !== file.name) {
381
+ t22 = getExtension(file.name) || "—";
382
+ $[44] = file.name;
383
+ $[45] = t22;
384
+ } else {
385
+ t22 = $[45];
386
+ }
387
+ let t23;
388
+ if ($[46] !== t22) {
389
+ t23 = /* @__PURE__ */ jsxs("div", { children: [
390
+ t21,
391
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[13px] font-mono", children: t22 })
392
+ ] });
393
+ $[46] = t22;
394
+ $[47] = t23;
395
+ } else {
396
+ t23 = $[47];
397
+ }
398
+ let t24;
399
+ if ($[48] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
400
+ t24 = /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-surface-accent-500 text-[11px]", children: "Path" });
401
+ $[48] = t24;
402
+ } else {
403
+ t24 = $[48];
404
+ }
405
+ let t25;
406
+ if ($[49] !== file.fullPath) {
407
+ t25 = /* @__PURE__ */ jsxs("div", { className: "col-span-2", children: [
408
+ t24,
409
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[13px] font-mono break-all", children: file.fullPath })
410
+ ] });
411
+ $[49] = file.fullPath;
412
+ $[50] = t25;
413
+ } else {
414
+ t25 = $[50];
415
+ }
416
+ let t26;
417
+ if ($[51] !== t16 || $[52] !== t19 || $[53] !== t20 || $[54] !== t23 || $[55] !== t25) {
418
+ t26 = /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-3", children: [
419
+ t16,
420
+ t19,
421
+ t20,
422
+ t23,
423
+ t25
424
+ ] });
425
+ $[51] = t16;
426
+ $[52] = t19;
427
+ $[53] = t20;
428
+ $[54] = t23;
429
+ $[55] = t25;
430
+ $[56] = t26;
431
+ } else {
432
+ t26 = $[56];
433
+ }
434
+ let t27;
435
+ if ($[57] !== downloadUrl) {
436
+ t27 = downloadUrl && /* @__PURE__ */ jsxs("div", { className: "pt-2", children: [
437
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-surface-accent-500 text-[11px] block mb-1", children: "URL" }),
438
+ /* @__PURE__ */ jsxs("div", { className: "p-2 rounded bg-surface-100 dark:bg-surface-950 cursor-pointer hover:bg-surface-200 dark:hover:bg-surface-700 transition-colors", onClick: () => {
439
+ navigator.clipboard.writeText(downloadUrl);
440
+ }, children: [
441
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "font-mono text-[11px] break-all text-primary", children: downloadUrl }),
442
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-text-disabled dark:text-text-disabled-dark text-[10px] block mt-1", children: "Click to copy" })
443
+ ] })
444
+ ] });
445
+ $[57] = downloadUrl;
446
+ $[58] = t27;
447
+ } else {
448
+ t27 = $[58];
449
+ }
450
+ let t28;
451
+ if ($[59] !== t26 || $[60] !== t27) {
452
+ t28 = /* @__PURE__ */ jsxs("div", { className: "p-4 space-y-3", children: [
453
+ t14,
454
+ t26,
455
+ t27
456
+ ] });
457
+ $[59] = t26;
458
+ $[60] = t27;
459
+ $[61] = t28;
460
+ } else {
461
+ t28 = $[61];
462
+ }
463
+ let t29;
464
+ if ($[62] !== t11 || $[63] !== t13 || $[64] !== t28) {
465
+ t29 = /* @__PURE__ */ jsxs("div", { className: t2, children: [
466
+ t11,
467
+ t13,
468
+ t28
469
+ ] });
470
+ $[62] = t11;
471
+ $[63] = t13;
472
+ $[64] = t28;
473
+ $[65] = t29;
474
+ } else {
475
+ t29 = $[65];
476
+ }
477
+ let t30;
478
+ if ($[66] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
479
+ t30 = /* @__PURE__ */ jsx(Typography, { variant: "subtitle1", className: "mb-2", children: "Delete File?" });
480
+ $[66] = t30;
481
+ } else {
482
+ t30 = $[66];
483
+ }
484
+ let t31;
485
+ if ($[67] !== file.name) {
486
+ t31 = /* @__PURE__ */ jsxs(DialogContent, { children: [
487
+ t30,
488
+ /* @__PURE__ */ jsxs(Typography, { className: "text-surface-accent-600 dark:text-surface-accent-400", children: [
489
+ 'Are you sure you want to delete "',
490
+ file.name,
491
+ '"? This action cannot be undone.'
492
+ ] })
493
+ ] });
494
+ $[67] = file.name;
495
+ $[68] = t31;
496
+ } else {
497
+ t31 = $[68];
498
+ }
499
+ let t32;
500
+ if ($[69] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
501
+ t32 = /* @__PURE__ */ jsx(Button, { variant: "text", onClick: () => setDeleteDialogOpen(false), children: "Cancel" });
502
+ $[69] = t32;
503
+ } else {
504
+ t32 = $[69];
505
+ }
506
+ let t33;
507
+ if ($[70] !== onDelete) {
508
+ t33 = /* @__PURE__ */ jsxs(DialogActions, { children: [
509
+ t32,
510
+ /* @__PURE__ */ jsx(Button, { variant: "filled", color: "error", onClick: () => {
511
+ setDeleteDialogOpen(false);
512
+ onDelete();
513
+ }, children: "Delete" })
514
+ ] });
515
+ $[70] = onDelete;
516
+ $[71] = t33;
517
+ } else {
518
+ t33 = $[71];
519
+ }
520
+ let t34;
521
+ if ($[72] !== deleteDialogOpen || $[73] !== t31 || $[74] !== t33) {
522
+ t34 = /* @__PURE__ */ jsxs(Dialog, { open: deleteDialogOpen, onOpenChange: setDeleteDialogOpen, children: [
523
+ t31,
524
+ t33
525
+ ] });
526
+ $[72] = deleteDialogOpen;
527
+ $[73] = t31;
528
+ $[74] = t33;
529
+ $[75] = t34;
530
+ } else {
531
+ t34 = $[75];
532
+ }
533
+ let t35;
534
+ if ($[76] !== t29 || $[77] !== t34) {
535
+ t35 = /* @__PURE__ */ jsxs(Fragment, { children: [
536
+ t29,
537
+ t34
538
+ ] });
539
+ $[76] = t29;
540
+ $[77] = t34;
541
+ $[78] = t35;
542
+ } else {
543
+ t35 = $[78];
544
+ }
545
+ return t35;
546
+ }
547
+ function StorageSidebar(t0) {
548
+ const $ = c(19);
549
+ const {
550
+ folders,
551
+ currentPath,
552
+ onNavigate,
553
+ loading
554
+ } = t0;
555
+ breadcrumbSegments(currentPath);
556
+ let t1;
557
+ let t2;
558
+ if ($[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
559
+ t1 = cls("flex flex-col h-full w-full bg-white dark:bg-surface-950 border-r", defaultBorderMixin);
560
+ t2 = /* @__PURE__ */ jsx("div", { className: cls("p-3 border-b flex justify-between items-center bg-surface-50 dark:bg-surface-900 shrink-0", defaultBorderMixin), children: /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "font-bold uppercase tracking-wider text-text-disabled dark:text-text-disabled-dark", children: "Folders" }) });
561
+ $[0] = t1;
562
+ $[1] = t2;
563
+ } else {
564
+ t1 = $[0];
565
+ t2 = $[1];
566
+ }
567
+ const t3 = currentPath === "" || !currentPath ? "bg-primary/10 text-primary dark:bg-primary/20 dark:text-primary-light" : "hover:bg-surface-100 dark:hover:bg-surface-950 text-text-secondary dark:text-text-secondary-dark";
568
+ let t4;
569
+ if ($[2] !== t3) {
570
+ t4 = cls("flex items-center p-1.5 cursor-pointer rounded transition-colors", t3);
571
+ $[2] = t3;
572
+ $[3] = t4;
573
+ } else {
574
+ t4 = $[3];
575
+ }
576
+ let t5;
577
+ if ($[4] !== onNavigate) {
578
+ t5 = () => onNavigate("");
579
+ $[4] = onNavigate;
580
+ $[5] = t5;
581
+ } else {
582
+ t5 = $[5];
583
+ }
584
+ let t6;
585
+ let t7;
586
+ if ($[6] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel")) {
587
+ t6 = /* @__PURE__ */ jsx(HomeIcon, { size: iconSize.smallest, className: "mr-1.5 shrink-0" });
588
+ t7 = /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-xs truncate", children: "Root" });
589
+ $[6] = t6;
590
+ $[7] = t7;
591
+ } else {
592
+ t6 = $[6];
593
+ t7 = $[7];
594
+ }
595
+ let t8;
596
+ if ($[8] !== t4 || $[9] !== t5) {
597
+ t8 = /* @__PURE__ */ jsxs("div", { className: t4, onClick: t5, children: [
598
+ t6,
599
+ t7
600
+ ] });
601
+ $[8] = t4;
602
+ $[9] = t5;
603
+ $[10] = t8;
604
+ } else {
605
+ t8 = $[10];
606
+ }
607
+ let t9;
608
+ if ($[11] !== currentPath || $[12] !== folders || $[13] !== loading || $[14] !== onNavigate) {
609
+ t9 = loading && folders.length === 0 ? /* @__PURE__ */ jsx("div", { className: "flex justify-center p-4", children: /* @__PURE__ */ jsx(CircularProgress, { size: "small" }) }) : /* @__PURE__ */ jsx("div", { className: "mt-1 space-y-0.5", children: folders.map((folder) => {
610
+ const isSelected = currentPath === folder.fullPath;
611
+ return /* @__PURE__ */ jsxs("div", { className: cls("flex items-center p-1.5 cursor-pointer rounded transition-colors group", isSelected ? "bg-primary/10 text-primary dark:bg-primary/20 dark:text-primary-light" : "hover:bg-surface-100 dark:hover:bg-surface-950 text-text-secondary dark:text-text-secondary-dark"), onClick: () => onNavigate(folder.fullPath), children: [
612
+ /* @__PURE__ */ jsx(FolderIcon, { size: iconSize.smallest, className: "mr-1.5 shrink-0 text-amber-500 dark:text-amber-400" }),
613
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-xs truncate flex-1 min-w-0", children: folder.name })
614
+ ] }, folder.fullPath);
615
+ }) });
616
+ $[11] = currentPath;
617
+ $[12] = folders;
618
+ $[13] = loading;
619
+ $[14] = onNavigate;
620
+ $[15] = t9;
621
+ } else {
622
+ t9 = $[15];
623
+ }
624
+ let t10;
625
+ if ($[16] !== t8 || $[17] !== t9) {
626
+ t10 = /* @__PURE__ */ jsxs("div", { className: t1, children: [
627
+ t2,
628
+ /* @__PURE__ */ jsxs("div", { className: "flex-grow overflow-y-auto no-scrollbar p-1", children: [
629
+ t8,
630
+ t9
631
+ ] })
632
+ ] });
633
+ $[16] = t8;
634
+ $[17] = t9;
635
+ $[18] = t10;
636
+ } else {
637
+ t10 = $[18];
638
+ }
639
+ return t10;
640
+ }
641
+ const StorageView = () => {
642
+ const storageSource = useStorageSource();
643
+ const snackbarController = useSnackbarController();
644
+ const [currentPath, setCurrentPath] = useState("");
645
+ const [loading, setLoading] = useState(true);
646
+ const [error, setError] = useState(null);
647
+ const [folders, setFolders] = useState([]);
648
+ const [files, setFiles] = useState([]);
649
+ const [selectedFile, setSelectedFile] = useState(null);
650
+ const [selectedDownloadUrl, setSelectedDownloadUrl] = useState(null);
651
+ const [uploadDialogOpen, setUploadDialogOpen] = useState(false);
652
+ const [viewMode, setViewMode] = useState("grid");
653
+ const [sidebarSize, setSidebarSize] = useState(() => {
654
+ try {
655
+ const saved = localStorage.getItem("rebase_storage_sidebar_size");
656
+ return saved !== null ? parseFloat(saved) : 18;
657
+ } catch {
658
+ return 18;
659
+ }
660
+ });
661
+ useEffect(() => {
662
+ try {
663
+ localStorage.setItem("rebase_storage_sidebar_size", sidebarSize.toString());
664
+ } catch {
665
+ }
666
+ }, [sidebarSize]);
667
+ const fetchContents = useCallback(async (path) => {
668
+ setLoading(true);
669
+ setError(null);
670
+ try {
671
+ const result = await storageSource.listObjects(path);
672
+ const folderItems = (result.prefixes ?? []).map((ref) => ({
673
+ name: ref.name,
674
+ fullPath: ref.fullPath,
675
+ isFolder: true
676
+ }));
677
+ const fileItems = await Promise.all((result.items ?? []).map(async (ref_0) => {
678
+ try {
679
+ const downloadConfig = await storageSource.getSignedUrl(ref_0.fullPath);
680
+ return {
681
+ name: ref_0.name,
682
+ fullPath: ref_0.fullPath,
683
+ isFolder: false,
684
+ size: downloadConfig.metadata?.size,
685
+ contentType: downloadConfig.metadata?.contentType,
686
+ downloadUrl: downloadConfig.url ?? void 0
687
+ };
688
+ } catch {
689
+ return {
690
+ name: ref_0.name,
691
+ fullPath: ref_0.fullPath,
692
+ isFolder: false
693
+ };
694
+ }
695
+ }));
696
+ setFolders(folderItems);
697
+ setFiles(fileItems);
698
+ } catch (e) {
699
+ console.error("Storage list error:", e);
700
+ setError(e instanceof Error ? e.message : String(e));
701
+ } finally {
702
+ setLoading(false);
703
+ }
704
+ }, [storageSource]);
705
+ useEffect(() => {
706
+ fetchContents(currentPath);
707
+ }, [currentPath, fetchContents]);
708
+ const handleNavigate = useCallback((path_0) => {
709
+ setCurrentPath(path_0);
710
+ setSelectedFile(null);
711
+ setSelectedDownloadUrl(null);
712
+ }, []);
713
+ const handleNavigateUp = useCallback(() => {
714
+ const parts = currentPath.split("/").filter(Boolean);
715
+ parts.pop();
716
+ handleNavigate(parts.join("/"));
717
+ }, [currentPath, handleNavigate]);
718
+ const handleSelectFile = useCallback(async (file) => {
719
+ setSelectedFile(file);
720
+ if (file.downloadUrl) {
721
+ setSelectedDownloadUrl(file.downloadUrl);
722
+ } else {
723
+ try {
724
+ const config = await storageSource.getSignedUrl(file.fullPath);
725
+ setSelectedDownloadUrl(config.url);
726
+ } catch {
727
+ setSelectedDownloadUrl(null);
728
+ }
729
+ }
730
+ }, [storageSource]);
731
+ const handleUpload = useCallback(async (uploadFiles) => {
732
+ for (const file_0 of uploadFiles) {
733
+ const key = currentPath ? `${currentPath}/${file_0.name}` : file_0.name;
734
+ await storageSource.putObject({
735
+ file: file_0,
736
+ key
737
+ });
738
+ }
739
+ snackbarController.open({
740
+ type: "success",
741
+ message: `${uploadFiles.length} file${uploadFiles.length > 1 ? "s" : ""} uploaded successfully`
742
+ });
743
+ fetchContents(currentPath);
744
+ }, [storageSource, currentPath, snackbarController, fetchContents]);
745
+ const handleDeleteFile = useCallback(async (file_1) => {
746
+ try {
747
+ await storageSource.deleteObject(file_1.fullPath);
748
+ snackbarController.open({
749
+ type: "success",
750
+ message: `"${file_1.name}" deleted`
751
+ });
752
+ setSelectedFile(null);
753
+ setSelectedDownloadUrl(null);
754
+ fetchContents(currentPath);
755
+ } catch (e_0) {
756
+ snackbarController.open({
757
+ type: "error",
758
+ message: e_0 instanceof Error ? e_0.message : String(e_0)
759
+ });
760
+ }
761
+ }, [storageSource, currentPath, snackbarController, fetchContents]);
762
+ const handleRefresh = useCallback(() => {
763
+ fetchContents(currentPath);
764
+ }, [currentPath, fetchContents]);
765
+ const segments = breadcrumbSegments(currentPath);
766
+ const renderContents = () => {
767
+ if (loading) {
768
+ return /* @__PURE__ */ jsx("div", { className: "flex-grow flex items-center justify-center", children: /* @__PURE__ */ jsxs("div", { className: "text-center", children: [
769
+ /* @__PURE__ */ jsx(CircularProgress, { size: "medium" }),
770
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "mt-4 text-text-secondary dark:text-text-secondary-dark font-mono tracking-tight animate-pulse", children: "Loading..." })
771
+ ] }) });
772
+ }
773
+ if (error) {
774
+ return /* @__PURE__ */ jsx("div", { className: "flex-grow flex items-center justify-center p-6 overflow-auto", children: /* @__PURE__ */ jsx(ErrorView, { title: "Error loading storage", error, onRetry: handleRefresh }) });
775
+ }
776
+ const allItems = [...folders, ...files];
777
+ if (allItems.length === 0) {
778
+ return /* @__PURE__ */ jsx("div", { className: "flex-grow flex items-center justify-center text-text-disabled dark:text-text-disabled-dark", children: /* @__PURE__ */ jsxs("div", { className: "text-center", children: [
779
+ /* @__PURE__ */ jsx("svg", { className: "w-12 h-12 mx-auto mb-4 opacity-50", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1, d: "M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z" }) }),
780
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", children: "This folder is empty" }),
781
+ /* @__PURE__ */ jsxs(Button, { className: "mt-3", onClick: () => setUploadDialogOpen(true), children: [
782
+ /* @__PURE__ */ jsx(PlusIcon, { size: iconSize.smallest }),
783
+ "Upload files"
784
+ ] })
785
+ ] }) });
786
+ }
787
+ if (viewMode === "list") {
788
+ return /* @__PURE__ */ jsx("div", { className: "flex-grow overflow-auto", children: /* @__PURE__ */ jsxs("table", { className: "w-full", children: [
789
+ /* @__PURE__ */ jsx("thead", { children: /* @__PURE__ */ jsxs("tr", { className: cls("border-b text-left text-[10px] uppercase tracking-wider text-text-disabled dark:text-text-disabled-dark", defaultBorderMixin), children: [
790
+ /* @__PURE__ */ jsx("th", { className: "px-4 py-2 font-bold", children: "Name" }),
791
+ /* @__PURE__ */ jsx("th", { className: "px-4 py-2 font-bold w-24", children: "Type" }),
792
+ /* @__PURE__ */ jsx("th", { className: "px-4 py-2 font-bold w-24 text-right", children: "Size" })
793
+ ] }) }),
794
+ /* @__PURE__ */ jsxs("tbody", { children: [
795
+ folders.map((folder) => /* @__PURE__ */ jsxs("tr", { className: "hover:bg-surface-100 dark:hover:bg-surface-950 cursor-pointer transition-colors border-b border-surface-100 dark:border-surface-950/50", onClick: () => handleNavigate(folder.fullPath), children: [
796
+ /* @__PURE__ */ jsx("td", { className: "px-4 py-2.5", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
797
+ /* @__PURE__ */ jsx(FolderIcon, { size: iconSize.smallest, className: "text-amber-500 dark:text-amber-400 shrink-0" }),
798
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[13px] font-medium truncate", children: folder.name })
799
+ ] }) }),
800
+ /* @__PURE__ */ jsx("td", { className: "px-4 py-2.5", children: /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-text-secondary dark:text-text-secondary-dark", children: "Folder" }) }),
801
+ /* @__PURE__ */ jsx("td", { className: "px-4 py-2.5 text-right", children: /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-text-disabled dark:text-text-disabled-dark", children: "—" }) })
802
+ ] }, folder.fullPath)),
803
+ files.map((file_2) => {
804
+ const FileIconComp = getFileIcon(file_2.contentType);
805
+ const isSelected = selectedFile?.fullPath === file_2.fullPath;
806
+ return /* @__PURE__ */ jsxs("tr", { className: cls("cursor-pointer transition-colors border-b border-surface-100 dark:border-surface-950/50", isSelected ? "bg-primary/5 dark:bg-primary/10" : "hover:bg-surface-100 dark:hover:bg-surface-950"), onClick: () => handleSelectFile(file_2), children: [
807
+ /* @__PURE__ */ jsx("td", { className: "px-4 py-2.5", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
808
+ /* @__PURE__ */ jsx(FileIconComp, { size: iconSize.smallest, className: "text-surface-accent-400 shrink-0" }),
809
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[13px] truncate", children: file_2.name })
810
+ ] }) }),
811
+ /* @__PURE__ */ jsx("td", { className: "px-4 py-2.5", children: /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-text-secondary dark:text-text-secondary-dark", children: getExtension(file_2.name) || file_2.contentType?.split("/")[1]?.toUpperCase() || "—" }) }),
812
+ /* @__PURE__ */ jsx("td", { className: "px-4 py-2.5 text-right", children: /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-text-secondary dark:text-text-secondary-dark font-mono text-[11px]", children: file_2.size !== void 0 ? formatFileSize(file_2.size) : "—" }) })
813
+ ] }, file_2.fullPath);
814
+ })
815
+ ] })
816
+ ] }) });
817
+ }
818
+ return /* @__PURE__ */ jsxs("div", { className: "flex-grow overflow-auto p-4", children: [
819
+ folders.length > 0 && /* @__PURE__ */ jsxs("div", { className: "mb-4", children: [
820
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-[10px] uppercase tracking-wider font-bold text-text-disabled dark:text-text-disabled-dark mb-2 block", children: "Folders" }),
821
+ /* @__PURE__ */ jsx("div", { className: "grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6 gap-3", children: folders.map((folder_0) => /* @__PURE__ */ jsxs("div", { className: cls("rounded-lg p-3 cursor-pointer transition-all duration-150 border", defaultBorderMixin, "hover:bg-surface-100 dark:hover:bg-surface-950 hover:shadow-sm", "flex items-center gap-2"), onClick: () => handleNavigate(folder_0.fullPath), children: [
822
+ /* @__PURE__ */ jsx(FolderIcon, { size: iconSize.smallest, className: "text-amber-500 dark:text-amber-400 shrink-0" }),
823
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[13px] font-medium truncate", children: folder_0.name })
824
+ ] }, folder_0.fullPath)) })
825
+ ] }),
826
+ files.length > 0 && /* @__PURE__ */ jsxs("div", { children: [
827
+ /* @__PURE__ */ jsxs(Typography, { variant: "caption", className: "text-[10px] uppercase tracking-wider font-bold text-text-disabled dark:text-text-disabled-dark mb-2 block", children: [
828
+ "Files (",
829
+ files.length,
830
+ ")"
831
+ ] }),
832
+ /* @__PURE__ */ jsx("div", { className: "grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6 gap-3", children: files.map((file_3) => {
833
+ const FileIconComp_0 = getFileIcon(file_3.contentType);
834
+ const ext = getExtension(file_3.name)?.toLowerCase() || "";
835
+ const isImage = file_3.contentType?.startsWith("image/") || ["jpg", "jpeg", "png", "gif", "webp", "svg"].includes(ext);
836
+ const isSelected_0 = selectedFile?.fullPath === file_3.fullPath;
837
+ return /* @__PURE__ */ jsxs("div", { className: cls("rounded-lg overflow-hidden cursor-pointer transition-all duration-150 border group", defaultBorderMixin, "hover:shadow-md hover:-translate-y-0.5", isSelected_0 && "ring-2 ring-primary"), onClick: () => handleSelectFile(file_3), children: [
838
+ /* @__PURE__ */ jsxs("div", { className: "aspect-square relative overflow-hidden bg-surface-100 dark:bg-surface-950 flex items-center justify-center", children: [
839
+ isImage && file_3.downloadUrl ? /* @__PURE__ */ jsx("img", { src: file_3.downloadUrl, alt: file_3.name, className: "w-full h-full object-cover transition-transform duration-200 group-hover:scale-105", loading: "lazy" }) : /* @__PURE__ */ jsx(FileIconComp_0, { className: "text-surface-accent-400 dark:text-surface-accent-500 w-8 h-8" }),
840
+ getExtension(file_3.name) && /* @__PURE__ */ jsx("div", { className: "absolute bottom-1.5 right-1.5 px-1.5 py-0.5 rounded text-[9px] font-bold uppercase bg-black/50 text-white backdrop-blur-sm", children: getExtension(file_3.name) }),
841
+ /* @__PURE__ */ jsx("div", { className: cls("absolute inset-0 bg-black/0 group-hover:bg-black/10", "transition-colors duration-200") })
842
+ ] }),
843
+ /* @__PURE__ */ jsxs("div", { className: "p-2.5", children: [
844
+ /* @__PURE__ */ jsx(Typography, { variant: "body2", className: "text-[12px] font-medium truncate text-surface-900 dark:text-white", children: file_3.name }),
845
+ /* @__PURE__ */ jsx(Typography, { variant: "caption", color: "secondary", className: "truncate block mt-0.5 text-[11px]", children: file_3.size !== void 0 ? formatFileSize(file_3.size) : "—" })
846
+ ] })
847
+ ] }, file_3.fullPath);
848
+ }) })
849
+ ] })
850
+ ] });
851
+ };
852
+ return /* @__PURE__ */ jsxs("div", { className: "flex h-full w-full bg-white dark:bg-surface-950 overflow-hidden text-text-primary dark:text-text-primary-dark", children: [
853
+ /* @__PURE__ */ jsx(ResizablePanels, { orientation: "horizontal", panelSizePercent: sidebarSize, onPanelSizeChange: setSidebarSize, minPanelSizePx: 180, firstPanel: /* @__PURE__ */ jsx(StorageSidebar, { folders, currentPath, onNavigate: handleNavigate, loading }), secondPanel: /* @__PURE__ */ jsxs("div", { className: "flex h-full w-full", children: [
854
+ /* @__PURE__ */ jsxs("div", { className: "flex-grow flex flex-col min-w-0 h-full", children: [
855
+ /* @__PURE__ */ jsxs("div", { className: cls("flex items-center justify-between pr-2 border-b bg-white dark:bg-surface-950 shrink-0", defaultBorderMixin), children: [
856
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1.5 flex-grow overflow-hidden px-3 py-2", children: [
857
+ currentPath && /* @__PURE__ */ jsx(Tooltip, { title: "Go up", children: /* @__PURE__ */ jsx(IconButton, { size: "small", onClick: handleNavigateUp, children: /* @__PURE__ */ jsx(ArrowLeftIcon, { size: iconSize.smallest }) }) }),
858
+ /* @__PURE__ */ jsx("div", { className: "flex items-center gap-0.5 overflow-x-auto no-scrollbar", children: segments.map((seg, i) => /* @__PURE__ */ jsxs(React.Fragment, { children: [
859
+ i > 0 && /* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-text-disabled dark:text-text-disabled-dark mx-0.5", children: "/" }),
860
+ /* @__PURE__ */ jsx(Button, { variant: "text", size: "small", className: cls("px-1.5 py-0.5 min-h-0 min-w-0 h-6 text-xs whitespace-nowrap normal-case font-normal", i === segments.length - 1 ? "text-text-primary dark:text-text-primary-dark font-medium" : "text-text-secondary dark:text-text-secondary-dark"), onClick: () => handleNavigate(seg.path), children: seg.label })
861
+ ] }, seg.path)) }),
862
+ /* @__PURE__ */ jsx("div", { className: "flex-1" }),
863
+ !loading && /* @__PURE__ */ jsxs(Chip, { size: "small", className: "shrink-0 text-[10px]", children: [
864
+ files.length,
865
+ " file",
866
+ files.length !== 1 ? "s" : "",
867
+ folders.length > 0 ? `, ${folders.length} folder${folders.length !== 1 ? "s" : ""}` : ""
868
+ ] })
869
+ ] }),
870
+ /* @__PURE__ */ jsxs("div", { className: "flex shrink-0 items-center justify-end gap-1.5 pr-1", children: [
871
+ /* @__PURE__ */ jsx(Tooltip, { title: "Grid view", children: /* @__PURE__ */ jsx(IconButton, { size: "small", onClick: () => setViewMode("grid"), className: cls(viewMode === "grid" && "bg-surface-100 dark:bg-surface-950"), children: /* @__PURE__ */ jsx(LayoutGridIcon, { size: iconSize.smallest }) }) }),
872
+ /* @__PURE__ */ jsx(Tooltip, { title: "List view", children: /* @__PURE__ */ jsx(IconButton, { size: "small", onClick: () => setViewMode("list"), className: cls(viewMode === "list" && "bg-surface-100 dark:bg-surface-950"), children: /* @__PURE__ */ jsx(ListIcon, { size: iconSize.smallest }) }) }),
873
+ /* @__PURE__ */ jsx("div", { className: "h-4 w-px bg-surface-200 dark:bg-surface-950 mx-0.5" }),
874
+ /* @__PURE__ */ jsx(Tooltip, { title: "Refresh", children: /* @__PURE__ */ jsx(IconButton, { size: "small", onClick: handleRefresh, disabled: loading, children: /* @__PURE__ */ jsx(RefreshCwIcon, { size: iconSize.smallest }) }) }),
875
+ /* @__PURE__ */ jsxs(Button, { size: "small", color: "primary", onClick: () => setUploadDialogOpen(true), children: [
876
+ /* @__PURE__ */ jsx(UploadCloudIcon, { size: iconSize.smallest, className: "mr-1" }),
877
+ "Upload"
878
+ ] })
879
+ ] })
880
+ ] }),
881
+ /* @__PURE__ */ jsx("div", { className: "flex-grow flex flex-col overflow-hidden min-h-0", children: renderContents() }),
882
+ /* @__PURE__ */ jsxs("div", { className: cls("px-4 py-1.5 border-t bg-surface-50 dark:bg-surface-900 flex items-center justify-between shrink-0", defaultBorderMixin), children: [
883
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4 text-[11px]", children: [
884
+ /* @__PURE__ */ jsx("span", { className: "text-text-disabled dark:text-text-disabled-dark font-bold uppercase tracking-tighter", children: "Path" }),
885
+ /* @__PURE__ */ jsxs("span", { className: "font-mono text-text-secondary dark:text-text-secondary-dark", children: [
886
+ "/",
887
+ currentPath || ""
888
+ ] })
889
+ ] }),
890
+ selectedFile && /* @__PURE__ */ jsxs("div", { className: "text-[11px] text-text-secondary dark:text-text-secondary-dark", children: [
891
+ "Selected: ",
892
+ /* @__PURE__ */ jsx("span", { className: "font-mono", children: selectedFile.name })
893
+ ] })
894
+ ] })
895
+ ] }),
896
+ selectedFile && /* @__PURE__ */ jsx("div", { className: "w-80 lg:w-96 shrink-0", children: /* @__PURE__ */ jsx(FilePreviewPanel, { file: selectedFile, downloadUrl: selectedDownloadUrl, onClose: () => {
897
+ setSelectedFile(null);
898
+ setSelectedDownloadUrl(null);
899
+ }, onDelete: () => handleDeleteFile(selectedFile) }) })
900
+ ] }) }),
901
+ /* @__PURE__ */ jsx(UploadDialog, { open: uploadDialogOpen, currentPath, onClose: () => setUploadDialogOpen(false), onUpload: handleUpload })
902
+ ] });
903
+ };
904
+ export {
905
+ StorageView
906
+ };
907
+ //# sourceMappingURL=StorageView-CTqGFhY9.js.map