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,5 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
import { ButtonGroup, Button, NavButton, SubNav, Dropdown,
|
2
|
+
import { ButtonGroup, Button, NavButton, SubNav, Dropdown, RadioButtonGroup, Input, Select, Option, Label, IconLabel, Icon, IconButton, Tooltip, CreateButton, Modal, EmptyState, Container, BoxedList, BoxedListItem, Text, Heading, Switch, SwitchGroup, SearchBar } from '../../../../app-typescript/index';
|
3
3
|
import * as Layout from '../../../../app-typescript/components/Layouts';
|
4
4
|
import * as Form from '../../../../app-typescript/components/Form';
|
5
5
|
import {RundownEditor} from './RundownEditor';
|
@@ -21,7 +21,6 @@ interface IState {
|
|
21
21
|
itemSelected2: boolean;
|
22
22
|
itemSelected3: boolean;
|
23
23
|
value1: boolean;
|
24
|
-
|
25
24
|
modalBasic: boolean;
|
26
25
|
modalSmall: boolean;
|
27
26
|
modalMedium: boolean;
|
@@ -33,6 +32,9 @@ interface IState {
|
|
33
32
|
openEditor: boolean;
|
34
33
|
openShowEditor: boolean;
|
35
34
|
array: any;
|
35
|
+
rightPanel: boolean;
|
36
|
+
fullEditor: boolean;
|
37
|
+
previousState: boolean;
|
36
38
|
}
|
37
39
|
|
38
40
|
export class Rundowns extends React.Component<IProps, IState> {
|
@@ -58,6 +60,9 @@ export class Rundowns extends React.Component<IProps, IState> {
|
|
58
60
|
modalManageShow: false,
|
59
61
|
openEditor: false,
|
60
62
|
openShowEditor: false,
|
63
|
+
rightPanel: false,
|
64
|
+
fullEditor: false,
|
65
|
+
previousState: false,
|
61
66
|
array: [
|
62
67
|
{
|
63
68
|
start: <>
|
@@ -155,432 +160,468 @@ export class Rundowns extends React.Component<IProps, IState> {
|
|
155
160
|
);
|
156
161
|
return (
|
157
162
|
<>
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
<Layout.HeaderPanel>
|
172
|
-
<SubNav zIndex={2}>
|
173
|
-
<SearchBar placeholder='Search media'></SearchBar>
|
174
|
-
<ButtonGroup align='end' spaces='no-space'>
|
175
|
-
<Dropdown
|
176
|
-
items={[
|
177
|
-
{
|
178
|
-
type: 'group', label: 'Settings', items: [
|
179
|
-
'divider',
|
180
|
-
{ icon: 'switches', label: 'Manage Shows', onSelect: () => this.setState({modalManageShow: true}) },
|
181
|
-
{ icon: 'switches', label: 'Manage Templates', onSelect: () => this.setState({modalManageTemplate: true}) },
|
182
|
-
]
|
183
|
-
}]}>
|
184
|
-
<NavButton icon='settings' onClick={() => false} />
|
185
|
-
</Dropdown>
|
186
|
-
<Dropdown
|
187
|
-
header={[
|
188
|
-
{
|
189
|
-
type: 'group', label: 'Create', items: []
|
190
|
-
},
|
191
|
-
{
|
192
|
-
type: 'submenu', label: 'Rundown', icon: 'plus-sign', items: [
|
193
|
-
{ icon: 'plus-sign', label: 'Rundown', onSelect: () => 1 },
|
194
|
-
]
|
195
|
-
},
|
196
|
-
]}
|
197
|
-
items={[
|
198
|
-
{
|
199
|
-
type: 'group', label: 'Recent Templates', items: [
|
200
|
-
{ icon: 'plus-sign', label: 'Marker Daily', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
201
|
-
{ icon: 'plus-sign', label: 'Marker Weekend', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
202
|
-
{ icon: 'plus-sign', label: 'Tabu Daily', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
203
|
-
{ icon: 'plus-sign', label: 'Tabu Specijal', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
204
|
-
]
|
205
|
-
}]}
|
206
|
-
footer={[
|
207
|
-
{
|
208
|
-
type: 'group', items: [
|
209
|
-
{ icon: 'list-plus', label: 'Create new Template', onSelect: () => this.setState({modalNewTemplate: true}) },
|
210
|
-
{ icon: 'rundown', label: 'Create new Show', onSelect: () => this.setState({modalNewShow: true}) },
|
211
|
-
]
|
212
|
-
},
|
213
|
-
]}>
|
163
|
+
<Layout.Layout header='Rundowns' theme={this.state.theme}>
|
164
|
+
<Nav.SideBarMenu
|
165
|
+
items={[
|
166
|
+
{ icon: 'dashboard', size: 'big' },
|
167
|
+
{ icon: 'view', size: 'big', onCLick: () => this.setState({openEditor: !this.state.openEditor}) },
|
168
|
+
{ icon: 'marked-star', size: 'big' },
|
169
|
+
{ icon: 'spike', size: 'big' },
|
170
|
+
{ icon: 'personal', size: 'big' },
|
171
|
+
{ icon: 'global-search', size: 'big' },
|
172
|
+
{ icon: 'picture', size: 'big' },
|
173
|
+
{ icon: 'rundown', size: 'big', }
|
174
|
+
]}
|
175
|
+
/>
|
214
176
|
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
<ButtonGroup align='start'>
|
221
|
-
<NavButton icon='filter-large' onClick={this.handleFilter} />
|
222
|
-
</ButtonGroup>
|
223
|
-
<ButtonGroup align='end'>
|
224
|
-
<ButtonGroup align='sub' padded={true} >
|
225
|
-
<Button size="normal" icon="chevron-left-thin" text="Previous" shape="round" iconOnly={true} disabled onClick={()=> false} />
|
226
|
-
<Button text='Today' style='hollow' onClick={() => false} />
|
227
|
-
<Button size="normal" icon="chevron-right-thin" text="Next" shape="round" iconOnly={true} onClick={()=> false} />
|
228
|
-
</ButtonGroup>
|
229
|
-
<RadioButtonGroup options={[
|
230
|
-
{value:'test10', label:'D'},
|
231
|
-
{value:'test11', label:'W'},
|
232
|
-
{value:'test12', label:'M'},
|
233
|
-
]} group={{padded:false}} value={this.state.itemType} onChange={(value) => this.setState({ itemType: value })} />
|
234
|
-
<ButtonGroup align='sub' spaces='no-space'>
|
177
|
+
<Layout.LayoutContainer>
|
178
|
+
<Layout.HeaderPanel>
|
179
|
+
<SubNav zIndex={2}>
|
180
|
+
<SearchBar placeholder='Search media'></SearchBar>
|
181
|
+
<ButtonGroup align='end' spaces='no-space'>
|
235
182
|
<Dropdown
|
236
183
|
items={[
|
237
184
|
{
|
238
|
-
type: 'group', label: '
|
185
|
+
type: 'group', label: 'Settings', items: [
|
239
186
|
'divider',
|
240
|
-
{
|
241
|
-
{
|
242
|
-
{ label: 'Accessible Light', icon: 'adjust', onSelect: () => this.handleTheme('accessible-light-ui')},
|
187
|
+
{ icon: 'switches', label: 'Manage Shows', onSelect: () => this.setState({modalManageShow: true}) },
|
188
|
+
{ icon: 'switches', label: 'Manage Templates', onSelect: () => this.setState({modalManageTemplate: true}) },
|
243
189
|
]
|
244
|
-
}
|
245
|
-
]}
|
246
|
-
|
190
|
+
}
|
191
|
+
]}
|
192
|
+
>
|
193
|
+
<NavButton icon='settings' onClick={() => false} />
|
247
194
|
</Dropdown>
|
248
195
|
<Dropdown
|
196
|
+
header={[
|
197
|
+
{
|
198
|
+
type: 'group', label: 'Create', items: []
|
199
|
+
},
|
200
|
+
{
|
201
|
+
type: 'submenu', label: 'Rundown', icon: 'plus-sign', items: [
|
202
|
+
{ icon: 'plus-sign', label: 'Rundown', onSelect: () => 1 },
|
203
|
+
]
|
204
|
+
},
|
205
|
+
]}
|
249
206
|
items={[
|
250
207
|
{
|
251
|
-
type: 'group', label: '
|
252
|
-
'
|
253
|
-
{ label: '
|
254
|
-
{ label: '
|
255
|
-
{ label: '
|
208
|
+
type: 'group', label: 'Recent Templates', items: [
|
209
|
+
{ icon: 'plus-sign', label: 'Marker Daily', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
210
|
+
{ icon: 'plus-sign', label: 'Marker Weekend', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
211
|
+
{ icon: 'plus-sign', label: 'Tabu Daily', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
212
|
+
{ icon: 'plus-sign', label: 'Tabu Specijal', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
256
213
|
]
|
257
|
-
}
|
258
|
-
|
214
|
+
}
|
215
|
+
]}
|
216
|
+
footer={[
|
217
|
+
{
|
218
|
+
type: 'group', items: [
|
219
|
+
{ icon: 'list-plus', label: 'Create new Template', onSelect: () => this.setState({modalNewTemplate: true}) },
|
220
|
+
{ icon: 'rundown', label: 'Create new Show', onSelect: () => this.setState({modalNewShow: true}) },
|
221
|
+
]
|
222
|
+
},
|
223
|
+
]}
|
224
|
+
>
|
225
|
+
|
226
|
+
<CreateButton ariaValue='Create' onClick={() => false} />
|
259
227
|
</Dropdown>
|
260
228
|
</ButtonGroup>
|
261
|
-
</
|
262
|
-
|
263
|
-
|
264
|
-
|
229
|
+
</SubNav>
|
230
|
+
<SubNav zIndex={1}>
|
231
|
+
<ButtonGroup align='start'>
|
232
|
+
<NavButton icon='filter-large' onClick={this.handleFilter} />
|
233
|
+
</ButtonGroup>
|
234
|
+
<ButtonGroup align='end'>
|
235
|
+
<ButtonGroup align='sub' padded={true} >
|
236
|
+
<Button size="normal" icon="chevron-left-thin" text="Previous" shape="round" iconOnly={true} disabled onClick={()=> false} />
|
237
|
+
<Button text='Today' style='hollow' onClick={() => false} />
|
238
|
+
<Button size="normal" icon="chevron-right-thin" text="Next" shape="round" iconOnly={true} onClick={()=> false} />
|
239
|
+
</ButtonGroup>
|
240
|
+
<RadioButtonGroup
|
241
|
+
options={[
|
242
|
+
{value:'test10', label:'D'},
|
243
|
+
{value:'test11', label:'W'},
|
244
|
+
{value:'test12', label:'M'},
|
245
|
+
]}
|
246
|
+
group={{padded:false}}
|
247
|
+
value={this.state.itemType}
|
248
|
+
onChange={(value) => this.setState({ itemType: value })}
|
249
|
+
/>
|
250
|
+
<ButtonGroup align='sub' spaces='no-space'>
|
251
|
+
<Dropdown
|
252
|
+
items={[
|
253
|
+
{
|
254
|
+
type: 'group', label: 'Chose a theme', items: [
|
255
|
+
'divider',
|
256
|
+
{ label: 'Light', icon: 'adjust', onSelect: () => this.handleTheme('light-ui')},
|
257
|
+
{ label: 'Dark', icon: 'adjust', onSelect: () => this.handleTheme('dark-ui')},
|
258
|
+
{ label: 'Accessible Light', icon: 'adjust', onSelect: () => this.handleTheme('accessible-light-ui')},
|
259
|
+
]
|
260
|
+
},
|
261
|
+
]}
|
262
|
+
>
|
263
|
+
<NavButton type='default' icon='adjust' onClick={()=> false} />
|
264
|
+
</Dropdown>
|
265
|
+
<Dropdown
|
266
|
+
items={[
|
267
|
+
{
|
268
|
+
type: 'group', label: 'Actions', items: [
|
269
|
+
'divider',
|
270
|
+
{ label: 'Action one', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
271
|
+
{ label: 'Action two', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
272
|
+
{ label: 'Action three', onSelect: () => this.setState({ dropDownState: ' ' }) },
|
273
|
+
]
|
274
|
+
}
|
275
|
+
]}
|
276
|
+
>
|
277
|
+
<NavButton icon='dots-vertical' onClick={() => false} />
|
278
|
+
</Dropdown>
|
279
|
+
</ButtonGroup>
|
280
|
+
</ButtonGroup>
|
281
|
+
</SubNav>
|
282
|
+
</Layout.HeaderPanel>
|
283
|
+
{/* TOOLBAR HEADER */}
|
265
284
|
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
</
|
286
|
-
</Form.
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
285
|
+
<Layout.LeftPanel open={this.state.openFilter}>
|
286
|
+
<Layout.Panel side='left' background='grey'>
|
287
|
+
<Layout.PanelHeader title='Advanced filters' onClose={() => this.setState({'openFilter': false})} />
|
288
|
+
<Layout.PanelContent>
|
289
|
+
<Layout.PanelContentBlock>
|
290
|
+
<Form.FormGroup>
|
291
|
+
<Form.FormItem>
|
292
|
+
<Select
|
293
|
+
label='Shows'
|
294
|
+
labelHidden={true}
|
295
|
+
value='This is some value'
|
296
|
+
info='This is some hint message'
|
297
|
+
required={true}
|
298
|
+
disabled={false}
|
299
|
+
onChange={() => false}
|
300
|
+
>
|
301
|
+
<Option>Marker</Option>
|
302
|
+
<Option>Tabu</Option>
|
303
|
+
</Select>
|
304
|
+
</Form.FormItem>
|
305
|
+
</Form.FormGroup>
|
306
|
+
<div className="form__group">
|
307
|
+
<div className="form__item">
|
308
|
+
<Input
|
309
|
+
label='Title'
|
310
|
+
type='text'
|
311
|
+
value='Title'
|
312
|
+
inlineLabel={false}
|
313
|
+
disabled={false}
|
314
|
+
onChange={() => false}
|
315
|
+
/>
|
316
|
+
</div>
|
298
317
|
</div>
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
</
|
318
|
+
<div className="form__group">
|
319
|
+
<div className="form__item">
|
320
|
+
<Select
|
321
|
+
label='Source'
|
322
|
+
value='Select ingest source...'
|
323
|
+
inlineLabel={false}
|
324
|
+
disabled={false}
|
325
|
+
onChange={() => false}
|
326
|
+
>
|
327
|
+
<Option value="option-1">Select ingest source...</Option>
|
328
|
+
<Option value="option-2">Associated Press</Option>
|
329
|
+
<Option value="option-3">Reuters</Option>
|
330
|
+
</Select>
|
331
|
+
</div>
|
313
332
|
</div>
|
314
|
-
</div>
|
315
333
|
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
334
|
+
<div className="form__group">
|
335
|
+
<div className="form__item">
|
336
|
+
<Input
|
337
|
+
label='Keyword'
|
338
|
+
type='text'
|
339
|
+
value='Keyword'
|
340
|
+
inlineLabel={false}
|
341
|
+
disabled={false}
|
342
|
+
onChange={() => false}
|
343
|
+
/>
|
344
|
+
</div>
|
326
345
|
</div>
|
327
|
-
</div>
|
328
346
|
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
347
|
+
<div className="form__group">
|
348
|
+
<div className="form__item">
|
349
|
+
<Select
|
350
|
+
label='Usage right'
|
351
|
+
value='--- Not selected ---'
|
352
|
+
info='Dolor in hendrerit.'
|
353
|
+
inlineLabel={false}
|
354
|
+
disabled={false}
|
355
|
+
onChange={() => false}
|
356
|
+
>
|
357
|
+
<Option value="">--- Not selected ---</Option>
|
358
|
+
<Option value="single">Single usage</Option>
|
359
|
+
<Option value="time">Time restricted</Option>
|
360
|
+
<Option value="bananas">Indefinite usage</Option>
|
361
|
+
<Option value="indefinite">Pears</Option>
|
362
|
+
</Select>
|
363
|
+
</div>
|
345
364
|
</div>
|
346
|
-
</
|
347
|
-
</Layout.
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
</Layout.
|
353
|
-
</Layout.
|
354
|
-
|
355
|
-
|
356
|
-
<Layout.MainPanel>
|
365
|
+
</Layout.PanelContentBlock>
|
366
|
+
</Layout.PanelContent>
|
367
|
+
<Layout.PanelFooter>
|
368
|
+
<Button text='Clear' style='hollow' onClick={() => false} />
|
369
|
+
<Button text='Submit' type='primary' onClick={() => false} />
|
370
|
+
</Layout.PanelFooter>
|
371
|
+
</Layout.Panel>
|
372
|
+
</Layout.LeftPanel>
|
373
|
+
{/* FILTER PANEL*/}
|
374
|
+
<Layout.MainPanel>
|
357
375
|
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
376
|
+
{/* <GridList size="small" gap="medium" margin="3">
|
377
|
+
{dummy_items.map((item, index) =>
|
378
|
+
<GridElements.GridItem locked={item.locked} status={item.status} onClick={this.handlePreview} itemtype={item.type} key={index}>
|
379
|
+
<GridElements.GridItemCheckWrapper>
|
380
|
+
<Checkbox checked={item.selected} label={{text:''}} onChange={(value) => {
|
381
|
+
item.selected = value;
|
382
|
+
this.changeStatus(item, 'selected');
|
383
|
+
}} />
|
384
|
+
</GridElements.GridItemCheckWrapper>
|
385
|
+
<GridElements.GridItemTopActions>
|
386
|
+
<IconButton icon='fullscreen' ariaValue='More actions' onClick={()=> false} />
|
387
|
+
</GridElements.GridItemTopActions>
|
388
|
+
<GridElements.GridItemMedia>
|
389
|
+
{ item.image ? <img src={item.image} alt={item.imageAlt}/> : null }
|
390
|
+
</GridElements.GridItemMedia>
|
391
|
+
<GridElements.GridItemContent>
|
392
|
+
<GridElements.GridItemTime time={item.date} />
|
393
|
+
<GridElements.GridItemTitle>{item.title}</GridElements.GridItemTitle>
|
394
|
+
<GridElements.GridItemText>{item.description}</GridElements.GridItemText>
|
395
|
+
</GridElements.GridItemContent>
|
396
|
+
<GridElements.GridItemFooter>
|
397
|
+
<GridElements.GridItemFooterBlock align='left'>
|
398
|
+
<Icon name={item.type} className='sd-grid-item__type-icn' />
|
399
|
+
<Badge text={item.urgency} color={item.urgencyColor} />
|
400
|
+
<Badge text={item.priority} shape='square' color={item.priorityColor} />
|
401
|
+
</GridElements.GridItemFooterBlock>
|
402
|
+
<GridElements.GridItemFooterActions>
|
403
|
+
<IconButton icon='dots-vertical' ariaValue='More actions' onClick={()=> this.changeStatus(item, 'archived')} />
|
404
|
+
</GridElements.GridItemFooterActions>
|
405
|
+
</GridElements.GridItemFooter>
|
406
|
+
</GridElements.GridItem>
|
407
|
+
)}
|
408
|
+
</GridList> */}
|
391
409
|
|
392
|
-
|
393
|
-
|
394
|
-
{
|
395
|
-
itemColum: [
|
410
|
+
<ContentList
|
411
|
+
items={[
|
396
412
|
{
|
397
|
-
|
398
|
-
<i className="icon-rundown"></i>
|
399
|
-
</>}],
|
400
|
-
border: true
|
401
|
-
},
|
402
|
-
{
|
403
|
-
itemRow: [
|
413
|
+
itemColum: [
|
404
414
|
{
|
405
|
-
content
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
<IconLabel style='translucent' innerLabel='Planned Duration:'text='00:45' size='small' />
|
410
|
-
<time className='sd-margin-s--auto' title="June 01, 2022 11:08 AM">11:08, 01.06.2022</time>
|
411
|
-
</>
|
415
|
+
itemRow: [{content:<>
|
416
|
+
<i className="icon-rundown"></i>
|
417
|
+
</>}],
|
418
|
+
border: true
|
412
419
|
},
|
413
420
|
{
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
<span className=
|
419
|
-
<
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
421
|
+
itemRow: [
|
422
|
+
{
|
423
|
+
content:
|
424
|
+
<>
|
425
|
+
<span className="sd-list-item__slugline">19:00 – 19:45</span>
|
426
|
+
<IconLabel style='translucent' innerLabel='Duration:' text='00:38' size='small' type='warning' />
|
427
|
+
<IconLabel style='translucent' innerLabel='Planned Duration:'text='00:45' size='small' />
|
428
|
+
<time className='sd-margin-s--auto' title="June 01, 2022 11:08 AM">11:08, 01.06.2022</time>
|
429
|
+
</>
|
430
|
+
},
|
431
|
+
{
|
432
|
+
content:
|
433
|
+
<>
|
434
|
+
<Label text='Marker' color='blue--800'/>
|
435
|
+
<span className='sd-list-item__compound-text'>
|
436
|
+
<span className='sd-list-item__text-label'>Template:</span>
|
437
|
+
<span>Marker Daily</span>
|
438
|
+
</span>
|
439
|
+
<span className="sd-overflow-ellipsis sd-list-item--element-grow sd-list-item__headline">Marker // 01.06.2022</span>
|
440
|
+
<Label style='translucent' text='In Progress' type='warning' />
|
441
|
+
</>
|
442
|
+
},
|
443
|
+
],
|
444
|
+
fullwidth: true,
|
445
|
+
}
|
425
446
|
],
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
action: <IconButton icon='dots-vertical' ariaValue='More actions' onClick={()=> false} />,
|
430
|
-
locked: true,
|
431
|
-
onClick: () => this.setState({openEditor: !this.state.openEditor}),
|
432
|
-
},
|
433
|
-
{
|
434
|
-
itemColum: [
|
435
|
-
{
|
436
|
-
itemRow: [{content:<>
|
437
|
-
<i className="icon-rundown"></i>
|
438
|
-
</>}],
|
439
|
-
border: true
|
447
|
+
action: <IconButton icon='dots-vertical' ariaValue='More actions' onClick={()=> false} />,
|
448
|
+
locked: true,
|
449
|
+
onClick: () => this.setState({openEditor: !this.state.openEditor}),
|
440
450
|
},
|
441
451
|
{
|
442
|
-
|
452
|
+
itemColum: [
|
443
453
|
{
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
<IconLabel style='translucent' innerLabel='Planned Duration:'text='00:45' size='small' />
|
449
|
-
<time className='sd-margin-s--auto' title="June 01, 2022 11:08 AM">11:08, 01.06.2022</time>
|
450
|
-
</>
|
454
|
+
itemRow: [{content:<>
|
455
|
+
<i className="icon-rundown"></i>
|
456
|
+
</>}],
|
457
|
+
border: true
|
451
458
|
},
|
452
459
|
{
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
<span className=
|
458
|
-
<
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
460
|
+
itemRow: [
|
461
|
+
{
|
462
|
+
content:
|
463
|
+
<>
|
464
|
+
<span className="sd-list-item__slugline">19:00 – 19:45</span>
|
465
|
+
<IconLabel style='translucent' innerLabel='Duration:' text='00:38' size='small' type='warning' />
|
466
|
+
<IconLabel style='translucent' innerLabel='Planned Duration:'text='00:45' size='small' />
|
467
|
+
<time className='sd-margin-s--auto' title="June 01, 2022 11:08 AM">11:08, 01.06.2022</time>
|
468
|
+
</>
|
469
|
+
},
|
470
|
+
{
|
471
|
+
content:
|
472
|
+
<>
|
473
|
+
<Label text='Tabu' color='blue--800'/>
|
474
|
+
<span className='sd-list-item__compound-text'>
|
475
|
+
<span className='sd-list-item__text-label'>Template:</span>
|
476
|
+
<span>Tabu Daily</span>
|
477
|
+
</span>
|
478
|
+
<span className="sd-overflow-ellipsis sd-list-item--element-grow sd-list-item__headline">Marker // 01.06.2022</span>
|
479
|
+
<Label style='translucent' text='Draft' />
|
480
|
+
</>
|
481
|
+
},
|
482
|
+
],
|
483
|
+
fullwidth: true,
|
484
|
+
}
|
464
485
|
],
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
},
|
471
|
-
]} />
|
486
|
+
action: <IconButton icon='dots-vertical' ariaValue='More actions' onClick={()=> false} />,
|
487
|
+
onClick: () => this.setState({openPreview: !this.state.openPreview}),
|
488
|
+
},
|
489
|
+
]}
|
490
|
+
/>
|
472
491
|
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
492
|
+
</Layout.MainPanel>
|
493
|
+
{/* MAIN CONTENT (Monitoring) */}
|
494
|
+
<Layout.RightPanel open={this.state.openPreview}>
|
495
|
+
<Layout.Panel side='right'>
|
496
|
+
<Layout.PanelHeader title='Item preview' onClose={() => this.setState({'openPreview': false})} />
|
497
|
+
<Layout.PanelContent>
|
498
|
+
<Layout.PanelContentBlock flex={true}>
|
499
|
+
<Container direction='column' gap='x-small'>
|
500
|
+
<Container direction='row' gap='small'><Text color='light'>Created 09.06.2022 by </Text><Text weight='medium'>Mika Karapet</Text></Container>
|
501
|
+
<Container direction='row' gap='small'><Text color='light'>Updated 3 hours ago by </Text><Text weight='medium'>John Doe</Text></Container>
|
502
|
+
</Container>
|
503
|
+
<Container className='sd-margin-s--auto sd-flex--items-center'>
|
504
|
+
{/* <Dropdown
|
505
|
+
align = 'right'
|
506
|
+
append = {true}
|
507
|
+
items={[
|
508
|
+
{
|
509
|
+
type: 'group', label: 'Actions', items: [
|
510
|
+
'divider',
|
511
|
+
{ label: 'Edit', icon: 'pencil', onSelect: () => this.setState({ dropDownState: 'Edit ' }) },
|
512
|
+
{ label: 'Download', icon: 'download', onSelect: () => this.setState({ dropDownState: 'Download' }) },
|
513
|
+
{ label: 'Delete', icon: 'trash', onSelect: () => this.setState({ dropDownState: 'Delete' }) },
|
514
|
+
]
|
515
|
+
}]}>
|
516
|
+
<IconButton ariaValue='dropdown-more-options' icon='dots-vertical' onClick={() => false} />
|
517
|
+
</Dropdown> */}
|
518
|
+
</Container>
|
519
|
+
</Layout.PanelContentBlock>
|
501
520
|
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
521
|
+
<Layout.PanelContentBlock>
|
522
|
+
<Container direction='row' gap='large' className='sd-margin-b--3'>
|
523
|
+
<Label size='large' text='Tabu' color='blue--800'/>
|
524
|
+
<Container direction='row' gap='small'>
|
525
|
+
<Text color='light' size='small' style='italic' >Template:</Text>
|
526
|
+
<Text size='small' style='italic' weight='medium'>Tabu daily</Text>
|
527
|
+
</Container>
|
508
528
|
</Container>
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
</Layout.
|
531
|
-
</Layout.
|
532
|
-
</Layout.
|
533
|
-
|
534
|
-
|
529
|
+
|
530
|
+
<Container direction='column' className='sd-margin-y--2'>
|
531
|
+
{/* <FormLabel text='Title' /> */}
|
532
|
+
<Heading type='h2'>Tabu // 01.06.2022</Heading>
|
533
|
+
</Container>
|
534
|
+
<ButtonGroup>
|
535
|
+
<IconLabel style='translucent' innerLabel='Airtime:' text='19:45 - 20:45' type='primary' />
|
536
|
+
<IconLabel style='translucent' innerLabel='Duration:' text='00:56' type='warning' />
|
537
|
+
<Text color='light' size='small' className='sd-margin--0'>OF</Text>
|
538
|
+
<IconLabel style='translucent' innerLabel='Planned:'text='01:00' />
|
539
|
+
</ButtonGroup>
|
540
|
+
<TableList
|
541
|
+
className='sd-margin-y--4'
|
542
|
+
array={this.state.array}
|
543
|
+
itemsDropdown={() => [
|
544
|
+
{ label: <Label style='translucent' type='primary' text='aacc' />, onSelect: () => 1 },
|
545
|
+
{ label: <Label style='translucent' text='prlg' />, onSelect: () => 1 },
|
546
|
+
{ label: <Label style='translucent' type='primary' text='prlg' />, onSelect: () => 1 },
|
547
|
+
]}
|
548
|
+
/>
|
549
|
+
</Layout.PanelContentBlock>
|
550
|
+
</Layout.PanelContent>
|
551
|
+
</Layout.Panel>
|
552
|
+
</Layout.RightPanel>
|
553
|
+
{/* PREVIEW PANEL*/}
|
554
|
+
|
555
|
+
<Layout.OverlayPanel />
|
556
|
+
{/* OVERLAY PANEL (Send To) */}
|
557
|
+
</Layout.LayoutContainer>
|
535
558
|
|
536
|
-
<Layout.
|
537
|
-
{/* OVERLAY PANEL (Send To) */}
|
538
|
-
</Layout.LayoutContainer>
|
559
|
+
<Layout.ContentSplitter visible={this.state.openEditor} />
|
539
560
|
|
540
|
-
|
561
|
+
{/* RUNDOWN EDITOR */}
|
562
|
+
<Layout.AuthoringContainer open={this.state.openEditor}>
|
563
|
+
<RundownEditor
|
564
|
+
rightPanel={this.state.rightPanel}
|
565
|
+
openPanel={() => {
|
566
|
+
if (this.state.fullEditor) {
|
567
|
+
this.setState({previousState: true})
|
568
|
+
} else {
|
569
|
+
this.setState({previousState: false})
|
570
|
+
}
|
571
|
+
|
572
|
+
this.setState({rightPanel: true})
|
573
|
+
}}
|
574
|
+
closePanel={() => {
|
575
|
+
if (!this.state.previousState) {
|
576
|
+
this.setState({rightPanel: false, fullEditor: false})
|
577
|
+
} else {
|
578
|
+
this.setState({rightPanel: false})
|
579
|
+
}
|
580
|
+
}}
|
581
|
+
/>
|
582
|
+
</Layout.AuthoringContainer>
|
583
|
+
{/* END RUNDOWN EDITOR */}
|
541
584
|
|
542
|
-
|
543
|
-
<Layout.AuthoringContainer open={this.state.openEditor}>
|
544
|
-
<RundownEditor />
|
545
|
-
</Layout.AuthoringContainer>
|
546
|
-
{/* END RUNDOWN EDITOR */}
|
547
|
-
|
548
|
-
</Layout.Layout >
|
585
|
+
</Layout.Layout >
|
549
586
|
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
587
|
+
{/* Manage Templates Modal */}
|
588
|
+
<Modal
|
589
|
+
headerTemplate="Manage Templates"
|
590
|
+
visible={this.state.modalManageTemplate}
|
591
|
+
zIndex={1000}
|
592
|
+
contentBg='medium'
|
593
|
+
contentPadding='none'
|
594
|
+
size='x-large' onHide={() => {this.setState({modalManageTemplate: false})}}
|
595
|
+
>
|
596
|
+
<Layout.LayoutContainer>
|
597
|
+
<Layout.LeftPanel open={true}>
|
598
|
+
<Layout.Panel side='left' background='grey'>
|
599
|
+
<Layout.PanelHeader>
|
600
|
+
<Container className='sd-padding-x--2'>
|
601
|
+
<Select
|
602
|
+
label='Shows'
|
603
|
+
fullWidth={true}
|
604
|
+
labelHidden={true}
|
605
|
+
inlineLabel={true}
|
606
|
+
value='This is some value'
|
607
|
+
required={true}
|
608
|
+
disabled={false}
|
609
|
+
invalid={false}
|
610
|
+
onChange={() => false}
|
611
|
+
>
|
572
612
|
<Option>Select show</Option>
|
573
613
|
<Option>Marker</Option>
|
574
614
|
<Option>Tabu</Option>
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
615
|
+
</Select>
|
616
|
+
</Container>
|
617
|
+
</Layout.PanelHeader>
|
618
|
+
<Layout.PanelContent>
|
619
|
+
<EmptyState
|
620
|
+
title={'No show is selected'}
|
621
|
+
description={'Please select a Show from the dropdown at the top.'}
|
622
|
+
size="small"
|
623
|
+
illustration="1"
|
624
|
+
/>
|
584
625
|
{/* <Container className='sd-margin-b--1'>
|
585
626
|
<ButtonGroup align='end'>
|
586
627
|
<Tooltip text='Manage templates'>
|
@@ -630,371 +671,389 @@ export class Rundowns extends React.Component<IProps, IState> {
|
|
630
671
|
</Container>
|
631
672
|
</BoxedListItem>
|
632
673
|
</BoxedList> */}
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
674
|
+
</Layout.PanelContent>
|
675
|
+
</Layout.Panel>
|
676
|
+
</Layout.LeftPanel>
|
677
|
+
{/* FILTER PANEL*/}
|
678
|
+
<Layout.MainPanel >
|
679
|
+
<EmptyState
|
680
|
+
title={'No Template selected'}
|
681
|
+
description={'Please select a Show and Template frome the side panel.'}
|
682
|
+
size="large"
|
683
|
+
illustration="1"
|
684
|
+
/>
|
685
|
+
</Layout.MainPanel>
|
686
|
+
{/* MAIN CONTENT */}
|
687
|
+
</Layout.LayoutContainer>
|
688
|
+
</Modal>
|
647
689
|
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
<Input
|
658
|
-
label='Show name'
|
659
|
-
type='text'
|
660
|
-
value=''
|
661
|
-
error='This is error message'
|
662
|
-
required={true}
|
663
|
-
onChange={() => {}}
|
664
|
-
/>
|
665
|
-
</Form.FormItem>
|
666
|
-
</Form.FormGroup>
|
690
|
+
{/* New Show Modal */}
|
691
|
+
<Modal
|
692
|
+
headerTemplate="Create new Show"
|
693
|
+
visible={this.state.modalNewShow}
|
694
|
+
zIndex={1000}
|
695
|
+
footerTemplate={newShowFooter}
|
696
|
+
contentBg='medium'
|
697
|
+
size='medium' onHide={() => {this.setState({modalNewShow: false})}}
|
698
|
+
>
|
667
699
|
<Form.FormGroup>
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
700
|
+
<Form.FormItem>
|
701
|
+
<Input
|
702
|
+
label='Show name'
|
703
|
+
type='text'
|
704
|
+
value=''
|
705
|
+
required={true}
|
706
|
+
onChange={() => false}
|
707
|
+
/>
|
708
|
+
</Form.FormItem>
|
709
|
+
</Form.FormGroup>
|
710
|
+
<Form.FormGroup>
|
711
|
+
<Form.FormItem>
|
712
|
+
<Input
|
713
|
+
label='Description'
|
714
|
+
type='text'
|
715
|
+
value=''
|
716
|
+
required={false}
|
717
|
+
onChange={() => false}
|
718
|
+
/>
|
719
|
+
</Form.FormItem>
|
720
|
+
</Form.FormGroup>
|
721
|
+
</Modal>
|
722
|
+
{/* New Show Modal Success */}
|
723
|
+
<Modal
|
724
|
+
headerTemplate="Create new Show"
|
725
|
+
visible={this.state.modalNewShowSuccess}
|
726
|
+
zIndex={1000}
|
727
|
+
footerTemplate={newShowFooter2}
|
728
|
+
contentBg='medium'
|
729
|
+
size='medium' onHide={() => {this.setState({modalNewShowSuccess: false})}}
|
730
|
+
>
|
731
|
+
<Container direction='column' className='sd-flex--justify-center sd-flex--items-center sd-padding-y--2' gap='medium'>
|
732
|
+
<Icon name='checkmark-circle' type='success' size='big' scale='3x' />
|
733
|
+
<Text align='center' size='medium'>
|
734
|
+
The show <strong>Marker</strong> has been successfully created.<br />
|
735
|
+
Do you want to cretate a template for this show right away?
|
736
|
+
</Text>
|
737
|
+
</Container>
|
738
|
+
</Modal>
|
695
739
|
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
<Layout.
|
705
|
-
<Layout.
|
706
|
-
<Layout.
|
707
|
-
<
|
708
|
-
<
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
740
|
+
{/* New Template Modal */}
|
741
|
+
<Modal headerTemplate="Create new Template"
|
742
|
+
visible={this.state.modalNewTemplate}
|
743
|
+
zIndex={1000}
|
744
|
+
contentBg='medium'
|
745
|
+
contentPadding='none'
|
746
|
+
size='x-large' onHide={() => {this.setState({modalNewTemplate: false})}}
|
747
|
+
>
|
748
|
+
<Layout.LayoutContainer>
|
749
|
+
<Layout.LeftPanel open={true}>
|
750
|
+
<Layout.Panel side='left' background='grey'>
|
751
|
+
<Layout.PanelHeader>
|
752
|
+
<Container className='sd-padding-x--2'>
|
753
|
+
<Select
|
754
|
+
label='Shows'
|
755
|
+
fullWidth={true}
|
756
|
+
labelHidden={true}
|
757
|
+
inlineLabel={true}
|
758
|
+
value='This is some value'
|
759
|
+
required={true}
|
760
|
+
disabled={false}
|
761
|
+
invalid={false}
|
762
|
+
onChange={() => false}
|
763
|
+
>
|
718
764
|
<Option>Marker</Option>
|
719
765
|
<Option>Tabu</Option>
|
720
|
-
|
721
|
-
</Container>
|
722
|
-
</Layout.PanelHeader>
|
723
|
-
<Layout.PanelContent>
|
724
|
-
<Layout.PanelContentBlock>
|
725
|
-
<Container className='sd-margin-b--1-5'>
|
726
|
-
<ButtonGroup align='end'>
|
727
|
-
<Tooltip text='New template' flow='left'>
|
728
|
-
<Button type="primary" size='small' icon="plus-large" text="Cretae new Template" shape="round" iconOnly={true} onClick={()=> false} />
|
729
|
-
</Tooltip>
|
730
|
-
</ButtonGroup>
|
766
|
+
</Select>
|
731
767
|
</Container>
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
768
|
+
</Layout.PanelHeader>
|
769
|
+
<Layout.PanelContent>
|
770
|
+
<Layout.PanelContentBlock>
|
771
|
+
<Container className='sd-margin-b--1-5'>
|
772
|
+
<ButtonGroup align='end'>
|
773
|
+
<Tooltip text='New template' flow='left'>
|
774
|
+
<Button type="primary" size='small' icon="plus-large" text="Cretae new Template" shape="round" iconOnly={true} onClick={()=> false} />
|
775
|
+
</Tooltip>
|
776
|
+
</ButtonGroup>
|
777
|
+
</Container>
|
778
|
+
<BoxedList>
|
779
|
+
<BoxedListItem
|
780
|
+
alignVertical='center'
|
781
|
+
clickable={true}
|
782
|
+
density='compact'
|
783
|
+
selected={true}
|
784
|
+
actions={(
|
785
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
786
|
+
)}
|
741
787
|
>
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
788
|
+
<Container gap='small' >
|
789
|
+
<Label text='Marker' color='blue--800'/>
|
790
|
+
<span>Untitled</span>
|
791
|
+
</Container>
|
792
|
+
</BoxedListItem>
|
793
|
+
<BoxedListItem
|
794
|
+
alignVertical='center'
|
795
|
+
clickable={true}
|
796
|
+
density='compact'
|
797
|
+
actions={(
|
798
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
799
|
+
)}
|
754
800
|
>
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
801
|
+
<Container gap='small' >
|
802
|
+
<Label text='Marker' color='blue--800'/>
|
803
|
+
<span>Marker Daily</span>
|
804
|
+
</Container>
|
805
|
+
</BoxedListItem>
|
806
|
+
<BoxedListItem
|
807
|
+
alignVertical='center'
|
808
|
+
clickable={true}
|
809
|
+
density='compact'
|
810
|
+
actions={(
|
811
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
812
|
+
)}
|
767
813
|
>
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
814
|
+
<Container gap='small' >
|
815
|
+
<Label text='Marker' color='blue--800'/>
|
816
|
+
<span>Marker Weekend</span>
|
817
|
+
</Container>
|
818
|
+
</BoxedListItem>
|
819
|
+
<BoxedListItem
|
820
|
+
alignVertical='center'
|
821
|
+
density='compact'
|
822
|
+
clickable={true}
|
823
|
+
actions={(
|
824
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
825
|
+
)}
|
780
826
|
>
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
827
|
+
<Container gap='small' >
|
828
|
+
<Label text='Marker' color='blue--800'/>
|
829
|
+
<span>Marker Special</span>
|
830
|
+
</Container>
|
831
|
+
</BoxedListItem>
|
832
|
+
</BoxedList>
|
787
833
|
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
834
|
+
</Layout.PanelContentBlock>
|
835
|
+
</Layout.PanelContent>
|
836
|
+
</Layout.Panel>
|
837
|
+
</Layout.LeftPanel>
|
838
|
+
{/* FILTER PANEL*/}
|
839
|
+
<Layout.MainPanel padding='none'>
|
840
|
+
<RundownEditor
|
841
|
+
rightPanel={this.state.rightPanel}
|
842
|
+
openPanel={() => {
|
843
|
+
if (this.state.fullEditor) {
|
844
|
+
this.setState({previousState: true})
|
845
|
+
} else {
|
846
|
+
this.setState({previousState: false})
|
847
|
+
}
|
848
|
+
|
849
|
+
this.setState({rightPanel: true})
|
850
|
+
}}
|
851
|
+
closePanel={() => {
|
852
|
+
if (!this.state.previousState) {
|
853
|
+
this.setState({rightPanel: false, fullEditor: false})
|
854
|
+
} else {
|
855
|
+
this.setState({rightPanel: false})
|
856
|
+
}
|
857
|
+
}}
|
858
|
+
/>
|
859
|
+
</Layout.MainPanel>
|
860
|
+
{/* MAIN CONTENT */}
|
861
|
+
</Layout.LayoutContainer>
|
862
|
+
</Modal>
|
801
863
|
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
<
|
815
|
-
<
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
<Heading type='h4'>Marker</Heading>
|
834
|
-
<Text color='lighter'>3 template</Text>
|
835
|
-
</Container>
|
836
|
-
</BoxedListItem>
|
837
|
-
<BoxedListItem
|
838
|
-
alignVertical='center'
|
839
|
-
clickable={true}
|
840
|
-
density='compact'
|
841
|
-
actions={(
|
842
|
-
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
843
|
-
)}
|
864
|
+
{/* Manage Shows Modal */}
|
865
|
+
<Modal
|
866
|
+
headerTemplate="Manage Shows"
|
867
|
+
maximizable
|
868
|
+
visible={this.state.modalManageShow}
|
869
|
+
zIndex={1000}
|
870
|
+
contentBg='medium'
|
871
|
+
contentPadding='none'
|
872
|
+
size='x-large' onHide={() => {this.setState({modalManageShow: false})}}
|
873
|
+
>
|
874
|
+
<Layout.LayoutContainer>
|
875
|
+
<Layout.HeaderPanel>
|
876
|
+
<SubNav zIndex={2}>
|
877
|
+
<SearchBar placeholder='Search shows'></SearchBar>
|
878
|
+
<ButtonGroup align='end' spaces='no-space'>
|
879
|
+
<CreateButton ariaValue='New show' onClick={() => false} />
|
880
|
+
</ButtonGroup>
|
881
|
+
</SubNav>
|
882
|
+
</Layout.HeaderPanel>
|
883
|
+
{/* MAIN CONTENT */}
|
884
|
+
<Layout.MainPanel>
|
885
|
+
<BoxedList>
|
886
|
+
<BoxedListItem
|
887
|
+
alignVertical='center'
|
888
|
+
clickable={true}
|
889
|
+
density='compact'
|
890
|
+
selected={this.state.openShowEditor}
|
891
|
+
onClick={() => this.setState({openShowEditor: !this.state.openShowEditor})}
|
892
|
+
actions={(
|
893
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
894
|
+
)}
|
844
895
|
>
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
896
|
+
<Container className='sd-flex-justify-space-between'>
|
897
|
+
<Heading type='h4'>Marker</Heading>
|
898
|
+
<Text color='lighter'>3 template</Text>
|
899
|
+
</Container>
|
900
|
+
</BoxedListItem>
|
901
|
+
<BoxedListItem
|
902
|
+
alignVertical='center'
|
903
|
+
clickable={true}
|
904
|
+
density='compact'
|
905
|
+
actions={(
|
906
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
907
|
+
)}
|
857
908
|
>
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
909
|
+
<Container className='sd-flex-justify-space-between'>
|
910
|
+
<Heading type='h4'>Tabu</Heading>
|
911
|
+
<Text color='lighter'>3 template</Text>
|
912
|
+
</Container>
|
913
|
+
</BoxedListItem>
|
914
|
+
<BoxedListItem
|
915
|
+
alignVertical='center'
|
916
|
+
clickable={true}
|
917
|
+
density='compact'
|
918
|
+
actions={(
|
919
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
920
|
+
)}
|
870
921
|
>
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
</Container>
|
875
|
-
</BoxedListItem>
|
876
|
-
</BoxedList>
|
877
|
-
|
878
|
-
</Layout.MainPanel>
|
879
|
-
<Layout.RightPanel open={this.state.openShowEditor}>
|
880
|
-
<Layout.Panel side='right' background='grey'>
|
881
|
-
<Layout.PanelHeader title='Show details' onClose={() => this.setState({'openShowEditor': false})} >
|
882
|
-
|
883
|
-
{this.state.value1 ||
|
884
|
-
<Layout.PanelHeaderSlidingToolbar>
|
885
|
-
<ButtonGroup align='start'>
|
886
|
-
<IconButton ariaValue="Close" icon="close-small" onClick={() => this.setState({openShowEditor: !this.state.openShowEditor})} />
|
887
|
-
</ButtonGroup>
|
888
|
-
<ButtonGroup align='end'>
|
889
|
-
<Button text="Save Changes" style='hollow' onClick={() => this.setState({openShowEditor: !this.state.openShowEditor})} type="primary" />
|
890
|
-
</ButtonGroup>
|
891
|
-
</Layout.PanelHeaderSlidingToolbar>}
|
892
|
-
</Layout.PanelHeader>
|
893
|
-
<Layout.PanelContent>
|
894
|
-
<Layout.PanelContentBlock flex={true}>
|
895
|
-
<Container direction='column' gap='x-small'>
|
896
|
-
<Container direction='row' gap='small'><Text color='light'>Created 09.06.2022 by </Text><Text weight='medium'>Mika Karapet</Text></Container>
|
897
|
-
<Container direction='row' gap='small'><Text color='light'>Updated 3 hours ago by </Text><Text weight='medium'>John Doe</Text></Container>
|
922
|
+
<Container className='sd-flex-justify-space-between'>
|
923
|
+
<Heading type='h4'>Život u ringu</Heading>
|
924
|
+
<Text color='lighter'>1 template</Text>
|
898
925
|
</Container>
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
}]}>
|
912
|
-
<IconButton ariaValue='dropdown-more-options' icon='dots-vertical' onClick={() => false} />
|
913
|
-
</Dropdown>
|
926
|
+
</BoxedListItem>
|
927
|
+
<BoxedListItem
|
928
|
+
alignVertical='center'
|
929
|
+
density='compact'
|
930
|
+
clickable={true}
|
931
|
+
actions={(
|
932
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
933
|
+
)}
|
934
|
+
>
|
935
|
+
<Container className='sd-flex-justify-space-between'>
|
936
|
+
<Heading type='h4'>Intervju</Heading>
|
937
|
+
<Text color='lighter'>3 templates</Text>
|
914
938
|
</Container>
|
915
|
-
</
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
<
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
939
|
+
</BoxedListItem>
|
940
|
+
</BoxedList>
|
941
|
+
|
942
|
+
</Layout.MainPanel>
|
943
|
+
<Layout.RightPanel open={this.state.openShowEditor}>
|
944
|
+
<Layout.Panel side='right' background='grey'>
|
945
|
+
<Layout.PanelHeader title='Show details' onClose={() => this.setState({'openShowEditor': false})}>
|
946
|
+
{this.state.value1 ||
|
947
|
+
<Layout.PanelHeaderSlidingToolbar>
|
948
|
+
<ButtonGroup align='start'>
|
949
|
+
<IconButton ariaValue="Close" icon="close-small" onClick={() => this.setState({openShowEditor: !this.state.openShowEditor})} />
|
950
|
+
</ButtonGroup>
|
951
|
+
<ButtonGroup align='end'>
|
952
|
+
<Button text="Save Changes" style='hollow' onClick={() => this.setState({openShowEditor: !this.state.openShowEditor})} type="primary" />
|
953
|
+
</ButtonGroup>
|
954
|
+
</Layout.PanelHeaderSlidingToolbar>}
|
955
|
+
</Layout.PanelHeader>
|
956
|
+
<Layout.PanelContent>
|
957
|
+
<Layout.PanelContentBlock flex={true}>
|
958
|
+
<Container direction='column' gap='x-small'>
|
959
|
+
<Container direction='row' gap='small'><Text color='light'>Created 09.06.2022 by </Text><Text weight='medium'>Mika Karapet</Text></Container>
|
960
|
+
<Container direction='row' gap='small'><Text color='light'>Updated 3 hours ago by </Text><Text weight='medium'>John Doe</Text></Container>
|
961
|
+
</Container>
|
962
|
+
<Container className='sd-margin-s--auto sd-flex--items-center'>
|
963
|
+
<Dropdown
|
964
|
+
align = 'right'
|
965
|
+
append = {true}
|
966
|
+
items={[
|
967
|
+
{
|
968
|
+
type: 'group', label: 'Actions', items: [
|
969
|
+
'divider',
|
970
|
+
{ label: 'Edit', icon: 'pencil', onSelect: () => this.setState({ dropDownState: 'Edit ' }) },
|
971
|
+
{ label: 'Download', icon: 'download', onSelect: () => this.setState({ dropDownState: 'Download' }) },
|
972
|
+
{ label: 'Delete', icon: 'trash', onSelect: () => this.setState({ dropDownState: 'Delete' }) },
|
973
|
+
]
|
974
|
+
}
|
975
|
+
]}
|
976
|
+
>
|
977
|
+
<IconButton ariaValue='dropdown-more-options' icon='dots-vertical' onClick={() => false} />
|
978
|
+
</Dropdown>
|
979
|
+
</Container>
|
980
|
+
</Layout.PanelContentBlock>
|
981
|
+
<Layout.PanelContentBlock>
|
982
|
+
<SwitchGroup className='sd-margin-b--3'>
|
983
|
+
<Switch label={{content:'Active'}} value={this.state.value1} onChange={(value) => this.setState(() => ({ value1: value }))} />
|
984
|
+
</SwitchGroup>
|
985
|
+
<Form.FormGroup>
|
986
|
+
<Form.FormItem>
|
987
|
+
<Input
|
988
|
+
type='text'
|
989
|
+
label='Show name'
|
990
|
+
value='Marker'
|
991
|
+
required={true}
|
992
|
+
disabled={false}
|
993
|
+
onChange={() => false}
|
994
|
+
/>
|
995
|
+
</Form.FormItem>
|
996
|
+
</Form.FormGroup>
|
997
|
+
<Form.FormGroup>
|
998
|
+
<Form.FormItem>
|
999
|
+
<Input
|
1000
|
+
type='text'
|
1001
|
+
label='Description'
|
1002
|
+
required={false}
|
1003
|
+
disabled={false}
|
1004
|
+
onChange={() => false}
|
1005
|
+
/>
|
1006
|
+
</Form.FormItem>
|
1007
|
+
</Form.FormGroup>
|
1008
|
+
</Layout.PanelContentBlock>
|
949
1009
|
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
1010
|
+
<Layout.PanelContentBlock>
|
1011
|
+
<Heading type='h3' className='sd-margin-b--2'>Show templates</Heading>
|
1012
|
+
<BoxedList>
|
1013
|
+
<BoxedListItem
|
1014
|
+
alignVertical='center'
|
1015
|
+
density='compact'
|
1016
|
+
actions={(
|
1017
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
1018
|
+
)}
|
959
1019
|
>
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
1020
|
+
<Container gap='small' >
|
1021
|
+
<Label text='Marker' color='blue--800'/>
|
1022
|
+
<span>Marker Daily</span>
|
1023
|
+
</Container>
|
1024
|
+
</BoxedListItem>
|
1025
|
+
<BoxedListItem
|
1026
|
+
alignVertical='center'
|
1027
|
+
density='compact'
|
1028
|
+
actions={(
|
1029
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
1030
|
+
)}
|
971
1031
|
>
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
1032
|
+
<Container gap='small' >
|
1033
|
+
<Label text='Marker' color='blue--800'/>
|
1034
|
+
<span>Marker Weekend</span>
|
1035
|
+
</Container>
|
1036
|
+
</BoxedListItem>
|
1037
|
+
<BoxedListItem
|
1038
|
+
alignVertical='center'
|
1039
|
+
density='compact'
|
1040
|
+
actions={(
|
1041
|
+
<IconButton icon="dots-vertical" size='small' ariaValue="More actions" onClick={()=> false} />
|
1042
|
+
)}
|
983
1043
|
>
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
</Layout.
|
992
|
-
</Layout.
|
993
|
-
</Layout.
|
994
|
-
</Layout.
|
995
|
-
</
|
996
|
-
|
997
|
-
{/* End All Modals */}
|
1044
|
+
<Container gap='small' >
|
1045
|
+
<Label text='Marker' color='blue--800'/>
|
1046
|
+
<span>Marker Special</span>
|
1047
|
+
</Container>
|
1048
|
+
</BoxedListItem>
|
1049
|
+
</BoxedList>
|
1050
|
+
</Layout.PanelContentBlock>
|
1051
|
+
</Layout.PanelContent>
|
1052
|
+
</Layout.Panel>
|
1053
|
+
</Layout.RightPanel>
|
1054
|
+
</Layout.LayoutContainer>
|
1055
|
+
</Modal>
|
1056
|
+
{/* End All Modals */}
|
998
1057
|
</>
|
999
1058
|
);
|
1000
1059
|
}
|