@webiny/app-scheduler 0.0.0-unstable.c27f4d8a31
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/Domain/Models/SchedulerItem/SchedulerItem.d.ts +13 -0
- package/Domain/Models/SchedulerItem/SchedulerItem.js +17 -0
- package/Domain/Models/SchedulerItem/SchedulerItem.js.map +1 -0
- package/Domain/Models/SchedulerItem/index.d.ts +1 -0
- package/Domain/Models/SchedulerItem/index.js +3 -0
- package/Domain/Models/SchedulerItem/index.js.map +1 -0
- package/Domain/Models/index.d.ts +1 -0
- package/Domain/Models/index.js +3 -0
- package/Domain/Models/index.js.map +1 -0
- package/Domain/Repositories/SchedulerItems/ISchedulerItemsRepository.d.ts +14 -0
- package/Domain/Repositories/SchedulerItems/ISchedulerItemsRepository.js +3 -0
- package/Domain/Repositories/SchedulerItems/ISchedulerItemsRepository.js.map +1 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepository.d.ts +36 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepository.js +128 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepository.js.map +1 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryFactory.d.ts +19 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryFactory.js +17 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryFactory.js.map +1 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryWithLoading.d.ts +17 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryWithLoading.js +38 -0
- package/Domain/Repositories/SchedulerItems/SchedulerItemsRepositoryWithLoading.js.map +1 -0
- package/Domain/Repositories/SchedulerItems/index.d.ts +4 -0
- package/Domain/Repositories/SchedulerItems/index.js +5 -0
- package/Domain/Repositories/SchedulerItems/index.js.map +1 -0
- package/Domain/Repositories/Search/ISearchRepository.d.ts +4 -0
- package/Domain/Repositories/Search/ISearchRepository.js +3 -0
- package/Domain/Repositories/Search/ISearchRepository.js.map +1 -0
- package/Domain/Repositories/Search/SearchRepository.d.ts +7 -0
- package/Domain/Repositories/Search/SearchRepository.js +15 -0
- package/Domain/Repositories/Search/SearchRepository.js.map +1 -0
- package/Domain/Repositories/Search/SearchRepositoryFactory.d.ts +7 -0
- package/Domain/Repositories/Search/SearchRepositoryFactory.js +17 -0
- package/Domain/Repositories/Search/SearchRepositoryFactory.js.map +1 -0
- package/Domain/Repositories/Search/index.d.ts +3 -0
- package/Domain/Repositories/Search/index.js +4 -0
- package/Domain/Repositories/Search/index.js.map +1 -0
- package/Domain/Repositories/SelectedItems/ISelectedItemsRepository.d.ts +8 -0
- package/Domain/Repositories/SelectedItems/ISelectedItemsRepository.js +3 -0
- package/Domain/Repositories/SelectedItems/ISelectedItemsRepository.js.map +1 -0
- package/Domain/Repositories/SelectedItems/SelectedItemsRepository.d.ts +12 -0
- package/Domain/Repositories/SelectedItems/SelectedItemsRepository.js +27 -0
- package/Domain/Repositories/SelectedItems/SelectedItemsRepository.js.map +1 -0
- package/Domain/Repositories/SelectedItems/SelectedItemsRepositoryFactory.d.ts +7 -0
- package/Domain/Repositories/SelectedItems/SelectedItemsRepositoryFactory.js +17 -0
- package/Domain/Repositories/SelectedItems/SelectedItemsRepositoryFactory.js.map +1 -0
- package/Domain/Repositories/SelectedItems/index.d.ts +3 -0
- package/Domain/Repositories/SelectedItems/index.js +4 -0
- package/Domain/Repositories/SelectedItems/index.js.map +1 -0
- package/Domain/Repositories/Sorting/SortingRepositoryWithDefaults.d.ts +8 -0
- package/Domain/Repositories/Sorting/SortingRepositoryWithDefaults.js +22 -0
- package/Domain/Repositories/Sorting/SortingRepositoryWithDefaults.js.map +1 -0
- package/Domain/Repositories/Sorting/index.d.ts +1 -0
- package/Domain/Repositories/Sorting/index.js +3 -0
- package/Domain/Repositories/Sorting/index.js.map +1 -0
- package/Domain/Repositories/index.d.ts +4 -0
- package/Domain/Repositories/index.js +6 -0
- package/Domain/Repositories/index.js.map +1 -0
- package/Domain/index.d.ts +2 -0
- package/Domain/index.js +4 -0
- package/Domain/index.js.map +1 -0
- package/Gateways/SchedulerCancelGraphQLGateway.d.ts +7 -0
- package/Gateways/SchedulerCancelGraphQLGateway.js +48 -0
- package/Gateways/SchedulerCancelGraphQLGateway.js.map +1 -0
- package/Gateways/SchedulerGetGraphQLGateway.d.ts +21 -0
- package/Gateways/SchedulerGetGraphQLGateway.js +72 -0
- package/Gateways/SchedulerGetGraphQLGateway.js.map +1 -0
- package/Gateways/SchedulerListGraphQLGateway.d.ts +7 -0
- package/Gateways/SchedulerListGraphQLGateway.js +92 -0
- package/Gateways/SchedulerListGraphQLGateway.js.map +1 -0
- package/Gateways/SchedulerPublishGraphQLGateway.d.ts +7 -0
- package/Gateways/SchedulerPublishGraphQLGateway.js +67 -0
- package/Gateways/SchedulerPublishGraphQLGateway.js.map +1 -0
- package/Gateways/SchedulerUnpublishGraphQLGateway.d.ts +23 -0
- package/Gateways/SchedulerUnpublishGraphQLGateway.js +69 -0
- package/Gateways/SchedulerUnpublishGraphQLGateway.js.map +1 -0
- package/Gateways/abstractions/CancelScheduledActionGateway.d.ts +7 -0
- package/Gateways/abstractions/CancelScheduledActionGateway.js +3 -0
- package/Gateways/abstractions/CancelScheduledActionGateway.js.map +1 -0
- package/Gateways/abstractions/GetScheduledActionGateway.d.ts +9 -0
- package/Gateways/abstractions/GetScheduledActionGateway.js +3 -0
- package/Gateways/abstractions/GetScheduledActionGateway.js.map +1 -0
- package/Gateways/abstractions/ListScheduledActionsGateway.d.ts +27 -0
- package/Gateways/abstractions/ListScheduledActionsGateway.js +3 -0
- package/Gateways/abstractions/ListScheduledActionsGateway.js.map +1 -0
- package/Gateways/abstractions/SchedulePublishActionGateway.d.ts +12 -0
- package/Gateways/abstractions/SchedulePublishActionGateway.js +3 -0
- package/Gateways/abstractions/SchedulePublishActionGateway.js.map +1 -0
- package/Gateways/abstractions/ScheduleUnpublishActionGateway.d.ts +12 -0
- package/Gateways/abstractions/ScheduleUnpublishActionGateway.js +3 -0
- package/Gateways/abstractions/ScheduleUnpublishActionGateway.js.map +1 -0
- package/Gateways/graphql/fields.d.ts +1 -0
- package/Gateways/graphql/fields.js +18 -0
- package/Gateways/graphql/fields.js.map +1 -0
- package/Gateways/index.d.ts +5 -0
- package/Gateways/index.js +3 -0
- package/Gateways/index.js.map +1 -0
- package/Gateways/schema/schedulerEntry.d.ts +16 -0
- package/Gateways/schema/schedulerEntry.js +22 -0
- package/Gateways/schema/schedulerEntry.js.map +1 -0
- package/LICENSE +21 -0
- package/Presentation/Scheduler/Scheduler.d.ts +17 -0
- package/Presentation/Scheduler/Scheduler.js +67 -0
- package/Presentation/Scheduler/Scheduler.js.map +1 -0
- package/Presentation/Scheduler/SchedulerControllers.d.ts +30 -0
- package/Presentation/Scheduler/SchedulerControllers.js +72 -0
- package/Presentation/Scheduler/SchedulerControllers.js.map +1 -0
- package/Presentation/Scheduler/SchedulerPresenter.d.ts +32 -0
- package/Presentation/Scheduler/SchedulerPresenter.js +44 -0
- package/Presentation/Scheduler/SchedulerPresenter.js.map +1 -0
- package/Presentation/Scheduler/controllers/CancelItem/CancelItemController.d.ts +7 -0
- package/Presentation/Scheduler/controllers/CancelItem/CancelItemController.js +11 -0
- package/Presentation/Scheduler/controllers/CancelItem/CancelItemController.js.map +1 -0
- package/Presentation/Scheduler/controllers/CancelItem/ICancelItemController.d.ts +3 -0
- package/Presentation/Scheduler/controllers/CancelItem/ICancelItemController.js +3 -0
- package/Presentation/Scheduler/controllers/CancelItem/ICancelItemController.js.map +1 -0
- package/Presentation/Scheduler/controllers/CancelItem/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/CancelItem/index.js +3 -0
- package/Presentation/Scheduler/controllers/CancelItem/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/GetItem/GetItemController.d.ts +8 -0
- package/Presentation/Scheduler/controllers/GetItem/GetItemController.js +11 -0
- package/Presentation/Scheduler/controllers/GetItem/GetItemController.js.map +1 -0
- package/Presentation/Scheduler/controllers/GetItem/IGetItemController.d.ts +4 -0
- package/Presentation/Scheduler/controllers/GetItem/IGetItemController.js +3 -0
- package/Presentation/Scheduler/controllers/GetItem/IGetItemController.js.map +1 -0
- package/Presentation/Scheduler/controllers/GetItem/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/GetItem/index.js +3 -0
- package/Presentation/Scheduler/controllers/GetItem/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/ListItems/IListItemsController.d.ts +4 -0
- package/Presentation/Scheduler/controllers/ListItems/IListItemsController.js +3 -0
- package/Presentation/Scheduler/controllers/ListItems/IListItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/ListItems/ListItemsController.d.ts +8 -0
- package/Presentation/Scheduler/controllers/ListItems/ListItemsController.js +11 -0
- package/Presentation/Scheduler/controllers/ListItems/ListItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/ListItems/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/ListItems/index.js +3 -0
- package/Presentation/Scheduler/controllers/ListItems/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/IListMoreItemsController.d.ts +3 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/IListMoreItemsController.js +3 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/IListMoreItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/ListMoreItemsController.d.ts +7 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/ListMoreItemsController.js +11 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/ListMoreItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/index.js +3 -0
- package/Presentation/Scheduler/controllers/ListMoreItems/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/PublishItem/IPublishItemController.d.ts +3 -0
- package/Presentation/Scheduler/controllers/PublishItem/IPublishItemController.js +3 -0
- package/Presentation/Scheduler/controllers/PublishItem/IPublishItemController.js.map +1 -0
- package/Presentation/Scheduler/controllers/PublishItem/PublishItemController.d.ts +7 -0
- package/Presentation/Scheduler/controllers/PublishItem/PublishItemController.js +11 -0
- package/Presentation/Scheduler/controllers/PublishItem/PublishItemController.js.map +1 -0
- package/Presentation/Scheduler/controllers/PublishItem/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/PublishItem/index.js +3 -0
- package/Presentation/Scheduler/controllers/PublishItem/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/SearchItems/ISearchItemsController.d.ts +3 -0
- package/Presentation/Scheduler/controllers/SearchItems/ISearchItemsController.js +3 -0
- package/Presentation/Scheduler/controllers/SearchItems/ISearchItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/SearchItems/SearchItemsController.d.ts +8 -0
- package/Presentation/Scheduler/controllers/SearchItems/SearchItemsController.js +14 -0
- package/Presentation/Scheduler/controllers/SearchItems/SearchItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/SearchItems/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/SearchItems/index.js +3 -0
- package/Presentation/Scheduler/controllers/SearchItems/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/ISelectAllItemsController.d.ts +3 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/ISelectAllItemsController.js +3 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/ISelectAllItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/SelectAllItemsController.d.ts +7 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/SelectAllItemsController.js +11 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/SelectAllItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/index.js +3 -0
- package/Presentation/Scheduler/controllers/SelectAllItems/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/SelectItems/ISelectItemsController.d.ts +4 -0
- package/Presentation/Scheduler/controllers/SelectItems/ISelectItemsController.js +3 -0
- package/Presentation/Scheduler/controllers/SelectItems/ISelectItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/SelectItems/SelectItemsController.d.ts +8 -0
- package/Presentation/Scheduler/controllers/SelectItems/SelectItemsController.js +13 -0
- package/Presentation/Scheduler/controllers/SelectItems/SelectItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/SelectItems/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/SelectItems/index.js +3 -0
- package/Presentation/Scheduler/controllers/SelectItems/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.d.ts +4 -0
- package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.js +3 -0
- package/Presentation/Scheduler/controllers/SortItems/ISortItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/SortItems/SortItemsController.d.ts +9 -0
- package/Presentation/Scheduler/controllers/SortItems/SortItemsController.js +19 -0
- package/Presentation/Scheduler/controllers/SortItems/SortItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/SortItems/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/SortItems/index.js +3 -0
- package/Presentation/Scheduler/controllers/SortItems/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/IUnpublishItemController.d.ts +3 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/IUnpublishItemController.js +3 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/IUnpublishItemController.js.map +1 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/UnpublishItemController.d.ts +7 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/UnpublishItemController.js +11 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/UnpublishItemController.js.map +1 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/index.js +3 -0
- package/Presentation/Scheduler/controllers/UnpublishItem/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/IUnselectAllItemsController.d.ts +3 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/IUnselectAllItemsController.js +3 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/IUnselectAllItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/UnselectAllItemsController.d.ts +7 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/UnselectAllItemsController.js +11 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/UnselectAllItemsController.js.map +1 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/index.d.ts +2 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/index.js +3 -0
- package/Presentation/Scheduler/controllers/UnselectAllItems/index.js.map +1 -0
- package/Presentation/Scheduler/controllers/index.d.ts +11 -0
- package/Presentation/Scheduler/controllers/index.js +13 -0
- package/Presentation/Scheduler/controllers/index.js.map +1 -0
- package/Presentation/Scheduler/index.d.ts +1 -0
- package/Presentation/Scheduler/index.js +3 -0
- package/Presentation/Scheduler/index.js.map +1 -0
- package/Presentation/SchedulerConfigs/SchedulerConfigs.d.ts +2 -0
- package/Presentation/SchedulerConfigs/SchedulerConfigs.js +55 -0
- package/Presentation/SchedulerConfigs/SchedulerConfigs.js.map +1 -0
- package/Presentation/SchedulerConfigs/index.d.ts +1 -0
- package/Presentation/SchedulerConfigs/index.js +3 -0
- package/Presentation/SchedulerConfigs/index.js.map +1 -0
- package/Presentation/SchedulerRenderer/SchedulerRenderer.d.ts +6 -0
- package/Presentation/SchedulerRenderer/SchedulerRenderer.js +21 -0
- package/Presentation/SchedulerRenderer/SchedulerRenderer.js.map +1 -0
- package/Presentation/SchedulerRenderer/index.d.ts +1 -0
- package/Presentation/SchedulerRenderer/index.js +3 -0
- package/Presentation/SchedulerRenderer/index.js.map +1 -0
- package/Presentation/abstractions/ISchedulerControllers.d.ts +14 -0
- package/Presentation/abstractions/ISchedulerControllers.js +3 -0
- package/Presentation/abstractions/ISchedulerControllers.js.map +1 -0
- package/Presentation/abstractions/ISchedulerPresenter.d.ts +20 -0
- package/Presentation/abstractions/ISchedulerPresenter.js +3 -0
- package/Presentation/abstractions/ISchedulerPresenter.js.map +1 -0
- package/Presentation/abstractions/index.d.ts +2 -0
- package/Presentation/abstractions/index.js +3 -0
- package/Presentation/abstractions/index.js.map +1 -0
- package/Presentation/components/Actions/CancelItem/CancelItem.d.ts +2 -0
- package/Presentation/components/Actions/CancelItem/CancelItem.js +24 -0
- package/Presentation/components/Actions/CancelItem/CancelItem.js.map +1 -0
- package/Presentation/components/Actions/CancelItem/index.d.ts +1 -0
- package/Presentation/components/Actions/CancelItem/index.js +3 -0
- package/Presentation/components/Actions/CancelItem/index.js.map +1 -0
- package/Presentation/components/Actions/index.d.ts +1 -0
- package/Presentation/components/Actions/index.js +3 -0
- package/Presentation/components/Actions/index.js.map +1 -0
- package/Presentation/components/BottomInfoBar/BottomInfoBar.d.ts +2 -0
- package/Presentation/components/BottomInfoBar/BottomInfoBar.js +20 -0
- package/Presentation/components/BottomInfoBar/BottomInfoBar.js.map +1 -0
- package/Presentation/components/BottomInfoBar/BottomInfoBar.styled.d.ts +20 -0
- package/Presentation/components/BottomInfoBar/BottomInfoBar.styled.js +69 -0
- package/Presentation/components/BottomInfoBar/BottomInfoBar.styled.js.map +1 -0
- package/Presentation/components/BottomInfoBar/ListMeta.d.ts +7 -0
- package/Presentation/components/BottomInfoBar/ListMeta.js +12 -0
- package/Presentation/components/BottomInfoBar/ListMeta.js.map +1 -0
- package/Presentation/components/BottomInfoBar/ListStatus.d.ts +5 -0
- package/Presentation/components/BottomInfoBar/ListStatus.js +16 -0
- package/Presentation/components/BottomInfoBar/ListStatus.js.map +1 -0
- package/Presentation/components/BottomInfoBar/index.d.ts +1 -0
- package/Presentation/components/BottomInfoBar/index.js +3 -0
- package/Presentation/components/BottomInfoBar/index.js.map +1 -0
- package/Presentation/components/Cells/CellActions/CellActions.d.ts +2 -0
- package/Presentation/components/Cells/CellActions/CellActions.js +23 -0
- package/Presentation/components/Cells/CellActions/CellActions.js.map +1 -0
- package/Presentation/components/Cells/CellActions/index.d.ts +1 -0
- package/Presentation/components/Cells/CellActions/index.js +3 -0
- package/Presentation/components/Cells/CellActions/index.js.map +1 -0
- package/Presentation/components/Cells/CellRevision/CellRevision.d.ts +2 -0
- package/Presentation/components/Cells/CellRevision/CellRevision.js +20 -0
- package/Presentation/components/Cells/CellRevision/CellRevision.js.map +1 -0
- package/Presentation/components/Cells/CellRevision/CellRevision.styled.d.ts +11 -0
- package/Presentation/components/Cells/CellRevision/CellRevision.styled.js +44 -0
- package/Presentation/components/Cells/CellRevision/CellRevision.styled.js.map +1 -0
- package/Presentation/components/Cells/CellRevision/index.d.ts +1 -0
- package/Presentation/components/Cells/CellRevision/index.js +3 -0
- package/Presentation/components/Cells/CellRevision/index.js.map +1 -0
- package/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.d.ts +2 -0
- package/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.js +13 -0
- package/Presentation/components/Cells/CellScheduledBy/CellScheduledBy.js.map +1 -0
- package/Presentation/components/Cells/CellScheduledBy/index.d.ts +1 -0
- package/Presentation/components/Cells/CellScheduledBy/index.js +3 -0
- package/Presentation/components/Cells/CellScheduledBy/index.js.map +1 -0
- package/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.d.ts +24 -0
- package/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.js +24 -0
- package/Presentation/components/Cells/CellScheduledOn/CellScheduledOn.js.map +1 -0
- package/Presentation/components/Cells/CellScheduledOn/index.d.ts +1 -0
- package/Presentation/components/Cells/CellScheduledOn/index.js +3 -0
- package/Presentation/components/Cells/CellScheduledOn/index.js.map +1 -0
- package/Presentation/components/Cells/CellTitle/CellTitle.d.ts +2 -0
- package/Presentation/components/Cells/CellTitle/CellTitle.js +17 -0
- package/Presentation/components/Cells/CellTitle/CellTitle.js.map +1 -0
- package/Presentation/components/Cells/CellTitle/CellTitle.styled.d.ts +11 -0
- package/Presentation/components/Cells/CellTitle/CellTitle.styled.js +44 -0
- package/Presentation/components/Cells/CellTitle/CellTitle.styled.js.map +1 -0
- package/Presentation/components/Cells/CellTitle/index.d.ts +1 -0
- package/Presentation/components/Cells/CellTitle/index.js +3 -0
- package/Presentation/components/Cells/CellTitle/index.js.map +1 -0
- package/Presentation/components/Cells/CellType/CellActionType.d.ts +2 -0
- package/Presentation/components/Cells/CellType/CellActionType.js +18 -0
- package/Presentation/components/Cells/CellType/CellActionType.js.map +1 -0
- package/Presentation/components/Cells/CellType/CellActionType.styled.d.ts +11 -0
- package/Presentation/components/Cells/CellType/CellActionType.styled.js +44 -0
- package/Presentation/components/Cells/CellType/CellActionType.styled.js.map +1 -0
- package/Presentation/components/Cells/CellType/index.d.ts +1 -0
- package/Presentation/components/Cells/CellType/index.js +3 -0
- package/Presentation/components/Cells/CellType/index.js.map +1 -0
- package/Presentation/components/Cells/index.d.ts +6 -0
- package/Presentation/components/Cells/index.js +8 -0
- package/Presentation/components/Cells/index.js.map +1 -0
- package/Presentation/components/Empty/Empty.d.ts +2 -0
- package/Presentation/components/Empty/Empty.js +22 -0
- package/Presentation/components/Empty/Empty.js.map +1 -0
- package/Presentation/components/Empty/Empty.styled.d.ts +8 -0
- package/Presentation/components/Empty/Empty.styled.js +30 -0
- package/Presentation/components/Empty/Empty.styled.js.map +1 -0
- package/Presentation/components/Empty/index.d.ts +1 -0
- package/Presentation/components/Empty/index.js +3 -0
- package/Presentation/components/Empty/index.js.map +1 -0
- package/Presentation/components/ScheduleDialog/ScheduleDialogAction.d.ts +15 -0
- package/Presentation/components/ScheduleDialog/ScheduleDialogAction.js +51 -0
- package/Presentation/components/ScheduleDialog/ScheduleDialogAction.js.map +1 -0
- package/Presentation/components/ScheduleDialog/index.d.ts +2 -0
- package/Presentation/components/ScheduleDialog/index.js +4 -0
- package/Presentation/components/ScheduleDialog/index.js.map +1 -0
- package/Presentation/components/ScheduleDialog/types.d.ts +15 -0
- package/Presentation/components/ScheduleDialog/types.js +3 -0
- package/Presentation/components/ScheduleDialog/types.js.map +1 -0
- package/Presentation/components/ScheduleDialog/useGetScheduledAction.d.ts +7 -0
- package/Presentation/components/ScheduleDialog/useGetScheduledAction.js +31 -0
- package/Presentation/components/ScheduleDialog/useGetScheduledAction.js.map +1 -0
- package/Presentation/components/ScheduleDialog/useScheduleDialog.d.ts +42 -0
- package/Presentation/components/ScheduleDialog/useScheduleDialog.js +221 -0
- package/Presentation/components/ScheduleDialog/useScheduleDialog.js.map +1 -0
- package/Presentation/components/SchedulerOverlay/SchedulerOverlay.d.ts +7 -0
- package/Presentation/components/SchedulerOverlay/SchedulerOverlay.js +36 -0
- package/Presentation/components/SchedulerOverlay/SchedulerOverlay.js.map +1 -0
- package/Presentation/components/SchedulerOverlay/index.d.ts +1 -0
- package/Presentation/components/SchedulerOverlay/index.js +3 -0
- package/Presentation/components/SchedulerOverlay/index.js.map +1 -0
- package/Presentation/components/SearchInput/SearchInput.d.ts +2 -0
- package/Presentation/components/SearchInput/SearchInput.js +37 -0
- package/Presentation/components/SearchInput/SearchInput.js.map +1 -0
- package/Presentation/components/SearchInput/index.d.ts +1 -0
- package/Presentation/components/SearchInput/index.js +3 -0
- package/Presentation/components/SearchInput/index.js.map +1 -0
- package/Presentation/components/Table/Table.d.ts +2 -0
- package/Presentation/components/Table/Table.js +34 -0
- package/Presentation/components/Table/Table.js.map +1 -0
- package/Presentation/components/Table/index.d.ts +1 -0
- package/Presentation/components/Table/index.js +3 -0
- package/Presentation/components/Table/index.js.map +1 -0
- package/Presentation/components/Title/Title.d.ts +5 -0
- package/Presentation/components/Title/Title.js +15 -0
- package/Presentation/components/Title/Title.js.map +1 -0
- package/Presentation/components/Title/Title.styled.d.ts +4 -0
- package/Presentation/components/Title/Title.styled.js +18 -0
- package/Presentation/components/Title/Title.styled.js.map +1 -0
- package/Presentation/components/Title/index.d.ts +1 -0
- package/Presentation/components/Title/index.js +3 -0
- package/Presentation/components/Title/index.js.map +1 -0
- package/Presentation/configs/index.d.ts +1 -0
- package/Presentation/configs/index.js +3 -0
- package/Presentation/configs/index.js.map +1 -0
- package/Presentation/configs/list/Browser/EntryAction.d.ts +7 -0
- package/Presentation/configs/list/Browser/EntryAction.js +16 -0
- package/Presentation/configs/list/Browser/EntryAction.js.map +1 -0
- package/Presentation/configs/list/Browser/Table/Column.d.ts +14 -0
- package/Presentation/configs/list/Browser/Table/Column.js +14 -0
- package/Presentation/configs/list/Browser/Table/Column.js.map +1 -0
- package/Presentation/configs/list/Browser/Table/Sorting.d.ts +5 -0
- package/Presentation/configs/list/Browser/Table/Sorting.js +10 -0
- package/Presentation/configs/list/Browser/Table/Sorting.js.map +1 -0
- package/Presentation/configs/list/Browser/Table/index.d.ts +18 -0
- package/Presentation/configs/list/Browser/Table/index.js +8 -0
- package/Presentation/configs/list/Browser/Table/index.js.map +1 -0
- package/Presentation/configs/list/Browser/index.d.ts +23 -0
- package/Presentation/configs/list/Browser/index.js +8 -0
- package/Presentation/configs/list/Browser/index.js.map +1 -0
- package/Presentation/configs/list/SchedulerListConfig.d.ts +33 -0
- package/Presentation/configs/list/SchedulerListConfig.js +31 -0
- package/Presentation/configs/list/SchedulerListConfig.js.map +1 -0
- package/Presentation/configs/list/index.d.ts +1 -0
- package/Presentation/configs/list/index.js +3 -0
- package/Presentation/configs/list/index.js.map +1 -0
- package/Presentation/hooks/index.d.ts +3 -0
- package/Presentation/hooks/index.js +5 -0
- package/Presentation/hooks/index.js.map +1 -0
- package/Presentation/hooks/useCancelSchedulerItem.d.ts +8 -0
- package/Presentation/hooks/useCancelSchedulerItem.js +32 -0
- package/Presentation/hooks/useCancelSchedulerItem.js.map +1 -0
- package/Presentation/hooks/useScheduler.d.ts +28 -0
- package/Presentation/hooks/useScheduler.js +52 -0
- package/Presentation/hooks/useScheduler.js.map +1 -0
- package/Presentation/hooks/useSchedulerItem.d.ts +11 -0
- package/Presentation/hooks/useSchedulerItem.js +9 -0
- package/Presentation/hooks/useSchedulerItem.js.map +1 -0
- package/Presentation/index.d.ts +25 -0
- package/Presentation/index.js +56 -0
- package/Presentation/index.js.map +1 -0
- package/README.md +11 -0
- package/UseCases/CancelItem/CancelItemUseCase.d.ts +7 -0
- package/UseCases/CancelItem/CancelItemUseCase.js +12 -0
- package/UseCases/CancelItem/CancelItemUseCase.js.map +1 -0
- package/UseCases/CancelItem/ICancelItemUseCase.d.ts +3 -0
- package/UseCases/CancelItem/ICancelItemUseCase.js +3 -0
- package/UseCases/CancelItem/ICancelItemUseCase.js.map +1 -0
- package/UseCases/CancelItem/index.d.ts +2 -0
- package/UseCases/CancelItem/index.js +3 -0
- package/UseCases/CancelItem/index.js.map +1 -0
- package/UseCases/GetItem/GetItemUseCase.d.ts +8 -0
- package/UseCases/GetItem/GetItemUseCase.js +12 -0
- package/UseCases/GetItem/GetItemUseCase.js.map +1 -0
- package/UseCases/GetItem/IGetItemUseCase.d.ts +4 -0
- package/UseCases/GetItem/IGetItemUseCase.js +3 -0
- package/UseCases/GetItem/IGetItemUseCase.js.map +1 -0
- package/UseCases/GetItem/index.d.ts +2 -0
- package/UseCases/GetItem/index.js +3 -0
- package/UseCases/GetItem/index.js.map +1 -0
- package/UseCases/GetScheduledItem/GetScheduledItemUseCase.d.ts +7 -0
- package/UseCases/GetScheduledItem/GetScheduledItemUseCase.js +13 -0
- package/UseCases/GetScheduledItem/GetScheduledItemUseCase.js.map +1 -0
- package/UseCases/GetScheduledItem/IGetScheduledItemUseCase.d.ts +4 -0
- package/UseCases/GetScheduledItem/IGetScheduledItemUseCase.js +3 -0
- package/UseCases/GetScheduledItem/IGetScheduledItemUseCase.js.map +1 -0
- package/UseCases/GetScheduledItem/index.d.ts +2 -0
- package/UseCases/GetScheduledItem/index.js +3 -0
- package/UseCases/GetScheduledItem/index.js.map +1 -0
- package/UseCases/ListItems/IListItemsUseCase.d.ts +4 -0
- package/UseCases/ListItems/IListItemsUseCase.js +3 -0
- package/UseCases/ListItems/IListItemsUseCase.js.map +1 -0
- package/UseCases/ListItems/ListItemsUseCase.d.ts +8 -0
- package/UseCases/ListItems/ListItemsUseCase.js +12 -0
- package/UseCases/ListItems/ListItemsUseCase.js.map +1 -0
- package/UseCases/ListItems/ListItemsUseCaseWithSearch.d.ts +9 -0
- package/UseCases/ListItems/ListItemsUseCaseWithSearch.js +22 -0
- package/UseCases/ListItems/ListItemsUseCaseWithSearch.js.map +1 -0
- package/UseCases/ListItems/ListItemsUseCaseWithSorting.d.ts +9 -0
- package/UseCases/ListItems/ListItemsUseCaseWithSorting.js +22 -0
- package/UseCases/ListItems/ListItemsUseCaseWithSorting.js.map +1 -0
- package/UseCases/ListItems/index.d.ts +4 -0
- package/UseCases/ListItems/index.js +5 -0
- package/UseCases/ListItems/index.js.map +1 -0
- package/UseCases/ListMoreItems/IListMoreItemsUseCase.d.ts +3 -0
- package/UseCases/ListMoreItems/IListMoreItemsUseCase.js +3 -0
- package/UseCases/ListMoreItems/IListMoreItemsUseCase.js.map +1 -0
- package/UseCases/ListMoreItems/ListMoreItemsUseCase.d.ts +7 -0
- package/UseCases/ListMoreItems/ListMoreItemsUseCase.js +12 -0
- package/UseCases/ListMoreItems/ListMoreItemsUseCase.js.map +1 -0
- package/UseCases/ListMoreItems/index.d.ts +2 -0
- package/UseCases/ListMoreItems/index.js +3 -0
- package/UseCases/ListMoreItems/index.js.map +1 -0
- package/UseCases/PublishItem/IPublishItemUseCase.d.ts +3 -0
- package/UseCases/PublishItem/IPublishItemUseCase.js +3 -0
- package/UseCases/PublishItem/IPublishItemUseCase.js.map +1 -0
- package/UseCases/PublishItem/PublishItemUseCase.d.ts +7 -0
- package/UseCases/PublishItem/PublishItemUseCase.js +12 -0
- package/UseCases/PublishItem/PublishItemUseCase.js.map +1 -0
- package/UseCases/PublishItem/index.d.ts +2 -0
- package/UseCases/PublishItem/index.js +3 -0
- package/UseCases/PublishItem/index.js.map +1 -0
- package/UseCases/SearchItems/ISearchItemsUseCase.d.ts +3 -0
- package/UseCases/SearchItems/ISearchItemsUseCase.js +3 -0
- package/UseCases/SearchItems/ISearchItemsUseCase.js.map +1 -0
- package/UseCases/SearchItems/SearchItemsUseCase.d.ts +7 -0
- package/UseCases/SearchItems/SearchItemsUseCase.js +12 -0
- package/UseCases/SearchItems/SearchItemsUseCase.js.map +1 -0
- package/UseCases/SearchItems/index.d.ts +2 -0
- package/UseCases/SearchItems/index.js +3 -0
- package/UseCases/SearchItems/index.js.map +1 -0
- package/UseCases/SelectAllItems/ISelectAllItemsUseCase.d.ts +3 -0
- package/UseCases/SelectAllItems/ISelectAllItemsUseCase.js +3 -0
- package/UseCases/SelectAllItems/ISelectAllItemsUseCase.js.map +1 -0
- package/UseCases/SelectAllItems/SelectAllItemsUseCase.d.ts +7 -0
- package/UseCases/SelectAllItems/SelectAllItemsUseCase.js +12 -0
- package/UseCases/SelectAllItems/SelectAllItemsUseCase.js.map +1 -0
- package/UseCases/SelectAllItems/index.d.ts +2 -0
- package/UseCases/SelectAllItems/index.js +3 -0
- package/UseCases/SelectAllItems/index.js.map +1 -0
- package/UseCases/SelectItems/ISelectItemsUseCase.d.ts +4 -0
- package/UseCases/SelectItems/ISelectItemsUseCase.js +3 -0
- package/UseCases/SelectItems/ISelectItemsUseCase.js.map +1 -0
- package/UseCases/SelectItems/SelectItemsUseCase.d.ts +7 -0
- package/UseCases/SelectItems/SelectItemsUseCase.js +12 -0
- package/UseCases/SelectItems/SelectItemsUseCase.js.map +1 -0
- package/UseCases/SelectItems/index.d.ts +2 -0
- package/UseCases/SelectItems/index.js +3 -0
- package/UseCases/SelectItems/index.js.map +1 -0
- package/UseCases/SortItems/ISortItemsUseCase.d.ts +4 -0
- package/UseCases/SortItems/ISortItemsUseCase.js +3 -0
- package/UseCases/SortItems/ISortItemsUseCase.js.map +1 -0
- package/UseCases/SortItems/SortItemsUseCase.d.ts +7 -0
- package/UseCases/SortItems/SortItemsUseCase.js +12 -0
- package/UseCases/SortItems/SortItemsUseCase.js.map +1 -0
- package/UseCases/SortItems/index.d.ts +2 -0
- package/UseCases/SortItems/index.js +3 -0
- package/UseCases/SortItems/index.js.map +1 -0
- package/UseCases/UnSelectAllItems/IUnselectAllItemsUseCase.d.ts +3 -0
- package/UseCases/UnSelectAllItems/IUnselectAllItemsUseCase.js +3 -0
- package/UseCases/UnSelectAllItems/IUnselectAllItemsUseCase.js.map +1 -0
- package/UseCases/UnSelectAllItems/UnselectAllItemsUseCase.d.ts +7 -0
- package/UseCases/UnSelectAllItems/UnselectAllItemsUseCase.js +12 -0
- package/UseCases/UnSelectAllItems/UnselectAllItemsUseCase.js.map +1 -0
- package/UseCases/UnSelectAllItems/index.d.ts +2 -0
- package/UseCases/UnSelectAllItems/index.js +3 -0
- package/UseCases/UnSelectAllItems/index.js.map +1 -0
- package/UseCases/UnpublishItem/IUnpublishItemUseCase.d.ts +3 -0
- package/UseCases/UnpublishItem/IUnpublishItemUseCase.js +3 -0
- package/UseCases/UnpublishItem/IUnpublishItemUseCase.js.map +1 -0
- package/UseCases/UnpublishItem/UnpublishItemUseCase.d.ts +7 -0
- package/UseCases/UnpublishItem/UnpublishItemUseCase.js +12 -0
- package/UseCases/UnpublishItem/UnpublishItemUseCase.js.map +1 -0
- package/UseCases/UnpublishItem/index.d.ts +2 -0
- package/UseCases/UnpublishItem/index.js +3 -0
- package/UseCases/UnpublishItem/index.js.map +1 -0
- package/UseCases/index.d.ts +11 -0
- package/UseCases/index.js +13 -0
- package/UseCases/index.js.map +1 -0
- package/index.d.ts +1 -0
- package/index.js +3 -0
- package/index.js.map +1 -0
- package/package.json +55 -0
- package/types.d.ts +37 -0
- package/types.js +15 -0
- package/types.js.map +1 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SchedulerListConfig } from "../configs/index.js";
|
|
3
|
+
import { CellActions, CellScheduledBy, CellScheduledOn, CellTitle, CellActionType, CellRevision } from "../components/Cells/index.js";
|
|
4
|
+
import { CancelItemAction } from "../components/Actions/index.js";
|
|
5
|
+
const {
|
|
6
|
+
Browser
|
|
7
|
+
} = SchedulerListConfig;
|
|
8
|
+
export const SchedulerConfigs = () => {
|
|
9
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(SchedulerListConfig, null, /*#__PURE__*/React.createElement(Browser.Table.Column, {
|
|
10
|
+
name: "title",
|
|
11
|
+
header: "Title",
|
|
12
|
+
cell: /*#__PURE__*/React.createElement(CellTitle, null),
|
|
13
|
+
sortable: true,
|
|
14
|
+
hideable: false,
|
|
15
|
+
size: 200
|
|
16
|
+
}), /*#__PURE__*/React.createElement(Browser.Table.Column, {
|
|
17
|
+
name: "revision",
|
|
18
|
+
header: "Revision",
|
|
19
|
+
cell: /*#__PURE__*/React.createElement(CellRevision, null),
|
|
20
|
+
hideable: false
|
|
21
|
+
}), /*#__PURE__*/React.createElement(Browser.Table.Column, {
|
|
22
|
+
name: "scheduledBy",
|
|
23
|
+
header: "Author",
|
|
24
|
+
cell: /*#__PURE__*/React.createElement(CellScheduledBy, null),
|
|
25
|
+
hideable: false
|
|
26
|
+
}), /*#__PURE__*/React.createElement(Browser.Table.Column, {
|
|
27
|
+
name: "actionType",
|
|
28
|
+
header: "Action Type",
|
|
29
|
+
cell: /*#__PURE__*/React.createElement(CellActionType, null),
|
|
30
|
+
hideable: false
|
|
31
|
+
}), /*#__PURE__*/React.createElement(Browser.Table.Column, {
|
|
32
|
+
name: "scheduledFor",
|
|
33
|
+
header: "Action Time",
|
|
34
|
+
cell: /*#__PURE__*/React.createElement(CellScheduledOn, null),
|
|
35
|
+
sortable: true,
|
|
36
|
+
hideable: false
|
|
37
|
+
}), /*#__PURE__*/React.createElement(Browser.Table.Column, {
|
|
38
|
+
name: "actions",
|
|
39
|
+
header: " ",
|
|
40
|
+
cell: /*#__PURE__*/React.createElement(CellActions, null),
|
|
41
|
+
size: 80,
|
|
42
|
+
className: "rmwc-data-table__cell--align-end",
|
|
43
|
+
hideable: false,
|
|
44
|
+
resizable: false
|
|
45
|
+
}), /*#__PURE__*/React.createElement(Browser.Table.Sorting, {
|
|
46
|
+
name: "scheduledFor",
|
|
47
|
+
field: "scheduledFor",
|
|
48
|
+
order: "desc"
|
|
49
|
+
}), /*#__PURE__*/React.createElement(Browser.EntryAction, {
|
|
50
|
+
name: "cancel",
|
|
51
|
+
element: /*#__PURE__*/React.createElement(CancelItemAction, null)
|
|
52
|
+
})));
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
//# sourceMappingURL=SchedulerConfigs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","SchedulerListConfig","CellActions","CellScheduledBy","CellScheduledOn","CellTitle","CellActionType","CellRevision","CancelItemAction","Browser","SchedulerConfigs","createElement","Fragment","Table","Column","name","header","cell","sortable","hideable","size","className","resizable","Sorting","field","order","EntryAction","element"],"sources":["SchedulerConfigs.tsx"],"sourcesContent":["import React from \"react\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\nimport {\n CellActions,\n CellScheduledBy,\n CellScheduledOn,\n CellTitle,\n CellActionType,\n CellRevision\n} from \"~/Presentation/components/Cells/index.js\";\nimport { CancelItemAction } from \"~/Presentation/components/Actions/index.js\";\n\nconst { Browser } = SchedulerListConfig;\n\nexport const SchedulerConfigs = () => {\n return (\n <>\n <SchedulerListConfig>\n <Browser.Table.Column\n name={\"title\"}\n header={\"Title\"}\n cell={<CellTitle />}\n sortable={true}\n hideable={false}\n size={200}\n />\n <Browser.Table.Column\n name={\"revision\"}\n header={\"Revision\"}\n cell={<CellRevision />}\n hideable={false}\n />\n <Browser.Table.Column\n name={\"scheduledBy\"}\n header={\"Author\"}\n cell={<CellScheduledBy />}\n hideable={false}\n />\n <Browser.Table.Column\n name={\"actionType\"}\n header={\"Action Type\"}\n cell={<CellActionType />}\n hideable={false}\n />\n <Browser.Table.Column\n name={\"scheduledFor\"}\n header={\"Action Time\"}\n cell={<CellScheduledOn />}\n sortable={true}\n hideable={false}\n />\n <Browser.Table.Column\n name={\"actions\"}\n header={\" \"}\n cell={<CellActions />}\n size={80}\n className={\"rmwc-data-table__cell--align-end\"}\n hideable={false}\n resizable={false}\n />\n <Browser.Table.Sorting\n name={\"scheduledFor\"}\n field={\"scheduledFor\"}\n order={\"desc\"}\n />\n <Browser.EntryAction name={\"cancel\"} element={<CancelItemAction />} />\n </SchedulerListConfig>\n </>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,mBAAmB;AAC5B,SACIC,WAAW,EACXC,eAAe,EACfC,eAAe,EACfC,SAAS,EACTC,cAAc,EACdC,YAAY;AAEhB,SAASC,gBAAgB;AAEzB,MAAM;EAAEC;AAAQ,CAAC,GAAGR,mBAAmB;AAEvC,OAAO,MAAMS,gBAAgB,GAAGA,CAAA,KAAM;EAClC,oBACIV,KAAA,CAAAW,aAAA,CAAAX,KAAA,CAAAY,QAAA,qBACIZ,KAAA,CAAAW,aAAA,CAACV,mBAAmB,qBAChBD,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,OAAQ;IACdC,MAAM,EAAE,OAAQ;IAChBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACN,SAAS,MAAE,CAAE;IACpBa,QAAQ,EAAE,IAAK;IACfC,QAAQ,EAAE,KAAM;IAChBC,IAAI,EAAE;EAAI,CACb,CAAC,eACFpB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,UAAW;IACjBC,MAAM,EAAE,UAAW;IACnBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACJ,YAAY,MAAE,CAAE;IACvBY,QAAQ,EAAE;EAAM,CACnB,CAAC,eACFnB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,aAAc;IACpBC,MAAM,EAAE,QAAS;IACjBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACR,eAAe,MAAE,CAAE;IAC1BgB,QAAQ,EAAE;EAAM,CACnB,CAAC,eACFnB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,YAAa;IACnBC,MAAM,EAAE,aAAc;IACtBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACL,cAAc,MAAE,CAAE;IACzBa,QAAQ,EAAE;EAAM,CACnB,CAAC,eACFnB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,cAAe;IACrBC,MAAM,EAAE,aAAc;IACtBC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACP,eAAe,MAAE,CAAE;IAC1Bc,QAAQ,EAAE,IAAK;IACfC,QAAQ,EAAE;EAAM,CACnB,CAAC,eACFnB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACC,MAAM;IACjBC,IAAI,EAAE,SAAU;IAChBC,MAAM,EAAE,GAAI;IACZC,IAAI,eAAEjB,KAAA,CAAAW,aAAA,CAACT,WAAW,MAAE,CAAE;IACtBkB,IAAI,EAAE,EAAG;IACTC,SAAS,EAAE,kCAAmC;IAC9CF,QAAQ,EAAE,KAAM;IAChBG,SAAS,EAAE;EAAM,CACpB,CAAC,eACFtB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACI,KAAK,CAACU,OAAO;IAClBR,IAAI,EAAE,cAAe;IACrBS,KAAK,EAAE,cAAe;IACtBC,KAAK,EAAE;EAAO,CACjB,CAAC,eACFzB,KAAA,CAAAW,aAAA,CAACF,OAAO,CAACiB,WAAW;IAACX,IAAI,EAAE,QAAS;IAACY,OAAO,eAAE3B,KAAA,CAAAW,aAAA,CAACH,gBAAgB,MAAE;EAAE,CAAE,CACpD,CACvB,CAAC;AAEX,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./SchedulerConfigs.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./SchedulerConfigs.js\";\n"],"mappings":"AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { type SchedulerProps } from "../Scheduler/index.js";
|
|
3
|
+
export type SchedulerRendererProps = Omit<SchedulerProps, "render" | "sorting" | "title"> & {
|
|
4
|
+
title?: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const SchedulerRenderer: ({ title, ...props }: SchedulerRendererProps) => React.JSX.Element | null;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Sorting } from "@webiny/app-utils";
|
|
3
|
+
import { Scheduler } from "../Scheduler/index.js";
|
|
4
|
+
import { useSchedulerListConfig } from "../configs/index.js";
|
|
5
|
+
export const SchedulerRenderer = ({
|
|
6
|
+
title = "Scheduler",
|
|
7
|
+
...props
|
|
8
|
+
}) => {
|
|
9
|
+
const {
|
|
10
|
+
browser
|
|
11
|
+
} = useSchedulerListConfig();
|
|
12
|
+
if (!browser.table.sorting?.length) {
|
|
13
|
+
return null;
|
|
14
|
+
}
|
|
15
|
+
return /*#__PURE__*/React.createElement(Scheduler, Object.assign({}, props, {
|
|
16
|
+
title: title,
|
|
17
|
+
sorting: browser.table.sorting.map(sort => Sorting.create(sort))
|
|
18
|
+
}));
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=SchedulerRenderer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Sorting","Scheduler","useSchedulerListConfig","SchedulerRenderer","title","props","browser","table","sorting","length","createElement","Object","assign","map","sort","create"],"sources":["SchedulerRenderer.tsx"],"sourcesContent":["import React from \"react\";\nimport { Sorting } from \"@webiny/app-utils\";\nimport { Scheduler, type SchedulerProps } from \"../Scheduler/index.js\";\nimport { useSchedulerListConfig } from \"~/Presentation/configs/index.js\";\n\nexport type SchedulerRendererProps = Omit<SchedulerProps, \"render\" | \"sorting\" | \"title\"> & {\n title?: string;\n};\n\nexport const SchedulerRenderer = ({ title = \"Scheduler\", ...props }: SchedulerRendererProps) => {\n const { browser } = useSchedulerListConfig();\n\n if (!browser.table.sorting?.length) {\n return null;\n }\n\n return (\n <Scheduler\n {...props}\n title={title}\n sorting={browser.table.sorting.map(sort => Sorting.create(sort))}\n />\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,OAAO,QAAQ,mBAAmB;AAC3C,SAASC,SAAS;AAClB,SAASC,sBAAsB;AAM/B,OAAO,MAAMC,iBAAiB,GAAGA,CAAC;EAAEC,KAAK,GAAG,WAAW;EAAE,GAAGC;AAA8B,CAAC,KAAK;EAC5F,MAAM;IAAEC;EAAQ,CAAC,GAAGJ,sBAAsB,CAAC,CAAC;EAE5C,IAAI,CAACI,OAAO,CAACC,KAAK,CAACC,OAAO,EAAEC,MAAM,EAAE;IAChC,OAAO,IAAI;EACf;EAEA,oBACIV,KAAA,CAAAW,aAAA,CAACT,SAAS,EAAAU,MAAA,CAAAC,MAAA,KACFP,KAAK;IACTD,KAAK,EAAEA,KAAM;IACbI,OAAO,EAAEF,OAAO,CAACC,KAAK,CAACC,OAAO,CAACK,GAAG,CAACC,IAAI,IAAId,OAAO,CAACe,MAAM,CAACD,IAAI,CAAC;EAAE,EACpE,CAAC;AAEV,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./SchedulerRenderer.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./SchedulerRenderer.js\";\n"],"mappings":"AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ICancelItemController, IGetItemController, IListItemsController, IListMoreItemsController, IPublishItemController, ISearchItemsController, ISelectAllItemsController, ISelectItemsController, ISortItemsController, IUnpublishItemController, IUnselectAllItemsController } from "../../Presentation/Scheduler/controllers/index.js";
|
|
2
|
+
export interface ISchedulerControllers {
|
|
3
|
+
scheduleCancelItem: ICancelItemController;
|
|
4
|
+
schedulePublishItem: IPublishItemController;
|
|
5
|
+
scheduleUnpublishItem: IUnpublishItemController;
|
|
6
|
+
listMoreItems: IListMoreItemsController;
|
|
7
|
+
getItem: IGetItemController;
|
|
8
|
+
listItems: IListItemsController;
|
|
9
|
+
selectItems: ISelectItemsController;
|
|
10
|
+
selectAllItems: ISelectAllItemsController;
|
|
11
|
+
sortItems: ISortItemsController;
|
|
12
|
+
unselectAllItems: IUnselectAllItemsController;
|
|
13
|
+
searchItems: ISearchItemsController;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["ISchedulerControllers.ts"],"sourcesContent":["import type {\n ICancelItemController,\n IGetItemController,\n IListItemsController,\n IListMoreItemsController,\n IPublishItemController,\n ISearchItemsController,\n ISelectAllItemsController,\n ISelectItemsController,\n ISortItemsController,\n IUnpublishItemController,\n IUnselectAllItemsController\n} from \"~/Presentation/Scheduler/controllers/index.js\";\n\nexport interface ISchedulerControllers {\n scheduleCancelItem: ICancelItemController;\n schedulePublishItem: IPublishItemController;\n scheduleUnpublishItem: IUnpublishItemController;\n listMoreItems: IListMoreItemsController;\n getItem: IGetItemController;\n listItems: IListItemsController;\n selectItems: ISelectItemsController;\n selectAllItems: ISelectAllItemsController;\n sortItems: ISortItemsController;\n unselectAllItems: IUnselectAllItemsController;\n searchItems: ISearchItemsController;\n}\n"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { ColumnSorting } from "@webiny/app-utils";
|
|
2
|
+
import type { SchedulerMetaResponse } from "../../types.js";
|
|
3
|
+
import type { SchedulerItem } from "../../Domain/index.js";
|
|
4
|
+
export interface SchedulerPresenterViewModel {
|
|
5
|
+
items: SchedulerItem[];
|
|
6
|
+
selectedItems: SchedulerItem[];
|
|
7
|
+
allowSelectAll: boolean;
|
|
8
|
+
isSelectedAll: boolean;
|
|
9
|
+
sorting: ColumnSorting[];
|
|
10
|
+
loading: Record<string, boolean>;
|
|
11
|
+
isEmptyView: boolean;
|
|
12
|
+
isSearchView: boolean;
|
|
13
|
+
meta: SchedulerMetaResponse;
|
|
14
|
+
searchQuery: string | undefined;
|
|
15
|
+
searchLabel: string;
|
|
16
|
+
nameColumnId: string;
|
|
17
|
+
}
|
|
18
|
+
export interface ISchedulerPresenter {
|
|
19
|
+
get vm(): SchedulerPresenterViewModel;
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["ISchedulerPresenter.ts"],"sourcesContent":["import type { ColumnSorting } from \"@webiny/app-utils\";\nimport type { SchedulerMetaResponse } from \"~/types.js\";\nimport type { SchedulerItem } from \"~/Domain/index.js\";\n\nexport interface SchedulerPresenterViewModel {\n items: SchedulerItem[];\n selectedItems: SchedulerItem[];\n allowSelectAll: boolean;\n isSelectedAll: boolean;\n sorting: ColumnSorting[];\n loading: Record<string, boolean>;\n isEmptyView: boolean;\n isSearchView: boolean;\n meta: SchedulerMetaResponse;\n searchQuery: string | undefined;\n searchLabel: string;\n nameColumnId: string;\n}\n\nexport interface ISchedulerPresenter {\n get vm(): SchedulerPresenterViewModel;\n}\n"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export type { ISchedulerControllers } from \"./ISchedulerControllers.js\";\nexport type { ISchedulerPresenter, SchedulerPresenterViewModel } from \"./ISchedulerPresenter.js\";\n"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ReactComponent as Cancel } from "@material-design-icons/svg/outlined/delete.svg";
|
|
3
|
+
import { useCancelSchedulerItem, useSchedulerItem } from "../../../hooks/index.js";
|
|
4
|
+
import { SchedulerListConfig } from "../../../configs/index.js";
|
|
5
|
+
export const CancelItemAction = () => {
|
|
6
|
+
const {
|
|
7
|
+
item
|
|
8
|
+
} = useSchedulerItem();
|
|
9
|
+
const {
|
|
10
|
+
openDialogCancelSchedulerItem
|
|
11
|
+
} = useCancelSchedulerItem({
|
|
12
|
+
item
|
|
13
|
+
});
|
|
14
|
+
const {
|
|
15
|
+
OptionsMenuItem
|
|
16
|
+
} = SchedulerListConfig.Browser.EntryAction;
|
|
17
|
+
return /*#__PURE__*/React.createElement(OptionsMenuItem, {
|
|
18
|
+
icon: /*#__PURE__*/React.createElement(Cancel, null),
|
|
19
|
+
label: "Cancel",
|
|
20
|
+
onAction: openDialogCancelSchedulerItem
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
//# sourceMappingURL=CancelItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","ReactComponent","Cancel","useCancelSchedulerItem","useSchedulerItem","SchedulerListConfig","CancelItemAction","item","openDialogCancelSchedulerItem","OptionsMenuItem","Browser","EntryAction","createElement","icon","label","onAction"],"sources":["CancelItem.tsx"],"sourcesContent":["import React from \"react\";\nimport { ReactComponent as Cancel } from \"@material-design-icons/svg/outlined/delete.svg\";\nimport { useCancelSchedulerItem, useSchedulerItem } from \"~/Presentation/hooks/index.js\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\n\nexport const CancelItemAction = () => {\n const { item } = useSchedulerItem();\n const { openDialogCancelSchedulerItem } = useCancelSchedulerItem({ item });\n const { OptionsMenuItem } = SchedulerListConfig.Browser.EntryAction;\n\n return (\n <OptionsMenuItem\n icon={<Cancel />}\n label={\"Cancel\"}\n onAction={openDialogCancelSchedulerItem}\n />\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,cAAc,IAAIC,MAAM,QAAQ,gDAAgD;AACzF,SAASC,sBAAsB,EAAEC,gBAAgB;AACjD,SAASC,mBAAmB;AAE5B,OAAO,MAAMC,gBAAgB,GAAGA,CAAA,KAAM;EAClC,MAAM;IAAEC;EAAK,CAAC,GAAGH,gBAAgB,CAAC,CAAC;EACnC,MAAM;IAAEI;EAA8B,CAAC,GAAGL,sBAAsB,CAAC;IAAEI;EAAK,CAAC,CAAC;EAC1E,MAAM;IAAEE;EAAgB,CAAC,GAAGJ,mBAAmB,CAACK,OAAO,CAACC,WAAW;EAEnE,oBACIX,KAAA,CAAAY,aAAA,CAACH,eAAe;IACZI,IAAI,eAAEb,KAAA,CAAAY,aAAA,CAACV,MAAM,MAAE,CAAE;IACjBY,KAAK,EAAE,QAAS;IAChBC,QAAQ,EAAEP;EAA8B,CAC3C,CAAC;AAEV,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./CancelItem.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./CancelItem.js\";\n"],"mappings":"AAAA","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./CancelItem/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./CancelItem/index.js\";\n"],"mappings":"AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ListMeta } from "./ListMeta.js";
|
|
3
|
+
import { ListStatus } from "./ListStatus.js";
|
|
4
|
+
import { BottomInfoBarInner, BottomInfoBarWrapper } from "./BottomInfoBar.styled.js";
|
|
5
|
+
import { LoadingActions } from "../../../types.js";
|
|
6
|
+
import { useScheduler } from "../../hooks/index.js";
|
|
7
|
+
export const BottomInfoBar = () => {
|
|
8
|
+
const {
|
|
9
|
+
vm
|
|
10
|
+
} = useScheduler();
|
|
11
|
+
return /*#__PURE__*/React.createElement(BottomInfoBarWrapper, null, /*#__PURE__*/React.createElement(BottomInfoBarInner, null, /*#__PURE__*/React.createElement(ListMeta, {
|
|
12
|
+
loading: vm.loading[LoadingActions.list],
|
|
13
|
+
totalCount: vm.meta.totalCount,
|
|
14
|
+
currentCount: vm.items.length
|
|
15
|
+
}), /*#__PURE__*/React.createElement(ListStatus, {
|
|
16
|
+
loading: vm.loading[LoadingActions.listMore]
|
|
17
|
+
})));
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=BottomInfoBar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","ListMeta","ListStatus","BottomInfoBarInner","BottomInfoBarWrapper","LoadingActions","useScheduler","BottomInfoBar","vm","createElement","loading","list","totalCount","meta","currentCount","items","length","listMore"],"sources":["BottomInfoBar.tsx"],"sourcesContent":["import React from \"react\";\nimport { ListMeta } from \"./ListMeta.js\";\nimport { ListStatus } from \"./ListStatus.js\";\nimport { BottomInfoBarInner, BottomInfoBarWrapper } from \"./BottomInfoBar.styled.js\";\nimport { LoadingActions } from \"~/types.js\";\nimport { useScheduler } from \"~/Presentation/hooks/index.js\";\n\nexport const BottomInfoBar = () => {\n const { vm } = useScheduler();\n\n return (\n <BottomInfoBarWrapper>\n <BottomInfoBarInner>\n <ListMeta\n loading={vm.loading[LoadingActions.list]}\n totalCount={vm.meta.totalCount}\n currentCount={vm.items.length}\n />\n <ListStatus loading={vm.loading[LoadingActions.listMore]} />\n </BottomInfoBarInner>\n </BottomInfoBarWrapper>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,QAAQ;AACjB,SAASC,UAAU;AACnB,SAASC,kBAAkB,EAAEC,oBAAoB;AACjD,SAASC,cAAc;AACvB,SAASC,YAAY;AAErB,OAAO,MAAMC,aAAa,GAAGA,CAAA,KAAM;EAC/B,MAAM;IAAEC;EAAG,CAAC,GAAGF,YAAY,CAAC,CAAC;EAE7B,oBACIN,KAAA,CAAAS,aAAA,CAACL,oBAAoB,qBACjBJ,KAAA,CAAAS,aAAA,CAACN,kBAAkB,qBACfH,KAAA,CAAAS,aAAA,CAACR,QAAQ;IACLS,OAAO,EAAEF,EAAE,CAACE,OAAO,CAACL,cAAc,CAACM,IAAI,CAAE;IACzCC,UAAU,EAAEJ,EAAE,CAACK,IAAI,CAACD,UAAW;IAC/BE,YAAY,EAAEN,EAAE,CAACO,KAAK,CAACC;EAAO,CACjC,CAAC,eACFhB,KAAA,CAAAS,aAAA,CAACP,UAAU;IAACQ,OAAO,EAAEF,EAAE,CAACE,OAAO,CAACL,cAAc,CAACY,QAAQ;EAAE,CAAE,CAC3C,CACF,CAAC;AAE/B,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const BottomInfoBarWrapper: import("@emotion/styled").StyledComponent<{
|
|
2
|
+
theme?: import("@emotion/react").Theme;
|
|
3
|
+
as?: React.ElementType;
|
|
4
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
5
|
+
export declare const BottomInfoBarInner: import("@emotion/styled").StyledComponent<{
|
|
6
|
+
theme?: import("@emotion/react").Theme;
|
|
7
|
+
as?: React.ElementType;
|
|
8
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
9
|
+
export declare const StatusWrapper: import("@emotion/styled").StyledComponent<{
|
|
10
|
+
theme?: import("@emotion/react").Theme;
|
|
11
|
+
as?: React.ElementType;
|
|
12
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
13
|
+
export declare const CircularProgressHolder: import("@emotion/styled").StyledComponent<{
|
|
14
|
+
theme?: import("@emotion/react").Theme;
|
|
15
|
+
as?: React.ElementType;
|
|
16
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
17
|
+
export declare const UploadingLabel: import("@emotion/styled").StyledComponent<{
|
|
18
|
+
theme?: import("@emotion/react").Theme;
|
|
19
|
+
as?: React.ElementType;
|
|
20
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import _styled from "@emotion/styled/base";
|
|
2
|
+
function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
|
|
3
|
+
export const BottomInfoBarWrapper = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
|
|
4
|
+
target: "e1ylmnml4"
|
|
5
|
+
} : {
|
|
6
|
+
target: "e1ylmnml4",
|
|
7
|
+
label: "BottomInfoBarWrapper"
|
|
8
|
+
})(process.env.NODE_ENV === "production" ? {
|
|
9
|
+
name: "12my7vq",
|
|
10
|
+
styles: "font-size:0.8rem;position:sticky;bottom:0;height:30px;color:var(--mdc-theme-text-secondary-on-background);border-top:1px solid var(--mdc-theme-on-background);background:var(--mdc-theme-surface);width:100%;transform:translateZ(0);overflow:hidden;display:flex;align-items:center;z-index:1"
|
|
11
|
+
} : {
|
|
12
|
+
name: "12my7vq",
|
|
13
|
+
styles: "font-size:0.8rem;position:sticky;bottom:0;height:30px;color:var(--mdc-theme-text-secondary-on-background);border-top:1px solid var(--mdc-theme-on-background);background:var(--mdc-theme-surface);width:100%;transform:translateZ(0);overflow:hidden;display:flex;align-items:center;z-index:1/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFaUQiLCJmaWxlIjoiQm90dG9tSW5mb0Jhci5zdHlsZWQudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tIFwiQGVtb3Rpb24vc3R5bGVkXCI7XG5cbmV4cG9ydCBjb25zdCBCb3R0b21JbmZvQmFyV3JhcHBlciA9IHN0eWxlZChcImRpdlwiKWBcbiAgICBmb250LXNpemU6IDAuOHJlbTtcbiAgICBwb3NpdGlvbjogc3RpY2t5O1xuICAgIGJvdHRvbTogMDtcbiAgICBoZWlnaHQ6IDMwcHg7XG4gICAgY29sb3I6IHZhcigtLW1kYy10aGVtZS10ZXh0LXNlY29uZGFyeS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBib3JkZXItdG9wOiAxcHggc29saWQgdmFyKC0tbWRjLXRoZW1lLW9uLWJhY2tncm91bmQpO1xuICAgIGJhY2tncm91bmQ6IHZhcigtLW1kYy10aGVtZS1zdXJmYWNlKTtcbiAgICB3aWR0aDogMTAwJTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVooMCk7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgei1pbmRleDogMTtcbmA7XG5cbmV4cG9ydCBjb25zdCBCb3R0b21JbmZvQmFySW5uZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgcGFkZGluZzogMCAxMHB4O1xuICAgIHdpZHRoOiAxMDAlO1xuYDtcblxuZXhwb3J0IGNvbnN0IFN0YXR1c1dyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgY29sb3I6IHZhcigtLW1kYy10aGVtZS1wcmltYXJ5KTtcbiAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgcmlnaHQ6IDA7XG4gICAgYm90dG9tOiAxMHB4O1xuICAgIG1hcmdpbi1yaWdodDogMTBweDtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgPiBkaXYge1xuICAgICAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgfVxuYDtcblxuZXhwb3J0IGNvbnN0IENpcmN1bGFyUHJvZ3Jlc3NIb2xkZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgIGhlaWdodDogMTJweDtcbiAgICB3aWR0aDogMTJweDtcbmA7XG5cbmV4cG9ydCBjb25zdCBVcGxvYWRpbmdMYWJlbCA9IHN0eWxlZChcImRpdlwiKWBcbiAgICBtYXJnaW4tcmlnaHQ6IDVweDtcbmA7XG4iXX0= */",
|
|
14
|
+
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
15
|
+
});
|
|
16
|
+
export const BottomInfoBarInner = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
|
|
17
|
+
target: "e1ylmnml3"
|
|
18
|
+
} : {
|
|
19
|
+
target: "e1ylmnml3",
|
|
20
|
+
label: "BottomInfoBarInner"
|
|
21
|
+
})(process.env.NODE_ENV === "production" ? {
|
|
22
|
+
name: "owe4de",
|
|
23
|
+
styles: "padding:0 10px;width:100%"
|
|
24
|
+
} : {
|
|
25
|
+
name: "owe4de",
|
|
26
|
+
styles: "padding:0 10px;width:100%/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFrQitDIiwiZmlsZSI6IkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcldyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgZm9udC1zaXplOiAwLjhyZW07XG4gICAgcG9zaXRpb246IHN0aWNreTtcbiAgICBib3R0b206IDA7XG4gICAgaGVpZ2h0OiAzMHB4O1xuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtdGV4dC1zZWNvbmRhcnktb24tYmFja2dyb3VuZCk7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHZhcigtLW1kYy10aGVtZS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1tZGMtdGhlbWUtc3VyZmFjZSk7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVaKDApO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIHotaW5kZXg6IDE7XG5gO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcklubmVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgICB3aWR0aDogMTAwJTtcbmA7XG5cbmV4cG9ydCBjb25zdCBTdGF0dXNXcmFwcGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtcHJpbWFyeSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMTBweDtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgID4gZGl2IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBDaXJjdWxhclByb2dyZXNzSG9sZGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDEycHg7XG4gICAgd2lkdGg6IDEycHg7XG5gO1xuXG5leHBvcnQgY29uc3QgVXBsb2FkaW5nTGFiZWwgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgbWFyZ2luLXJpZ2h0OiA1cHg7XG5gO1xuIl19 */",
|
|
27
|
+
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
28
|
+
});
|
|
29
|
+
export const StatusWrapper = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
|
|
30
|
+
target: "e1ylmnml2"
|
|
31
|
+
} : {
|
|
32
|
+
target: "e1ylmnml2",
|
|
33
|
+
label: "StatusWrapper"
|
|
34
|
+
})(process.env.NODE_ENV === "production" ? {
|
|
35
|
+
name: "pjg2fa",
|
|
36
|
+
styles: "color:var(--mdc-theme-primary);position:absolute;right:0;bottom:10px;margin-right:10px;display:flex;align-items:center;>div{display:inline-block;}"
|
|
37
|
+
} : {
|
|
38
|
+
name: "pjg2fa",
|
|
39
|
+
styles: "color:var(--mdc-theme-primary);position:absolute;right:0;bottom:10px;margin-right:10px;display:flex;align-items:center;>div{display:inline-block;}/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUF1QjBDIiwiZmlsZSI6IkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcldyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgZm9udC1zaXplOiAwLjhyZW07XG4gICAgcG9zaXRpb246IHN0aWNreTtcbiAgICBib3R0b206IDA7XG4gICAgaGVpZ2h0OiAzMHB4O1xuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtdGV4dC1zZWNvbmRhcnktb24tYmFja2dyb3VuZCk7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHZhcigtLW1kYy10aGVtZS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1tZGMtdGhlbWUtc3VyZmFjZSk7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVaKDApO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIHotaW5kZXg6IDE7XG5gO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcklubmVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgICB3aWR0aDogMTAwJTtcbmA7XG5cbmV4cG9ydCBjb25zdCBTdGF0dXNXcmFwcGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtcHJpbWFyeSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMTBweDtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgID4gZGl2IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBDaXJjdWxhclByb2dyZXNzSG9sZGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDEycHg7XG4gICAgd2lkdGg6IDEycHg7XG5gO1xuXG5leHBvcnQgY29uc3QgVXBsb2FkaW5nTGFiZWwgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgbWFyZ2luLXJpZ2h0OiA1cHg7XG5gO1xuIl19 */",
|
|
40
|
+
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
41
|
+
});
|
|
42
|
+
export const CircularProgressHolder = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
|
|
43
|
+
target: "e1ylmnml1"
|
|
44
|
+
} : {
|
|
45
|
+
target: "e1ylmnml1",
|
|
46
|
+
label: "CircularProgressHolder"
|
|
47
|
+
})(process.env.NODE_ENV === "production" ? {
|
|
48
|
+
name: "n39s9v",
|
|
49
|
+
styles: "position:relative;height:12px;width:12px"
|
|
50
|
+
} : {
|
|
51
|
+
name: "n39s9v",
|
|
52
|
+
styles: "position:relative;height:12px;width:12px/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFvQ21EIiwiZmlsZSI6IkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcldyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgZm9udC1zaXplOiAwLjhyZW07XG4gICAgcG9zaXRpb246IHN0aWNreTtcbiAgICBib3R0b206IDA7XG4gICAgaGVpZ2h0OiAzMHB4O1xuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtdGV4dC1zZWNvbmRhcnktb24tYmFja2dyb3VuZCk7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHZhcigtLW1kYy10aGVtZS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1tZGMtdGhlbWUtc3VyZmFjZSk7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVaKDApO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIHotaW5kZXg6IDE7XG5gO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcklubmVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgICB3aWR0aDogMTAwJTtcbmA7XG5cbmV4cG9ydCBjb25zdCBTdGF0dXNXcmFwcGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtcHJpbWFyeSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMTBweDtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgID4gZGl2IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBDaXJjdWxhclByb2dyZXNzSG9sZGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDEycHg7XG4gICAgd2lkdGg6IDEycHg7XG5gO1xuXG5leHBvcnQgY29uc3QgVXBsb2FkaW5nTGFiZWwgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgbWFyZ2luLXJpZ2h0OiA1cHg7XG5gO1xuIl19 */",
|
|
53
|
+
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
54
|
+
});
|
|
55
|
+
export const UploadingLabel = /*#__PURE__*/_styled("div", process.env.NODE_ENV === "production" ? {
|
|
56
|
+
target: "e1ylmnml0"
|
|
57
|
+
} : {
|
|
58
|
+
target: "e1ylmnml0",
|
|
59
|
+
label: "UploadingLabel"
|
|
60
|
+
})(process.env.NODE_ENV === "production" ? {
|
|
61
|
+
name: "1693thf",
|
|
62
|
+
styles: "margin-right:5px"
|
|
63
|
+
} : {
|
|
64
|
+
name: "1693thf",
|
|
65
|
+
styles: "margin-right:5px/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUEwQzJDIiwiZmlsZSI6IkJvdHRvbUluZm9CYXIuc3R5bGVkLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSBcIkBlbW90aW9uL3N0eWxlZFwiO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcldyYXBwZXIgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgZm9udC1zaXplOiAwLjhyZW07XG4gICAgcG9zaXRpb246IHN0aWNreTtcbiAgICBib3R0b206IDA7XG4gICAgaGVpZ2h0OiAzMHB4O1xuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtdGV4dC1zZWNvbmRhcnktb24tYmFja2dyb3VuZCk7XG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHZhcigtLW1kYy10aGVtZS1vbi1iYWNrZ3JvdW5kKTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1tZGMtdGhlbWUtc3VyZmFjZSk7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVaKDApO1xuICAgIG92ZXJmbG93OiBoaWRkZW47XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIHotaW5kZXg6IDE7XG5gO1xuXG5leHBvcnQgY29uc3QgQm90dG9tSW5mb0JhcklubmVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBhZGRpbmc6IDAgMTBweDtcbiAgICB3aWR0aDogMTAwJTtcbmA7XG5cbmV4cG9ydCBjb25zdCBTdGF0dXNXcmFwcGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIGNvbG9yOiB2YXIoLS1tZGMtdGhlbWUtcHJpbWFyeSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMTBweDtcbiAgICBtYXJnaW4tcmlnaHQ6IDEwcHg7XG4gICAgZGlzcGxheTogZmxleDtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgID4gZGl2IHtcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBDaXJjdWxhclByb2dyZXNzSG9sZGVyID0gc3R5bGVkKFwiZGl2XCIpYFxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICBoZWlnaHQ6IDEycHg7XG4gICAgd2lkdGg6IDEycHg7XG5gO1xuXG5leHBvcnQgY29uc3QgVXBsb2FkaW5nTGFiZWwgPSBzdHlsZWQoXCJkaXZcIilgXG4gICAgbWFyZ2luLXJpZ2h0OiA1cHg7XG5gO1xuIl19 */",
|
|
66
|
+
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
//# sourceMappingURL=BottomInfoBar.styled.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["BottomInfoBarWrapper","_styled","process","env","NODE_ENV","target","label","name","styles","toString","_EMOTION_STRINGIFIED_CSS_ERROR__","BottomInfoBarInner","StatusWrapper","CircularProgressHolder","UploadingLabel"],"sources":["BottomInfoBar.styled.tsx"],"sourcesContent":["import styled from \"@emotion/styled\";\n\nexport const BottomInfoBarWrapper = styled(\"div\")`\n font-size: 0.8rem;\n position: sticky;\n bottom: 0;\n height: 30px;\n color: var(--mdc-theme-text-secondary-on-background);\n border-top: 1px solid var(--mdc-theme-on-background);\n background: var(--mdc-theme-surface);\n width: 100%;\n transform: translateZ(0);\n overflow: hidden;\n display: flex;\n align-items: center;\n z-index: 1;\n`;\n\nexport const BottomInfoBarInner = styled(\"div\")`\n padding: 0 10px;\n width: 100%;\n`;\n\nexport const StatusWrapper = styled(\"div\")`\n color: var(--mdc-theme-primary);\n position: absolute;\n right: 0;\n bottom: 10px;\n margin-right: 10px;\n display: flex;\n align-items: center;\n > div {\n display: inline-block;\n }\n`;\n\nexport const CircularProgressHolder = styled(\"div\")`\n position: relative;\n height: 12px;\n width: 12px;\n`;\n\nexport const UploadingLabel = styled(\"div\")`\n margin-right: 5px;\n`;\n"],"mappings":";;AAEA,OAAO,MAAMA,oBAAoB,gBAAGC,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAchD;AAED,OAAO,MAAMC,kBAAkB,gBAAGV,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAG9C;AAED,OAAO,MAAME,aAAa,gBAAGX,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAWzC;AAED,OAAO,MAAMG,sBAAsB,gBAAGZ,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAIlD;AAED,OAAO,MAAMI,cAAc,gBAAGb,OAAA,CAAO,KAAK,EAAAC,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAC,MAAA;AAAA;EAAAA,MAAA;EAAAC,KAAA;AAAA,EAAC,CAAAJ,OAAA,CAAAC,GAAA,CAAAC,QAAA;EAAAG,IAAA;EAAAC,MAAA;AAAA;EAAAD,IAAA;EAAAC,MAAA;EAAAC,QAAA,EAAAC;AAAA,EAE1C","ignoreList":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React, { useCallback } from "react";
|
|
2
|
+
export const ListMeta = props => {
|
|
3
|
+
const getLabel = useCallback((count = 0) => {
|
|
4
|
+
return `${count} ${count === 1 ? "item" : "items"}`;
|
|
5
|
+
}, []);
|
|
6
|
+
if (props.loading) {
|
|
7
|
+
return null;
|
|
8
|
+
}
|
|
9
|
+
return /*#__PURE__*/React.createElement("span", null, `Showing ${props.currentCount} out of ${getLabel(props.totalCount)}.`);
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
//# sourceMappingURL=ListMeta.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","useCallback","ListMeta","props","getLabel","count","loading","createElement","currentCount","totalCount"],"sources":["ListMeta.tsx"],"sourcesContent":["import React, { useCallback } from \"react\";\n\nexport interface ListMetaProps {\n loading: boolean;\n currentCount: number;\n totalCount: number;\n}\n\nexport const ListMeta = (props: ListMetaProps) => {\n const getLabel = useCallback((count = 0): string => {\n return `${count} ${count === 1 ? \"item\" : \"items\"}`;\n }, []);\n\n if (props.loading) {\n return null;\n }\n\n return <span>{`Showing ${props.currentCount} out of ${getLabel(props.totalCount)}.`}</span>;\n};\n"],"mappings":"AAAA,OAAOA,KAAK,IAAIC,WAAW,QAAQ,OAAO;AAQ1C,OAAO,MAAMC,QAAQ,GAAIC,KAAoB,IAAK;EAC9C,MAAMC,QAAQ,GAAGH,WAAW,CAAC,CAACI,KAAK,GAAG,CAAC,KAAa;IAChD,OAAO,GAAGA,KAAK,IAAIA,KAAK,KAAK,CAAC,GAAG,MAAM,GAAG,OAAO,EAAE;EACvD,CAAC,EAAE,EAAE,CAAC;EAEN,IAAIF,KAAK,CAACG,OAAO,EAAE;IACf,OAAO,IAAI;EACf;EAEA,oBAAON,KAAA,CAAAO,aAAA,eAAO,WAAWJ,KAAK,CAACK,YAAY,WAAWJ,QAAQ,CAACD,KAAK,CAACM,UAAU,CAAC,GAAU,CAAC;AAC/F,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CircularProgress } from "@webiny/ui/Progress/index.js";
|
|
3
|
+
import { CircularProgressHolder, StatusWrapper, UploadingLabel } from "./BottomInfoBar.styled.js";
|
|
4
|
+
export const ListStatus = ({
|
|
5
|
+
loading
|
|
6
|
+
}) => {
|
|
7
|
+
if (!loading) {
|
|
8
|
+
return null;
|
|
9
|
+
}
|
|
10
|
+
return /*#__PURE__*/React.createElement(StatusWrapper, null, /*#__PURE__*/React.createElement(UploadingLabel, null, "Loading more items..."), /*#__PURE__*/React.createElement(CircularProgressHolder, null, /*#__PURE__*/React.createElement(CircularProgress, {
|
|
11
|
+
size: 10,
|
|
12
|
+
spinnerWidth: 1
|
|
13
|
+
})));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
//# sourceMappingURL=ListStatus.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","CircularProgress","CircularProgressHolder","StatusWrapper","UploadingLabel","ListStatus","loading","createElement","size","spinnerWidth"],"sources":["ListStatus.tsx"],"sourcesContent":["import React from \"react\";\nimport { CircularProgress } from \"@webiny/ui/Progress/index.js\";\nimport { CircularProgressHolder, StatusWrapper, UploadingLabel } from \"./BottomInfoBar.styled.js\";\n\nexport interface ListStatusProps {\n loading: boolean;\n}\n\nexport const ListStatus = ({ loading }: ListStatusProps) => {\n if (!loading) {\n return null;\n }\n\n return (\n <StatusWrapper>\n <UploadingLabel>{\"Loading more items...\"}</UploadingLabel>\n <CircularProgressHolder>\n <CircularProgress size={10} spinnerWidth={1} />\n </CircularProgressHolder>\n </StatusWrapper>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,gBAAgB,QAAQ,8BAA8B;AAC/D,SAASC,sBAAsB,EAAEC,aAAa,EAAEC,cAAc;AAM9D,OAAO,MAAMC,UAAU,GAAGA,CAAC;EAAEC;AAAyB,CAAC,KAAK;EACxD,IAAI,CAACA,OAAO,EAAE;IACV,OAAO,IAAI;EACf;EAEA,oBACIN,KAAA,CAAAO,aAAA,CAACJ,aAAa,qBACVH,KAAA,CAAAO,aAAA,CAACH,cAAc,QAAE,uBAAwC,CAAC,eAC1DJ,KAAA,CAAAO,aAAA,CAACL,sBAAsB,qBACnBF,KAAA,CAAAO,aAAA,CAACN,gBAAgB;IAACO,IAAI,EAAE,EAAG;IAACC,YAAY,EAAE;EAAE,CAAE,CAC1B,CACb,CAAC;AAExB,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./BottomInfoBar.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["index.tsx"],"sourcesContent":["export * from \"./BottomInfoBar.js\";\n"],"mappings":"AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { OptionsMenu } from "@webiny/app-admin";
|
|
3
|
+
import { SchedulerListConfig, useSchedulerListConfig } from "../../../configs/index.js";
|
|
4
|
+
import { SchedulerItemProvider } from "../../../hooks/index.js";
|
|
5
|
+
export const CellActions = () => {
|
|
6
|
+
const {
|
|
7
|
+
useTableRow
|
|
8
|
+
} = SchedulerListConfig.Browser.Table.Column;
|
|
9
|
+
const {
|
|
10
|
+
row
|
|
11
|
+
} = useTableRow();
|
|
12
|
+
const {
|
|
13
|
+
browser
|
|
14
|
+
} = useSchedulerListConfig();
|
|
15
|
+
return /*#__PURE__*/React.createElement(SchedulerItemProvider, {
|
|
16
|
+
item: row.data
|
|
17
|
+
}, /*#__PURE__*/React.createElement(OptionsMenu, {
|
|
18
|
+
actions: browser.entryActions,
|
|
19
|
+
"data-testid": "table.row.scheduler.entry.menu-action"
|
|
20
|
+
}));
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
//# sourceMappingURL=CellActions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","OptionsMenu","SchedulerListConfig","useSchedulerListConfig","SchedulerItemProvider","CellActions","useTableRow","Browser","Table","Column","row","browser","createElement","item","data","actions","entryActions"],"sources":["CellActions.tsx"],"sourcesContent":["import React from \"react\";\nimport { OptionsMenu } from \"@webiny/app-admin\";\nimport { SchedulerListConfig, useSchedulerListConfig } from \"~/Presentation/configs/index.js\";\nimport { SchedulerItemProvider } from \"~/Presentation/hooks/index.js\";\n\nexport const CellActions = () => {\n const { useTableRow } = SchedulerListConfig.Browser.Table.Column;\n const { row } = useTableRow();\n const { browser } = useSchedulerListConfig();\n\n return (\n <SchedulerItemProvider item={row.data}>\n <OptionsMenu\n actions={browser.entryActions}\n data-testid={\"table.row.scheduler.entry.menu-action\"}\n />\n </SchedulerItemProvider>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,WAAW,QAAQ,mBAAmB;AAC/C,SAASC,mBAAmB,EAAEC,sBAAsB;AACpD,SAASC,qBAAqB;AAE9B,OAAO,MAAMC,WAAW,GAAGA,CAAA,KAAM;EAC7B,MAAM;IAAEC;EAAY,CAAC,GAAGJ,mBAAmB,CAACK,OAAO,CAACC,KAAK,CAACC,MAAM;EAChE,MAAM;IAAEC;EAAI,CAAC,GAAGJ,WAAW,CAAC,CAAC;EAC7B,MAAM;IAAEK;EAAQ,CAAC,GAAGR,sBAAsB,CAAC,CAAC;EAE5C,oBACIH,KAAA,CAAAY,aAAA,CAACR,qBAAqB;IAACS,IAAI,EAAEH,GAAG,CAACI;EAAK,gBAClCd,KAAA,CAAAY,aAAA,CAACX,WAAW;IACRc,OAAO,EAAEJ,OAAO,CAACK,YAAa;IAC9B,eAAa;EAAwC,CACxD,CACkB,CAAC;AAEhC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./CellActions.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./CellActions.js\";\n"],"mappings":"AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { RowText, RowTitle } from "./CellRevision.styled.js";
|
|
3
|
+
import { SchedulerListConfig } from "../../../configs/index.js";
|
|
4
|
+
import { parseIdentifier } from "@webiny/utils/parseIdentifier.js";
|
|
5
|
+
export const CellRevision = () => {
|
|
6
|
+
const {
|
|
7
|
+
useTableRow
|
|
8
|
+
} = SchedulerListConfig.Browser.Table.Column;
|
|
9
|
+
const {
|
|
10
|
+
row
|
|
11
|
+
} = useTableRow();
|
|
12
|
+
const {
|
|
13
|
+
version
|
|
14
|
+
} = parseIdentifier(row.data.targetId);
|
|
15
|
+
return /*#__PURE__*/React.createElement(RowTitle, null, /*#__PURE__*/React.createElement(RowText, {
|
|
16
|
+
use: "subtitle2"
|
|
17
|
+
}, version));
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=CellRevision.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","RowText","RowTitle","SchedulerListConfig","parseIdentifier","CellRevision","useTableRow","Browser","Table","Column","row","version","data","targetId","createElement","use"],"sources":["CellRevision.tsx"],"sourcesContent":["import React from \"react\";\nimport { RowText, RowTitle } from \"./CellRevision.styled.js\";\nimport { SchedulerListConfig } from \"~/Presentation/configs/index.js\";\nimport { parseIdentifier } from \"@webiny/utils/parseIdentifier.js\";\n\nexport const CellRevision = () => {\n const { useTableRow } = SchedulerListConfig.Browser.Table.Column;\n const { row } = useTableRow();\n\n const { version } = parseIdentifier(row.data.targetId);\n return (\n <RowTitle>\n <RowText use={\"subtitle2\"}>{version}</RowText>\n </RowTitle>\n );\n};\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,OAAO,EAAEC,QAAQ;AAC1B,SAASC,mBAAmB;AAC5B,SAASC,eAAe,QAAQ,kCAAkC;AAElE,OAAO,MAAMC,YAAY,GAAGA,CAAA,KAAM;EAC9B,MAAM;IAAEC;EAAY,CAAC,GAAGH,mBAAmB,CAACI,OAAO,CAACC,KAAK,CAACC,MAAM;EAChE,MAAM;IAAEC;EAAI,CAAC,GAAGJ,WAAW,CAAC,CAAC;EAE7B,MAAM;IAAEK;EAAQ,CAAC,GAAGP,eAAe,CAACM,GAAG,CAACE,IAAI,CAACC,QAAQ,CAAC;EACtD,oBACIb,KAAA,CAAAc,aAAA,CAACZ,QAAQ,qBACLF,KAAA,CAAAc,aAAA,CAACb,OAAO;IAACc,GAAG,EAAE;EAAY,GAAEJ,OAAiB,CACvC,CAAC;AAEnB,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const RowTitle: import("@emotion/styled").StyledComponent<{
|
|
2
|
+
theme?: import("@emotion/react").Theme;
|
|
3
|
+
as?: React.ElementType;
|
|
4
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
5
|
+
export declare const RowIcon: import("@emotion/styled").StyledComponent<{
|
|
6
|
+
theme?: import("@emotion/react").Theme;
|
|
7
|
+
as?: React.ElementType;
|
|
8
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
9
|
+
export declare const RowText: import("@emotion/styled").StyledComponent<import("@webiny/ui/Typography/Typography").TypographyProps & {
|
|
10
|
+
theme?: import("@emotion/react").Theme;
|
|
11
|
+
}, {}, {}>;
|