superdesk-ui-framework 3.0.65 → 3.0.67
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/app/styles/_boxed-list.scss +10 -3
- package/app/styles/_helpers.scss +3 -1
- package/app/styles/components/_list-item.scss +22 -11
- package/app/styles/components/_sd-searchbar.scss +20 -1
- package/app/styles/primereact/_pr-dialog.scss +29 -13
- package/app-typescript/components/Autocomplete.tsx +9 -3
- package/app-typescript/components/Badge.tsx +16 -2
- package/app-typescript/components/Dropdown.tsx +3 -1
- package/app-typescript/components/DropdownFirst.tsx +14 -2
- package/app-typescript/components/DurationInput.tsx +19 -4
- package/app-typescript/components/EmptyState.tsx +11 -2
- package/app-typescript/components/Layouts/Panel.tsx +12 -1
- package/app-typescript/components/Lists/ContentList.tsx +5 -1
- package/app-typescript/components/Modal.tsx +12 -3
- package/app-typescript/components/Navigation/BottomNav.tsx +9 -2
- package/app-typescript/components/Navigation/QuickNavBar.tsx +10 -2
- package/app-typescript/components/Navigation/SideBarMenu.tsx +9 -4
- package/app-typescript/components/SearchBar.tsx +1 -0
- package/app-typescript/components/SidebarMenu.tsx +8 -1
- package/app-typescript/components/TabList.tsx +5 -1
- package/app-typescript/components/TagInput.tsx +4 -1
- package/app-typescript/components/ThemeSelector.tsx +13 -2
- package/app-typescript/components/TreeMenu.tsx +127 -122
- package/app-typescript/components/TreeSelect/TreeSelect.tsx +157 -141
- package/app-typescript/components/WithPortal.tsx +49 -0
- package/app-typescript/components/avatar/avatar-image.tsx +2 -0
- package/app-typescript/components/avatar/avatar.tsx +2 -1
- package/dist/examples.bundle.js +1409 -1278
- package/dist/playgrounds/planning.html +121 -43
- package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +398 -385
- package/dist/playgrounds/react-playgrounds/EditorTest.tsx +359 -365
- package/dist/playgrounds/react-playgrounds/FirstPlayground.tsx +33 -33
- package/dist/playgrounds/react-playgrounds/Multiedit.tsx +227 -231
- package/dist/playgrounds/react-playgrounds/PageLayoutTest.tsx +41 -38
- package/dist/playgrounds/react-playgrounds/PersonalProfile.tsx +76 -96
- package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +73 -101
- package/dist/playgrounds/react-playgrounds/Rundowns.tsx +788 -729
- package/dist/playgrounds/react-playgrounds/SamsPlayground.tsx +35 -26
- package/dist/playgrounds/react-playgrounds/TestGround.tsx +140 -121
- package/dist/playgrounds/react-playgrounds/UiPlayground.tsx +40 -25
- package/dist/playgrounds/react-playgrounds/components/GraphicButton.tsx +6 -5
- package/dist/playgrounds/react-playgrounds/components/Layout.tsx +0 -2
- package/dist/playgrounds/react-playgrounds/components/SearchBar.tsx +16 -9
- package/dist/superdesk-ui.bundle.css +79 -33
- package/dist/superdesk-ui.bundle.js +833 -729
- package/dist/vendor.bundle.js +14 -14
- package/examples/pages/playgrounds/planning.html +121 -43
- package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +398 -385
- package/examples/pages/playgrounds/react-playgrounds/EditorTest.tsx +359 -365
- package/examples/pages/playgrounds/react-playgrounds/FirstPlayground.tsx +33 -33
- package/examples/pages/playgrounds/react-playgrounds/Multiedit.tsx +227 -231
- package/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.tsx +41 -38
- package/examples/pages/playgrounds/react-playgrounds/PersonalProfile.tsx +76 -96
- package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +73 -101
- package/examples/pages/playgrounds/react-playgrounds/Rundowns.tsx +788 -729
- package/examples/pages/playgrounds/react-playgrounds/SamsPlayground.tsx +35 -26
- package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +140 -121
- package/examples/pages/playgrounds/react-playgrounds/UiPlayground.tsx +40 -25
- package/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.tsx +6 -5
- package/examples/pages/playgrounds/react-playgrounds/components/Layout.tsx +0 -2
- package/examples/pages/playgrounds/react-playgrounds/components/SearchBar.tsx +16 -9
- package/package.json +1 -1
- package/react/{components → app-typescript/components}/Autocomplete.js +2 -2
- package/react/{components → app-typescript/components}/Badge.js +1 -1
- package/react/{components → app-typescript/components}/Dropdown.js +3 -1
- package/react/{components → app-typescript/components}/DropdownFirst.js +6 -2
- package/react/{components → app-typescript/components}/DurationInput.js +5 -1
- package/react/{components → app-typescript/components}/EmptyState.js +2 -1
- package/react/{components → app-typescript/components}/Lists/ContentList.js +1 -1
- package/react/{components → app-typescript/components}/Modal.js +2 -2
- package/react/{components → app-typescript/components}/Navigation/BottomNav.js +4 -1
- package/react/{components → app-typescript/components}/Navigation/QuickNavBar.js +2 -1
- package/react/{components → app-typescript/components}/Navigation/SideBarMenu.js +3 -1
- package/react/{components → app-typescript/components}/SearchBar.js +1 -0
- package/react/{components → app-typescript/components}/TabList.js +2 -1
- package/react/{components → app-typescript/components}/TagInput.js +1 -1
- package/react/{components → app-typescript/components}/TreeSelect/TreeSelect.d.ts +3 -2
- package/react/{components → app-typescript/components}/TreeSelect/TreeSelect.js +81 -73
- package/react/app-typescript/components/WithPortal.d.ts +14 -0
- package/react/app-typescript/components/WithPortal.js +69 -0
- package/react/{components → app-typescript/components}/avatar/avatar.js +2 -1
- package/react/examples/pages/playgrounds/dummy-data/items.d.ts +16 -0
- package/react/examples/pages/playgrounds/dummy-data/items.js +95 -0
- package/react/examples/pages/playgrounds/react-playgrounds/CoreLayout.d.ts +51 -0
- package/react/examples/pages/playgrounds/react-playgrounds/CoreLayout.js +454 -0
- package/react/examples/pages/playgrounds/react-playgrounds/EditorTest.d.ts +27 -0
- package/react/examples/pages/playgrounds/react-playgrounds/EditorTest.js +256 -0
- package/react/examples/pages/playgrounds/react-playgrounds/FirstPlayground.d.ts +19 -0
- package/react/examples/pages/playgrounds/react-playgrounds/FirstPlayground.js +160 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Index.d.ts +11 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Index.js +25 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Multiedit.d.ts +36 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Multiedit.js +200 -0
- package/react/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.d.ts +22 -0
- package/react/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.js +134 -0
- package/react/examples/pages/playgrounds/react-playgrounds/PersonalProfile.d.ts +40 -0
- package/react/examples/pages/playgrounds/react-playgrounds/PersonalProfile.js +350 -0
- package/react/examples/pages/playgrounds/react-playgrounds/RundownEditor.d.ts +32 -0
- package/react/examples/pages/playgrounds/react-playgrounds/RundownEditor.js +267 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Rundowns.d.ts +39 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Rundowns.js +558 -0
- package/react/examples/pages/playgrounds/react-playgrounds/SamsPlayground.d.ts +24 -0
- package/react/examples/pages/playgrounds/react-playgrounds/SamsPlayground.js +241 -0
- package/react/examples/pages/playgrounds/react-playgrounds/TestGround.d.ts +27 -0
- package/react/examples/pages/playgrounds/react-playgrounds/TestGround.js +508 -0
- package/react/examples/pages/playgrounds/react-playgrounds/UiPlayground.d.ts +24 -0
- package/react/examples/pages/playgrounds/react-playgrounds/UiPlayground.js +239 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/AuthoringContainer.d.ts +11 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/AuthoringContainer.js +64 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/ContentSplitter.d.ts +10 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/ContentSplitter.js +62 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.d.ts +14 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.js +65 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButtonsGroup.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButtonsGroup.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/HeaderPanel.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/HeaderPanel.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Index.d.ts +19 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Index.js +41 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Layout.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Layout.js +40 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/LayoutContainer.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/LayoutContainer.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/LeftPanel.d.ts +9 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/LeftPanel.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/MainPanel.d.ts +10 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/MainPanel.js +63 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/OverlayPanel.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/OverlayPanel.js +55 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Panel.d.ts +10 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Panel.js +63 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContent.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContent.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContentBlock.d.ts +11 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContentBlock.js +63 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelFooter.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelFooter.js +54 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelHeader.d.ts +12 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelHeader.js +63 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/RightPanel.d.ts +9 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/RightPanel.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SearchBar.d.ts +23 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SearchBar.js +92 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SidebarMenu.d.ts +20 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SidebarMenu.js +83 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SubNav.d.ts +9 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SubNav.js +60 -0
- package/tsconfig.json +5 -1
- /package/dist/playgrounds/dummy-data/{items.js → items.ts} +0 -0
- /package/examples/pages/playgrounds/dummy-data/{items.js → items.ts} +0 -0
- /package/react/{components → app-typescript/components}/Alert.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Alert.js +0 -0
- /package/react/{components → app-typescript/components}/Autocomplete.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Badge.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Button.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Button.js +0 -0
- /package/react/{components → app-typescript/components}/ButtonGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ButtonGroup.js +0 -0
- /package/react/{components → app-typescript/components}/Carousel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Carousel.js +0 -0
- /package/react/{components → app-typescript/components}/CheckButtonGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/CheckButtonGroup.js +0 -0
- /package/react/{components → app-typescript/components}/CheckGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/CheckGroup.js +0 -0
- /package/react/{components → app-typescript/components}/Checkbox.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Checkbox.js +0 -0
- /package/react/{components → app-typescript/components}/CheckboxButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/CheckboxButton.js +0 -0
- /package/react/{components → app-typescript/components}/ContentDivider.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ContentDivider.js +0 -0
- /package/react/{components → app-typescript/components}/CreateButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/CreateButton.js +0 -0
- /package/react/{components → app-typescript/components}/DatePicker.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DatePicker.js +0 -0
- /package/react/{components → app-typescript/components}/Divider.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Divider.js +0 -0
- /package/react/{components → app-typescript/components}/DonutChart.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DonutChart.js +0 -0
- /package/react/{components → app-typescript/components}/DragHandle.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DragHandle.js +0 -0
- /package/react/{components → app-typescript/components}/DropZone.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DropZone.js +0 -0
- /package/react/{components → app-typescript/components}/Dropdown.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DropdownFirst.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DurationInput.d.ts +0 -0
- /package/react/{components → app-typescript/components}/EmptyState.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormGroup.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormItem.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormItem.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormLabel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormLabel.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormRow.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormRow.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormRowNew.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormRowNew.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormText.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormText.js +0 -0
- /package/react/{components → app-typescript/components}/Form/InputBase.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/InputBase.js +0 -0
- /package/react/{components → app-typescript/components}/Form/InputNew.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/InputNew.js +0 -0
- /package/react/{components → app-typescript/components}/Form/InputWrapper.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/InputWrapper.js +0 -0
- /package/react/{components → app-typescript/components}/Form/index.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/index.js +0 -0
- /package/react/{components → app-typescript/components}/FormLabel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/FormLabel.js +0 -0
- /package/react/{components → app-typescript/components}/GridItem.d.ts +0 -0
- /package/react/{components → app-typescript/components}/GridItem.js +0 -0
- /package/react/{components → app-typescript/components}/GridList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/GridList.js +0 -0
- /package/react/{components → app-typescript/components}/HeadingText.d.ts +0 -0
- /package/react/{components → app-typescript/components}/HeadingText.js +0 -0
- /package/react/{components → app-typescript/components}/HelloWorld.d.ts +0 -0
- /package/react/{components → app-typescript/components}/HelloWorld.js +0 -0
- /package/react/{components → app-typescript/components}/Icon.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Icon.js +0 -0
- /package/react/{components → app-typescript/components}/IconButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/IconButton.js +0 -0
- /package/react/{components → app-typescript/components}/IconLabel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/IconLabel.js +0 -0
- /package/react/{components → app-typescript/components}/IconPicker.d.ts +0 -0
- /package/react/{components → app-typescript/components}/IconPicker.js +0 -0
- /package/react/{components → app-typescript/components}/Input.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Input.js +0 -0
- /package/react/{components → app-typescript/components}/Label.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Label.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthorinInnerSideBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthorinInnerSideBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrame.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrame.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameLeftBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameLeftBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameMain.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameMain.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameNavBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameNavBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameOverlay.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameOverlay.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameRightBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameRightBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanelOverlay.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanelOverlay.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerBody.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerBody.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerHeader.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerHeader.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMain.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMain.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContent.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContent.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainToolBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainToolBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/BottomBarAction.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/BottomBarAction.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Container.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Container.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/ContentSplitter.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/ContentSplitter.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayout.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayout.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutFooter.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutFooter.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutMain.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutMain.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutOverlay.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutOverlay.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutSlideInMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutSlideInMenu.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutTopMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutTopMenu.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/HamburgerButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/HamburgerButton.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/HeaderPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/HeaderPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Layout.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Layout.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/LayoutContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/LayoutContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/LeftPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/LeftPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/MainMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/MainMenu.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/MainPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/MainPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/NotificationPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/NotificationPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/OverlayPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/OverlayPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/PageLayout.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/PageLayout.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Panel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Panel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/RightPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/RightPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/index.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/index.js +0 -0
- /package/react/{components → app-typescript/components}/LeftMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/LeftMenu.js +0 -0
- /package/react/{components → app-typescript/components}/ListItemLoader.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ListItemLoader.js +0 -0
- /package/react/{components → app-typescript/components}/Lists/BoxedList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/BoxedList.js +0 -0
- /package/react/{components → app-typescript/components}/Lists/ContentList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/SimpleList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/SimpleList.js +0 -0
- /package/react/{components → app-typescript/components}/Lists/TableList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/TableList.js +0 -0
- /package/react/{components → app-typescript/components}/Lists/index.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/index.js +0 -0
- /package/react/{components → app-typescript/components}/Loader.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Loader.js +0 -0
- /package/react/{components → app-typescript/components}/Menu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Menu.js +0 -0
- /package/react/{components → app-typescript/components}/Modal.d.ts +0 -0
- /package/react/{components → app-typescript/components}/MultiSelect.d.ts +0 -0
- /package/react/{components → app-typescript/components}/MultiSelect.js +0 -0
- /package/react/{components → app-typescript/components}/NavButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/NavButton.js +0 -0
- /package/react/{components → app-typescript/components}/Navigation/BottomNav.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/QuickNavBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/SideBarMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/SideBarTabs.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/SideBarTabs.js +0 -0
- /package/react/{components → app-typescript/components}/Navigation/index.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/index.js +0 -0
- /package/react/{components → app-typescript/components}/Popover.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Popover.js +0 -0
- /package/react/{components → app-typescript/components}/PropsList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/PropsList.js +0 -0
- /package/react/{components → app-typescript/components}/RadioButtonGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/RadioButtonGroup.js +0 -0
- /package/react/{components → app-typescript/components}/RadioGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/RadioGroup.js +0 -0
- /package/react/{components → app-typescript/components}/ResizablePanels.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ResizablePanels.js +0 -0
- /package/react/{components → app-typescript/components}/ResizeObserverComponent.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ResizeObserverComponent.js +0 -0
- /package/react/{components → app-typescript/components}/Rotate.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Rotate.js +0 -0
- /package/react/{components → app-typescript/components}/SearchBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Select.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Select.js +0 -0
- /package/react/{components → app-typescript/components}/SelectGrid.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SelectGrid.js +0 -0
- /package/react/{components → app-typescript/components}/SelectPreview.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SelectPreview.js +0 -0
- /package/react/{components → app-typescript/components}/SelectWithTemplate.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SelectWithTemplate.js +0 -0
- /package/react/{components → app-typescript/components}/ShowPopup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ShowPopup.js +0 -0
- /package/react/{components → app-typescript/components}/SingleAndDoubleClickFunction.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SingleAndDoubleClickFunction.js +0 -0
- /package/react/{components → app-typescript/components}/Skeleton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Skeleton.js +0 -0
- /package/react/{components → app-typescript/components}/SlidingToolbar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SlidingToolbar.js +0 -0
- /package/react/{components → app-typescript/components}/Spacer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Spacer.js +0 -0
- /package/react/{components → app-typescript/components}/Spinner.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Spinner.js +0 -0
- /package/react/{components → app-typescript/components}/StrechBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/StrechBar.js +0 -0
- /package/react/{components → app-typescript/components}/SubNav.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SubNav.js +0 -0
- /package/react/{components → app-typescript/components}/Switch.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Switch.js +0 -0
- /package/react/{components → app-typescript/components}/SwitchGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SwitchGroup.js +0 -0
- /package/react/{components → app-typescript/components}/TabCustom.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TabCustom.js +0 -0
- /package/react/{components → app-typescript/components}/TabList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Tag.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Tag.js +0 -0
- /package/react/{components → app-typescript/components}/TagInput.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Text/Heading.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Text/Heading.js +0 -0
- /package/react/{components → app-typescript/components}/Text/Text.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Text/Text.js +0 -0
- /package/react/{components → app-typescript/components}/Text/Time.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Text/Time.js +0 -0
- /package/react/{components → app-typescript/components}/ThemeSelector.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ThemeSelector.js +0 -0
- /package/react/{components → app-typescript/components}/TimePicker.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TimePicker.js +0 -0
- /package/react/{components → app-typescript/components}/Toast.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Toast.js +0 -0
- /package/react/{components → app-typescript/components}/ToastMessage.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ToastMessage.js +0 -0
- /package/react/{components → app-typescript/components}/ToastText.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ToastText.js +0 -0
- /package/react/{components → app-typescript/components}/ToastWrapper.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ToastWrapper.js +0 -0
- /package/react/{components → app-typescript/components}/Togglebox.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Togglebox.js +0 -0
- /package/react/{components → app-typescript/components}/Tooltip.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Tooltip.js +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/KeyboardNavigation.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/KeyboardNavigation.js +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectItem.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectItem.js +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectPill.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectPill.js +0 -0
- /package/react/{components → app-typescript/components}/WithPagination.d.ts +0 -0
- /package/react/{components → app-typescript/components}/WithPagination.js +0 -0
- /package/react/{components → app-typescript/components}/WithPopover.d.ts +0 -0
- /package/react/{components → app-typescript/components}/WithPopover.js +0 -0
- /package/react/{components → app-typescript/components}/WithSizeObserver.d.ts +0 -0
- /package/react/{components → app-typescript/components}/WithSizeObserver.js +0 -0
- /package/react/{components → app-typescript/components}/_Positioner.d.ts +0 -0
- /package/react/{components → app-typescript/components}/_Positioner.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-action-add.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-action-add.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-group.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-group.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-image.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-image.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-number.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-number.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-placeholder.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-placeholder.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-text.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-text.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-wrapper.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-wrapper.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/interfaces.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/interfaces.js +0 -0
- /package/react/{helpers.d.ts → app-typescript/helpers.d.ts} +0 -0
- /package/react/{helpers.js → app-typescript/helpers.js} +0 -0
- /package/react/{index.d.ts → app-typescript/index.d.ts} +0 -0
- /package/react/{index.js → app-typescript/index.js} +0 -0
@@ -1,5 +1,4 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
import * as Components from './components/Index';
|
3
2
|
import { ButtonGroup, Button, NavButton, SubNav, Dropdown, Input, IconButton, LeftMenu, BoxedList, BoxedListItem, BoxedListContentRow, Heading, Text, Time, Label, CreateButton, IconLabel, RadioButtonGroup, Select, Option } from '../../../../app-typescript/index';
|
4
3
|
import * as Layout from '../../../../app-typescript/components/Layouts';
|
5
4
|
import * as Form from '../../../../app-typescript/components/Form';
|
@@ -58,10 +57,10 @@ export class CoreLayout extends React.Component<IProps, IState> {
|
|
58
57
|
mainMenuOpen: false,
|
59
58
|
notificationsOpen: false,
|
60
59
|
botNavArray: [
|
61
|
-
{ icon:'photo', title: 'Sed posuere consectetur est at lobortis.', onClick: () => false, onRemove: (e) => this.handleDelete(e) },
|
62
|
-
{ title: 'Nullam id dolor id nibh ultricies.', onClick: () => false, onRemove: (e) => this.handleDelete(e)},
|
63
|
-
{ icon:'video', title: 'Nulla vitae elit libero, a pharetra augue.', onClick: () => false, onRemove: (e) => this.handleDelete(e)},
|
64
|
-
{ title: 'Donec sed odio dui.', onClick: () => false, onRemove: (e) => this.handleDelete(e)},
|
60
|
+
{ icon:'photo', title: 'Sed posuere consectetur est at lobortis.', onClick: () => false, onRemove: (e: any) => this.handleDelete(e) },
|
61
|
+
{ title: 'Nullam id dolor id nibh ultricies.', onClick: () => false, onRemove: (e: any) => this.handleDelete(e)},
|
62
|
+
{ icon:'video', title: 'Nulla vitae elit libero, a pharetra augue.', onClick: () => false, onRemove: (e: any) => this.handleDelete(e)},
|
63
|
+
{ title: 'Donec sed odio dui.', onClick: () => false, onRemove: (e: any) => this.handleDelete(e)},
|
65
64
|
],
|
66
65
|
itemType: 'itemtype01',
|
67
66
|
dropDownState: '',
|
@@ -194,65 +193,67 @@ export class CoreLayout extends React.Component<IProps, IState> {
|
|
194
193
|
render() {
|
195
194
|
return (
|
196
195
|
<Layout.CoreLayout
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
196
|
+
heading='Core Layout'
|
197
|
+
menuOpen={this.state.mainMenuOpen}
|
198
|
+
onClick={this.handleMainMenu}
|
199
|
+
active={this.state.mainMenuOpen}
|
200
|
+
ariaControls='main-menu'
|
201
|
+
menuId='main-menu'
|
202
|
+
editorFullWidth={this.state.fullEditor}
|
203
|
+
openPanel={this.state.rightPanel}
|
204
|
+
slideInMenu={(
|
205
|
+
<Layout.MainMenu
|
206
|
+
headerTitle='Main Menu'
|
207
|
+
poweredBy='Powered by Superdesk technology'
|
208
|
+
header={(null)}
|
209
|
+
footerContent={true}
|
210
|
+
footer={(
|
211
|
+
<p>Menu footer testing</p>
|
212
|
+
)}
|
213
|
+
>
|
214
|
+
<LeftMenu
|
215
|
+
style='blanc'
|
216
|
+
reverseItemBorder={true}
|
217
|
+
size='large'
|
218
|
+
ariaLabel={'Left navigation'}
|
219
|
+
activeItemId='1'
|
220
|
+
groups={[
|
221
|
+
{ label: 'MAIN SECTIONS', items: [
|
222
|
+
{ id: '1', label: 'Section 1', ref:'section1'},
|
223
|
+
{ id: '2', label: 'Section 2', ref: 'section2' },
|
224
|
+
{ id: '3', label: 'Section 3', ref: 'section3' },
|
225
|
+
|
226
|
+
]},
|
227
|
+
{ label:'OTHER SECTIONS', items: [
|
228
|
+
{ id: '4', label: 'Section 4', ref: 'section4' },
|
229
|
+
{ id: '5', label: 'Section 5', ref: 'section5' },
|
230
|
+
]},
|
231
|
+
{ label:'OTHER SECTIONS', items: [
|
232
|
+
{ id: '6', label: 'Section 6', ref: 'section6' },
|
233
|
+
{ id: '7', label: 'Section 7', ref: 'section7' },
|
234
|
+
]}
|
235
|
+
]}
|
236
|
+
onSelect={() => false}
|
237
|
+
/>
|
238
|
+
</Layout.MainMenu>
|
238
239
|
)}
|
239
240
|
topMenu={(
|
240
241
|
<NavButton badgeValue='6' icon='bell' text='Show notifications' onClick={this.handleNotifications} />
|
241
242
|
)}
|
242
243
|
footer={(
|
243
244
|
<>
|
244
|
-
|
245
|
-
|
246
|
-
items={this.state.botNavArray} />
|
245
|
+
<Layout.BottomBarAction onClick={()=> false} />
|
246
|
+
<BottomNav items={this.state.botNavArray} />
|
247
247
|
</>
|
248
248
|
)}
|
249
249
|
overlay={(
|
250
250
|
<Layout.NotificationPanel
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
251
|
+
header={(null)}
|
252
|
+
headerTitle='Notifications'
|
253
|
+
open={this.state.notificationsOpen}
|
254
|
+
onClick={this.handleNotifications}
|
255
|
+
theme='dark'
|
256
|
+
>
|
256
257
|
<BoxedList>
|
257
258
|
<BoxedListItem unread={true}>
|
258
259
|
<Time datetime='29.06.2022'>29.06.2022</Time>
|
@@ -277,377 +278,389 @@ export class CoreLayout extends React.Component<IProps, IState> {
|
|
277
278
|
</BoxedListItem>
|
278
279
|
</BoxedList>
|
279
280
|
</Layout.NotificationPanel>
|
280
|
-
)}
|
281
|
-
|
281
|
+
)}
|
282
|
+
>
|
282
283
|
<Nav.SideBarMenu
|
283
284
|
items={[
|
284
285
|
{ icon: 'dashboard', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, },
|
285
|
-
{ icon: 'view', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor})},
|
286
|
+
{ icon: 'view', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor}) },
|
286
287
|
{ icon: 'marked-star', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor}) },
|
287
288
|
{ icon: 'spike', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor}) },
|
288
289
|
{ icon: 'personal', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor}) },
|
289
290
|
{ icon: 'global-search', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor}) },
|
290
291
|
{ icon: 'picture', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor}) },
|
291
|
-
{ icon: 'rundown', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor})
|
292
|
-
|
292
|
+
{ icon: 'rundown', size: 'big', hover: this.state.openEditor && !this.state.rightPanel, onCLick: () => this.setState({fullEditor: !this.state.fullEditor}) }
|
293
|
+
]}
|
294
|
+
/>
|
293
295
|
|
294
296
|
{!this.state.fullEditor && !this.state.rightPanel
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
<Dropdown
|
301
|
-
items={[
|
302
|
-
{
|
303
|
-
type: 'group', label: 'Settings', items: [
|
304
|
-
'divider',
|
305
|
-
{ icon: 'switches', label: 'Manage Shows', onSelect: () => this.setState({modalManageShow: true}) },
|
306
|
-
{ icon: 'switches', label: 'Manage Templates', onSelect: () => this.setState({modalManageTemplate: true}) },
|
307
|
-
]
|
308
|
-
}]}>
|
309
|
-
<NavButton icon='settings' onClick={() => false} />
|
310
|
-
</Dropdown>
|
311
|
-
<Dropdown
|
312
|
-
header={[
|
313
|
-
{
|
314
|
-
type: 'group', label: 'Create', items: []
|
315
|
-
},
|
316
|
-
{
|
317
|
-
type: 'submenu', label: 'Rundown', icon: 'plus-sign', items: [
|
318
|
-
{ icon: 'plus-sign', label: 'Rundown', onSelect: () => 1 },
|
319
|
-
]
|
320
|
-
},
|
321
|
-
]}
|
322
|
-
items={[
|
323
|
-
{
|
324
|
-
type: 'group', label: 'Recent Templates', items: [
|
325
|
-
{ icon: 'plus-sign', label: 'Marker Daily', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
326
|
-
{ icon: 'plus-sign', label: 'Marker Weekend', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
327
|
-
{ icon: 'plus-sign', label: 'Tabu Daily', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
328
|
-
{ icon: 'plus-sign', label: 'Tabu Specijal', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
329
|
-
]
|
330
|
-
}]}
|
331
|
-
footer={[
|
332
|
-
{
|
333
|
-
type: 'group', items: [
|
334
|
-
{ icon: 'list-plus', label: 'Create new Template', onSelect: () => this.setState({modalNewTemplate: true}) },
|
335
|
-
{ icon: 'rundown', label: 'Create new Show', onSelect: () => this.setState({modalNewShow: true}) },
|
336
|
-
]
|
337
|
-
},
|
338
|
-
]}>
|
339
|
-
|
340
|
-
<CreateButton ariaValue='Create' onClick={() => false} />
|
341
|
-
</Dropdown>
|
342
|
-
</ButtonGroup>
|
343
|
-
</SubNav>
|
344
|
-
<SubNav zIndex={1}>
|
345
|
-
<ButtonGroup align='start'>
|
346
|
-
<NavButton icon='filter-large' onClick={this.handleFilter} />
|
347
|
-
</ButtonGroup>
|
348
|
-
<ButtonGroup align='end'>
|
349
|
-
<ButtonGroup align='sub' padded={true} >
|
350
|
-
<Button size="normal" icon="chevron-left-thin" text="Previous" shape="round" iconOnly={true} disabled onClick={()=> false} />
|
351
|
-
<Button text='Today' style='hollow' onClick={() => false} />
|
352
|
-
<Button size="normal" icon="chevron-right-thin" text="Next" shape="round" iconOnly={true} onClick={()=> false} />
|
353
|
-
</ButtonGroup>
|
354
|
-
<RadioButtonGroup options={[
|
355
|
-
{value:'test10', label:'D'},
|
356
|
-
{value:'test11', label:'W'},
|
357
|
-
{value:'test12', label:'M'},
|
358
|
-
]} group={{padded:false}} value={this.state.itemType} onChange={(value) => this.setState({ itemType: value })} />
|
359
|
-
<ButtonGroup align='sub' spaces='no-space'>
|
297
|
+
&& <Layout.LayoutContainer>
|
298
|
+
<Layout.HeaderPanel>
|
299
|
+
<SubNav zIndex={2}>
|
300
|
+
<SearchBar placeholder='Search media'></SearchBar>
|
301
|
+
<ButtonGroup align='end' spaces='no-space'>
|
360
302
|
<Dropdown
|
361
303
|
items={[
|
362
304
|
{
|
363
|
-
type: 'group', label: '
|
305
|
+
type: 'group', label: 'Settings', items: [
|
364
306
|
'divider',
|
365
|
-
{
|
366
|
-
{
|
367
|
-
{ label: 'Accessible Light', icon: 'adjust', onSelect: () => this.handleTheme('accessible-light-ui')},
|
307
|
+
{ icon: 'switches', label: 'Manage Shows', onSelect: () => this.setState({modalManageShow: true}) },
|
308
|
+
{ icon: 'switches', label: 'Manage Templates', onSelect: () => this.setState({modalManageTemplate: true}) },
|
368
309
|
]
|
369
|
-
}
|
370
|
-
]}
|
371
|
-
|
310
|
+
}
|
311
|
+
]}
|
312
|
+
>
|
313
|
+
<NavButton icon='settings' onClick={() => false} />
|
372
314
|
</Dropdown>
|
373
315
|
<Dropdown
|
316
|
+
header={[
|
317
|
+
{
|
318
|
+
type: 'group', label: 'Create', items: []
|
319
|
+
},
|
320
|
+
{
|
321
|
+
type: 'submenu', label: 'Rundown', icon: 'plus-sign', items: [
|
322
|
+
{ icon: 'plus-sign', label: 'Rundown', onSelect: () => 1 },
|
323
|
+
]
|
324
|
+
},
|
325
|
+
]}
|
374
326
|
items={[
|
375
327
|
{
|
376
|
-
type: 'group', label: '
|
377
|
-
'
|
378
|
-
{ label: '
|
379
|
-
{ label: '
|
380
|
-
{ label: '
|
328
|
+
type: 'group', label: 'Recent Templates', items: [
|
329
|
+
{ icon: 'plus-sign', label: 'Marker Daily', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
330
|
+
{ icon: 'plus-sign', label: 'Marker Weekend', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
331
|
+
{ icon: 'plus-sign', label: 'Tabu Daily', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
332
|
+
{ icon: 'plus-sign', label: 'Tabu Specijal', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
333
|
+
]
|
334
|
+
}
|
335
|
+
]}
|
336
|
+
footer={[
|
337
|
+
{
|
338
|
+
type: 'group', items: [
|
339
|
+
{ icon: 'list-plus', label: 'Create new Template', onSelect: () => this.setState({modalNewTemplate: true}) },
|
340
|
+
{ icon: 'rundown', label: 'Create new Show', onSelect: () => this.setState({modalNewShow: true}) },
|
381
341
|
]
|
382
|
-
}
|
383
|
-
|
342
|
+
},
|
343
|
+
]}
|
344
|
+
>
|
345
|
+
<CreateButton ariaValue='Create' onClick={() => false} />
|
384
346
|
</Dropdown>
|
385
347
|
</ButtonGroup>
|
386
|
-
</
|
387
|
-
|
388
|
-
|
389
|
-
|
348
|
+
</SubNav>
|
349
|
+
<SubNav zIndex={1}>
|
350
|
+
<ButtonGroup align='start'>
|
351
|
+
<NavButton icon='filter-large' onClick={this.handleFilter} />
|
352
|
+
</ButtonGroup>
|
353
|
+
<ButtonGroup align='end'>
|
354
|
+
<ButtonGroup align='sub' padded={true} >
|
355
|
+
<Button size="normal" icon="chevron-left-thin" text="Previous" shape="round" iconOnly={true} disabled onClick={()=> false} />
|
356
|
+
<Button text='Today' style='hollow' onClick={() => false} />
|
357
|
+
<Button size="normal" icon="chevron-right-thin" text="Next" shape="round" iconOnly={true} onClick={()=> false} />
|
358
|
+
</ButtonGroup>
|
359
|
+
<RadioButtonGroup
|
360
|
+
options={[
|
361
|
+
{value:'test10', label:'D'},
|
362
|
+
{value:'test11', label:'W'},
|
363
|
+
{value:'test12', label:'M'},
|
364
|
+
]}
|
365
|
+
group={{padded:false}}
|
366
|
+
value={this.state.itemType}
|
367
|
+
onChange={(value) => this.setState({ itemType: value })}
|
368
|
+
/>
|
369
|
+
<ButtonGroup align='sub' spaces='no-space'>
|
370
|
+
<Dropdown
|
371
|
+
items={[
|
372
|
+
{
|
373
|
+
type: 'group', label: 'Chose a theme', items: [
|
374
|
+
'divider',
|
375
|
+
{ label: 'Light', icon: 'adjust', onSelect: () => this.handleTheme('light-ui')},
|
376
|
+
{ label: 'Dark', icon: 'adjust', onSelect: () => this.handleTheme('dark-ui')},
|
377
|
+
{ label: 'Accessible Light', icon: 'adjust', onSelect: () => this.handleTheme('accessible-light-ui')},
|
378
|
+
]
|
379
|
+
},
|
380
|
+
]}
|
381
|
+
>
|
382
|
+
<NavButton type='default' icon='adjust' onClick={()=> false} />
|
383
|
+
</Dropdown>
|
384
|
+
<Dropdown
|
385
|
+
items={[
|
386
|
+
{
|
387
|
+
type: 'group', label: 'Actions', items: [
|
388
|
+
'divider',
|
389
|
+
{ label: 'Action one', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
390
|
+
{ label: 'Action two', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
391
|
+
{ label: 'Action three', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
392
|
+
]
|
393
|
+
}
|
394
|
+
]}
|
395
|
+
>
|
396
|
+
<NavButton icon='dots-vertical' onClick={() => false} />
|
397
|
+
</Dropdown>
|
398
|
+
</ButtonGroup>
|
399
|
+
</ButtonGroup>
|
400
|
+
</SubNav>
|
401
|
+
</Layout.HeaderPanel>
|
402
|
+
{/* TOOLBAR HEADER */}
|
390
403
|
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
onChange={(value) => {}}>
|
404
|
+
<Layout.LeftPanel open={this.state.openFilter}>
|
405
|
+
<Layout.Panel side='left' background='grey'>
|
406
|
+
<Layout.PanelHeader title='Advanced filters' onClose={() => this.setState({'openFilter': false})} />
|
407
|
+
<Layout.PanelContent>
|
408
|
+
<Layout.PanelContentBlock>
|
409
|
+
<Form.FormGroup>
|
410
|
+
<Form.FormItem>
|
411
|
+
<Select
|
412
|
+
label='Shows'
|
413
|
+
labelHidden={true}
|
414
|
+
value='This is some value'
|
415
|
+
info='This is some hint message'
|
416
|
+
required={true}
|
417
|
+
disabled={false}
|
418
|
+
onChange={() => false}
|
419
|
+
>
|
408
420
|
<Option>Marker</Option>
|
409
421
|
<Option>Tabu</Option>
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
422
|
+
</Select>
|
423
|
+
</Form.FormItem>
|
424
|
+
</Form.FormGroup>
|
425
|
+
<div className="form__group">
|
426
|
+
<div className="form__item">
|
427
|
+
<Input
|
428
|
+
label='Title'
|
429
|
+
type='text'
|
430
|
+
value='Title'
|
431
|
+
inlineLabel={false}
|
432
|
+
disabled={false}
|
433
|
+
onChange={() => false}
|
434
|
+
/>
|
435
|
+
</div>
|
423
436
|
</div>
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
</
|
437
|
+
<div className="form__group">
|
438
|
+
<div className="form__item">
|
439
|
+
<Select
|
440
|
+
label='Source'
|
441
|
+
value='Select ingest source...'
|
442
|
+
inlineLabel={false}
|
443
|
+
disabled={false}
|
444
|
+
onChange={() => false}
|
445
|
+
>
|
446
|
+
<Option value="option-1">Select ingest source...</Option>
|
447
|
+
<Option value="option-2">Associated Press</Option>
|
448
|
+
<Option value="option-3">Reuters</Option>
|
449
|
+
</Select>
|
450
|
+
</div>
|
438
451
|
</div>
|
439
|
-
</div>
|
440
452
|
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
onChange={(value) => { }} />
|
453
|
+
<div className="form__group">
|
454
|
+
<div className="form__item">
|
455
|
+
<Input label='Keyword'
|
456
|
+
type='text'
|
457
|
+
value='Keyword'
|
458
|
+
inlineLabel={false}
|
459
|
+
disabled={false}
|
460
|
+
onChange={() => false} />
|
461
|
+
</div>
|
451
462
|
</div>
|
452
|
-
</div>
|
453
463
|
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
464
|
+
<div className="form__group">
|
465
|
+
<div className="form__item">
|
466
|
+
<Select
|
467
|
+
label='Usage right'
|
468
|
+
value='--- Not selected ---'
|
469
|
+
info='Dolor in hendrerit.'
|
470
|
+
inlineLabel={false}
|
471
|
+
disabled={false}
|
472
|
+
onChange={() => false}
|
473
|
+
>
|
474
|
+
<Option value="">--- Not selected ---</Option>
|
475
|
+
<Option value="single">Single usage</Option>
|
476
|
+
<Option value="time">Time restricted</Option>
|
477
|
+
<Option value="bananas">Indefinite usage</Option>
|
478
|
+
<Option value="indefinite">Pears</Option>
|
479
|
+
</Select>
|
480
|
+
</div>
|
470
481
|
</div>
|
471
|
-
</
|
472
|
-
</Layout.
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
</Layout.
|
478
|
-
</Layout.
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
itemRow: [
|
494
|
-
{
|
495
|
-
content:
|
496
|
-
<>
|
497
|
-
<span className="sd-list-item__slugline">19:00 – 19:45</span>
|
498
|
-
<IconLabel style='translucent' innerLabel='Duration:' text='00:38' size='small' type='warning' />
|
499
|
-
<IconLabel style='translucent' innerLabel='Planned Duration:'text='00:45' size='small' />
|
500
|
-
<time className='sd-margin-s--auto' title="June 01, 2022 11:08 AM">11:08, 01.06.2022</time>
|
501
|
-
</>
|
502
|
-
},
|
503
|
-
{
|
504
|
-
content:
|
505
|
-
<>
|
506
|
-
<Label text='Marker' color='blue--800'/>
|
507
|
-
<span className='sd-list-item__compound-text'>
|
508
|
-
<span className='sd-list-item__text-label'>Template:</span>
|
509
|
-
<span>Marker Daily</span>
|
510
|
-
</span>
|
511
|
-
<span className="sd-overflow-ellipsis sd-list-item--element-grow sd-list-item__headline">Marker // 01.06.2022</span>
|
512
|
-
<Label style='translucent' text='In Progress' type='warning' />
|
513
|
-
</>
|
514
|
-
},
|
515
|
-
],
|
516
|
-
fullwidth: true,
|
517
|
-
}
|
518
|
-
],
|
519
|
-
action: <IconButton icon='dots-vertical' ariaValue='More actions' onClick={()=> false} />,
|
520
|
-
locked: true,
|
521
|
-
onClick: () => this.setState({openEditor: !this.state.openEditor}),
|
522
|
-
},
|
523
|
-
{
|
524
|
-
itemColum: [
|
525
|
-
{
|
526
|
-
itemRow: [{content:<>
|
527
|
-
<i className="icon-rundown"></i>
|
528
|
-
</>}],
|
529
|
-
border: true
|
530
|
-
},
|
531
|
-
{
|
532
|
-
itemRow: [
|
533
|
-
{
|
534
|
-
content:
|
535
|
-
<>
|
536
|
-
<span className="sd-list-item__slugline">19:00 – 19:45</span>
|
537
|
-
<IconLabel style='translucent' innerLabel='Duration:' text='00:38' size='small' type='warning' />
|
538
|
-
<IconLabel style='translucent' innerLabel='Planned Duration:'text='00:45' size='small' />
|
539
|
-
<time className='sd-margin-s--auto' title="June 01, 2022 11:08 AM">11:08, 01.06.2022</time>
|
540
|
-
</>
|
541
|
-
},
|
542
|
-
{
|
543
|
-
content:
|
544
|
-
<>
|
545
|
-
<Label text='Tabu' color='blue--800'/>
|
546
|
-
<span className='sd-list-item__compound-text'>
|
547
|
-
<span className='sd-list-item__text-label'>Template:</span>
|
548
|
-
<span>Tabu Daily</span>
|
549
|
-
</span>
|
550
|
-
<span className="sd-overflow-ellipsis sd-list-item--element-grow sd-list-item__headline">Marker // 01.06.2022</span>
|
551
|
-
<Label style='translucent' text='Draft' />
|
552
|
-
</>
|
553
|
-
},
|
554
|
-
],
|
555
|
-
fullwidth: true,
|
556
|
-
}
|
557
|
-
],
|
558
|
-
action: <IconButton icon='dots-vertical' ariaValue='More actions' onClick={()=> false} />,
|
559
|
-
onClick: () => this.setState({openPreview: !this.state.openPreview}),
|
560
|
-
},
|
561
|
-
]} />
|
562
|
-
|
563
|
-
</Layout.MainPanel>
|
564
|
-
{/* MAIN CONTENT (Monitoring) */}
|
565
|
-
<Layout.RightPanel open={this.state.openPreview}>
|
566
|
-
<Layout.Panel side='right'>
|
567
|
-
<Layout.PanelHeader title='Item preview' onClose={() => this.setState({'openPreview': false})} />
|
568
|
-
<Layout.PanelContent>
|
569
|
-
<Layout.PanelContentBlock flex={true}>
|
570
|
-
<Layout.Container direction='column' gap='x-small'>
|
571
|
-
<Layout.Container direction='row' gap='small'><Text color='light'>Created 09.06.2022 by </Text><Text weight='medium'>Mika Karapet</Text></Layout.Container>
|
572
|
-
<Layout.Container direction='row' gap='small'><Text color='light'>Updated 3 hours ago by </Text><Text weight='medium'>John Doe</Text></Layout.Container>
|
573
|
-
</Layout.Container>
|
574
|
-
<Layout.Container className='sd-margin-s--auto sd-flex--items-center'>
|
575
|
-
{/* <Dropdown
|
576
|
-
align = 'right'
|
577
|
-
append = {true}
|
578
|
-
items={[
|
482
|
+
</Layout.PanelContentBlock>
|
483
|
+
</Layout.PanelContent>
|
484
|
+
<Layout.PanelFooter>
|
485
|
+
<Button text='Clear' style='hollow' onClick={() => false} />
|
486
|
+
<Button text='Submit' type='primary' onClick={() => false} />
|
487
|
+
</Layout.PanelFooter>
|
488
|
+
</Layout.Panel>
|
489
|
+
</Layout.LeftPanel>
|
490
|
+
{/* FILTER PANEL*/}
|
491
|
+
<Layout.MainPanel>
|
492
|
+
<ContentList
|
493
|
+
items={[
|
494
|
+
{
|
495
|
+
itemColum: [
|
496
|
+
{
|
497
|
+
itemRow: [{content:<>
|
498
|
+
<i className="icon-rundown"></i>
|
499
|
+
</>}],
|
500
|
+
border: true
|
501
|
+
},
|
502
|
+
{
|
503
|
+
itemRow: [
|
579
504
|
{
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
505
|
+
content:
|
506
|
+
<>
|
507
|
+
<span className="sd-list-item__slugline">19:00 – 19:45</span>
|
508
|
+
<IconLabel style='translucent' innerLabel='Duration:' text='00:38' size='small' type='warning' />
|
509
|
+
<IconLabel style='translucent' innerLabel='Planned Duration:'text='00:45' size='small' />
|
510
|
+
<time className='sd-margin-s--auto' title="June 01, 2022 11:08 AM">11:08, 01.06.2022</time>
|
511
|
+
</>
|
512
|
+
},
|
513
|
+
{
|
514
|
+
content:
|
515
|
+
<>
|
516
|
+
<Label text='Marker' color='blue--800'/>
|
517
|
+
<span className='sd-list-item__compound-text'>
|
518
|
+
<span className='sd-list-item__text-label'>Template:</span>
|
519
|
+
<span>Marker Daily</span>
|
520
|
+
</span>
|
521
|
+
<span className="sd-overflow-ellipsis sd-list-item--element-grow sd-list-item__headline">Marker // 01.06.2022</span>
|
522
|
+
<Label style='translucent' text='In Progress' type='warning' />
|
523
|
+
</>
|
524
|
+
},
|
525
|
+
],
|
526
|
+
fullwidth: true,
|
527
|
+
}
|
528
|
+
],
|
529
|
+
action: <IconButton icon='dots-vertical' ariaValue='More actions' onClick={()=> false} />,
|
530
|
+
locked: true,
|
531
|
+
onClick: () => this.setState({openEditor: !this.state.openEditor}),
|
532
|
+
},
|
533
|
+
{
|
534
|
+
itemColum: [
|
535
|
+
{
|
536
|
+
itemRow: [{content:<>
|
537
|
+
<i className="icon-rundown"></i>
|
538
|
+
</>}],
|
539
|
+
border: true
|
540
|
+
},
|
541
|
+
{
|
542
|
+
itemRow: [
|
543
|
+
{
|
544
|
+
content:
|
545
|
+
<>
|
546
|
+
<span className="sd-list-item__slugline">19:00 – 19:45</span>
|
547
|
+
<IconLabel style='translucent' innerLabel='Duration:' text='00:38' size='small' type='warning' />
|
548
|
+
<IconLabel style='translucent' innerLabel='Planned Duration:'text='00:45' size='small' />
|
549
|
+
<time className='sd-margin-s--auto' title="June 01, 2022 11:08 AM">11:08, 01.06.2022</time>
|
550
|
+
</>
|
551
|
+
},
|
552
|
+
{
|
553
|
+
content:
|
554
|
+
<>
|
555
|
+
<Label text='Tabu' color='blue--800'/>
|
556
|
+
<span className='sd-list-item__compound-text'>
|
557
|
+
<span className='sd-list-item__text-label'>Template:</span>
|
558
|
+
<span>Tabu Daily</span>
|
559
|
+
</span>
|
560
|
+
<span className="sd-overflow-ellipsis sd-list-item--element-grow sd-list-item__headline">Marker // 01.06.2022</span>
|
561
|
+
<Label style='translucent' text='Draft' />
|
562
|
+
</>
|
563
|
+
},
|
564
|
+
],
|
565
|
+
fullwidth: true,
|
566
|
+
}
|
567
|
+
],
|
568
|
+
action: <IconButton icon='dots-vertical' ariaValue='More actions' onClick={()=> false} />,
|
569
|
+
onClick: () => this.setState({openPreview: !this.state.openPreview}),
|
570
|
+
},
|
571
|
+
]}
|
572
|
+
/>
|
573
|
+
</Layout.MainPanel>
|
591
574
|
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
575
|
+
{/* MAIN CONTENT (Monitoring) */}
|
576
|
+
<Layout.RightPanel open={this.state.openPreview}>
|
577
|
+
<Layout.Panel side='right'>
|
578
|
+
<Layout.PanelHeader title='Item preview' onClose={() => this.setState({'openPreview': false})} />
|
579
|
+
<Layout.PanelContent>
|
580
|
+
<Layout.PanelContentBlock flex={true}>
|
581
|
+
<Layout.Container direction='column' gap='x-small'>
|
582
|
+
<Layout.Container direction='row' gap='small'><Text color='light'>Created 09.06.2022 by </Text><Text weight='medium'>Mika Karapet</Text></Layout.Container>
|
583
|
+
<Layout.Container direction='row' gap='small'><Text color='light'>Updated 3 hours ago by </Text><Text weight='medium'>John Doe</Text></Layout.Container>
|
598
584
|
</Layout.Container>
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
585
|
+
<Layout.Container className='sd-margin-s--auto sd-flex--items-center'>
|
586
|
+
{/* <Dropdown
|
587
|
+
align = 'right'
|
588
|
+
append = {true}
|
589
|
+
items={[
|
590
|
+
{
|
591
|
+
type: 'group', label: 'Actions', items: [
|
592
|
+
'divider',
|
593
|
+
{ label: 'Edit', icon: 'pencil', onSelect: () => this.setState({ dropDownState: 'Edit ' }) },
|
594
|
+
{ label: 'Download', icon: 'download', onSelect: () => this.setState({ dropDownState: 'Download' }) },
|
595
|
+
{ label: 'Delete', icon: 'trash', onSelect: () => this.setState({ dropDownState: 'Delete' }) },
|
596
|
+
]
|
597
|
+
}]}>
|
598
|
+
<IconButton ariaValue='dropdown-more-options' icon='dots-vertical' onClick={() => false} />
|
599
|
+
</Dropdown> */}
|
600
|
+
</Layout.Container>
|
601
|
+
</Layout.PanelContentBlock>
|
602
|
+
|
603
|
+
<Layout.PanelContentBlock>
|
604
|
+
<Layout.Container direction='row' gap='large' className='sd-margin-b--3'>
|
605
|
+
<Label size='large' text='Tabu' color='blue--800'/>
|
606
|
+
<Layout.Container direction='row' gap='small'>
|
607
|
+
<Text color='light' size='small' style='italic' >Template:</Text>
|
608
|
+
<Text size='small' style='italic' weight='medium'>Tabu daily</Text>
|
609
|
+
</Layout.Container>
|
610
|
+
</Layout.Container>
|
611
|
+
|
612
|
+
<Layout.Container direction='column' className='sd-margin-y--2'>
|
613
|
+
{/* <FormLabel text='Title' /> */}
|
614
|
+
<Heading type='h2'>Tabu // 01.06.2022</Heading>
|
615
|
+
</Layout.Container>
|
616
|
+
<ButtonGroup>
|
617
|
+
<IconLabel style='translucent' innerLabel='Airtime:' text='19:45 - 20:45' type='primary' />
|
618
|
+
<IconLabel style='translucent' innerLabel='Duration:' text='00:56' type='warning' />
|
619
|
+
<Text color='light' size='small' className='sd-margin--0'>OF</Text>
|
620
|
+
<IconLabel style='translucent' innerLabel='Planned:'text='01:00' />
|
621
|
+
</ButtonGroup>
|
622
|
+
<TableList
|
623
|
+
className='sd-margin-y--4'
|
624
|
+
array={this.state.array}
|
625
|
+
itemsDropdown={() => [
|
626
|
+
{ label: <Label style='translucent' type='primary' text='aacc' />, onSelect: () => 1 },
|
627
|
+
{ label: <Label style='translucent' text='prlg' />, onSelect: () => 1 },
|
628
|
+
{ label: <Label style='translucent' type='primary' text='prlg' />, onSelect: () => 1 },
|
629
|
+
]}
|
630
|
+
/>
|
631
|
+
</Layout.PanelContentBlock>
|
632
|
+
</Layout.PanelContent>
|
633
|
+
</Layout.Panel>
|
634
|
+
</Layout.RightPanel>
|
635
|
+
{/* PREVIEW PANEL*/}
|
625
636
|
|
626
|
-
|
627
|
-
|
628
|
-
|
637
|
+
<Layout.OverlayPanel />
|
638
|
+
{/* OVERLAY PANEL (Send To) */}
|
639
|
+
</Layout.LayoutContainer>
|
640
|
+
}
|
629
641
|
|
630
642
|
<Layout.ContentSplitter visible={this.state.openEditor} />
|
631
643
|
|
632
644
|
{/* RUNDOWN EDITOR */}
|
633
645
|
<Layout.AuthoringContainer open={this.state.openEditor}>
|
634
|
-
<RundownEditor
|
635
|
-
|
636
|
-
|
637
|
-
this.
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
this.
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
646
|
+
<RundownEditor
|
647
|
+
rightPanel={this.state.rightPanel}
|
648
|
+
openPanel={() => {
|
649
|
+
if (this.state.fullEditor) {
|
650
|
+
this.setState({previousState: true})
|
651
|
+
} else {
|
652
|
+
this.setState({previousState: false})
|
653
|
+
}
|
654
|
+
|
655
|
+
this.setState({rightPanel: true})
|
656
|
+
}}
|
657
|
+
closePanel={() => {
|
658
|
+
if (!this.state.previousState) {
|
659
|
+
this.setState({rightPanel: false, fullEditor: false})
|
660
|
+
} else {
|
661
|
+
this.setState({rightPanel: false})
|
662
|
+
}
|
663
|
+
}}
|
651
664
|
/>
|
652
665
|
</Layout.AuthoringContainer>
|
653
666
|
{/* END RUNDOWN EDITOR */}
|