@plutonhq/core-frontend 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.
- package/LICENSE +202 -0
- package/README.md +3 -0
- package/dist/@types/backups.d.ts +76 -0
- package/dist/@types/backups.d.ts.map +1 -0
- package/dist/@types/devices.d.ts +234 -0
- package/dist/@types/devices.d.ts.map +1 -0
- package/dist/@types/index.d.ts +11 -0
- package/dist/@types/index.d.ts.map +1 -0
- package/dist/@types/index.js +2 -0
- package/dist/@types/index.js.map +1 -0
- package/dist/@types/plans.d.ts +192 -0
- package/dist/@types/plans.d.ts.map +1 -0
- package/dist/@types/restores.d.ts +107 -0
- package/dist/@types/restores.d.ts.map +1 -0
- package/dist/@types/settings.d.ts +20 -0
- package/dist/@types/settings.d.ts.map +1 -0
- package/dist/@types/storages.d.ts +33 -0
- package/dist/@types/storages.d.ts.map +1 -0
- package/dist/@types/system.d.ts +12 -0
- package/dist/@types/system.d.ts.map +1 -0
- package/dist/components/App/App/App.d.ts +3 -0
- package/dist/components/App/App/App.d.ts.map +1 -0
- package/dist/components/App/App/App.js +35 -0
- package/dist/components/App/App/App.js.map +1 -0
- package/dist/components/App/App/App.module.scss +14 -0
- package/dist/components/App/App/App.module.scss.js +10 -0
- package/dist/components/App/App/App.module.scss.js.map +1 -0
- package/dist/components/App/AppContent/AppContent.d.ts +4 -0
- package/dist/components/App/AppContent/AppContent.d.ts.map +1 -0
- package/dist/components/App/AppContent/AppContent.js +7 -0
- package/dist/components/App/AppContent/AppContent.js.map +1 -0
- package/dist/components/App/AppContent/AppContent.module.scss +12 -0
- package/dist/components/App/AppContent/AppContent.module.scss.js +8 -0
- package/dist/components/App/AppContent/AppContent.module.scss.js.map +1 -0
- package/dist/components/App/Footer/Footer.d.ts +8 -0
- package/dist/components/App/Footer/Footer.d.ts.map +1 -0
- package/dist/components/App/Footer/Footer.js +23 -0
- package/dist/components/App/Footer/Footer.js.map +1 -0
- package/dist/components/App/Footer/Footer.module.scss +23 -0
- package/dist/components/App/Footer/Footer.module.scss.js +8 -0
- package/dist/components/App/Footer/Footer.module.scss.js.map +1 -0
- package/dist/components/App/PageTitle/PageTitle.d.ts +5 -0
- package/dist/components/App/PageTitle/PageTitle.d.ts.map +1 -0
- package/dist/components/App/PageTitle/PageTitle.js +13 -0
- package/dist/components/App/PageTitle/PageTitle.js.map +1 -0
- package/dist/components/App/SideNav/SideNav.d.ts +3 -0
- package/dist/components/App/SideNav/SideNav.d.ts.map +1 -0
- package/dist/components/App/SideNav/SideNav.js +91 -0
- package/dist/components/App/SideNav/SideNav.js.map +1 -0
- package/dist/components/App/SideNav/SideNav.module.scss +58 -0
- package/dist/components/App/SideNav/SideNav.module.scss.js +12 -0
- package/dist/components/App/SideNav/SideNav.module.scss.js.map +1 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.d.ts +7 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.d.ts.map +1 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.js +94 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.js.map +1 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.module.scss +142 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.module.scss.js +40 -0
- package/dist/components/Device/DeviceBackups/DeviceBackups.module.scss.js.map +1 -0
- package/dist/components/Device/DeviceCPU/DeviceCPU.d.ts +7 -0
- package/dist/components/Device/DeviceCPU/DeviceCPU.d.ts.map +1 -0
- package/dist/components/Device/DeviceCPU/DeviceCPU.js +51 -0
- package/dist/components/Device/DeviceCPU/DeviceCPU.js.map +1 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.d.ts +8 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.d.ts.map +1 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.js +27 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.js.map +1 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.module.scss +214 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.module.scss.js +42 -0
- package/dist/components/Device/DeviceInfo/DeviceInfo.module.scss.js.map +1 -0
- package/dist/components/Device/DeviceItem/DeviceItem.d.ts +8 -0
- package/dist/components/Device/DeviceItem/DeviceItem.d.ts.map +1 -0
- package/dist/components/Device/DeviceItem/DeviceItem.js +89 -0
- package/dist/components/Device/DeviceItem/DeviceItem.js.map +1 -0
- package/dist/components/Device/DeviceItem/DeviceItem.module.scss +216 -0
- package/dist/components/Device/DeviceItem/DeviceItem.module.scss.js +38 -0
- package/dist/components/Device/DeviceItem/DeviceItem.module.scss.js.map +1 -0
- package/dist/components/Device/DeviceMemory/DeviceMemory.d.ts +7 -0
- package/dist/components/Device/DeviceMemory/DeviceMemory.d.ts.map +1 -0
- package/dist/components/Device/DeviceMemory/DeviceMemory.js +82 -0
- package/dist/components/Device/DeviceMemory/DeviceMemory.js.map +1 -0
- package/dist/components/Device/DeviceNetworks/DeviceNetworks.d.ts +7 -0
- package/dist/components/Device/DeviceNetworks/DeviceNetworks.d.ts.map +1 -0
- package/dist/components/Device/DeviceNetworks/DeviceNetworks.js +28 -0
- package/dist/components/Device/DeviceNetworks/DeviceNetworks.js.map +1 -0
- package/dist/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.d.ts +8 -0
- package/dist/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.d.ts.map +1 -0
- package/dist/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.js +140 -0
- package/dist/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.js.map +1 -0
- package/dist/components/Device/DeviceResticSettings/DeviceResticSettings.d.ts +8 -0
- package/dist/components/Device/DeviceResticSettings/DeviceResticSettings.d.ts.map +1 -0
- package/dist/components/Device/DeviceResticSettings/DeviceResticSettings.js +55 -0
- package/dist/components/Device/DeviceResticSettings/DeviceResticSettings.js.map +1 -0
- package/dist/components/Device/DeviceStorageDisks/DeviceStorageDisks.d.ts +7 -0
- package/dist/components/Device/DeviceStorageDisks/DeviceStorageDisks.d.ts.map +1 -0
- package/dist/components/Device/DeviceStorageDisks/DeviceStorageDisks.js +26 -0
- package/dist/components/Device/DeviceStorageDisks/DeviceStorageDisks.js.map +1 -0
- package/dist/components/Device/DeviceStorageDrives/DeviceStorageDrives.d.ts +7 -0
- package/dist/components/Device/DeviceStorageDrives/DeviceStorageDrives.d.ts.map +1 -0
- package/dist/components/Device/DeviceStorageDrives/DeviceStorageDrives.js +48 -0
- package/dist/components/Device/DeviceStorageDrives/DeviceStorageDrives.js.map +1 -0
- package/dist/components/Device/DeviceSystem/DeviceSystem.d.ts +8 -0
- package/dist/components/Device/DeviceSystem/DeviceSystem.d.ts.map +1 -0
- package/dist/components/Device/DeviceSystem/DeviceSystem.js +43 -0
- package/dist/components/Device/DeviceSystem/DeviceSystem.js.map +1 -0
- package/dist/components/Device/EditDevice/EditDevice.d.ts +8 -0
- package/dist/components/Device/EditDevice/EditDevice.d.ts.map +1 -0
- package/dist/components/Device/EditDevice/EditDevice.js +130 -0
- package/dist/components/Device/EditDevice/EditDevice.js.map +1 -0
- package/dist/components/Device/EditDevice/EditDevice.module.scss +110 -0
- package/dist/components/Device/EditDevice/EditDevice.module.scss.js +20 -0
- package/dist/components/Device/EditDevice/EditDevice.module.scss.js.map +1 -0
- package/dist/components/Plan/AddPlan/AddPlan.d.ts +7 -0
- package/dist/components/Plan/AddPlan/AddPlan.d.ts.map +1 -0
- package/dist/components/Plan/AddPlan/AddPlan.js +38 -0
- package/dist/components/Plan/AddPlan/AddPlan.js.map +1 -0
- package/dist/components/Plan/AddPlan/AddPlan.module.scss +191 -0
- package/dist/components/Plan/AddPlan/AddPlan.module.scss.js +20 -0
- package/dist/components/Plan/AddPlan/AddPlan.module.scss.js.map +1 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.d.ts +14 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.d.ts.map +1 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.js +73 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.js.map +1 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.module.scss +189 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.module.scss.js +46 -0
- package/dist/components/Plan/BackupEvents/BackupEvents.module.scss.js.map +1 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.d.ts +12 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.d.ts.map +1 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.js +160 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.js.map +1 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.module.scss +120 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.module.scss.js +34 -0
- package/dist/components/Plan/BackupProgress/BackupProgress.module.scss.js.map +1 -0
- package/dist/components/Plan/Backups/Backups.d.ts +11 -0
- package/dist/components/Plan/Backups/Backups.d.ts.map +1 -0
- package/dist/components/Plan/Backups/Backups.js +276 -0
- package/dist/components/Plan/Backups/Backups.js.map +1 -0
- package/dist/components/Plan/Backups/Backups.module.scss +210 -0
- package/dist/components/Plan/Backups/Backups.module.scss.js +46 -0
- package/dist/components/Plan/Backups/Backups.module.scss.js.map +1 -0
- package/dist/components/Plan/EditPlan/EditPlan.d.ts +8 -0
- package/dist/components/Plan/EditPlan/EditPlan.d.ts.map +1 -0
- package/dist/components/Plan/EditPlan/EditPlan.js +42 -0
- package/dist/components/Plan/EditPlan/EditPlan.js.map +1 -0
- package/dist/components/Plan/EditPlan/EditPlan.module.scss +41 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.d.ts +7 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.d.ts.map +1 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.js +49 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.js.map +1 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.module.scss +58 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.module.scss.js +16 -0
- package/dist/components/Plan/PlanBackups/PlanBackups.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanForm/PlanForm.d.ts +15 -0
- package/dist/components/Plan/PlanForm/PlanForm.d.ts.map +1 -0
- package/dist/components/Plan/PlanForm/PlanForm.js +173 -0
- package/dist/components/Plan/PlanForm/PlanForm.js.map +1 -0
- package/dist/components/Plan/PlanForm/PlanForm.module.scss +72 -0
- package/dist/components/Plan/PlanForm/PlanForm.module.scss.js +18 -0
- package/dist/components/Plan/PlanForm/PlanForm.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanForm/PlanFormNav.d.ts +8 -0
- package/dist/components/Plan/PlanForm/PlanFormNav.d.ts.map +1 -0
- package/dist/components/Plan/PlanForm/PlanFormNav.js +70 -0
- package/dist/components/Plan/PlanForm/PlanFormNav.js.map +1 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.d.ts +9 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.d.ts.map +1 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.js +49 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.js.map +1 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.module.scss +44 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.module.scss.js +18 -0
- package/dist/components/Plan/PlanHistory/PlanHistory.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanItems/PlanItem.d.ts +8 -0
- package/dist/components/Plan/PlanItems/PlanItem.d.ts.map +1 -0
- package/dist/components/Plan/PlanItems/PlanItem.js +171 -0
- package/dist/components/Plan/PlanItems/PlanItem.js.map +1 -0
- package/dist/components/Plan/PlanItems/PlanItem.module.scss +332 -0
- package/dist/components/Plan/PlanItems/PlanItem.module.scss.js +40 -0
- package/dist/components/Plan/PlanItems/PlanItem.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.d.ts +9 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.d.ts.map +1 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.js +13 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.js.map +1 -0
- package/dist/components/Plan/PlanLogs/PlanLogs.module.scss +0 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.d.ts +7 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.d.ts.map +1 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.js +33 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.js.map +1 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.module.scss +42 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.module.scss.js +20 -0
- package/dist/components/Plan/PlanPendingBackup/PlanPendingBackup.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.d.ts +13 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.d.ts.map +1 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.js +45 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.js.map +1 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.module.scss +19 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.module.scss.js +8 -0
- package/dist/components/Plan/PlanProgress/PlanProgress.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanPruneModal/PlanPruneModal.d.ts +12 -0
- package/dist/components/Plan/PlanPruneModal/PlanPruneModal.d.ts.map +1 -0
- package/dist/components/Plan/PlanPruneModal/PlanPruneModal.js +44 -0
- package/dist/components/Plan/PlanPruneModal/PlanPruneModal.js.map +1 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.d.ts +9 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.d.ts.map +1 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.js +56 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.js.map +1 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.module.scss +9 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.module.scss.js +8 -0
- package/dist/components/Plan/PlanRemoveModal/PlanRemoveModal.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanAdvancedSettings.d.ts +11 -0
- package/dist/components/Plan/PlanSettings/PlanAdvancedSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanAdvancedSettings.js +94 -0
- package/dist/components/Plan/PlanSettings/PlanAdvancedSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanGeneralSettings.d.ts +8 -0
- package/dist/components/Plan/PlanSettings/PlanGeneralSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanGeneralSettings.js +55 -0
- package/dist/components/Plan/PlanSettings/PlanGeneralSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanNotificationSettings.d.ts +10 -0
- package/dist/components/Plan/PlanSettings/PlanNotificationSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanNotificationSettings.js +67 -0
- package/dist/components/Plan/PlanSettings/PlanNotificationSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanPerformanceSettings.d.ts +8 -0
- package/dist/components/Plan/PlanSettings/PlanPerformanceSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanPerformanceSettings.js +88 -0
- package/dist/components/Plan/PlanSettings/PlanPerformanceSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanPruneSettings.d.ts +8 -0
- package/dist/components/Plan/PlanSettings/PlanPruneSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanPruneSettings.js +104 -0
- package/dist/components/Plan/PlanSettings/PlanPruneSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanScriptsSettings.d.ts +9 -0
- package/dist/components/Plan/PlanSettings/PlanScriptsSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanScriptsSettings.js +273 -0
- package/dist/components/Plan/PlanSettings/PlanScriptsSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanSettings.module.scss +464 -0
- package/dist/components/Plan/PlanSettings/PlanSettings.module.scss.js +60 -0
- package/dist/components/Plan/PlanSettings/PlanSettings.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanSourceSettings.d.ts +10 -0
- package/dist/components/Plan/PlanSettings/PlanSourceSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanSourceSettings.js +47 -0
- package/dist/components/Plan/PlanSettings/PlanSourceSettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanStrategySettings.d.ts +16 -0
- package/dist/components/Plan/PlanSettings/PlanStrategySettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanStrategySettings.js +19 -0
- package/dist/components/Plan/PlanSettings/PlanStrategySettings.js.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanTypeSettings.d.ts +16 -0
- package/dist/components/Plan/PlanSettings/PlanTypeSettings.d.ts.map +1 -0
- package/dist/components/Plan/PlanSettings/PlanTypeSettings.js +17 -0
- package/dist/components/Plan/PlanSettings/PlanTypeSettings.js.map +1 -0
- package/dist/components/Plan/PlanStats/PlanStats.d.ts +9 -0
- package/dist/components/Plan/PlanStats/PlanStats.d.ts.map +1 -0
- package/dist/components/Plan/PlanStats/PlanStats.js +81 -0
- package/dist/components/Plan/PlanStats/PlanStats.js.map +1 -0
- package/dist/components/Plan/PlanStats/PlanStats.module.scss +125 -0
- package/dist/components/Plan/PlanStats/PlanStats.module.scss.js +22 -0
- package/dist/components/Plan/PlanStats/PlanStats.module.scss.js.map +1 -0
- package/dist/components/Plan/PlanUnlockModal/PlanUnlockModal.d.ts +8 -0
- package/dist/components/Plan/PlanUnlockModal/PlanUnlockModal.d.ts.map +1 -0
- package/dist/components/Plan/PlanUnlockModal/PlanUnlockModal.js +29 -0
- package/dist/components/Plan/PlanUnlockModal/PlanUnlockModal.js.map +1 -0
- package/dist/components/Plan/Restores/Restores.d.ts +10 -0
- package/dist/components/Plan/Restores/Restores.d.ts.map +1 -0
- package/dist/components/Plan/Restores/Restores.js +144 -0
- package/dist/components/Plan/Restores/Restores.js.map +1 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.d.ts +8 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.d.ts.map +1 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.js +27 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.js.map +1 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.module.scss +71 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.module.scss.js +16 -0
- package/dist/components/Restore/RestoreChangeViewer/RestoreChangeViewer.module.scss.js.map +1 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.d.ts +17 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.d.ts.map +1 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.js +268 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.js.map +1 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.module.scss +326 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.module.scss.js +70 -0
- package/dist/components/Restore/RestoreFileSelector/RestoreFileSelector.module.scss.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreConfirmStep.d.ts +17 -0
- package/dist/components/Restore/RestoreWizard/RestoreConfirmStep.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreConfirmStep.js +77 -0
- package/dist/components/Restore/RestoreWizard/RestoreConfirmStep.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreFileSelectorStep.d.ts +19 -0
- package/dist/components/Restore/RestoreWizard/RestoreFileSelectorStep.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreFileSelectorStep.js +59 -0
- package/dist/components/Restore/RestoreWizard/RestoreFileSelectorStep.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestorePreviewStep.d.ts +18 -0
- package/dist/components/Restore/RestoreWizard/RestorePreviewStep.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestorePreviewStep.js +85 -0
- package/dist/components/Restore/RestoreWizard/RestorePreviewStep.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreSettingsStep.d.ts +11 -0
- package/dist/components/Restore/RestoreWizard/RestoreSettingsStep.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreSettingsStep.js +160 -0
- package/dist/components/Restore/RestoreWizard/RestoreSettingsStep.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.d.ts +8 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.d.ts.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.js +115 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.js.map +1 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.module.scss +390 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.module.scss.js +64 -0
- package/dist/components/Restore/RestoreWizard/RestoreWizard.module.scss.js.map +1 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.d.ts +8 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.d.ts.map +1 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.js +192 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.js.map +1 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.module.scss +299 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.module.scss.js +68 -0
- package/dist/components/Restore/RestoredFileBrowser/RestoredFileBrowser.module.scss.js.map +1 -0
- package/dist/components/Settings/AppLogs/AppLogs.d.ts +6 -0
- package/dist/components/Settings/AppLogs/AppLogs.d.ts.map +1 -0
- package/dist/components/Settings/AppLogs/AppLogs.js +14 -0
- package/dist/components/Settings/AppLogs/AppLogs.js.map +1 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.d.ts +8 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.d.ts.map +1 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.js +59 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.js.map +1 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.module.scss +3 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.module.scss.js +8 -0
- package/dist/components/Settings/GeneralSettings/GeneralSettings.module.scss.js.map +1 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.d.ts +8 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.d.ts.map +1 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.js +47 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.js.map +1 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.module.scss +38 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.module.scss.js +12 -0
- package/dist/components/Settings/IntegrationSettings/IntegrationSettings.module.scss.js.map +1 -0
- package/dist/components/Settings/IntegrationSettings/SMTPSettings.d.ts +9 -0
- package/dist/components/Settings/IntegrationSettings/SMTPSettings.d.ts.map +1 -0
- package/dist/components/Settings/IntegrationSettings/SMTPSettings.js +73 -0
- package/dist/components/Settings/IntegrationSettings/SMTPSettings.js.map +1 -0
- package/dist/components/Skeleton/SkeletonItems.d.ts +8 -0
- package/dist/components/Skeleton/SkeletonItems.d.ts.map +1 -0
- package/dist/components/Skeleton/SkeletonItems.js +21 -0
- package/dist/components/Skeleton/SkeletonItems.js.map +1 -0
- package/dist/components/Skeleton/SkeletonItems.module.scss +162 -0
- package/dist/components/Skeleton/SkeletonItems.module.scss.js +26 -0
- package/dist/components/Skeleton/SkeletonItems.module.scss.js.map +1 -0
- package/dist/components/Storage/AddStorage/AddStorage.d.ts +6 -0
- package/dist/components/Storage/AddStorage/AddStorage.d.ts.map +1 -0
- package/dist/components/Storage/AddStorage/AddStorage.js +186 -0
- package/dist/components/Storage/AddStorage/AddStorage.js.map +1 -0
- package/dist/components/Storage/AddStorage/AddStorage.module.scss +168 -0
- package/dist/components/Storage/AddStorage/AddStorage.module.scss.js +34 -0
- package/dist/components/Storage/AddStorage/AddStorage.module.scss.js.map +1 -0
- package/dist/components/Storage/EditStorage/EditStorage.d.ts +8 -0
- package/dist/components/Storage/EditStorage/EditStorage.d.ts.map +1 -0
- package/dist/components/Storage/EditStorage/EditStorage.js +149 -0
- package/dist/components/Storage/EditStorage/EditStorage.js.map +1 -0
- package/dist/components/Storage/EditStorage/EditStorage.module.scss +0 -0
- package/dist/components/Storage/StorageAuthSettings/StorageAuthSettings.d.ts +14 -0
- package/dist/components/Storage/StorageAuthSettings/StorageAuthSettings.d.ts.map +1 -0
- package/dist/components/Storage/StorageAuthSettings/StorageAuthSettings.js +116 -0
- package/dist/components/Storage/StorageAuthSettings/StorageAuthSettings.js.map +1 -0
- package/dist/components/Storage/StorageItem/StorageItem.d.ts +8 -0
- package/dist/components/Storage/StorageItem/StorageItem.d.ts.map +1 -0
- package/dist/components/Storage/StorageItem/StorageItem.js +149 -0
- package/dist/components/Storage/StorageItem/StorageItem.js.map +1 -0
- package/dist/components/Storage/StorageItem/StorageItem.module.scss +231 -0
- package/dist/components/Storage/StorageItem/StorageItem.module.scss.js +32 -0
- package/dist/components/Storage/StorageItem/StorageItem.module.scss.js.map +1 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.d.ts +10 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.d.ts.map +1 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.js +139 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.js.map +1 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.module.scss +29 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.module.scss.js +8 -0
- package/dist/components/Storage/StorageSettings/StorageSettings.module.scss.js.map +1 -0
- package/dist/components/common/ActionModal/ActionModal.d.ts +25 -0
- package/dist/components/common/ActionModal/ActionModal.d.ts.map +1 -0
- package/dist/components/common/ActionModal/ActionModal.js +42 -0
- package/dist/components/common/ActionModal/ActionModal.js.map +1 -0
- package/dist/components/common/ActionModal/ActionModal.module.scss +60 -0
- package/dist/components/common/ActionModal/ActionModal.module.scss.js +16 -0
- package/dist/components/common/ActionModal/ActionModal.module.scss.js.map +1 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.d.ts +13 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.d.ts.map +1 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.js +47 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.js.map +1 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.module.scss +88 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.module.scss.js +30 -0
- package/dist/components/common/AnimatedWrapper/AnimatedWrapper.module.scss.js.map +1 -0
- package/dist/components/common/Button/Button.d.ts +15 -0
- package/dist/components/common/Button/Button.d.ts.map +1 -0
- package/dist/components/common/Button/Button.js +25 -0
- package/dist/components/common/Button/Button.js.map +1 -0
- package/dist/components/common/Button/Button.module.scss +56 -0
- package/dist/components/common/Button/Button.module.scss.js +26 -0
- package/dist/components/common/Button/Button.module.scss.js.map +1 -0
- package/dist/components/common/FileIcon/FileIcon.d.ts +8 -0
- package/dist/components/common/FileIcon/FileIcon.d.ts.map +1 -0
- package/dist/components/common/FileIcon/FileIcon.js +10 -0
- package/dist/components/common/FileIcon/FileIcon.js.map +1 -0
- package/dist/components/common/FileManager/FileManager.d.ts +14 -0
- package/dist/components/common/FileManager/FileManager.d.ts.map +1 -0
- package/dist/components/common/FileManager/FileManager.js +156 -0
- package/dist/components/common/FileManager/FileManager.js.map +1 -0
- package/dist/components/common/FileManager/FileManager.module.scss +196 -0
- package/dist/components/common/FileManager/FileManager.module.scss.js +30 -0
- package/dist/components/common/FileManager/FileManager.module.scss.js.map +1 -0
- package/dist/components/common/FolderPicker/FolderPicker.d.ts +12 -0
- package/dist/components/common/FolderPicker/FolderPicker.d.ts.map +1 -0
- package/dist/components/common/FolderPicker/FolderPicker.js +50 -0
- package/dist/components/common/FolderPicker/FolderPicker.js.map +1 -0
- package/dist/components/common/FolderPicker/FolderPicker.module.scss +77 -0
- package/dist/components/common/FolderPicker/FolderPicker.module.scss.js +16 -0
- package/dist/components/common/FolderPicker/FolderPicker.module.scss.js.map +1 -0
- package/dist/components/common/Icon/Icon.d.ts +10 -0
- package/dist/components/common/Icon/Icon.d.ts.map +1 -0
- package/dist/components/common/Icon/Icon.js +1349 -0
- package/dist/components/common/Icon/Icon.js.map +1 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.d.ts +8 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.d.ts.map +1 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.js +30 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.js.map +1 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.module.scss +51 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.module.scss.js +10 -0
- package/dist/components/common/ItemsLayout/ItemsLayout.module.scss.js.map +1 -0
- package/dist/components/common/LogViewer/LogViewer.d.ts +13 -0
- package/dist/components/common/LogViewer/LogViewer.d.ts.map +1 -0
- package/dist/components/common/LogViewer/LogViewer.js +112 -0
- package/dist/components/common/LogViewer/LogViewer.js.map +1 -0
- package/dist/components/common/LogViewer/LogViewer.module.scss +188 -0
- package/dist/components/common/LogViewer/LogViewer.module.scss.js +52 -0
- package/dist/components/common/LogViewer/LogViewer.module.scss.js.map +1 -0
- package/dist/components/common/Logo/Logo.d.ts +9 -0
- package/dist/components/common/Logo/Logo.d.ts.map +1 -0
- package/dist/components/common/Logo/Logo.js +12 -0
- package/dist/components/common/Logo/Logo.js.map +1 -0
- package/dist/components/common/Modal/Modal.d.ts +13 -0
- package/dist/components/common/Modal/Modal.d.ts.map +1 -0
- package/dist/components/common/Modal/Modal.js +49 -0
- package/dist/components/common/Modal/Modal.js.map +1 -0
- package/dist/components/common/Modal/Modal.module.scss +81 -0
- package/dist/components/common/Modal/Modal.module.scss.js +16 -0
- package/dist/components/common/Modal/Modal.module.scss.js.map +1 -0
- package/dist/components/common/NotFound/NotFound.d.ts +8 -0
- package/dist/components/common/NotFound/NotFound.d.ts.map +1 -0
- package/dist/components/common/NotFound/NotFound.js +20 -0
- package/dist/components/common/NotFound/NotFound.js.map +1 -0
- package/dist/components/common/NotFound/NotFound.module.scss +36 -0
- package/dist/components/common/NotFound/NotFound.module.scss.js +8 -0
- package/dist/components/common/NotFound/NotFound.module.scss.js.map +1 -0
- package/dist/components/common/PageHeader/PageHeader.d.ts +12 -0
- package/dist/components/common/PageHeader/PageHeader.d.ts.map +1 -0
- package/dist/components/common/PageHeader/PageHeader.js +22 -0
- package/dist/components/common/PageHeader/PageHeader.js.map +1 -0
- package/dist/components/common/PageHeader/PageHeader.module.scss +61 -0
- package/dist/components/common/PageHeader/PageHeader.module.scss.js +14 -0
- package/dist/components/common/PageHeader/PageHeader.module.scss.js.map +1 -0
- package/dist/components/common/PathPicker/PathPicker.d.ts +16 -0
- package/dist/components/common/PathPicker/PathPicker.d.ts.map +1 -0
- package/dist/components/common/PathPicker/PathPicker.js +213 -0
- package/dist/components/common/PathPicker/PathPicker.js.map +1 -0
- package/dist/components/common/PathPicker/PathPicker.module.scss +278 -0
- package/dist/components/common/PathPicker/PathPicker.module.scss.js +38 -0
- package/dist/components/common/PathPicker/PathPicker.module.scss.js.map +1 -0
- package/dist/components/common/SearchItems/SearchItems.d.ts +7 -0
- package/dist/components/common/SearchItems/SearchItems.d.ts.map +1 -0
- package/dist/components/common/SearchItems/SearchItems.js +38 -0
- package/dist/components/common/SearchItems/SearchItems.js.map +1 -0
- package/dist/components/common/SearchItems/SearchItems.module.scss +48 -0
- package/dist/components/common/SearchItems/SearchItems.module.scss.js +14 -0
- package/dist/components/common/SearchItems/SearchItems.module.scss.js.map +1 -0
- package/dist/components/common/SidePanel/SidePanel.d.ts +12 -0
- package/dist/components/common/SidePanel/SidePanel.d.ts.map +1 -0
- package/dist/components/common/SidePanel/SidePanel.js +40 -0
- package/dist/components/common/SidePanel/SidePanel.js.map +1 -0
- package/dist/components/common/SidePanel/SidePanel.module.scss +217 -0
- package/dist/components/common/SidePanel/SidePanel.module.scss.js +26 -0
- package/dist/components/common/SidePanel/SidePanel.module.scss.js.map +1 -0
- package/dist/components/common/SortItems/SortItems.d.ts +10 -0
- package/dist/components/common/SortItems/SortItems.d.ts.map +1 -0
- package/dist/components/common/SortItems/SortItems.js +52 -0
- package/dist/components/common/SortItems/SortItems.js.map +1 -0
- package/dist/components/common/SortItems/SortItems.module.scss +53 -0
- package/dist/components/common/SortItems/SortItems.module.scss.js +16 -0
- package/dist/components/common/SortItems/SortItems.module.scss.js.map +1 -0
- package/dist/components/common/StatusLabel/StatusLabel.d.ts +7 -0
- package/dist/components/common/StatusLabel/StatusLabel.d.ts.map +1 -0
- package/dist/components/common/StatusLabel/StatusLabel.js +29 -0
- package/dist/components/common/StatusLabel/StatusLabel.js.map +1 -0
- package/dist/components/common/StatusLabel/StatusLabel.module.scss +0 -0
- package/dist/components/common/Tabs/Tabs.d.ts +32 -0
- package/dist/components/common/Tabs/Tabs.d.ts.map +1 -0
- package/dist/components/common/Tabs/Tabs.js +33 -0
- package/dist/components/common/Tabs/Tabs.js.map +1 -0
- package/dist/components/common/Tabs/Tabs.module.scss +43 -0
- package/dist/components/common/Tabs/Tabs.module.scss.js +15 -0
- package/dist/components/common/Tabs/Tabs.module.scss.js.map +1 -0
- package/dist/components/common/TagsFilter/TagsFilter.d.ts +7 -0
- package/dist/components/common/TagsFilter/TagsFilter.d.ts.map +1 -0
- package/dist/components/common/TagsFilter/TagsFilter.js +45 -0
- package/dist/components/common/TagsFilter/TagsFilter.js.map +1 -0
- package/dist/components/common/TagsFilter/TagsFilter.module.scss +59 -0
- package/dist/components/common/TagsFilter/TagsFilter.module.scss.js +18 -0
- package/dist/components/common/TagsFilter/TagsFilter.module.scss.js.map +1 -0
- package/dist/components/common/form/FormField/FormField.d.ts +14 -0
- package/dist/components/common/form/FormField/FormField.d.ts.map +1 -0
- package/dist/components/common/form/FormField/FormField.js +19 -0
- package/dist/components/common/form/FormField/FormField.js.map +1 -0
- package/dist/components/common/form/FormField/FormField.module.scss +32 -0
- package/dist/components/common/form/FormField/FormField.module.scss.js +18 -0
- package/dist/components/common/form/FormField/FormField.module.scss.js.map +1 -0
- package/dist/components/common/form/Input/Input.d.ts +21 -0
- package/dist/components/common/form/Input/Input.d.ts.map +1 -0
- package/dist/components/common/form/Input/Input.js +57 -0
- package/dist/components/common/form/Input/Input.js.map +1 -0
- package/dist/components/common/form/Input/Input.module.scss +71 -0
- package/dist/components/common/form/Input/Input.module.scss.js +22 -0
- package/dist/components/common/form/Input/Input.module.scss.js.map +1 -0
- package/dist/components/common/form/IntervalField/IntervalField.d.ts +14 -0
- package/dist/components/common/form/IntervalField/IntervalField.d.ts.map +1 -0
- package/dist/components/common/form/IntervalField/IntervalField.js +133 -0
- package/dist/components/common/form/IntervalField/IntervalField.js.map +1 -0
- package/dist/components/common/form/IntervalField/IntervalField.module.scss +47 -0
- package/dist/components/common/form/IntervalField/IntervalField.module.scss.js +18 -0
- package/dist/components/common/form/IntervalField/IntervalField.module.scss.js.map +1 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.d.ts +26 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.d.ts.map +1 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.js +76 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.js.map +1 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.module.scss +157 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.module.scss.js +30 -0
- package/dist/components/common/form/MultiSelect/MultiSelect.module.scss.js.map +1 -0
- package/dist/components/common/form/NumberInput/NumberInput.d.ts +19 -0
- package/dist/components/common/form/NumberInput/NumberInput.d.ts.map +1 -0
- package/dist/components/common/form/NumberInput/NumberInput.js +63 -0
- package/dist/components/common/form/NumberInput/NumberInput.js.map +1 -0
- package/dist/components/common/form/NumberInput/NumberInput.module.scss +102 -0
- package/dist/components/common/form/NumberInput/NumberInput.module.scss.js +22 -0
- package/dist/components/common/form/NumberInput/NumberInput.module.scss.js.map +1 -0
- package/dist/components/common/form/PasswordField/PasswordField.d.ts +19 -0
- package/dist/components/common/form/PasswordField/PasswordField.d.ts.map +1 -0
- package/dist/components/common/form/PasswordField/PasswordField.js +57 -0
- package/dist/components/common/form/PasswordField/PasswordField.js.map +1 -0
- package/dist/components/common/form/PasswordField/PasswordField.module.scss +78 -0
- package/dist/components/common/form/PasswordField/PasswordField.module.scss.js +24 -0
- package/dist/components/common/form/PasswordField/PasswordField.module.scss.js.map +1 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.d.ts +20 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.d.ts.map +1 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.js +50 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.js.map +1 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.module.scss +104 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.module.scss.js +26 -0
- package/dist/components/common/form/RadioIconSelect/RadioIconSelect.module.scss.js.map +1 -0
- package/dist/components/common/form/Select/Select.d.ts +27 -0
- package/dist/components/common/form/Select/Select.d.ts.map +1 -0
- package/dist/components/common/form/Select/Select.js +76 -0
- package/dist/components/common/form/Select/Select.js.map +1 -0
- package/dist/components/common/form/Select/Select.module.scss +193 -0
- package/dist/components/common/form/Select/Select.module.scss.js +40 -0
- package/dist/components/common/form/Select/Select.module.scss.js.map +1 -0
- package/dist/components/common/form/SizePicker/SizePicker.d.ts +13 -0
- package/dist/components/common/form/SizePicker/SizePicker.d.ts.map +1 -0
- package/dist/components/common/form/SizePicker/SizePicker.js +60 -0
- package/dist/components/common/form/SizePicker/SizePicker.js.map +1 -0
- package/dist/components/common/form/SizePicker/SizePicker.module.scss +82 -0
- package/dist/components/common/form/SizePicker/SizePicker.module.scss.js +20 -0
- package/dist/components/common/form/SizePicker/SizePicker.module.scss.js.map +1 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.d.ts +18 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.d.ts.map +1 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.js +77 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.js.map +1 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.module.scss +114 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.module.scss.js +16 -0
- package/dist/components/common/form/StoragePicker/StoragePicker.module.scss.js.map +1 -0
- package/dist/components/common/form/TagsInput/TagsInput.d.ts +13 -0
- package/dist/components/common/form/TagsInput/TagsInput.d.ts.map +1 -0
- package/dist/components/common/form/TagsInput/TagsInput.js +51 -0
- package/dist/components/common/form/TagsInput/TagsInput.js.map +1 -0
- package/dist/components/common/form/TagsInput/TagsInput.module.scss +54 -0
- package/dist/components/common/form/TagsInput/TagsInput.module.scss.js +14 -0
- package/dist/components/common/form/TagsInput/TagsInput.module.scss.js.map +1 -0
- package/dist/components/common/form/TimePicker/TimePicker.d.ts +10 -0
- package/dist/components/common/form/TimePicker/TimePicker.d.ts.map +1 -0
- package/dist/components/common/form/TimePicker/TimePicker.js +69 -0
- package/dist/components/common/form/TimePicker/TimePicker.js.map +1 -0
- package/dist/components/common/form/TimePicker/TimePicker.module.scss +73 -0
- package/dist/components/common/form/TimePicker/TimePicker.module.scss.js +28 -0
- package/dist/components/common/form/TimePicker/TimePicker.module.scss.js.map +1 -0
- package/dist/components/common/form/Toggle/Toggle.d.ts +13 -0
- package/dist/components/common/form/Toggle/Toggle.d.ts.map +1 -0
- package/dist/components/common/form/Toggle/Toggle.js +19 -0
- package/dist/components/common/form/Toggle/Toggle.js.map +1 -0
- package/dist/components/common/form/Toggle/Toggle.module.scss +68 -0
- package/dist/components/common/form/Toggle/Toggle.module.scss.js +12 -0
- package/dist/components/common/form/Toggle/Toggle.module.scss.js.map +1 -0
- package/dist/components/common/form/Tristate/Tristate.d.ts +17 -0
- package/dist/components/common/form/Tristate/Tristate.d.ts.map +1 -0
- package/dist/components/common/form/Tristate/Tristate.js +34 -0
- package/dist/components/common/form/Tristate/Tristate.js.map +1 -0
- package/dist/components/common/form/Tristate/Tristate.module.scss +67 -0
- package/dist/components/common/form/Tristate/Tristate.module.scss.js +18 -0
- package/dist/components/common/form/Tristate/Tristate.module.scss.js.map +1 -0
- package/dist/components/index.d.ts +100 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components.js +198 -0
- package/dist/components.js.map +1 -0
- package/dist/config/features.d.ts +5 -0
- package/dist/config/features.d.ts.map +1 -0
- package/dist/context/ComponentOverrideContext.d.ts +13 -0
- package/dist/context/ComponentOverrideContext.d.ts.map +1 -0
- package/dist/context/ComponentOverrideContext.js +9 -0
- package/dist/context/ComponentOverrideContext.js.map +1 -0
- package/dist/context/ThemeContext.d.ts +13 -0
- package/dist/context/ThemeContext.d.ts.map +1 -0
- package/dist/context/ThemeContext.js +38 -0
- package/dist/context/ThemeContext.js.map +1 -0
- package/dist/context/index.d.ts +6 -0
- package/dist/context/index.d.ts.map +1 -0
- package/dist/context.js +10 -0
- package/dist/context.js.map +1 -0
- package/dist/favicon.png +0 -0
- package/dist/hooks/index.d.ts +6 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/usePlanSingleActions.d.ts +28 -0
- package/dist/hooks/usePlanSingleActions.d.ts.map +1 -0
- package/dist/hooks/usePlanSingleActions.js +70 -0
- package/dist/hooks/usePlanSingleActions.js.map +1 -0
- package/dist/hooks/usePwaAutoUpdate.d.ts +6 -0
- package/dist/hooks/usePwaAutoUpdate.d.ts.map +1 -0
- package/dist/hooks/usePwaAutoUpdate.js +16 -0
- package/dist/hooks/usePwaAutoUpdate.js.map +1 -0
- package/dist/hooks.js +7 -0
- package/dist/hooks.js.map +1 -0
- package/dist/icons/icon-128x128.png +0 -0
- package/dist/icons/icon-144x144.png +0 -0
- package/dist/icons/icon-192x192.png +0 -0
- package/dist/icons/icon-512x512.png +0 -0
- package/dist/icons/icon-72x72.png +0 -0
- package/dist/icons/icon-96x96.png +0 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -0
- package/dist/main.d.ts +2 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/providers/1fichier.png +0 -0
- package/dist/providers/arvan.png +0 -0
- package/dist/providers/azureBlob.png +0 -0
- package/dist/providers/azureFiles.png +0 -0
- package/dist/providers/b2.png +0 -0
- package/dist/providers/box.png +0 -0
- package/dist/providers/ceph.png +0 -0
- package/dist/providers/dreamobjects.png +0 -0
- package/dist/providers/drive.png +0 -0
- package/dist/providers/dropbox.png +0 -0
- package/dist/providers/files.png +0 -0
- package/dist/providers/ftp.png +0 -0
- package/dist/providers/gcs.png +0 -0
- package/dist/providers/gofile.png +0 -0
- package/dist/providers/gphotos.png +0 -0
- package/dist/providers/hdfs.png +0 -0
- package/dist/providers/hidrive.png +0 -0
- package/dist/providers/http.png +0 -0
- package/dist/providers/ibmcos.png +0 -0
- package/dist/providers/idrive.png +0 -0
- package/dist/providers/internetarchive.png +0 -0
- package/dist/providers/ionos.png +0 -0
- package/dist/providers/jottacloud.png +0 -0
- package/dist/providers/koofr.png +0 -0
- package/dist/providers/leviia.png +0 -0
- package/dist/providers/liara.png +0 -0
- package/dist/providers/linkbox.png +0 -0
- package/dist/providers/linode.png +0 -0
- package/dist/providers/local.png +0 -0
- package/dist/providers/lyvecloud.png +0 -0
- package/dist/providers/magalu.png +0 -0
- package/dist/providers/mailru.png +0 -0
- package/dist/providers/mega.png +0 -0
- package/dist/providers/minio.png +0 -0
- package/dist/providers/netstorage.png +0 -0
- package/dist/providers/obs.png +0 -0
- package/dist/providers/onedrive.png +0 -0
- package/dist/providers/opendrive.png +0 -0
- package/dist/providers/oracle.png +0 -0
- package/dist/providers/oss.png +0 -0
- package/dist/providers/outscale.png +0 -0
- package/dist/providers/pcloud.png +0 -0
- package/dist/providers/petabox.png +0 -0
- package/dist/providers/pikpak.png +0 -0
- package/dist/providers/pixeldrain.png +0 -0
- package/dist/providers/premiumizeme.png +0 -0
- package/dist/providers/proton.png +0 -0
- package/dist/providers/putio.png +0 -0
- package/dist/providers/qingstor.png +0 -0
- package/dist/providers/qiniu.png +0 -0
- package/dist/providers/quatrix.png +0 -0
- package/dist/providers/r2.png +0 -0
- package/dist/providers/rackcorp.png +0 -0
- package/dist/providers/rclone.png +0 -0
- package/dist/providers/s3.png +0 -0
- package/dist/providers/scaleway.png +0 -0
- package/dist/providers/seafile.png +0 -0
- package/dist/providers/seaweedfs.png +0 -0
- package/dist/providers/selectel.png +0 -0
- package/dist/providers/sftp.png +0 -0
- package/dist/providers/sharefile.png +0 -0
- package/dist/providers/sia.png +0 -0
- package/dist/providers/smb.png +0 -0
- package/dist/providers/spaces.png +0 -0
- package/dist/providers/storj.png +0 -0
- package/dist/providers/sugarsync.png +0 -0
- package/dist/providers/swift.png +0 -0
- package/dist/providers/synologyc2.png +0 -0
- package/dist/providers/tencent.png +0 -0
- package/dist/providers/ulozto.png +0 -0
- package/dist/providers/wasabi.png +0 -0
- package/dist/providers/webdav.png +0 -0
- package/dist/providers/yandex.png +0 -0
- package/dist/providers/zoho.png +0 -0
- package/dist/router.d.ts +2 -0
- package/dist/router.d.ts.map +1 -0
- package/dist/router.js +40 -0
- package/dist/router.js.map +1 -0
- package/dist/routes/DeviceSingle/DeviceSingle.d.ts +3 -0
- package/dist/routes/DeviceSingle/DeviceSingle.d.ts.map +1 -0
- package/dist/routes/DeviceSingle/DeviceSingle.js +67 -0
- package/dist/routes/DeviceSingle/DeviceSingle.js.map +1 -0
- package/dist/routes/DeviceSingle/DeviceSingle.module.scss +105 -0
- package/dist/routes/DeviceSingle/DeviceSingle.module.scss.js +14 -0
- package/dist/routes/DeviceSingle/DeviceSingle.module.scss.js.map +1 -0
- package/dist/routes/Login/Login.d.ts +3 -0
- package/dist/routes/Login/Login.d.ts.map +1 -0
- package/dist/routes/Login/Login.js +72 -0
- package/dist/routes/Login/Login.js.map +1 -0
- package/dist/routes/Login/Login.module.scss +94 -0
- package/dist/routes/Login/Login.module.scss.js +20 -0
- package/dist/routes/Login/Login.module.scss.js.map +1 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.d.ts +3 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.d.ts.map +1 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.js +7 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.js.map +1 -0
- package/dist/routes/NotFoundRoute/NotFoundRoute.module.scss +0 -0
- package/dist/routes/PlanSingle/PlanSingle.d.ts +3 -0
- package/dist/routes/PlanSingle/PlanSingle.d.ts.map +1 -0
- package/dist/routes/PlanSingle/PlanSingle.js +172 -0
- package/dist/routes/PlanSingle/PlanSingle.js.map +1 -0
- package/dist/routes/PlanSingle/PlanSingle.module.scss +76 -0
- package/dist/routes/PlanSingle/PlanSingle.module.scss.js +20 -0
- package/dist/routes/PlanSingle/PlanSingle.module.scss.js.map +1 -0
- package/dist/routes/Plans/Plans.d.ts +3 -0
- package/dist/routes/Plans/Plans.d.ts.map +1 -0
- package/dist/routes/Plans/Plans.js +91 -0
- package/dist/routes/Plans/Plans.js.map +1 -0
- package/dist/routes/Plans/Plans.module.scss +29 -0
- package/dist/routes/Plans/Plans.module.scss.js +12 -0
- package/dist/routes/Plans/Plans.module.scss.js.map +1 -0
- package/dist/routes/Settings/Settings.d.ts +3 -0
- package/dist/routes/Settings/Settings.d.ts.map +1 -0
- package/dist/routes/Settings/Settings.js +89 -0
- package/dist/routes/Settings/Settings.js.map +1 -0
- package/dist/routes/Settings/Settings.module.scss +112 -0
- package/dist/routes/Settings/Settings.module.scss.js +20 -0
- package/dist/routes/Settings/Settings.module.scss.js.map +1 -0
- package/dist/routes/Sources/Sources.d.ts +7 -0
- package/dist/routes/Sources/Sources.d.ts.map +1 -0
- package/dist/routes/Sources/Sources.js +50 -0
- package/dist/routes/Sources/Sources.js.map +1 -0
- package/dist/routes/Sources/Sources.module.scss +29 -0
- package/dist/routes/Sources/Sources.module.scss.js +12 -0
- package/dist/routes/Sources/Sources.module.scss.js.map +1 -0
- package/dist/routes/Storages/Storages.d.ts +3 -0
- package/dist/routes/Storages/Storages.d.ts.map +1 -0
- package/dist/routes/Storages/Storages.js +63 -0
- package/dist/routes/Storages/Storages.js.map +1 -0
- package/dist/routes/Storages/Storages.module.scss +30 -0
- package/dist/routes/Storages/Storages.module.scss.js +12 -0
- package/dist/routes/Storages/Storages.module.scss.js.map +1 -0
- package/dist/routes/index.d.ts +9 -0
- package/dist/routes/index.d.ts.map +1 -0
- package/dist/routes.js +19 -0
- package/dist/routes.js.map +1 -0
- package/dist/screenshots/screenshot-desktop.png +0 -0
- package/dist/screenshots/screenshot-mobile.png +0 -0
- package/dist/services/backups.d.ts +53 -0
- package/dist/services/backups.d.ts.map +1 -0
- package/dist/services/backups.js +182 -0
- package/dist/services/backups.js.map +1 -0
- package/dist/services/devices.d.ts +33 -0
- package/dist/services/devices.d.ts.map +1 -0
- package/dist/services/devices.js +130 -0
- package/dist/services/devices.js.map +1 -0
- package/dist/services/index.d.ts +11 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/plans.d.ts +40 -0
- package/dist/services/plans.d.ts.map +1 -0
- package/dist/services/plans.js +307 -0
- package/dist/services/plans.js.map +1 -0
- package/dist/services/restores.d.ts +71 -0
- package/dist/services/restores.d.ts.map +1 -0
- package/dist/services/restores.js +204 -0
- package/dist/services/restores.js.map +1 -0
- package/dist/services/settings.d.ts +27 -0
- package/dist/services/settings.d.ts.map +1 -0
- package/dist/services/settings.js +124 -0
- package/dist/services/settings.js.map +1 -0
- package/dist/services/storage.d.ts +33 -0
- package/dist/services/storage.d.ts.map +1 -0
- package/dist/services/storage.js +147 -0
- package/dist/services/storage.js.map +1 -0
- package/dist/services/users.d.ts +12 -0
- package/dist/services/users.d.ts.map +1 -0
- package/dist/services/users.js +68 -0
- package/dist/services/users.js.map +1 -0
- package/dist/services.js +110 -0
- package/dist/services.js.map +1 -0
- package/dist/styles/core-frontend.css +1 -0
- package/dist/styles/fields.scss +49 -0
- package/dist/styles/global.scss +360 -0
- package/dist/styles/steps.scss +67 -0
- package/dist/utils/constants.d.ts +6 -0
- package/dist/utils/constants.d.ts.map +1 -0
- package/dist/utils/constants.js +92 -0
- package/dist/utils/constants.js.map +1 -0
- package/dist/utils/dummy.d.ts +2 -0
- package/dist/utils/dummy.d.ts.map +1 -0
- package/dist/utils/getIconNameforFile.d.ts +2 -0
- package/dist/utils/getIconNameforFile.d.ts.map +1 -0
- package/dist/utils/getIconNameforFile.js +71 -0
- package/dist/utils/getIconNameforFile.js.map +1 -0
- package/dist/utils/helpers.d.ts +36 -0
- package/dist/utils/helpers.d.ts.map +1 -0
- package/dist/utils/helpers.js +176 -0
- package/dist/utils/helpers.js.map +1 -0
- package/dist/utils/index.d.ts +11 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/plans.d.ts +5 -0
- package/dist/utils/plans.d.ts.map +1 -0
- package/dist/utils/plans.js +61 -0
- package/dist/utils/plans.js.map +1 -0
- package/dist/utils/progressHelpers.d.ts +7 -0
- package/dist/utils/progressHelpers.d.ts.map +1 -0
- package/dist/utils/progressHelpers.js +164 -0
- package/dist/utils/progressHelpers.js.map +1 -0
- package/dist/utils/restore.d.ts +5 -0
- package/dist/utils/restore.d.ts.map +1 -0
- package/dist/utils/restore.js +14 -0
- package/dist/utils/restore.js.map +1 -0
- package/dist/utils/storageProviders.d.ts +376 -0
- package/dist/utils/storageProviders.d.ts.map +1 -0
- package/dist/utils/storageProviders.js +377 -0
- package/dist/utils/storageProviders.js.map +1 -0
- package/dist/utils/supportedExtensions.d.ts +1797 -0
- package/dist/utils/supportedExtensions.d.ts.map +1 -0
- package/dist/utils/supportedExtensions.js +5471 -0
- package/dist/utils/supportedExtensions.js.map +1 -0
- package/dist/utils.js +48 -0
- package/dist/utils.js.map +1 -0
- package/package.json +142 -0
- package/src/@types/backups.ts +75 -0
- package/src/@types/devices.ts +239 -0
- package/src/@types/index.ts +11 -0
- package/src/@types/plans.ts +197 -0
- package/src/@types/restores.ts +115 -0
- package/src/@types/settings.ts +20 -0
- package/src/@types/storages.ts +30 -0
- package/src/@types/system.ts +11 -0
- package/src/assets/fileicons.css +6205 -0
- package/src/assets/fileicons.png +0 -0
- package/src/assets/fonts/Inter18pt-Bold.woff +0 -0
- package/src/assets/fonts/Inter18pt-Bold.woff2 +0 -0
- package/src/assets/fonts/Inter18pt-Regular.woff +0 -0
- package/src/assets/fonts/Inter18pt-Regular.woff2 +0 -0
- package/src/assets/fonts/Inter18pt-SemiBold.woff +0 -0
- package/src/assets/fonts/Inter18pt-SemiBold.woff2 +0 -0
- package/src/assets/fonts/fonts.css +29 -0
- package/src/components/App/App/App.module.scss +14 -0
- package/src/components/App/App/App.tsx +51 -0
- package/src/components/App/AppContent/AppContent.module.scss +12 -0
- package/src/components/App/AppContent/AppContent.tsx +14 -0
- package/src/components/App/Footer/Footer.module.scss +23 -0
- package/src/components/App/Footer/Footer.tsx +34 -0
- package/src/components/App/PageTitle/PageTitle.tsx +16 -0
- package/src/components/App/SideNav/SideNav.module.scss +58 -0
- package/src/components/App/SideNav/SideNav.tsx +106 -0
- package/src/components/Device/DeviceBackups/DeviceBackups.module.scss +142 -0
- package/src/components/Device/DeviceBackups/DeviceBackups.tsx +135 -0
- package/src/components/Device/DeviceCPU/DeviceCPU.tsx +60 -0
- package/src/components/Device/DeviceInfo/DeviceInfo.module.scss +214 -0
- package/src/components/Device/DeviceInfo/DeviceInfo.tsx +44 -0
- package/src/components/Device/DeviceItem/DeviceItem.module.scss +216 -0
- package/src/components/Device/DeviceItem/DeviceItem.tsx +94 -0
- package/src/components/Device/DeviceMemory/DeviceMemory.tsx +97 -0
- package/src/components/Device/DeviceNetworks/DeviceNetworks.tsx +48 -0
- package/src/components/Device/DeviceRcloneSettings/DeviceRcloneSettings.tsx +150 -0
- package/src/components/Device/DeviceResticSettings/DeviceResticSettings.tsx +59 -0
- package/src/components/Device/DeviceStorageDisks/DeviceStorageDisks.tsx +38 -0
- package/src/components/Device/DeviceStorageDrives/DeviceStorageDrives.tsx +51 -0
- package/src/components/Device/DeviceSystem/DeviceSystem.tsx +52 -0
- package/src/components/Device/EditDevice/EditDevice.module.scss +110 -0
- package/src/components/Device/EditDevice/EditDevice.tsx +154 -0
- package/src/components/Plan/AddPlan/AddPlan.module.scss +191 -0
- package/src/components/Plan/AddPlan/AddPlan.tsx +56 -0
- package/src/components/Plan/BackupEvents/BackupEvents.module.scss +189 -0
- package/src/components/Plan/BackupEvents/BackupEvents.tsx +113 -0
- package/src/components/Plan/BackupProgress/BackupProgress.module.scss +120 -0
- package/src/components/Plan/BackupProgress/BackupProgress.tsx +212 -0
- package/src/components/Plan/Backups/Backups.module.scss +210 -0
- package/src/components/Plan/Backups/Backups.tsx +295 -0
- package/src/components/Plan/EditPlan/EditPlan.module.scss +41 -0
- package/src/components/Plan/EditPlan/EditPlan.tsx +56 -0
- package/src/components/Plan/PlanBackups/PlanBackups.module.scss +58 -0
- package/src/components/Plan/PlanBackups/PlanBackups.tsx +55 -0
- package/src/components/Plan/PlanForm/PlanForm.module.scss +72 -0
- package/src/components/Plan/PlanForm/PlanForm.tsx +249 -0
- package/src/components/Plan/PlanForm/PlanFormNav.tsx +64 -0
- package/src/components/Plan/PlanHistory/PlanHistory.module.scss +44 -0
- package/src/components/Plan/PlanHistory/PlanHistory.tsx +65 -0
- package/src/components/Plan/PlanItems/PlanItem.module.scss +332 -0
- package/src/components/Plan/PlanItems/PlanItem.tsx +202 -0
- package/src/components/Plan/PlanLogs/PlanLogs.module.scss +0 -0
- package/src/components/Plan/PlanLogs/PlanLogs.tsx +25 -0
- package/src/components/Plan/PlanPendingBackup/PlanPendingBackup.module.scss +42 -0
- package/src/components/Plan/PlanPendingBackup/PlanPendingBackup.tsx +55 -0
- package/src/components/Plan/PlanProgress/PlanProgress.module.scss +19 -0
- package/src/components/Plan/PlanProgress/PlanProgress.tsx +75 -0
- package/src/components/Plan/PlanPruneModal/PlanPruneModal.tsx +59 -0
- package/src/components/Plan/PlanRemoveModal/PlanRemoveModal.module.scss +9 -0
- package/src/components/Plan/PlanRemoveModal/PlanRemoveModal.tsx +72 -0
- package/src/components/Plan/PlanSettings/PlanAdvancedSettings.tsx +115 -0
- package/src/components/Plan/PlanSettings/PlanGeneralSettings.tsx +53 -0
- package/src/components/Plan/PlanSettings/PlanNotificationSettings.tsx +78 -0
- package/src/components/Plan/PlanSettings/PlanPerformanceSettings.tsx +87 -0
- package/src/components/Plan/PlanSettings/PlanPruneSettings.tsx +104 -0
- package/src/components/Plan/PlanSettings/PlanScriptsSettings.tsx +290 -0
- package/src/components/Plan/PlanSettings/PlanSettings.module.scss +464 -0
- package/src/components/Plan/PlanSettings/PlanSourceSettings.tsx +56 -0
- package/src/components/Plan/PlanSettings/PlanStrategySettings.tsx +34 -0
- package/src/components/Plan/PlanSettings/PlanTypeSettings.tsx +34 -0
- package/src/components/Plan/PlanStats/PlanStats.module.scss +125 -0
- package/src/components/Plan/PlanStats/PlanStats.tsx +96 -0
- package/src/components/Plan/PlanUnlockModal/PlanUnlockModal.tsx +34 -0
- package/src/components/Plan/Restores/Restores.tsx +155 -0
- package/src/components/Restore/RestoreChangeViewer/RestoreChangeViewer.module.scss +71 -0
- package/src/components/Restore/RestoreChangeViewer/RestoreChangeViewer.tsx +37 -0
- package/src/components/Restore/RestoreFileSelector/RestoreFileSelector.module.scss +326 -0
- package/src/components/Restore/RestoreFileSelector/RestoreFileSelector.tsx +518 -0
- package/src/components/Restore/RestoreWizard/RestoreConfirmStep.tsx +105 -0
- package/src/components/Restore/RestoreWizard/RestoreFileSelectorStep.tsx +79 -0
- package/src/components/Restore/RestoreWizard/RestorePreviewStep.tsx +124 -0
- package/src/components/Restore/RestoreWizard/RestoreSettingsStep.tsx +171 -0
- package/src/components/Restore/RestoreWizard/RestoreWizard.module.scss +390 -0
- package/src/components/Restore/RestoreWizard/RestoreWizard.tsx +135 -0
- package/src/components/Restore/RestoredFileBrowser/RestoredFileBrowser.module.scss +299 -0
- package/src/components/Restore/RestoredFileBrowser/RestoredFileBrowser.tsx +329 -0
- package/src/components/Settings/AppLogs/AppLogs.tsx +23 -0
- package/src/components/Settings/GeneralSettings/GeneralSettings.module.scss +3 -0
- package/src/components/Settings/GeneralSettings/GeneralSettings.tsx +65 -0
- package/src/components/Settings/IntegrationSettings/IntegrationSettings.module.scss +38 -0
- package/src/components/Settings/IntegrationSettings/IntegrationSettings.tsx +62 -0
- package/src/components/Settings/IntegrationSettings/SMTPSettings.tsx +97 -0
- package/src/components/Skeleton/SkeletonItems.module.scss +162 -0
- package/src/components/Skeleton/SkeletonItems.tsx +33 -0
- package/src/components/Storage/AddStorage/AddStorage.module.scss +168 -0
- package/src/components/Storage/AddStorage/AddStorage.tsx +279 -0
- package/src/components/Storage/EditStorage/EditStorage.module.scss +0 -0
- package/src/components/Storage/EditStorage/EditStorage.tsx +213 -0
- package/src/components/Storage/StorageAuthSettings/StorageAuthSettings.tsx +120 -0
- package/src/components/Storage/StorageItem/StorageItem.module.scss +231 -0
- package/src/components/Storage/StorageItem/StorageItem.tsx +150 -0
- package/src/components/Storage/StorageSettings/StorageSettings.module.scss +29 -0
- package/src/components/Storage/StorageSettings/StorageSettings.tsx +176 -0
- package/src/components/common/ActionModal/ActionModal.module.scss +60 -0
- package/src/components/common/ActionModal/ActionModal.tsx +71 -0
- package/src/components/common/AnimatedWrapper/AnimatedWrapper.module.scss +88 -0
- package/src/components/common/AnimatedWrapper/AnimatedWrapper.tsx +66 -0
- package/src/components/common/Button/Button.module.scss +56 -0
- package/src/components/common/Button/Button.tsx +36 -0
- package/src/components/common/FileIcon/FileIcon.tsx +20 -0
- package/src/components/common/FileManager/FileManager.module.scss +196 -0
- package/src/components/common/FileManager/FileManager.tsx +251 -0
- package/src/components/common/FolderPicker/FolderPicker.module.scss +77 -0
- package/src/components/common/FolderPicker/FolderPicker.tsx +60 -0
- package/src/components/common/Icon/Icon.tsx +1494 -0
- package/src/components/common/ItemsLayout/ItemsLayout.module.scss +51 -0
- package/src/components/common/ItemsLayout/ItemsLayout.tsx +43 -0
- package/src/components/common/LogViewer/LogViewer.module.scss +188 -0
- package/src/components/common/LogViewer/LogViewer.tsx +161 -0
- package/src/components/common/Logo/Logo.tsx +19 -0
- package/src/components/common/Modal/Modal.module.scss +81 -0
- package/src/components/common/Modal/Modal.tsx +88 -0
- package/src/components/common/NotFound/NotFound.module.scss +36 -0
- package/src/components/common/NotFound/NotFound.tsx +22 -0
- package/src/components/common/PageHeader/PageHeader.module.scss +61 -0
- package/src/components/common/PageHeader/PageHeader.tsx +36 -0
- package/src/components/common/PathPicker/PathPicker.module.scss +278 -0
- package/src/components/common/PathPicker/PathPicker.tsx +270 -0
- package/src/components/common/SearchItems/SearchItems.module.scss +48 -0
- package/src/components/common/SearchItems/SearchItems.tsx +45 -0
- package/src/components/common/SidePanel/SidePanel.module.scss +217 -0
- package/src/components/common/SidePanel/SidePanel.tsx +68 -0
- package/src/components/common/SortItems/SortItems.module.scss +53 -0
- package/src/components/common/SortItems/SortItems.tsx +61 -0
- package/src/components/common/StatusLabel/StatusLabel.module.scss +0 -0
- package/src/components/common/StatusLabel/StatusLabel.tsx +36 -0
- package/src/components/common/Tabs/Tabs.module.scss +43 -0
- package/src/components/common/Tabs/Tabs.tsx +101 -0
- package/src/components/common/TagsFilter/TagsFilter.module.scss +59 -0
- package/src/components/common/TagsFilter/TagsFilter.tsx +52 -0
- package/src/components/common/form/FormField/FormField.module.scss +32 -0
- package/src/components/common/form/FormField/FormField.tsx +38 -0
- package/src/components/common/form/Input/Input.module.scss +71 -0
- package/src/components/common/form/Input/Input.tsx +72 -0
- package/src/components/common/form/IntervalField/IntervalField.module.scss +47 -0
- package/src/components/common/form/IntervalField/IntervalField.tsx +148 -0
- package/src/components/common/form/MultiSelect/MultiSelect.module.scss +157 -0
- package/src/components/common/form/MultiSelect/MultiSelect.tsx +132 -0
- package/src/components/common/form/NumberInput/NumberInput.module.scss +102 -0
- package/src/components/common/form/NumberInput/NumberInput.tsx +90 -0
- package/src/components/common/form/PasswordField/PasswordField.module.scss +78 -0
- package/src/components/common/form/PasswordField/PasswordField.tsx +73 -0
- package/src/components/common/form/RadioIconSelect/RadioIconSelect.module.scss +104 -0
- package/src/components/common/form/RadioIconSelect/RadioIconSelect.tsx +68 -0
- package/src/components/common/form/Select/Select.module.scss +193 -0
- package/src/components/common/form/Select/Select.tsx +123 -0
- package/src/components/common/form/SizePicker/SizePicker.module.scss +82 -0
- package/src/components/common/form/SizePicker/SizePicker.tsx +98 -0
- package/src/components/common/form/StoragePicker/StoragePicker.module.scss +114 -0
- package/src/components/common/form/StoragePicker/StoragePicker.tsx +106 -0
- package/src/components/common/form/TagsInput/TagsInput.module.scss +54 -0
- package/src/components/common/form/TagsInput/TagsInput.tsx +83 -0
- package/src/components/common/form/TimePicker/TimePicker.module.scss +73 -0
- package/src/components/common/form/TimePicker/TimePicker.tsx +99 -0
- package/src/components/common/form/Toggle/Toggle.module.scss +68 -0
- package/src/components/common/form/Toggle/Toggle.tsx +34 -0
- package/src/components/common/form/Tristate/Tristate.module.scss +67 -0
- package/src/components/common/form/Tristate/Tristate.tsx +48 -0
- package/src/components/index.ts +117 -0
- package/src/config/features.ts +4 -0
- package/src/context/ComponentOverrideContext.tsx +25 -0
- package/src/context/ThemeContext.tsx +68 -0
- package/src/context/index.ts +6 -0
- package/src/hooks/index.ts +6 -0
- package/src/hooks/usePlanSingleActions.tsx +137 -0
- package/src/hooks/usePwaAutoUpdate.ts +33 -0
- package/src/index.ts +26 -0
- package/src/main.tsx +24 -0
- package/src/router.tsx +48 -0
- package/src/routes/DeviceSingle/DeviceSingle.module.scss +105 -0
- package/src/routes/DeviceSingle/DeviceSingle.tsx +86 -0
- package/src/routes/Login/Login.module.scss +94 -0
- package/src/routes/Login/Login.tsx +99 -0
- package/src/routes/NotFoundRoute/NotFoundRoute.module.scss +0 -0
- package/src/routes/NotFoundRoute/NotFoundRoute.tsx +7 -0
- package/src/routes/PlanSingle/PlanSingle.module.scss +76 -0
- package/src/routes/PlanSingle/PlanSingle.tsx +181 -0
- package/src/routes/Plans/Plans.module.scss +29 -0
- package/src/routes/Plans/Plans.tsx +128 -0
- package/src/routes/Settings/Settings.module.scss +112 -0
- package/src/routes/Settings/Settings.tsx +102 -0
- package/src/routes/Sources/Sources.module.scss +29 -0
- package/src/routes/Sources/Sources.tsx +86 -0
- package/src/routes/Storages/Storages.module.scss +30 -0
- package/src/routes/Storages/Storages.tsx +92 -0
- package/src/routes/index.ts +9 -0
- package/src/services/backups.ts +231 -0
- package/src/services/devices.ts +161 -0
- package/src/services/index.ts +11 -0
- package/src/services/plans.ts +393 -0
- package/src/services/restores.ts +261 -0
- package/src/services/settings.ts +163 -0
- package/src/services/storage.ts +201 -0
- package/src/services/users.ts +91 -0
- package/src/styles/fields.scss +49 -0
- package/src/styles/global.scss +360 -0
- package/src/styles/steps.scss +67 -0
- package/src/utils/constants.ts +89 -0
- package/src/utils/dummy.ts +0 -0
- package/src/utils/getIconNameforFile.ts +142 -0
- package/src/utils/helpers.ts +440 -0
- package/src/utils/index.ts +12 -0
- package/src/utils/plans.ts +78 -0
- package/src/utils/progressHelpers.ts +244 -0
- package/src/utils/restore.ts +28 -0
- package/src/utils/storageProviders.ts +374 -0
- package/src/utils/supportedExtensions.ts +5595 -0
- package/src/vite-env.d.ts +2 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
const t = "PlanItem-module__plan___T7FcA", _ = "PlanItem-module__leftContent___bZDen", e = "PlanItem-module__rightContent___TXmyV", n = "PlanItem-module__status___2TXwW", o = "PlanItem-module__paused___Bel59", l = "PlanItem-module__content___8DzzV", s = "PlanItem-module__title___GG8vd", m = "PlanItem-module__sources___YMD2L", a = "PlanItem-module__sourceCount___joxsj", u = "PlanItem-module__interval___Y-sX6", c = "PlanItem-module__time___NtcaW", r = "PlanItem-module__size___RFKDl", d = "PlanItem-module__moreBtn___TUaUS", i = "PlanItem-module__moreBtnActive___IXurp", I = "PlanItem-module__settings___5bzTY", P = "PlanItem-module__planHasError___2sEP0", p = "PlanItem-module__planGrid___448Rx", C = {
|
|
2
|
+
plan: t,
|
|
3
|
+
leftContent: _,
|
|
4
|
+
rightContent: e,
|
|
5
|
+
status: n,
|
|
6
|
+
paused: o,
|
|
7
|
+
content: l,
|
|
8
|
+
title: s,
|
|
9
|
+
sources: m,
|
|
10
|
+
sourceCount: a,
|
|
11
|
+
interval: u,
|
|
12
|
+
time: c,
|
|
13
|
+
size: r,
|
|
14
|
+
moreBtn: d,
|
|
15
|
+
moreBtnActive: i,
|
|
16
|
+
settings: I,
|
|
17
|
+
planHasError: P,
|
|
18
|
+
planGrid: p
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
l as content,
|
|
22
|
+
C as default,
|
|
23
|
+
u as interval,
|
|
24
|
+
_ as leftContent,
|
|
25
|
+
d as moreBtn,
|
|
26
|
+
i as moreBtnActive,
|
|
27
|
+
o as paused,
|
|
28
|
+
t as plan,
|
|
29
|
+
p as planGrid,
|
|
30
|
+
P as planHasError,
|
|
31
|
+
e as rightContent,
|
|
32
|
+
I as settings,
|
|
33
|
+
r as size,
|
|
34
|
+
a as sourceCount,
|
|
35
|
+
m as sources,
|
|
36
|
+
n as status,
|
|
37
|
+
c as time,
|
|
38
|
+
s as title
|
|
39
|
+
};
|
|
40
|
+
//# sourceMappingURL=PlanItem.module.scss.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanItem.module.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface PlanLogsProps {
|
|
2
|
+
planId: string;
|
|
3
|
+
planMethod: string;
|
|
4
|
+
sourceType: string;
|
|
5
|
+
close: () => void;
|
|
6
|
+
}
|
|
7
|
+
declare const PlanLogs: ({ planId, planMethod, close }: PlanLogsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default PlanLogs;
|
|
9
|
+
//# sourceMappingURL=PlanLogs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanLogs.d.ts","sourceRoot":"","sources":["../../../../src/components/Plan/PlanLogs/PlanLogs.tsx"],"names":[],"mappings":"AAKA,UAAU,aAAa;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,IAAI,CAAC;CACpB;AAED,QAAA,MAAM,QAAQ,GAAI,+BAA+B,aAAa,4CAU7D,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as o, Fragment as l } from "react/jsx-runtime";
|
|
2
|
+
import { useGetPlanLogs as a } from "../../../services/plans.js";
|
|
3
|
+
import g from "../../common/Icon/Icon.js";
|
|
4
|
+
import m from "../../common/LogViewer/LogViewer.js";
|
|
5
|
+
import p from "../../common/SidePanel/SidePanel.js";
|
|
6
|
+
const u = ({ planId: e, planMethod: s, close: n }) => {
|
|
7
|
+
const { data: t, isLoading: i } = a(e), r = (t == null ? void 0 : t.logs) || [];
|
|
8
|
+
return console.log("logs :", r), /* @__PURE__ */ o(p, { width: "80%", title: "Plan Logs", icon: /* @__PURE__ */ o(g, { type: "logs", size: 20 }), footer: /* @__PURE__ */ o(l, {}), close: n, children: /* @__PURE__ */ o(m, { type: "plan", planMethod: s, logs: r, planId: e, isLoading: i }) });
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
u as default
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=PlanLogs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanLogs.js","sources":["../../../../src/components/Plan/PlanLogs/PlanLogs.tsx"],"sourcesContent":["import { useGetPlanLogs } from '../../../services/plans';\r\nimport Icon from '../../common/Icon/Icon';\r\nimport LogViewer from '../../common/LogViewer/LogViewer';\r\nimport SidePanel from '../../common/SidePanel/SidePanel';\r\n\r\ninterface PlanLogsProps {\r\n planId: string;\r\n planMethod: string;\r\n sourceType: string;\r\n close: () => void;\r\n}\r\n\r\nconst PlanLogs = ({ planId, planMethod, close }: PlanLogsProps) => {\r\n const { data: logs, isLoading } = useGetPlanLogs(planId);\r\n const planLogs = logs?.logs || [];\r\n console.log('logs :', planLogs);\r\n\r\n return (\r\n <SidePanel width=\"80%\" title=\"Plan Logs\" icon={<Icon type={'logs'} size={20} />} footer={<></>} close={close}>\r\n <LogViewer type=\"plan\" planMethod={planMethod} logs={planLogs} planId={planId} isLoading={isLoading} />\r\n </SidePanel>\r\n );\r\n};\r\n\r\nexport default PlanLogs;\r\n"],"names":["PlanLogs","planId","planMethod","close","logs","isLoading","useGetPlanLogs","planLogs","jsx","SidePanel","Icon","Fragment","LogViewer"],"mappings":";;;;;AAYA,MAAMA,IAAW,CAAC,EAAE,QAAAC,GAAQ,YAAAC,GAAY,OAAAC,QAA2B;AAChE,QAAM,EAAE,MAAMC,GAAM,WAAAC,EAAA,IAAcC,EAAeL,CAAM,GACjDM,KAAWH,KAAA,gBAAAA,EAAM,SAAQ,CAAA;AAC/B,iBAAQ,IAAI,UAAUG,CAAQ,GAG3B,gBAAAC,EAACC,GAAA,EAAU,OAAM,OAAM,OAAM,aAAY,MAAM,gBAAAD,EAACE,GAAA,EAAK,MAAM,QAAQ,MAAM,GAAA,CAAI,GAAI,QAAQ,gBAAAF,EAAAG,GAAA,CAAA,CAAE,GAAK,OAAAR,GAC7F,UAAA,gBAAAK,EAACI,GAAA,EAAU,MAAK,QAAO,YAAAV,GAAwB,MAAMK,GAAU,QAAAN,GAAgB,WAAAI,EAAA,CAAsB,GACxG;AAEN;"}
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface PlanPendingBackup {
|
|
2
|
+
planId: string;
|
|
3
|
+
onPendingBackupDetect: () => void;
|
|
4
|
+
}
|
|
5
|
+
declare const PlanPendingBackup: ({ planId, onPendingBackupDetect }: PlanPendingBackup) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default PlanPendingBackup;
|
|
7
|
+
//# sourceMappingURL=PlanPendingBackup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanPendingBackup.d.ts","sourceRoot":"","sources":["../../../../src/components/Plan/PlanPendingBackup/PlanPendingBackup.tsx"],"names":[],"mappings":"AAMA,UAAU,iBAAiB;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,qBAAqB,EAAE,MAAM,IAAI,CAAC;CACpC;AAED,QAAA,MAAM,iBAAiB,GAAI,mCAAmC,iBAAiB,4CA0C9E,CAAC;AACF,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { jsxs as a, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect as u } from "react";
|
|
3
|
+
import { useSearchParams as p } from "react-router";
|
|
4
|
+
import { useCheckActiveBackups as m } from "../../../services/plans.js";
|
|
5
|
+
import c from "./PlanPendingBackup.module.scss.js";
|
|
6
|
+
import i from "../../common/Icon/Icon.js";
|
|
7
|
+
const w = ({ planId: s, onPendingBackupDetect: o }) => {
|
|
8
|
+
const [, l] = p(), d = m();
|
|
9
|
+
return u(() => {
|
|
10
|
+
const t = window.setInterval(() => {
|
|
11
|
+
d.mutate(s, {
|
|
12
|
+
onSuccess: (r) => {
|
|
13
|
+
console.log("[isBackupPending] data :", r), r.result && (window.clearInterval(t), l((n) => (n.delete("pendingbackup"), n)), o());
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
}, 1e3);
|
|
17
|
+
return () => window.clearInterval(t);
|
|
18
|
+
}, [s]), /* @__PURE__ */ a("div", { className: c.backup, children: [
|
|
19
|
+
/* @__PURE__ */ e("div", { className: c.backupIcon, children: /* @__PURE__ */ e(i, { type: "loading", size: 24 }) }),
|
|
20
|
+
/* @__PURE__ */ a("div", { className: c.backupLeft, children: [
|
|
21
|
+
/* @__PURE__ */ e("div", { className: c.backupId, children: "Starting Backup..." }),
|
|
22
|
+
/* @__PURE__ */ e("div", { className: c.backupStart, children: /* @__PURE__ */ a("div", { children: [
|
|
23
|
+
/* @__PURE__ */ e(i, { type: "clock", size: 12 }),
|
|
24
|
+
" Starting in a few seconds"
|
|
25
|
+
] }) })
|
|
26
|
+
] }),
|
|
27
|
+
/* @__PURE__ */ e("div", { className: c.backupRight, children: /* @__PURE__ */ e("span", { className: `skeleton-box ${c.progressSkeleton}` }) })
|
|
28
|
+
] });
|
|
29
|
+
};
|
|
30
|
+
export {
|
|
31
|
+
w as default
|
|
32
|
+
};
|
|
33
|
+
//# sourceMappingURL=PlanPendingBackup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanPendingBackup.js","sources":["../../../../src/components/Plan/PlanPendingBackup/PlanPendingBackup.tsx"],"sourcesContent":["import { useEffect } from 'react';\r\nimport { useSearchParams } from 'react-router';\r\nimport { useCheckActiveBackups } from '../../../services/plans';\r\nimport classes from './PlanPendingBackup.module.scss';\r\nimport Icon from '../../common/Icon/Icon';\r\n\r\ninterface PlanPendingBackup {\r\n planId: string;\r\n onPendingBackupDetect: () => void;\r\n}\r\n\r\nconst PlanPendingBackup = ({ planId, onPendingBackupDetect }: PlanPendingBackup) => {\r\n const [, setSearchParams] = useSearchParams();\r\n const checkActiveBackupsMutation = useCheckActiveBackups();\r\n\r\n useEffect(() => {\r\n const interval = window.setInterval(() => {\r\n checkActiveBackupsMutation.mutate(planId, {\r\n onSuccess: (data) => {\r\n console.log('[isBackupPending] data :', data);\r\n if (data.result) {\r\n window.clearInterval(interval);\r\n setSearchParams((params) => {\r\n params.delete('pendingbackup');\r\n return params;\r\n });\r\n onPendingBackupDetect();\r\n }\r\n },\r\n });\r\n }, 1000);\r\n\r\n return () => window.clearInterval(interval);\r\n }, [planId]);\r\n\r\n return (\r\n <div className={classes.backup}>\r\n <div className={classes.backupIcon}>\r\n <Icon type=\"loading\" size={24} />\r\n </div>\r\n <div className={classes.backupLeft}>\r\n <div className={classes.backupId}>Starting Backup...</div>\r\n <div className={classes.backupStart}>\r\n <div>\r\n <Icon type=\"clock\" size={12} /> Starting in a few seconds\r\n </div>\r\n </div>\r\n </div>\r\n <div className={classes.backupRight}>\r\n <span className={`skeleton-box ${classes.progressSkeleton}`} />\r\n </div>\r\n </div>\r\n );\r\n};\r\nexport default PlanPendingBackup;\r\n"],"names":["PlanPendingBackup","planId","onPendingBackupDetect","setSearchParams","useSearchParams","checkActiveBackupsMutation","useCheckActiveBackups","useEffect","interval","data","params","jsxs","classes","jsx","Icon"],"mappings":";;;;;;AAWA,MAAMA,IAAoB,CAAC,EAAE,QAAAC,GAAQ,uBAAAC,QAA+C;AACjF,QAAM,CAAA,EAAGC,CAAe,IAAIC,EAAA,GACtBC,IAA6BC,EAAA;AAEnC,SAAAC,EAAU,MAAM;AACb,UAAMC,IAAW,OAAO,YAAY,MAAM;AACvC,MAAAH,EAA2B,OAAOJ,GAAQ;AAAA,QACvC,WAAW,CAACQ,MAAS;AAClB,kBAAQ,IAAI,4BAA4BA,CAAI,GACxCA,EAAK,WACN,OAAO,cAAcD,CAAQ,GAC7BL,EAAgB,CAACO,OACdA,EAAO,OAAO,eAAe,GACtBA,EACT,GACDR,EAAA;AAAA,QAEN;AAAA,MAAA,CACF;AAAA,IACJ,GAAG,GAAI;AAEP,WAAO,MAAM,OAAO,cAAcM,CAAQ;AAAA,EAC7C,GAAG,CAACP,CAAM,CAAC,GAGR,gBAAAU,EAAC,OAAA,EAAI,WAAWC,EAAQ,QACrB,UAAA;AAAA,IAAA,gBAAAC,EAAC,OAAA,EAAI,WAAWD,EAAQ,YACrB,UAAA,gBAAAC,EAACC,KAAK,MAAK,WAAU,MAAM,GAAA,CAAI,EAAA,CAClC;AAAA,IACA,gBAAAH,EAAC,OAAA,EAAI,WAAWC,EAAQ,YACrB,UAAA;AAAA,MAAA,gBAAAC,EAAC,OAAA,EAAI,WAAWD,EAAQ,UAAU,UAAA,sBAAkB;AAAA,wBACnD,OAAA,EAAI,WAAWA,EAAQ,aACrB,4BAAC,OAAA,EACE,UAAA;AAAA,QAAA,gBAAAC,EAACC,GAAA,EAAK,MAAK,SAAQ,MAAM,IAAI;AAAA,QAAE;AAAA,MAAA,EAAA,CAClC,EAAA,CACH;AAAA,IAAA,GACH;AAAA,IACA,gBAAAD,EAAC,OAAA,EAAI,WAAWD,EAAQ,aACrB,UAAA,gBAAAC,EAAC,QAAA,EAAK,WAAW,gBAAgBD,EAAQ,gBAAgB,GAAA,CAAI,EAAA,CAChE;AAAA,EAAA,GACH;AAEN;"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
.backup {
|
|
2
|
+
width: 100%;
|
|
3
|
+
padding: 10px 15px;
|
|
4
|
+
display: flex;
|
|
5
|
+
justify-content: left;
|
|
6
|
+
align-items: center;
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
border-radius: 6px;
|
|
9
|
+
border: 1px solid var(--line-color);
|
|
10
|
+
margin-bottom: 15px;
|
|
11
|
+
.backupIcon {
|
|
12
|
+
margin-right: 15px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.progressSkeleton {
|
|
16
|
+
display: block;
|
|
17
|
+
width: 100%;
|
|
18
|
+
height: 20px;
|
|
19
|
+
margin-bottom: 10px;
|
|
20
|
+
}
|
|
21
|
+
.backupLeft {
|
|
22
|
+
width: calc(55% - 20px);
|
|
23
|
+
.backupId {
|
|
24
|
+
font-weight: 600;
|
|
25
|
+
margin-bottom: 5px;
|
|
26
|
+
color: var(--content-text-color);
|
|
27
|
+
}
|
|
28
|
+
.backupStart {
|
|
29
|
+
color: var(--content-text-color-light);
|
|
30
|
+
font-size: 0.75rem;
|
|
31
|
+
display: flex;
|
|
32
|
+
gap: 10px;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
.backupRight {
|
|
36
|
+
width: calc(45% - 20px);
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-direction: column;
|
|
39
|
+
gap: 5px;
|
|
40
|
+
padding-top: 10px;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
const a = "PlanPendingBackup-module__backup___Iq0vV", c = "PlanPendingBackup-module__backupIcon___4h5V4", n = "PlanPendingBackup-module__progressSkeleton___jDSEB", _ = "PlanPendingBackup-module__backupLeft___0BA5i", u = "PlanPendingBackup-module__backupId___9k-jo", e = "PlanPendingBackup-module__backupStart___7y-LF", k = "PlanPendingBackup-module__backupRight___urN-H", p = {
|
|
2
|
+
backup: a,
|
|
3
|
+
backupIcon: c,
|
|
4
|
+
progressSkeleton: n,
|
|
5
|
+
backupLeft: _,
|
|
6
|
+
backupId: u,
|
|
7
|
+
backupStart: e,
|
|
8
|
+
backupRight: k
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
a as backup,
|
|
12
|
+
c as backupIcon,
|
|
13
|
+
u as backupId,
|
|
14
|
+
_ as backupLeft,
|
|
15
|
+
k as backupRight,
|
|
16
|
+
e as backupStart,
|
|
17
|
+
p as default,
|
|
18
|
+
n as progressSkeleton
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=PlanPendingBackup.module.scss.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanPendingBackup.module.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Backup } from '../../../@types/backups';
|
|
2
|
+
import { Plan } from '../../../@types/plans';
|
|
3
|
+
import { RestoreSlim } from '../../../@types/restores';
|
|
4
|
+
interface PlanProgressProps {
|
|
5
|
+
plan: Plan;
|
|
6
|
+
isBackupPending: boolean;
|
|
7
|
+
activeBackups: Backup[];
|
|
8
|
+
activeRestores: RestoreSlim[];
|
|
9
|
+
refetchPlan: () => void;
|
|
10
|
+
}
|
|
11
|
+
declare const PlanProgress: ({ plan, isBackupPending, activeBackups, activeRestores, refetchPlan }: PlanProgressProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default PlanProgress;
|
|
13
|
+
//# sourceMappingURL=PlanProgress.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanProgress.d.ts","sourceRoot":"","sources":["../../../../src/components/Plan/PlanProgress/PlanProgress.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAKvD,UAAU,iBAAiB;IACxB,IAAI,EAAE,IAAI,CAAC;IACX,eAAe,EAAE,OAAO,CAAC;IACzB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,cAAc,EAAE,WAAW,EAAE,CAAC;IAC9B,WAAW,EAAE,MAAM,IAAI,CAAC;CAC1B;AAED,QAAA,MAAM,YAAY,GAAI,uEAAuE,iBAAiB,4CAyD7G,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { jsxs as i, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import l from "../BackupProgress/BackupProgress.js";
|
|
3
|
+
import m from "../PlanPendingBackup/PlanPendingBackup.js";
|
|
4
|
+
import a from "./PlanProgress.module.scss.js";
|
|
5
|
+
const v = ({ plan: c, isBackupPending: n, activeBackups: d, activeRestores: r, refetchPlan: p }) => /* @__PURE__ */ i("div", { children: [
|
|
6
|
+
n && /* @__PURE__ */ i("div", { className: a.activeBackups, children: [
|
|
7
|
+
/* @__PURE__ */ e("div", { className: a.backupsHeader, children: /* @__PURE__ */ e("h3", { children: "Backup in Progress" }) }),
|
|
8
|
+
/* @__PURE__ */ e("div", { className: a.activeBackupsTable, children: /* @__PURE__ */ e(m, { planId: c.id, onPendingBackupDetect: () => p() }) })
|
|
9
|
+
] }),
|
|
10
|
+
d.length > 0 && /* @__PURE__ */ i("div", { className: a.activeBackups, children: [
|
|
11
|
+
/* @__PURE__ */ e("div", { className: a.backupsHeader, children: /* @__PURE__ */ i("h3", { children: [
|
|
12
|
+
"Active Backups ",
|
|
13
|
+
/* @__PURE__ */ e("span", { children: d.length })
|
|
14
|
+
] }) }),
|
|
15
|
+
/* @__PURE__ */ e("div", { className: a.activeBackupsTable, children: d.map((s) => /* @__PURE__ */ e(
|
|
16
|
+
l,
|
|
17
|
+
{
|
|
18
|
+
type: "backup",
|
|
19
|
+
item: s,
|
|
20
|
+
sourceId: c.sourceId || "",
|
|
21
|
+
sourceType: "main",
|
|
22
|
+
planId: c.id
|
|
23
|
+
},
|
|
24
|
+
s.id
|
|
25
|
+
)) })
|
|
26
|
+
] }),
|
|
27
|
+
r.length > 0 && /* @__PURE__ */ i("div", { className: a.activeBackups, children: [
|
|
28
|
+
/* @__PURE__ */ e("div", { className: a.backupsHeader, children: /* @__PURE__ */ e("h3", { children: "Restoring Backup" }) }),
|
|
29
|
+
/* @__PURE__ */ e("div", { className: a.activeBackupsTable, children: r.map((s) => /* @__PURE__ */ e(
|
|
30
|
+
l,
|
|
31
|
+
{
|
|
32
|
+
type: "restore",
|
|
33
|
+
item: s,
|
|
34
|
+
sourceId: c.sourceId || "",
|
|
35
|
+
sourceType: "main",
|
|
36
|
+
planId: c.id
|
|
37
|
+
},
|
|
38
|
+
s.id
|
|
39
|
+
)) })
|
|
40
|
+
] })
|
|
41
|
+
] });
|
|
42
|
+
export {
|
|
43
|
+
v as default
|
|
44
|
+
};
|
|
45
|
+
//# sourceMappingURL=PlanProgress.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanProgress.js","sources":["../../../../src/components/Plan/PlanProgress/PlanProgress.tsx"],"sourcesContent":["import { Backup } from '../../../@types/backups';\r\nimport { Plan } from '../../../@types/plans';\r\nimport { RestoreSlim } from '../../../@types/restores';\r\nimport BackupProgress from '../BackupProgress/BackupProgress';\r\nimport PlanPendingBackup from '../PlanPendingBackup/PlanPendingBackup';\r\nimport classes from './PlanProgress.module.scss';\r\n\r\ninterface PlanProgressProps {\r\n plan: Plan;\r\n isBackupPending: boolean;\r\n activeBackups: Backup[];\r\n activeRestores: RestoreSlim[];\r\n refetchPlan: () => void;\r\n}\r\n\r\nconst PlanProgress = ({ plan, isBackupPending, activeBackups, activeRestores, refetchPlan }: PlanProgressProps) => {\r\n return (\r\n <div>\r\n {isBackupPending && (\r\n <div className={classes.activeBackups}>\r\n <div className={classes.backupsHeader}>\r\n <h3>Backup in Progress</h3>\r\n </div>\r\n <div className={classes.activeBackupsTable}>\r\n <PlanPendingBackup planId={plan.id} onPendingBackupDetect={() => refetchPlan()} />\r\n </div>\r\n </div>\r\n )}\r\n\r\n {activeBackups.length > 0 && (\r\n <div className={classes.activeBackups}>\r\n <div className={classes.backupsHeader}>\r\n <h3>\r\n Active Backups <span>{activeBackups.length}</span>\r\n </h3>\r\n </div>\r\n <div className={classes.activeBackupsTable}>\r\n {activeBackups.map((backup) => (\r\n <BackupProgress\r\n key={backup.id}\r\n type={'backup'}\r\n item={backup}\r\n sourceId={plan.sourceId || ''}\r\n sourceType={'main'}\r\n planId={plan.id}\r\n />\r\n ))}\r\n </div>\r\n </div>\r\n )}\r\n\r\n {activeRestores.length > 0 && (\r\n <div className={classes.activeBackups}>\r\n <div className={classes.backupsHeader}>\r\n <h3>Restoring Backup</h3>\r\n </div>\r\n <div className={classes.activeBackupsTable}>\r\n {activeRestores.map((restore) => (\r\n <BackupProgress\r\n key={restore.id}\r\n type={'restore'}\r\n item={restore}\r\n sourceId={plan.sourceId || ''}\r\n sourceType={'main'}\r\n planId={plan.id}\r\n />\r\n ))}\r\n </div>\r\n </div>\r\n )}\r\n </div>\r\n );\r\n};\r\n\r\nexport default PlanProgress;\r\n"],"names":["PlanProgress","plan","isBackupPending","activeBackups","activeRestores","refetchPlan","jsxs","classes","jsx","PlanPendingBackup","backup","BackupProgress","restore"],"mappings":";;;;AAeA,MAAMA,IAAe,CAAC,EAAE,MAAAC,GAAM,iBAAAC,GAAiB,eAAAC,GAAe,gBAAAC,GAAgB,aAAAC,0BAEvE,OAAA,EACG,UAAA;AAAA,EAAAH,KACE,gBAAAI,EAAC,OAAA,EAAI,WAAWC,EAAQ,eACrB,UAAA;AAAA,IAAA,gBAAAC,EAAC,SAAI,WAAWD,EAAQ,eACrB,UAAA,gBAAAC,EAAC,MAAA,EAAG,gCAAkB,EAAA,CACzB;AAAA,IACA,gBAAAA,EAAC,OAAA,EAAI,WAAWD,EAAQ,oBACrB,UAAA,gBAAAC,EAACC,GAAA,EAAkB,QAAQR,EAAK,IAAI,uBAAuB,MAAMI,EAAA,GAAe,EAAA,CACnF;AAAA,EAAA,GACH;AAAA,EAGFF,EAAc,SAAS,uBACpB,OAAA,EAAI,WAAWI,EAAQ,eACrB,UAAA;AAAA,IAAA,gBAAAC,EAAC,OAAA,EAAI,WAAWD,EAAQ,eACrB,4BAAC,MAAA,EAAG,UAAA;AAAA,MAAA;AAAA,MACc,gBAAAC,EAAC,QAAA,EAAM,UAAAL,EAAc,OAAA,CAAO;AAAA,IAAA,EAAA,CAC9C,EAAA,CACH;AAAA,IACA,gBAAAK,EAAC,SAAI,WAAWD,EAAQ,oBACpB,UAAAJ,EAAc,IAAI,CAACO,MACjB,gBAAAF;AAAA,MAACG;AAAA,MAAA;AAAA,QAEE,MAAM;AAAA,QACN,MAAMD;AAAA,QACN,UAAUT,EAAK,YAAY;AAAA,QAC3B,YAAY;AAAA,QACZ,QAAQA,EAAK;AAAA,MAAA;AAAA,MALRS,EAAO;AAAA,IAAA,CAOjB,EAAA,CACJ;AAAA,EAAA,GACH;AAAA,EAGFN,EAAe,SAAS,uBACrB,OAAA,EAAI,WAAWG,EAAQ,eACrB,UAAA;AAAA,IAAA,gBAAAC,EAAC,SAAI,WAAWD,EAAQ,eACrB,UAAA,gBAAAC,EAAC,MAAA,EAAG,8BAAgB,EAAA,CACvB;AAAA,IACA,gBAAAA,EAAC,SAAI,WAAWD,EAAQ,oBACpB,UAAAH,EAAe,IAAI,CAACQ,MAClB,gBAAAJ;AAAA,MAACG;AAAA,MAAA;AAAA,QAEE,MAAM;AAAA,QACN,MAAMC;AAAA,QACN,UAAUX,EAAK,YAAY;AAAA,QAC3B,YAAY;AAAA,QACZ,QAAQA,EAAK;AAAA,MAAA;AAAA,MALRW,EAAQ;AAAA,IAAA,CAOlB,EAAA,CACJ;AAAA,EAAA,EAAA,CACH;AAAA,GAEN;"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.backupsHeader {
|
|
2
|
+
width: 100%;
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
align-items: center;
|
|
6
|
+
padding-top: 10px;
|
|
7
|
+
h3 {
|
|
8
|
+
font-size: 0.75rem;
|
|
9
|
+
font-weight: 600;
|
|
10
|
+
color: var(--content-title-color);
|
|
11
|
+
span {
|
|
12
|
+
background-color: var(--line-color);
|
|
13
|
+
color: var(--content-text-color-light);
|
|
14
|
+
font-size: 0.7rem;
|
|
15
|
+
padding: 1px 8px;
|
|
16
|
+
border-radius: 20px;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanProgress.module.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PlanPrune } from '../../../@types/plans';
|
|
2
|
+
interface PlanPruneModalProps {
|
|
3
|
+
planId: string;
|
|
4
|
+
method: string;
|
|
5
|
+
prune: PlanPrune;
|
|
6
|
+
snapshotsCount: number;
|
|
7
|
+
taskPending: boolean;
|
|
8
|
+
close: () => void;
|
|
9
|
+
}
|
|
10
|
+
declare const PlanPruneModal: ({ planId, method, prune, snapshotsCount, taskPending, close }: PlanPruneModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default PlanPruneModal;
|
|
12
|
+
//# sourceMappingURL=PlanPruneModal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanPruneModal.d.ts","sourceRoot":"","sources":["../../../../src/components/Plan/PlanPruneModal/PlanPruneModal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAKlD,UAAU,mBAAmB;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,SAAS,CAAC;IACjB,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,OAAO,CAAC;IACrB,KAAK,EAAE,MAAM,IAAI,CAAC;CACpB;AAED,QAAA,MAAM,cAAc,GAAI,+DAA+D,mBAAmB,4CA0CzG,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { jsx as a, Fragment as i, jsxs as l } from "react/jsx-runtime";
|
|
2
|
+
import { usePrunePlan as p } from "../../../services/plans.js";
|
|
3
|
+
import { planIntervalAgeName as m } from "../../../utils/plans.js";
|
|
4
|
+
import d from "../../common/ActionModal/ActionModal.js";
|
|
5
|
+
const h = ({ planId: r, method: n, prune: e, snapshotsCount: s, taskPending: c, close: t }) => {
|
|
6
|
+
const o = p();
|
|
7
|
+
return /* @__PURE__ */ a(
|
|
8
|
+
d,
|
|
9
|
+
{
|
|
10
|
+
title: n === "sync" ? "Clean Up Old Revisions" : "Clean Up Old Backups",
|
|
11
|
+
message: /* @__PURE__ */ a(i, { children: n === "sync" ? /* @__PURE__ */ l(i, { children: [
|
|
12
|
+
"Your plan is set to maintain",
|
|
13
|
+
" ",
|
|
14
|
+
e.policy === "forgetByAge" ? `file revisions newer than ${m(e.forgetAge || "3m")}.` : "",
|
|
15
|
+
" ",
|
|
16
|
+
e.policy === "forgetByFileCount" ? `Only keep the last ${e.snapCount} versions of each file.` : "",
|
|
17
|
+
" This action will remove any excess file revisions older than the retention policy."
|
|
18
|
+
] }) : /* @__PURE__ */ l(i, { children: [
|
|
19
|
+
"Your plan is set to maintain ",
|
|
20
|
+
e.snapCount,
|
|
21
|
+
" recent backups(snapshots).",
|
|
22
|
+
" ",
|
|
23
|
+
e.snapCount < s ? `Running prune now will remove
|
|
24
|
+
${s - e.snapCount} older snapshots, freeing up some storage space` : "There are no excess snapshots to clean up."
|
|
25
|
+
] }) }),
|
|
26
|
+
closeModal: () => !o.isPending && t(),
|
|
27
|
+
width: "500px",
|
|
28
|
+
primaryAction: {
|
|
29
|
+
title: n === "sync" ? "Yes, Remove Old Revisions" : e.snapCount < s ? "Yes, Remove Old Backups" : "",
|
|
30
|
+
type: "default",
|
|
31
|
+
isPending: o.isPending,
|
|
32
|
+
action: () => !c && o.mutate(r, {
|
|
33
|
+
onSuccess: () => {
|
|
34
|
+
t();
|
|
35
|
+
}
|
|
36
|
+
})
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
);
|
|
40
|
+
};
|
|
41
|
+
export {
|
|
42
|
+
h as default
|
|
43
|
+
};
|
|
44
|
+
//# sourceMappingURL=PlanPruneModal.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanPruneModal.js","sources":["../../../../src/components/Plan/PlanPruneModal/PlanPruneModal.tsx"],"sourcesContent":["import { PlanPrune } from '../../../@types/plans';\r\nimport { usePrunePlan } from '../../../services/plans';\r\nimport { planIntervalAgeName } from '../../../utils/plans';\r\nimport ActionModal from '../../common/ActionModal/ActionModal';\r\n\r\ninterface PlanPruneModalProps {\r\n planId: string;\r\n method: string;\r\n prune: PlanPrune;\r\n snapshotsCount: number;\r\n taskPending: boolean;\r\n close: () => void;\r\n}\r\n\r\nconst PlanPruneModal = ({ planId, method, prune, snapshotsCount, taskPending, close }: PlanPruneModalProps) => {\r\n const pruneMutation = usePrunePlan();\r\n\r\n return (\r\n <ActionModal\r\n title={method === 'sync' ? 'Clean Up Old Revisions' : 'Clean Up Old Backups'}\r\n message={\r\n <>\r\n {method === 'sync' ? (\r\n <>\r\n Your plan is set to maintain{' '}\r\n {prune.policy === 'forgetByAge' ? `file revisions newer than ${planIntervalAgeName(prune.forgetAge || '3m')}.` : ''}{' '}\r\n {prune.policy === 'forgetByFileCount' ? `Only keep the last ${prune.snapCount} versions of each file.` : ''} This action will\r\n remove any excess file revisions older than the retention policy.\r\n </>\r\n ) : (\r\n <>\r\n Your plan is set to maintain {prune.snapCount} recent backups(snapshots).{' '}\r\n {prune.snapCount < snapshotsCount\r\n ? `Running prune now will remove ${' '}\r\n ${snapshotsCount - prune.snapCount} older snapshots, freeing up some storage space`\r\n : 'There are no excess snapshots to clean up.'}\r\n </>\r\n )}\r\n </>\r\n }\r\n closeModal={() => !pruneMutation.isPending && close()}\r\n width=\"500px\"\r\n primaryAction={{\r\n title: method === 'sync' ? `Yes, Remove Old Revisions` : prune.snapCount < snapshotsCount ? 'Yes, Remove Old Backups' : '',\r\n type: 'default',\r\n isPending: pruneMutation.isPending,\r\n action: () =>\r\n !taskPending &&\r\n pruneMutation.mutate(planId, {\r\n onSuccess: () => {\r\n close();\r\n },\r\n }),\r\n }}\r\n />\r\n );\r\n};\r\n\r\nexport default PlanPruneModal;\r\n"],"names":["PlanPruneModal","planId","method","prune","snapshotsCount","taskPending","close","pruneMutation","usePrunePlan","jsx","ActionModal","Fragment","jsxs","planIntervalAgeName"],"mappings":";;;;AAcA,MAAMA,IAAiB,CAAC,EAAE,QAAAC,GAAQ,QAAAC,GAAQ,OAAAC,GAAO,gBAAAC,GAAgB,aAAAC,GAAa,OAAAC,QAAiC;AAC5G,QAAMC,IAAgBC,EAAA;AAEtB,SACG,gBAAAC;AAAA,IAACC;AAAA,IAAA;AAAA,MACE,OAAOR,MAAW,SAAS,2BAA2B;AAAA,MACtD,SACG,gBAAAO,EAAAE,GAAA,EACI,UAAAT,MAAW,SACT,gBAAAU,EAAAD,GAAA,EAAE,UAAA;AAAA,QAAA;AAAA,QAC8B;AAAA,QAC5BR,EAAM,WAAW,gBAAgB,6BAA6BU,EAAoBV,EAAM,aAAa,IAAI,CAAC,MAAM;AAAA,QAAI;AAAA,QACpHA,EAAM,WAAW,sBAAsB,sBAAsBA,EAAM,SAAS,4BAA4B;AAAA,QAAG;AAAA,MAAA,EAAA,CAE/G,IAEA,gBAAAS,EAAAD,GAAA,EAAE,UAAA;AAAA,QAAA;AAAA,QAC+BR,EAAM;AAAA,QAAU;AAAA,QAA4B;AAAA,QACzEA,EAAM,YAAYC,IACd;AAAA,0BACAA,IAAiBD,EAAM,SAAS,oDAChC;AAAA,MAAA,EAAA,CACR,EAAA,CAEN;AAAA,MAEH,YAAY,MAAM,CAACI,EAAc,aAAaD,EAAA;AAAA,MAC9C,OAAM;AAAA,MACN,eAAe;AAAA,QACZ,OAAOJ,MAAW,SAAS,8BAA8BC,EAAM,YAAYC,IAAiB,4BAA4B;AAAA,QACxH,MAAM;AAAA,QACN,WAAWG,EAAc;AAAA,QACzB,QAAQ,MACL,CAACF,KACDE,EAAc,OAAON,GAAQ;AAAA,UAC1B,WAAW,MAAM;AACd,YAAAK,EAAA;AAAA,UACH;AAAA,QAAA,CACF;AAAA,MAAA;AAAA,IACP;AAAA,EAAA;AAGT;"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface PlanRemoveModalProps {
|
|
2
|
+
planId: string;
|
|
3
|
+
taskPending: boolean;
|
|
4
|
+
actionInProgress: boolean;
|
|
5
|
+
close: (value?: boolean) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const PlanRemoveModal: ({ planId, taskPending, actionInProgress, close }: PlanRemoveModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default PlanRemoveModal;
|
|
9
|
+
//# sourceMappingURL=PlanRemoveModal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanRemoveModal.d.ts","sourceRoot":"","sources":["../../../../src/components/Plan/PlanRemoveModal/PlanRemoveModal.tsx"],"names":[],"mappings":"AAQA,UAAU,oBAAoB;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,OAAO,CAAC;IACrB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,KAAK,EAAE,CAAC,KAAK,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;CACnC;AAED,QAAA,MAAM,eAAe,GAAI,kDAAkD,oBAAoB,4CAsD9F,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { jsx as a, jsxs as p } from "react/jsx-runtime";
|
|
2
|
+
import { useState as d } from "react";
|
|
3
|
+
import { toast as t } from "react-toastify";
|
|
4
|
+
import { useNavigate as g } from "react-router";
|
|
5
|
+
import f from "../../common/ActionModal/ActionModal.js";
|
|
6
|
+
import { useDeletePlan as v } from "../../../services/plans.js";
|
|
7
|
+
import P from "../../common/form/Toggle/Toggle.js";
|
|
8
|
+
import R from "./PlanRemoveModal.module.scss.js";
|
|
9
|
+
const w = ({ planId: r, taskPending: n, actionInProgress: m, close: i }) => {
|
|
10
|
+
const [s, l] = d(!1), c = g(), o = v(), u = () => {
|
|
11
|
+
if (m)
|
|
12
|
+
return t.error("A Backup/Restore Process is in Progress.");
|
|
13
|
+
n || o.mutate(
|
|
14
|
+
{ id: r, removeRemoteData: s },
|
|
15
|
+
{
|
|
16
|
+
onError: (e) => {
|
|
17
|
+
console.log("error :", e == null ? void 0 : e.message), t.error(e.message || "Error Removing Plan!");
|
|
18
|
+
},
|
|
19
|
+
onSuccess: (e) => {
|
|
20
|
+
console.log("Success :", e), t.success("Removed Backup Plan Successfully!", { autoClose: 5e3 }), c("/");
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
);
|
|
24
|
+
};
|
|
25
|
+
return /* @__PURE__ */ a(
|
|
26
|
+
f,
|
|
27
|
+
{
|
|
28
|
+
title: "Remove Backup Plan",
|
|
29
|
+
message: /* @__PURE__ */ p("div", { children: [
|
|
30
|
+
"Are you sure you want to remove this Plan? All the Snapshots of this Backup plan will be removed.",
|
|
31
|
+
/* @__PURE__ */ a(
|
|
32
|
+
P,
|
|
33
|
+
{
|
|
34
|
+
fieldValue: s,
|
|
35
|
+
onUpdate: l,
|
|
36
|
+
description: "Remove remote backup data from the Remote Storage",
|
|
37
|
+
customClasses: R.removeRemoteToggle
|
|
38
|
+
}
|
|
39
|
+
)
|
|
40
|
+
] }),
|
|
41
|
+
closeModal: () => !o.isPending && i(!1),
|
|
42
|
+
width: "400px",
|
|
43
|
+
primaryAction: {
|
|
44
|
+
title: "Yes, Remove Plan",
|
|
45
|
+
type: "danger",
|
|
46
|
+
icon: "trash",
|
|
47
|
+
isPending: o.isPending,
|
|
48
|
+
action: () => u()
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
);
|
|
52
|
+
};
|
|
53
|
+
export {
|
|
54
|
+
w as default
|
|
55
|
+
};
|
|
56
|
+
//# sourceMappingURL=PlanRemoveModal.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanRemoveModal.js","sources":["../../../../src/components/Plan/PlanRemoveModal/PlanRemoveModal.tsx"],"sourcesContent":["import { useState } from 'react';\r\nimport { toast } from 'react-toastify';\r\nimport { useNavigate } from 'react-router';\r\nimport ActionModal from '../../common/ActionModal/ActionModal';\r\nimport { useDeletePlan } from '../../../services/plans';\r\nimport Toggle from '../../common/form/Toggle/Toggle';\r\nimport classes from './PlanRemoveModal.module.scss';\r\n\r\ninterface PlanRemoveModalProps {\r\n planId: string;\r\n taskPending: boolean;\r\n actionInProgress: boolean;\r\n close: (value?: boolean) => void;\r\n}\r\n\r\nconst PlanRemoveModal = ({ planId, taskPending, actionInProgress, close }: PlanRemoveModalProps) => {\r\n const [removeRemoteData, setRemoveRemoteData] = useState(false);\r\n\r\n const navigate = useNavigate();\r\n const deletePlanMutation = useDeletePlan();\r\n\r\n const removePlan = () => {\r\n if (actionInProgress) {\r\n return toast.error('A Backup/Restore Process is in Progress.');\r\n }\r\n if (taskPending) {\r\n return;\r\n }\r\n deletePlanMutation.mutate(\r\n { id: planId, removeRemoteData },\r\n {\r\n onError: (error: Error) => {\r\n console.log('error :', error?.message);\r\n toast.error(error.message || `Error Removing Plan!`);\r\n },\r\n onSuccess: (data: any) => {\r\n console.log('Success :', data);\r\n toast.success(`Removed Backup Plan Successfully!`, { autoClose: 5000 });\r\n navigate('/');\r\n },\r\n },\r\n );\r\n };\r\n\r\n return (\r\n <ActionModal\r\n title=\"Remove Backup Plan\"\r\n message={\r\n <div>\r\n Are you sure you want to remove this Plan? All the Snapshots of this Backup plan will be removed.\r\n <Toggle\r\n fieldValue={removeRemoteData}\r\n onUpdate={setRemoveRemoteData}\r\n description={`Remove remote backup data from the Remote Storage`}\r\n customClasses={classes.removeRemoteToggle}\r\n />\r\n </div>\r\n }\r\n closeModal={() => !deletePlanMutation.isPending && close(false)}\r\n width=\"400px\"\r\n primaryAction={{\r\n title: 'Yes, Remove Plan',\r\n type: 'danger',\r\n icon: 'trash',\r\n isPending: deletePlanMutation.isPending,\r\n action: () => removePlan(),\r\n }}\r\n />\r\n );\r\n};\r\n\r\nexport default PlanRemoveModal;\r\n"],"names":["PlanRemoveModal","planId","taskPending","actionInProgress","close","removeRemoteData","setRemoveRemoteData","useState","navigate","useNavigate","deletePlanMutation","useDeletePlan","removePlan","toast","error","data","jsx","ActionModal","Toggle","classes"],"mappings":";;;;;;;;AAeA,MAAMA,IAAkB,CAAC,EAAE,QAAAC,GAAQ,aAAAC,GAAa,kBAAAC,GAAkB,OAAAC,QAAkC;AACjG,QAAM,CAACC,GAAkBC,CAAmB,IAAIC,EAAS,EAAK,GAExDC,IAAWC,EAAA,GACXC,IAAqBC,EAAA,GAErBC,IAAa,MAAM;AACtB,QAAIT;AACD,aAAOU,EAAM,MAAM,0CAA0C;AAEhE,IAAIX,KAGJQ,EAAmB;AAAA,MAChB,EAAE,IAAIT,GAAQ,kBAAAI,EAAA;AAAA,MACd;AAAA,QACG,SAAS,CAACS,MAAiB;AACxB,kBAAQ,IAAI,WAAWA,KAAA,gBAAAA,EAAO,OAAO,GACrCD,EAAM,MAAMC,EAAM,WAAW,sBAAsB;AAAA,QACtD;AAAA,QACA,WAAW,CAACC,MAAc;AACvB,kBAAQ,IAAI,aAAaA,CAAI,GAC7BF,EAAM,QAAQ,qCAAqC,EAAE,WAAW,KAAM,GACtEL,EAAS,GAAG;AAAA,QACf;AAAA,MAAA;AAAA,IACH;AAAA,EAEN;AAEA,SACG,gBAAAQ;AAAA,IAACC;AAAA,IAAA;AAAA,MACE,OAAM;AAAA,MACN,2BACI,OAAA,EAAI,UAAA;AAAA,QAAA;AAAA,QAEF,gBAAAD;AAAA,UAACE;AAAA,UAAA;AAAA,YACE,YAAYb;AAAA,YACZ,UAAUC;AAAA,YACV,aAAa;AAAA,YACb,eAAea,EAAQ;AAAA,UAAA;AAAA,QAAA;AAAA,MAC1B,GACH;AAAA,MAEH,YAAY,MAAM,CAACT,EAAmB,aAAaN,EAAM,EAAK;AAAA,MAC9D,OAAM;AAAA,MACN,eAAe;AAAA,QACZ,OAAO;AAAA,QACP,MAAM;AAAA,QACN,MAAM;AAAA,QACN,WAAWM,EAAmB;AAAA,QAC9B,QAAQ,MAAME,EAAA;AAAA,MAAW;AAAA,IAC5B;AAAA,EAAA;AAGT;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanRemoveModal.module.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { NewPlanSettings } from '../../../@types/plans';
|
|
2
|
+
import { Device } from '../../../@types/devices';
|
|
3
|
+
interface PlanAdvancedSettingsProps {
|
|
4
|
+
plan: NewPlanSettings;
|
|
5
|
+
appSettings?: Record<string, any>;
|
|
6
|
+
device: Device;
|
|
7
|
+
onUpdate: (notificationSettings: NewPlanSettings) => void;
|
|
8
|
+
}
|
|
9
|
+
declare const PlanAdvancedSettings: ({ plan, appSettings, device, onUpdate }: PlanAdvancedSettingsProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default PlanAdvancedSettings;
|
|
11
|
+
//# sourceMappingURL=PlanAdvancedSettings.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlanAdvancedSettings.d.ts","sourceRoot":"","sources":["../../../../src/components/Plan/PlanSettings/PlanAdvancedSettings.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAMxD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAEjD,UAAU,yBAAyB;IAChC,IAAI,EAAE,eAAe,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAClC,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,oBAAoB,EAAE,eAAe,KAAK,IAAI,CAAC;CAC5D;AAED,QAAA,MAAM,oBAAoB,GAAI,yCAAyC,yBAAyB,4CA2F/F,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { jsxs as c, jsx as i, Fragment as b } from "react/jsx-runtime";
|
|
2
|
+
import { useState as P, useMemo as N } from "react";
|
|
3
|
+
import l from "../../common/Icon/Icon.js";
|
|
4
|
+
import n from "./PlanSettings.module.scss.js";
|
|
5
|
+
import g from "./PlanNotificationSettings.js";
|
|
6
|
+
import h from "./PlanPruneSettings.js";
|
|
7
|
+
import T from "./PlanPerformanceSettings.js";
|
|
8
|
+
import y from "../../common/form/TagsInput/TagsInput.js";
|
|
9
|
+
import A from "./PlanGeneralSettings.js";
|
|
10
|
+
import { isMobile as C } from "../../../utils/helpers.js";
|
|
11
|
+
import G from "../../common/form/Select/Select.js";
|
|
12
|
+
import M from "./PlanScriptsSettings.js";
|
|
13
|
+
const F = ({ plan: t, appSettings: r, device: d, onUpdate: o }) => {
|
|
14
|
+
var u;
|
|
15
|
+
const [a, s] = P("General"), m = t.settings, v = N(() => {
|
|
16
|
+
const e = [];
|
|
17
|
+
return r != null && r.integration && Object.keys(r.integration).forEach((f) => {
|
|
18
|
+
r.integration[f] && r.integration[f].connected && e.push(f);
|
|
19
|
+
}), e;
|
|
20
|
+
}, [r]);
|
|
21
|
+
return /* @__PURE__ */ c("div", { className: `${n.advancedOptions} styled__scrollbar`, children: [
|
|
22
|
+
C() ? /* @__PURE__ */ i(
|
|
23
|
+
G,
|
|
24
|
+
{
|
|
25
|
+
customClasses: n.advancedSettingsSelect,
|
|
26
|
+
options: [
|
|
27
|
+
{ label: "General", value: "General", icon: "folders" },
|
|
28
|
+
{ label: "Prune", value: "Prune", icon: "prune" },
|
|
29
|
+
{ label: "Performance", value: "Performance", icon: "performance" },
|
|
30
|
+
{ label: "Notification", value: "Notification", icon: "notification" },
|
|
31
|
+
{ label: "Misc.", value: "Misc", icon: "settings-alt" }
|
|
32
|
+
],
|
|
33
|
+
fieldValue: a,
|
|
34
|
+
full: !0,
|
|
35
|
+
onUpdate: (e) => s(e)
|
|
36
|
+
}
|
|
37
|
+
) : /* @__PURE__ */ i(b, { children: /* @__PURE__ */ c("ul", { className: n.advancedTabs, children: [
|
|
38
|
+
/* @__PURE__ */ c("li", { onClick: () => s("General"), className: a === "General" ? n.advancedTabActive : "", children: [
|
|
39
|
+
/* @__PURE__ */ i(l, { size: 13, type: "folders" }),
|
|
40
|
+
" General"
|
|
41
|
+
] }),
|
|
42
|
+
/* @__PURE__ */ c("li", { onClick: () => s("Prune"), className: a === "Prune" ? n.advancedTabActive : "", children: [
|
|
43
|
+
/* @__PURE__ */ i(l, { size: 13, type: "prune" }),
|
|
44
|
+
" Prune"
|
|
45
|
+
] }),
|
|
46
|
+
/* @__PURE__ */ c("li", { onClick: () => s("Performance"), className: a === "Performance" ? n.advancedTabActive : "", children: [
|
|
47
|
+
/* @__PURE__ */ i(l, { size: 13, type: "performance" }),
|
|
48
|
+
" Performance"
|
|
49
|
+
] }),
|
|
50
|
+
/* @__PURE__ */ c("li", { onClick: () => s("Notification"), className: a === "Notification" ? n.advancedTabActive : "", children: [
|
|
51
|
+
/* @__PURE__ */ i(l, { size: 13, type: "notification" }),
|
|
52
|
+
" Notification"
|
|
53
|
+
] }),
|
|
54
|
+
/* @__PURE__ */ c("li", { onClick: () => s("Scripts"), className: a === "Scripts" ? n.advancedTabActive : "", children: [
|
|
55
|
+
/* @__PURE__ */ i(l, { size: 13, type: "cli" }),
|
|
56
|
+
" Scripts"
|
|
57
|
+
] }),
|
|
58
|
+
/* @__PURE__ */ c("li", { onClick: () => s("Misc"), className: a === "Misc" ? n.advancedTabActive : "", children: [
|
|
59
|
+
/* @__PURE__ */ i(l, { size: 14, type: "settings-alt" }),
|
|
60
|
+
" Misc."
|
|
61
|
+
] })
|
|
62
|
+
] }) }),
|
|
63
|
+
/* @__PURE__ */ c("div", { className: n.advancedTabContent, children: [
|
|
64
|
+
a === "General" && /* @__PURE__ */ i(A, { settings: m, onUpdate: (e) => o({ ...t, settings: e }) }),
|
|
65
|
+
a === "Notification" && /* @__PURE__ */ i(
|
|
66
|
+
g,
|
|
67
|
+
{
|
|
68
|
+
types: v,
|
|
69
|
+
plan: t,
|
|
70
|
+
admin_email: r == null ? void 0 : r.admin_email,
|
|
71
|
+
onUpdate: (e) => o({ ...t, settings: { ...m, notification: e } })
|
|
72
|
+
}
|
|
73
|
+
),
|
|
74
|
+
a === "Prune" && /* @__PURE__ */ i(h, { plan: t, onUpdate: (e) => o({ ...t, settings: { ...m, prune: e } }) }),
|
|
75
|
+
a === "Performance" && /* @__PURE__ */ i(T, { plan: t, onUpdate: (e) => o({ ...t, settings: { ...m, performance: e } }) }),
|
|
76
|
+
a === "Misc" && /* @__PURE__ */ c("div", { className: n.field, children: [
|
|
77
|
+
/* @__PURE__ */ i("label", { className: n.label, children: "Tags" }),
|
|
78
|
+
/* @__PURE__ */ i(y, { fieldValue: t.tags || [], onUpdate: (e) => o({ ...t, tags: e }) })
|
|
79
|
+
] }),
|
|
80
|
+
a === "Scripts" && /* @__PURE__ */ i(
|
|
81
|
+
M,
|
|
82
|
+
{
|
|
83
|
+
settings: ((u = t.settings) == null ? void 0 : u.scripts) || {},
|
|
84
|
+
platform: (d == null ? void 0 : d.platform) || void 0,
|
|
85
|
+
onUpdate: (e) => o({ ...t, settings: { ...t.settings, scripts: e } })
|
|
86
|
+
}
|
|
87
|
+
)
|
|
88
|
+
] })
|
|
89
|
+
] });
|
|
90
|
+
};
|
|
91
|
+
export {
|
|
92
|
+
F as default
|
|
93
|
+
};
|
|
94
|
+
//# sourceMappingURL=PlanAdvancedSettings.js.map
|