├── .gitignore ├── Resources ├── Private │ ├── FlatNav │ │ ├── .gitignore │ │ ├── src │ │ │ ├── index.js │ │ │ ├── SearchInput.js │ │ │ ├── manifest.js │ │ │ ├── RefreshNodes.js │ │ │ ├── DeleteSelectedNode.js │ │ │ ├── HideSelectedNode.js │ │ │ ├── style.css │ │ │ ├── FlatNav.js │ │ │ └── makeFlatNavContainer.js │ │ ├── .eslintrc │ │ └── package.json │ └── Translations │ │ ├── en │ │ └── Main.xlf │ │ └── de │ │ └── Main.xlf └── Public │ └── JavaScript │ └── FlatNav │ └── Plugin.js.map ├── flatnav.gif ├── Configuration ├── Routes.yaml ├── Policy.yaml └── Settings.yaml ├── composer.json ├── README.md ├── Classes └── Controller │ └── StandardController.php └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock -------------------------------------------------------------------------------- /Resources/Private/FlatNav/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/index.js: -------------------------------------------------------------------------------- 1 | require('./manifest'); 2 | -------------------------------------------------------------------------------- /flatnav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psmb/Psmb.FlatNav/HEAD/flatnav.gif -------------------------------------------------------------------------------- /Resources/Private/FlatNav/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@neos-project/eslint-config-neos", 3 | "globals": { 4 | "expect": true, 5 | "sinon": false 6 | }, 7 | "env": { 8 | "node": true, 9 | "mocha": true 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Configuration/Routes.yaml: -------------------------------------------------------------------------------- 1 | - 2 | name: 'Psmb.FlatNav' 3 | uriPattern: 'neos/flatnav/{@action}' 4 | defaults: 5 | '@package': 'Psmb.FlatNav' 6 | '@controller': 'Standard' 7 | '@format': 'html' 8 | '@action': 'query' 9 | appendExceedingArguments: TRUE 10 | -------------------------------------------------------------------------------- /Configuration/Policy.yaml: -------------------------------------------------------------------------------- 1 | privilegeTargets: 2 | Neos\Flow\Security\Authorization\Privilege\Method\MethodPrivilege: 3 | 'Psmb.FlatNav:Backend': 4 | matcher: 'method(Psmb\FlatNav\Controller\StandardController->(.*)Action())' 5 | 6 | roles: 7 | 'Neos.Neos:AbstractEditor': 8 | privileges: 9 | - 10 | privilegeTarget: 'Psmb.FlatNav:Backend' 11 | permission: GRANT 12 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Custom navigation module for Neos CMS", 3 | "type": "neos-package", 4 | "name": "psmb/flatnav", 5 | "require": { 6 | "neos/neos": ">=3.3", 7 | "neos/neos-ui": "~2.3 || >=3.3" 8 | }, 9 | "autoload": { 10 | "psr-4": { 11 | "Psmb\\FlatNav\\": "Classes/" 12 | } 13 | }, 14 | "license": "GPL-3.0-or-later", 15 | "extra": { 16 | "neos": { 17 | "package-key": "Psmb.FlatNav" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "FlatNav", 3 | "private": true, 4 | "scripts": { 5 | "build": "neos-react-scripts build", 6 | "watch": "neos-react-scripts watch" 7 | }, 8 | "devDependencies": { 9 | "@neos-project/neos-ui-extensibility": "*" 10 | }, 11 | "neos": { 12 | "buildTargetDirectory": "../../Public/JavaScript/FlatNav" 13 | }, 14 | "dependencies": { 15 | "@neos-project/eslint-config-neos": "^2.1.2", 16 | "lodash.debounce": "^4.0.8", 17 | "lodash.upperfirst": "^4.3.1" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Custom flat navigation component for Neos CMS 2 | 3 | Sometimes your content is better represented as just a flat lists of entities (e.g. News or Tags), and not as a tree. This package helps you to do just that: 4 | 5 | ![Demo](https://raw.githubusercontent.com/psmb/Psmb.FlatNav/master/flatnav.gif) 6 | 7 | Getting started: 8 | 9 | 1. `composer require 'psmb/flatnav@dev'` 10 | 2. Use these Settings to configure the views of entities to show: https://github.com/psmb/Psmb.FlatNav/blob/master/Configuration/Settings.yaml#L15 11 | 12 | **Contributions are welcome!** 13 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/SearchInput.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import style from './style.css'; 3 | import {IconButton, TextInput} from '@neos-project/react-ui-components'; 4 | 5 | const SearchInput = ({onChange, searchTerm, placeholder}) => { 6 | const onEnterKey = () => onChange(searchTerm) 7 | return ( 8 |
9 | 10 | {searchTerm ? onChange('')} className={style.toolbarSearchClearButton} /> : null} 11 |
12 | ); 13 | } 14 | export default SearchInput; 15 | -------------------------------------------------------------------------------- /Resources/Private/Translations/en/Main.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Loading… 7 | 8 | 9 | Load more 10 | 11 | 12 | Search… 13 | 14 | 15 | No results found 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Resources/Private/Translations/de/Main.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Loading… 7 | Wird geladen… 8 | 9 | 10 | Load more 11 | Mehr laden 12 | 13 | 14 | Search… 15 | Suchen… 16 | 17 | 18 | No results found 19 | Keine Ergebnisse 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/manifest.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import manifest from '@neos-project/neos-ui-extensibility'; 3 | import makeFlatNavContainer from './makeFlatNavContainer'; 4 | import style from './style.css'; 5 | 6 | manifest('Psmb.FlatNav:FlatNav', {}, globalRegistry => { 7 | const containerRegistry = globalRegistry.get('containers'); 8 | const PageTreeToolbar = containerRegistry.get('LeftSideBar/Top/PageTreeToolbar'); 9 | const PageTreeSearchbar = containerRegistry.get('LeftSideBar/Top/PageTreeSearchbar'); 10 | const PageTree = containerRegistry.get('LeftSideBar/Top/PageTree'); 11 | 12 | const OriginalTree = () => ( 13 |
14 |
15 | 16 |
17 | 18 | 19 |
20 | ); 21 | containerRegistry.set('LeftSideBar/Top/PageTreeToolbar', () => null); 22 | containerRegistry.set('LeftSideBar/Top/PageTreeSearchbar', () => null); 23 | 24 | containerRegistry.set('LeftSideBar/Top/PageTree', makeFlatNavContainer(OriginalTree)); 25 | }); 26 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/RefreshNodes.js: -------------------------------------------------------------------------------- 1 | import React, {PureComponent} from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import mergeClassNames from 'classnames'; 4 | import {neos} from '@neos-project/neos-ui-decorators'; 5 | import {IconButton} from '@neos-project/react-ui-components'; 6 | import style from './style.css'; 7 | 8 | @neos(globalRegistry => ({ 9 | i18nRegistry: globalRegistry.get('i18n') 10 | })) 11 | 12 | export default class RefreshNodes extends PureComponent { 13 | static propTypes = { 14 | node: PropTypes.object, 15 | className: PropTypes.string, 16 | onClick: PropTypes.func.isRequired, 17 | disabled: PropTypes.bool.isRequired, 18 | i18nRegistry: PropTypes.object.isRequired 19 | }; 20 | 21 | handleClick = () => { 22 | const {onClick} = this.props; 23 | 24 | onClick(); 25 | } 26 | 27 | render() { 28 | const {disabled, className, i18nRegistry} = this.props; 29 | const finalClassName = mergeClassNames({ 30 | [className]: className && className.length 31 | }); 32 | 33 | return ( 34 | 42 | ); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/DeleteSelectedNode.js: -------------------------------------------------------------------------------- 1 | import React, {PureComponent} from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import {connect} from 'react-redux'; 4 | import {$transform, $get} from 'plow-js'; 5 | import {neos} from '@neos-project/neos-ui-decorators'; 6 | import {IconButton} from '@neos-project/react-ui-components'; 7 | import {selectors, actions} from '@neos-project/neos-ui-redux-store'; 8 | 9 | @neos(globalRegistry => ({ 10 | i18nRegistry: globalRegistry.get('i18n') 11 | })) 12 | @connect($transform({ 13 | node: selectors.CR.Nodes.focusedSelector 14 | }), { 15 | commenceNodeRemoval: actions.CR.Nodes.commenceRemoval 16 | }) 17 | export default class DeleteSelectedNode extends PureComponent { 18 | static propTypes = { 19 | node: PropTypes.object, 20 | className: PropTypes.string, 21 | commenceNodeRemoval: PropTypes.func.isRequired, 22 | disabled: PropTypes.bool.isRequired, 23 | i18nRegistry: PropTypes.object.isRequired 24 | }; 25 | 26 | handleDeleteSelectedNodeClick = () => { 27 | const {node, commenceNodeRemoval} = this.props; 28 | commenceNodeRemoval($get('contextPath', node)); 29 | } 30 | 31 | render() { 32 | const {className, disabled, i18nRegistry} = this.props; 33 | 34 | return ( 35 | 43 | ); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/HideSelectedNode.js: -------------------------------------------------------------------------------- 1 | import React, {PureComponent} from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import {connect} from 'react-redux'; 4 | import {neos} from '@neos-project/neos-ui-decorators'; 5 | import {$transform, $get} from 'plow-js'; 6 | import {IconButton} from '@neos-project/react-ui-components'; 7 | 8 | import {selectors, actions} from '@neos-project/neos-ui-redux-store'; 9 | 10 | @neos(globalRegistry => ({ 11 | i18nRegistry: globalRegistry.get('i18n') 12 | })) 13 | @connect($transform({ 14 | node: selectors.CR.Nodes.focusedSelector 15 | }), { 16 | hideNode: actions.CR.Nodes.hide, 17 | showNode: actions.CR.Nodes.show 18 | }) 19 | export default class HideSelectedNode extends PureComponent { 20 | static propTypes = { 21 | node: PropTypes.object, 22 | className: PropTypes.string, 23 | hideNode: PropTypes.func.isRequired, 24 | showNode: PropTypes.func.isRequired, 25 | disabled: PropTypes.bool.isRequired, 26 | i18nRegistry: PropTypes.object.isRequired 27 | }; 28 | 29 | handleHideNode = () => { 30 | const {node, hideNode} = this.props; 31 | 32 | hideNode($get('contextPath', node)); 33 | } 34 | 35 | handleShowNode = () => { 36 | const {node, showNode} = this.props; 37 | 38 | showNode($get('contextPath', node)); 39 | } 40 | 41 | render() { 42 | const {className, disabled, node, i18nRegistry} = this.props; 43 | const isHidden = $get('properties._hidden', node); 44 | 45 | return ( 46 | 55 | ); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/style.css: -------------------------------------------------------------------------------- 1 | .loadMoreButton { 2 | width: 100% !important; 3 | opacity: 1 !important; 4 | } 5 | 6 | .tabs__content { 7 | height: calc(100% - 41px); 8 | } 9 | 10 | .tabs__panel { 11 | height: 100%; 12 | } 13 | 14 | .panel { 15 | height: 100%; 16 | } 17 | 18 | .toolbar { 19 | background-color: var(--colors-ContrastDarker); 20 | border-bottom: 1px solid var(--colors-ContrastDark); 21 | display: flex; 22 | } 23 | .toolbarButtons { 24 | flex-shrink: 0; 25 | } 26 | 27 | .toolbarSearch { 28 | margin-left: 5px; 29 | display: flex; 30 | align-items: center; 31 | } 32 | .toolbarSearchInput { 33 | border-radius: 0; 34 | 35 | &:focus { 36 | background-color: var(--colors-ContrastDark); 37 | color: var(--colors-ContrastBrightest); 38 | } 39 | } 40 | .toolbarSearchClearButton { 41 | background-color: var(--colors-ContrastDark); 42 | } 43 | .toolbarSearchNoResults { 44 | padding: 5px 10px; 45 | } 46 | 47 | .pageTreeContainer { 48 | display: flex; 49 | flex-direction: column; 50 | height: 100%; 51 | background-color: var(--colors-ContrastDarker); 52 | border-right: 1px solid var(--colors-ContrastDark); 53 | border-bottom: 1px solid var(--colors-ContrastDark); 54 | } 55 | 56 | .pageTreeContainerOriginal { 57 | display: flex; 58 | flex-direction: column; 59 | height: 100%; 60 | } 61 | 62 | .pageTreeToolbarOriginal { 63 | div { 64 | border-top: 0; 65 | } 66 | } 67 | 68 | .treeWrapper { 69 | overflow-y: auto; 70 | padding: 5px 0; 71 | } 72 | 73 | .node { 74 | position: relative; 75 | overflow: hidden; 76 | white-space: nowrap; 77 | text-overflow: ellipsis; 78 | width: 100%; 79 | padding: 3px 6px; 80 | cursor: pointer; 81 | } 82 | .node--focused { 83 | background-color: var(--colors-ContrastNeutral); 84 | } 85 | .node--focused .node__label { 86 | color: var(--colors-PrimaryBlue); 87 | } 88 | .node--dirty { 89 | border-left: 2px solid var(--colors-Warn); 90 | padding-left: 4px; 91 | } 92 | .node--removed { 93 | cursor: not-allowed; 94 | border-color: var(--colors-Error); 95 | } 96 | .node--removed .node__label, 97 | .node--removed .node__iconWrapper { 98 | opacity: 0.5; 99 | } 100 | 101 | .node__iconWrapper { 102 | width: 2em; 103 | display: inline-block; 104 | position: absolute; 105 | text-align: center; 106 | } 107 | 108 | .node__label { 109 | margin-left: 2em; 110 | } 111 | -------------------------------------------------------------------------------- /Configuration/Settings.yaml: -------------------------------------------------------------------------------- 1 | Neos: 2 | Neos: 3 | userInterface: 4 | translation: 5 | autoInclude: 6 | Psmb.FlatNav: 7 | - Main 8 | Ui: 9 | resources: 10 | javascript: 11 | 'Psmb.FlatNav:FlatNav': 12 | resource: resource://Psmb.FlatNav/Public/JavaScript/FlatNav/Plugin.js 13 | frontendConfiguration: 14 | Psmb_FlatNav: 15 | presets: 16 | tree: 17 | type: tree 18 | label: Tree 19 | icon: tree 20 | ## Example using ElasticSearch 21 | # news: 22 | # label: News 23 | # icon: newspaper 24 | # type: flat 25 | # query: 'Search.query(node).nodeType("Your.Namespace:News").sortDesc("date").from((page - 1) * 20).limit(20).execute().toArray()' 26 | # newReferenceNodePath: '/sites/site' 27 | # # If now `newNodeType` is defined, then the nodetype selection dialog would be shown 28 | # newNodeType: 'Your.Namespace:News' 29 | # disablePagination: false 30 | # # Disable this preset for non-admins 31 | # disabled: '${!Security.hasRole("Neos.Neos:Administrator")}' 32 | ## Example without pagination 33 | # newsWithoutPagination: 34 | # label: News 35 | # icon: newspaper 36 | # type: flat 37 | # query: 'q(node).find("[instanceof Your.Namespace:News]").sort("date", "ASC").get()' 38 | # newReferenceNodePath: '/sites/site' 39 | # newNodeType: 'Your.Namespace:News' 40 | # disablePagination: true 41 | ## Example using FlowQuery 42 | # tags: 43 | # label: Tags 44 | # icon: tag 45 | # type: flat 46 | # query: 'q(node).find("[instanceof Your.Namespace:Tag]").sort("title", "ASC").slice((page - 1) * 20, page * 20).get()' 47 | # newReferenceNodePath: 'q(node).find("[instanceof Your.Namespace:NewsList]").first().get(0).path' 48 | # newNodeType: 'Your.Namespace:Tag' 49 | # disablePagination: false 50 | ## Example using FlowQuery with search 51 | # tags: 52 | # label: Tags 53 | # icon: tag 54 | # type: flat 55 | # query: 'q(node).find("[instanceof Your.Namespace:Tag]").sort("title", "ASC").slice((page - 1) * 20, page * 20).get()' 56 | # # NB! This query would give case sensitive results, it's just an example! 57 | # searchQuery: 'q(node).find("[instanceof Your.Namespace:Tag][title*=\"" + searchTerm + "\"]").sort("title", "ASC").get()' 58 | # newReferenceNodePath: 'q(node).find("[instanceof Your.Namespace:NewsList]").first().get(0).path' 59 | # newNodeType: 'Your.Namespace:Tag' 60 | # disablePagination: false 61 | 62 | Flow: 63 | security: 64 | authentication: 65 | providers: 66 | 'Neos.Neos:Backend': 67 | requestPatterns: 68 | 'Psmb.FlatNav:Backend': 69 | pattern: ControllerObjectName 70 | patternOptions: 71 | controllerObjectNamePattern: 'Psmb\FlatNav\Controller\.*' 72 | mvc: 73 | routes: 74 | 'Psmb.FlatNav': 75 | position: 'before Neos.Neos' 76 | -------------------------------------------------------------------------------- /Classes/Controller/StandardController.php: -------------------------------------------------------------------------------- 1 | JsonView::class 18 | ]; 19 | 20 | /** 21 | * @Flow\Inject 22 | * @var NodeService 23 | */ 24 | protected $nodeService; 25 | 26 | /** 27 | * @Flow\InjectConfiguration(package="Neos.Neos.Ui", path="frontendConfiguration.Psmb_FlatNav.presets") 28 | * @var array 29 | */ 30 | protected $presets; 31 | 32 | /** 33 | * @Flow\InjectConfiguration(package="Neos.Fusion", path="defaultContext") 34 | * @var array 35 | */ 36 | protected $defaultContextConfiguration; 37 | 38 | /** 39 | * @Flow\Inject(lazy=false) 40 | * @var \Neos\Eel\EelEvaluatorInterface 41 | */ 42 | protected $eelEvaluator; 43 | 44 | /** 45 | * @param string $preset The preset, configured in Settings.yaml 46 | * @param string $nodeContextPath The context path of the node that will be available as `node` context var in Eel 47 | * @param integer $page Page parameter used for pagination 48 | * @param string $searchTerm Search term 49 | * @return void 50 | * @throws \Neos\Eel\Exception 51 | * @Flow\SkipCsrfProtection 52 | */ 53 | public function queryAction($preset, $nodeContextPath, $page = 1, $searchTerm = null) 54 | { 55 | if (!isset($this->presets[$preset])) { 56 | throw new \Exception('Invalid preset name'); 57 | } 58 | $isSearch = $searchTerm && $this->presets[$preset]['searchQuery']; 59 | if ($isSearch) { 60 | $expression = '${' . $this->presets[$preset]['searchQuery'] . '}'; 61 | } else { 62 | $expression = '${' . $this->presets[$preset]['query'] . '}'; 63 | } 64 | $baseNode = $this->nodeService->getNodeFromContextPath($nodeContextPath, null, null, true); 65 | if ($isSearch) { 66 | $contextVariables = [ 67 | 'node' => $baseNode, 68 | 'page' => $page, 69 | 'searchTerm' => $searchTerm 70 | ]; 71 | } else { 72 | $contextVariables = [ 73 | 'node' => $baseNode, 74 | 'page' => $page 75 | ]; 76 | } 77 | 78 | $nodes = Utility::evaluateEelExpression($expression, $this->eelEvaluator, $contextVariables, $this->defaultContextConfiguration); 79 | $nodeInfoHelper = new NodeInfoHelper(); 80 | 81 | $result = []; 82 | foreach ($nodes as $node) { 83 | $nodeInfo = $nodeInfoHelper->renderNodeWithMinimalPropertiesAndChildrenInformation($node, $this->getControllerContext()); 84 | $nodeInfo['properties']['_removed'] = $node->isRemoved(); 85 | $nodeInfo['properties']['_hidden'] = $node->isHidden(); 86 | $result[] = $nodeInfo; 87 | } 88 | $this->view->assign('value', $result); 89 | } 90 | 91 | /** 92 | * @param string $preset The preset, configured in Settings.yaml 93 | * @param string $nodeContextPath The context path of the node that will be available as `node` context var in Eel 94 | * @return void 95 | * @throws \Neos\Eel\Exception 96 | * @Flow\SkipCsrfProtection 97 | */ 98 | public function getNewReferenceNodePathAction($preset, $nodeContextPath) 99 | { 100 | if (!isset($this->presets[$preset])) { 101 | throw new \Exception('Invalid preset name', 1660762934); 102 | } 103 | 104 | $baseNode = $this->nodeService->getNodeFromContextPath($nodeContextPath, null, null, true); 105 | 106 | if(isset($this->presets[$preset]['newReferenceNodePath'])) { 107 | $expression = '${' . $this->presets[$preset]['newReferenceNodePath'] . '}'; 108 | $baseNode = $this->nodeService->getNodeFromContextPath($nodeContextPath, null, null, true); 109 | $contextVariables = [ 110 | 'node' => $baseNode, 111 | 'site' => $baseNode 112 | ]; 113 | $newReferenceNodePath = Utility::evaluateEelExpression($expression, $this->eelEvaluator, $contextVariables, $this->defaultContextConfiguration); 114 | } else { 115 | $newReferenceNodePath = $baseNode; 116 | } 117 | 118 | $this->view->assign('value', $newReferenceNodePath); 119 | } 120 | } 121 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/FlatNav.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import {$get, $transform} from 'plow-js'; 4 | import {Button, Icon, IconButton, TextInput} from '@neos-project/react-ui-components'; 5 | import {connect} from 'react-redux'; 6 | import {actions, selectors} from '@neos-project/neos-ui-redux-store'; 7 | import {neos} from '@neos-project/neos-ui-decorators'; 8 | import HideSelectedNode from './HideSelectedNode'; 9 | import DeleteSelectedNode from './DeleteSelectedNode'; 10 | import mergeClassNames from 'classnames'; 11 | import style from './style.css'; 12 | import RefreshNodes from "./RefreshNodes"; 13 | import SearchInput from "./SearchInput"; 14 | @neos(globalRegistry => ({ 15 | nodeTypesRegistry: globalRegistry.get('@neos-project/neos-ui-contentrepository'), 16 | serverFeedbackHandlers: globalRegistry.get('serverFeedbackHandlers'), 17 | i18nRegistry: globalRegistry.get('i18n') 18 | })) 19 | @connect( 20 | (state, {nodeTypesRegistry}) => { 21 | const isAllowedToAddChildOrSiblingNodesSelector = selectors.CR.Nodes.makeIsAllowedToAddChildOrSiblingNodes(nodeTypesRegistry); 22 | return (state, {newReferenceNodePath}) => { 23 | const focusedNodeContextPath = selectors.UI.PageTree.getFocused(state); 24 | const getNodeByContextPathSelector = selectors.CR.Nodes.makeGetNodeByContextPathSelector(focusedNodeContextPath); 25 | const focusedNode = getNodeByContextPathSelector(state); 26 | const canBeDeleted = $get('policy.canRemove', focusedNode) || false; 27 | const canBeEdited = $get('policy.canEdit', focusedNode) || false; 28 | const context = focusedNodeContextPath.split('@')[1]; 29 | const isAllowedToAddChildOrSiblingNodes = isAllowedToAddChildOrSiblingNodesSelector(state, { 30 | reference: newReferenceNodePath + '@' + context 31 | }); 32 | return { 33 | nodeData: $get('cr.nodes.byContextPath', state), 34 | focused: selectors.CR.Nodes.focusedNodePathSelector(state), 35 | siteNodeContextPath: selectors.CR.Nodes.siteNodeContextPathSelector(state), 36 | baseWorkspaceName: $get('cr.workspaces.personalWorkspace.baseWorkspace', state), 37 | publishableNodes: $get('cr.workspaces.personalWorkspace.publishableNodes', state), 38 | isAllowedToAddChildOrSiblingNodes, 39 | canBeDeleted, 40 | canBeEdited 41 | } 42 | } 43 | } 44 | , { 45 | setSrc: actions.UI.ContentCanvas.setSrc, 46 | focus: actions.UI.PageTree.focus, 47 | openNodeCreationDialog: actions.UI.NodeCreationDialog.open, 48 | commenceNodeCreation: actions.CR.Nodes.commenceCreation, 49 | selectNodeType: actions.UI.SelectNodeTypeModal.apply, 50 | merge: actions.CR.Nodes.merge 51 | }) 52 | export default class FlatNav extends Component { 53 | static propTypes = { 54 | nodes: PropTypes.array.isRequired, 55 | preset: PropTypes.object.isRequired, 56 | isLoading: PropTypes.bool.isRequired, 57 | isLoadingReferenceNodePath: PropTypes.bool.isRequired, 58 | page: PropTypes.number.isRequired, 59 | newReferenceNodePath: PropTypes.string.isRequired, 60 | moreNodesAvailable: PropTypes.bool.isRequired 61 | }; 62 | 63 | componentDidMount() { 64 | if ( 65 | // No node paths in state on initial load 66 | this.props.nodes.length === 0 67 | ) { 68 | this.props.fetchNodes(); 69 | this.props.fetchNewReference(); 70 | } 71 | this.props.serverFeedbackHandlers.set('Neos.Neos.Ui:NodeCreated/DocumentAdded', this.handleNodeWasCreated, 'after Neos.Neos.Ui:NodeCreated/Main'); 72 | } 73 | 74 | componentDidUpdate() { 75 | if ( 76 | // Node data not available for some nodes (e.g. after tree reload) 77 | !this.props.nodes.every(contextPath => $get([contextPath], this.props.nodeData)) 78 | ) { 79 | this.props.fetchNodes(); 80 | this.props.fetchNewReference(); 81 | } 82 | } 83 | 84 | handleNodeWasCreated = (feedbackPayload, {store}) => { 85 | const state = store.getState(); 86 | 87 | const getNodeByContextPathSelector = selectors.CR.Nodes.makeGetNodeByContextPathSelector(feedbackPayload.contextPath); 88 | const node = getNodeByContextPathSelector(state); 89 | const nodeTypeName = $get('nodeType', node); 90 | 91 | if (nodeTypeName === this.props.preset.newNodeType) { 92 | this.refreshFlatNav(); 93 | } 94 | } 95 | 96 | buildNewReferenceNodePath = () => { 97 | const context = this.props.siteNodeContextPath.split('@')[1]; 98 | return this.props.newReferenceNodePath + '@' + context; 99 | }; 100 | 101 | createNode = () => { 102 | const contextPath = this.buildNewReferenceNodePath(); 103 | this.props.commenceNodeCreation(contextPath, undefined, 'into', this.props.preset.newNodeType || undefined); 104 | } 105 | 106 | refreshFlatNav = () => { 107 | this.props.resetNodes(); 108 | } 109 | 110 | getNodeIconComponent(node) { 111 | const nodeTypeName = $get('nodeType', node); 112 | const nodeType = this.props.nodeTypesRegistry.getNodeType(nodeTypeName); 113 | const isHidden = $get('properties._hidden', node); 114 | const isHiddenBefore = $get('properties._hiddenBeforeDateTime', node); 115 | const isHiddenAfter = $get('properties._hiddenAfterDateTime', node); 116 | 117 | if (isHidden) { 118 | return ( 119 | 120 | 121 | 122 | 123 | 124 | ); 125 | } 126 | 127 | if (isHiddenBefore || isHiddenAfter) { 128 | return ( 129 | 130 | 131 | 132 | 133 | 134 | ); 135 | } 136 | 137 | return ( 138 | 139 | ); 140 | } 141 | 142 | renderNodes = () => { 143 | if (this.props.searchTerm && !this.props.isLoading && this.props.nodes.length === 0) { 144 | return {this.props.i18nRegistry.translate('Psmb.FlatNav:Main:noResults')} 145 | } 146 | return this.props.nodes 147 | .map(contextPath => { 148 | const item = $get([contextPath], this.props.nodeData); 149 | 150 | if (item) { 151 | const isFocused = this.props.focused === contextPath; 152 | const isDirty = this.props.publishableNodes.filter(i => ( 153 | $get('contextPath', i) === contextPath || 154 | $get('documentContextPath', i) === contextPath 155 | )).length > 0; 156 | const isRemoved = $get('properties._removed', item); 157 | const nodeIconComponent = this.getNodeIconComponent(item); 158 | 159 | return ( 160 |
{ 169 | if ( ! isRemoved) { 170 | this.props.setSrc($get('uri', item)); 171 | this.props.focus(contextPath); 172 | } 173 | }} 174 | role="button" 175 | > 176 |
178 | {nodeIconComponent} 179 |
180 | 182 | {$get('label', item)} 183 | 184 |
185 | ); 186 | } 187 | return null; 188 | }).filter(i => i); 189 | }; 190 | 191 | render() { 192 | const {focused, nodes, isLoadingReferenceNodePath, isLoading, preset, isAllowedToAddChildOrSiblingNodes, canBeDeleted, canBeEdited} = this.props; 193 | 194 | const focusedInNodes = nodes.includes(focused); 195 | 196 | const searchEnabled = Boolean(preset.searchQuery) 197 | 198 | return ( 199 |
200 |
201 |
202 | 203 | 204 | 205 | 206 |
207 | {searchEnabled && } 208 |
209 | 210 |
211 | {this.renderNodes()} 212 | {(isLoading || (!this.props.preset.disablePagination && this.props.moreNodesAvailable && !this.props.searchTerm)) && ()} 226 |
227 |
228 | ); 229 | } 230 | } 231 | -------------------------------------------------------------------------------- /Resources/Private/FlatNav/src/makeFlatNavContainer.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import {$get, $transform} from 'plow-js'; 3 | import {Tabs} from '@neos-project/react-ui-components'; 4 | import {connect} from 'react-redux'; 5 | import {actions} from '@neos-project/neos-ui-redux-store'; 6 | import {neos} from '@neos-project/neos-ui-decorators'; 7 | import {fetchWithErrorHandling} from '@neos-project/neos-ui-backend-connector'; 8 | import backend from '@neos-project/neos-ui-backend-connector'; 9 | import FlatNav from './FlatNav'; 10 | import style from './style.css'; 11 | import debounce from 'lodash.debounce'; 12 | 13 | // Taken from here, as it's not exported in the UI 14 | // https://github.com/neos/neos-ui/blob/b2a52d66a211b192dfc541799779a8be27bf5a31/packages/neos-ui-sagas/src/CR/NodeOperations/helpers.js#L3 15 | const parentNodeContextPath = contextPath => { 16 | if (typeof contextPath !== 'string') { 17 | return null; 18 | } 19 | 20 | const [path, context] = contextPath.split('@'); 21 | 22 | if (path.length === 0) { 23 | // We are at top level; so there is no parent anymore! 24 | return false; 25 | } 26 | 27 | return `${path.substr(0, path.lastIndexOf('/'))}@${context}`; 28 | }; 29 | 30 | const makeFlatNavContainer = OriginalPageTree => { 31 | class FlatNavContainer extends Component { 32 | state = {}; 33 | 34 | constructor(props) { 35 | super(props); 36 | this.state = this.buildDefaultState(props); 37 | 38 | // It's not safe to rely on React's state to do the locking 39 | this.loadingLock = {}; 40 | this.loadingReferenceNodePathLock = {}; 41 | } 42 | 43 | componentDidUpdate(prevProps) { 44 | // If the siteNodeContextPath or baseWorkspaceName have changed, fully reset the state 45 | if ( 46 | this.props.siteNodeContextPath !== prevProps.siteNodeContextPath || 47 | this.props.baseWorkspaceName !== prevProps.baseWorkspaceName 48 | ) { 49 | this.fullReset(); 50 | } 51 | } 52 | 53 | buildDefaultState = props => { 54 | const state = {}; 55 | Object.keys(props.options.presets).forEach(presetName => { 56 | const preset = props.options.presets[presetName]; 57 | if (!presetName) { 58 | return null; 59 | } 60 | let newReferenceNodePath; 61 | // If `newReferenceNodePath` is static, append context to it, otherwise set to empty, as it would be fetched later 62 | const newReferenceNodePathSetting = $get(['options', 'presets', presetName, 'newReferenceNodePath'], props); 63 | if (typeof newReferenceNodePathSetting === 'string' && newReferenceNodePathSetting.indexOf('/') === 0) { 64 | newReferenceNodePath = preset.newReferenceNodePath; 65 | } else { 66 | newReferenceNodePath = ''; 67 | } 68 | state[presetName] = { 69 | page: 1, 70 | isLoading: false, 71 | isLoadingReferenceNodePath: false, 72 | nodes: [], 73 | searchTerm: '', 74 | moreNodesAvailable: true, 75 | newReferenceNodePath 76 | }; 77 | }); 78 | return state; 79 | }; 80 | 81 | fullReset = () => { 82 | const defaultState = this.buildDefaultState(this.props); 83 | this.setState({ 84 | ...defaultState 85 | }); 86 | } 87 | 88 | makeResetNodes = (preset, fetchNodes) => () => { 89 | this.setState({ 90 | [preset]: { 91 | ...this.state[preset], 92 | page: 1, 93 | nodes: [], 94 | moreNodesAvailable: true 95 | } 96 | }, fetchNodes); 97 | } 98 | 99 | makeFetchNodes = preset => (loadMore = false) => { 100 | const searchTerm = this.state[preset].searchTerm; 101 | const page = loadMore ? this.state[preset].page + 1 : 1 102 | const url = `/neos/flatnav/query?nodeContextPath=${encodeURIComponent(this.props.siteNodeContextPath)}&preset=${preset}&page=${page}${searchTerm ? `&searchTerm=${searchTerm}` : ''}` 103 | if (this.loadingLock[url]) { 104 | return; 105 | } 106 | this.loadingLock[url] = true; 107 | this.setState({ 108 | [preset]: { 109 | ...this.state[preset], 110 | isLoading: true, 111 | moreNodesAvailable: true 112 | } 113 | }); 114 | 115 | fetchWithErrorHandling.withCsrfToken(csrfToken => ({ 116 | url, 117 | method: 'GET', 118 | credentials: 'include', 119 | headers: { 120 | 'X-Flow-Csrftoken': csrfToken, 121 | 'Content-Type': 'application/json' 122 | } 123 | })) 124 | .then(response => response && response.json()) 125 | .then(nodes => { 126 | // Ignore the response if the searchTerm has changed while request was running 127 | if (searchTerm === this.state[preset].searchTerm) { 128 | if (nodes.length > 0) { 129 | const nodesMap = nodes.reduce((result, node) => { 130 | result[node.contextPath] = node; 131 | return result; 132 | }, {}); 133 | this.props.merge(nodesMap); 134 | this.setState({ 135 | [preset]: { 136 | ...this.state[preset], 137 | isLoading: false, 138 | nodes: loadMore ? [...this.state[preset].nodes, ...Object.keys(nodesMap)] : Object.keys(nodesMap), 139 | page, 140 | moreNodesAvailable: true 141 | } 142 | }); 143 | } else { 144 | this.setState({ 145 | [preset]: { 146 | ...this.state[preset], 147 | isLoading: false, 148 | moreNodesAvailable: false, 149 | nodes: loadMore ? this.state[preset].nodes : [], 150 | } 151 | }); 152 | } 153 | this.loadingLock[url] = false; 154 | } 155 | }); 156 | }; 157 | 158 | makeSetSearchTerm = (preset, fetchNodes) => searchTerm => { 159 | this.setState({ 160 | [preset]: { 161 | ...this.state[preset], 162 | nodes: [], 163 | page: 1, 164 | isLoading: true, 165 | searchTerm 166 | } 167 | }, fetchNodes); 168 | } 169 | 170 | // Gets the `newReferenceNodePath` setting and loads that node into state 171 | makeGetNewReference = preset => () => { 172 | if (this.loadingReferenceNodePathLock[preset]) { 173 | return; 174 | } 175 | this.loadingReferenceNodePathLock[preset] = true; 176 | const context = this.props.siteNodeContextPath.split('@')[1]; 177 | if (this.state[preset].newReferenceNodePath.indexOf('/') === 0) { 178 | this.fetchNodeWithParents(this.state[preset].newReferenceNodePath + '@' + context); 179 | } else { 180 | this.setState({ 181 | [preset]: { 182 | ...this.state[preset], 183 | isLoadingReferenceNodePath: true 184 | } 185 | }); 186 | fetchWithErrorHandling.withCsrfToken(csrfToken => ({ 187 | url: `/neos/flatnav/getNewReferenceNodePath?nodeContextPath=${encodeURIComponent(this.props.siteNodeContextPath)}&preset=${preset}`, 188 | method: 'GET', 189 | credentials: 'include', 190 | headers: { 191 | 'X-Flow-Csrftoken': csrfToken, 192 | 'Content-Type': 'application/json' 193 | } 194 | })) 195 | .then(response => response && response.json()) 196 | .then(newReferenceNodePath => { 197 | this.setState({ 198 | [preset]: { 199 | ...this.state[preset], 200 | isLoadingReferenceNodePath: false, 201 | newReferenceNodePath 202 | } 203 | }); 204 | this.fetchNodeWithParents(newReferenceNodePath + '@' + context); 205 | this.loadingReferenceNodePathLock[preset] = false; 206 | }); 207 | } 208 | }; 209 | 210 | fetchNodeWithParents = contextPath => { 211 | // This is rather a hack. We need to make sure the target NewReferenceNode is loaded 212 | // in order to be able to create anything inside it. 213 | const {siteNodeContextPath} = this.props; 214 | const {q} = backend.get(); 215 | 216 | let parentContextPath = contextPath; 217 | 218 | while (parentContextPath !== siteNodeContextPath) { 219 | const node = $get([parentContextPath], this.props.nodeData); 220 | // If the given node is not in the state, load it 221 | if (!node) { 222 | q(parentContextPath).get().then(nodes => { 223 | this.props.merge(nodes.reduce((nodeMap, node) => { 224 | nodeMap[$get('contextPath', node)] = node; 225 | return nodeMap; 226 | }, {})); 227 | }); 228 | } 229 | parentContextPath = parentNodeContextPath(parentContextPath); 230 | } 231 | }; 232 | 233 | render() { 234 | return ( 235 | 239 | {Object.keys(this.props.options.presets).map(presetName => { 240 | const preset = this.props.options.presets[presetName]; 241 | if (!preset) { 242 | return null; 243 | } 244 | if (preset.disabled) { 245 | return null; 246 | } 247 | const fetchNodes = this.makeFetchNodes(presetName) 248 | const resetNodes = this.makeResetNodes(presetName, fetchNodes) 249 | const debouncedFetchNodes = debounce(fetchNodes, 400); 250 | const setSearchTerm = this.makeSetSearchTerm(presetName, debouncedFetchNodes) 251 | const fetchNewReference = this.makeGetNewReference(presetName) 252 | return ( 253 | 256 | {preset.type === 'flat' && ()} 265 | {preset.type === 'tree' && ()} 266 | 267 | ); 268 | }).filter(Boolean)} 269 | 270 | ); 271 | } 272 | } 273 | return neos(globalRegistry => ({ 274 | options: globalRegistry.get('frontendConfiguration').get('Psmb_FlatNav'), 275 | i18nRegistry: globalRegistry.get('i18n') 276 | }))(connect($transform({ 277 | siteNodeContextPath: $get('cr.nodes.siteNode'), 278 | baseWorkspaceName: $get('cr.workspaces.personalWorkspace.baseWorkspace') 279 | }), { 280 | merge: actions.CR.Nodes.merge 281 | })(FlatNavContainer)); 282 | }; 283 | 284 | export default makeFlatNavContainer; 285 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Resources/Public/JavaScript/FlatNav/Plugin.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["webpack:///webpack/bootstrap 06beab519ab46c998ef5","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/readFromConsumerApi.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/react/index.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/neosProjectPackages/react-ui-components/index.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/neosProjectPackages/neos-ui-decorators/index.js","webpack:///./src/style.css?67b2","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/plow-js/index.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/react-redux/index.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/neosProjectPackages/neos-ui-redux-store/index.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/prop-types/index.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/classnames/index.js","webpack:///./src/index.js","webpack:///./src/manifest.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/index.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/createConsumerApi.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/package.json","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/manifest.js","webpack:///./src/makeFlatNavContainer.js","webpack:///./node_modules/@neos-project/neos-ui-extensibility/src/shims/neosProjectPackages/neos-ui-backend-connector/index.js","webpack:///./src/FlatNav.js","webpack:///./src/HideSelectedNode.js","webpack:///./src/DeleteSelectedNode.js","webpack:///./src/style.css","webpack:///./node_modules/css-loader/lib/css-base.js","webpack:///./node_modules/style-loader/lib/addStyles.js","webpack:///./node_modules/style-loader/lib/urls.js","webpack:///./src/RefreshNodes.js","webpack:///./src/SearchInput.js","webpack:///./node_modules/lodash.debounce/index.js","webpack:///(webpack)/buildin/global.js"],"names":["readFromConsumerApi","key","window","Error","module","exports","React","ReactUiComponents","NeosUiDecorators","plow","reactRedux","NeosUiReduxStore","PropTypes","classnames","require","containerRegistry","globalRegistry","get","PageTreeToolbar","PageTreeSearchbar","PageTree","OriginalTree","style","pageTreeContainerOriginal","pageTreeToolbarOriginal","set","createConsumerApi","createReadOnlyValue","value","writable","enumerable","configurable","manifests","exposureMap","api","Object","keys","forEach","defineProperty","version","identifier","options","bootstrap","push","parentNodeContextPath","contextPath","split","path","context","length","substr","lastIndexOf","makeFlatNavContainer","FlatNavContainer","props","state","buildDefaultState","loadingLock","loadingReferenceNodePathLock","prevProps","siteNodeContextPath","baseWorkspaceName","fullReset","tabs__content","tabs__panel","presets","map","preset","presetName","disabled","fetchNodes","makeFetchNodes","resetNodes","makeResetNodes","debouncedFetchNodes","setSearchTerm","makeSetSearchTerm","fetchNewReference","makeGetNewReference","icon","i18nRegistry","translate","label","panel","type","filter","Boolean","Component","newReferenceNodePath","newReferenceNodePathSetting","indexOf","page","isLoading","isLoadingReferenceNodePath","nodes","searchTerm","moreNodesAvailable","defaultState","setState","loadMore","url","encodeURIComponent","fetchWithErrorHandling","withCsrfToken","method","credentials","headers","csrfToken","then","response","json","nodesMap","reduce","result","node","merge","fetchNodeWithParents","backend","q","parentContextPath","nodeData","nodeMap","actions","CR","Nodes","NeosUiBackendConnectorDefault","NeosUiBackendConnector","FlatNav","nodeTypesRegistry","serverFeedbackHandlers","isAllowedToAddChildOrSiblingNodesSelector","selectors","makeIsAllowedToAddChildOrSiblingNodes","focusedNodeContextPath","UI","getFocused","getNodeByContextPathSelector","makeGetNodeByContextPathSelector","focusedNode","canBeDeleted","canBeEdited","isAllowedToAddChildOrSiblingNodes","reference","focused","focusedNodePathSelector","siteNodeContextPathSelector","publishableNodes","setSrc","ContentCanvas","focus","openNodeCreationDialog","NodeCreationDialog","open","commenceNodeCreation","commenceCreation","selectNodeType","SelectNodeTypeModal","apply","handleNodeWasCreated","feedbackPayload","store","getState","nodeTypeName","newNodeType","refreshFlatNav","buildNewReferenceNodePath","createNode","undefined","renderNodes","toolbarSearchNoResults","item","isFocused","console","log","isDirty","i","isRemoved","nodeIconComponent","getNodeIconComponent","node__iconWrapper","node__label","every","nodeType","getNodeType","isHidden","isHiddenBefore","isHiddenAfter","focusedInNodes","includes","searchEnabled","searchQuery","pageTreeContainer","toolbar","toolbarButtons","treeWrapper","disablePagination","loadMoreButton","textAlign","propTypes","array","isRequired","object","bool","number","string","HideSelectedNode","focusedSelector","hideNode","hide","showNode","show","handleHideNode","handleShowNode","className","PureComponent","func","DeleteSelectedNode","commenceNodeRemoval","commenceRemoval","handleDeleteSelectedNodeClick","RefreshNodes","handleClick","onClick","finalClassName","SearchInput","onChange","placeholder","onEnterKey","toolbarSearch","toolbarSearchInput","toolbarSearchClearButton"],"mappings":"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AoB,iCAAiC,iCAAiC,mBAAmB,GAAG,iDAAiD,wBAAwB,OAAO,iCAAiC,uBAAuB,qBAAqB,GAAG,0BAA0B,yBAAyB,uBAAuB,0BAA0B,8BAA8B,kBAAkB,uBAAuB,sBAAsB,GAAG,mCAAmC,gCAAgC,GAAG,+DAA+D,qBAAqB,GAAG,iCAAiC,qCAAqC,wBAAwB,GAAG,mCAAmC,0BAA0B,4BAA4B,GAAG,iIAAiI,mBAAmB,GAAG,uCAAuC,iBAAiB,4BAA4B,yBAAyB,yBAAyB,GAAG,iCAAiC,uBAAuB,GAAG;;AAEz+E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,E;;;;;;AC7BA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mCAAmC,gBAAgB;AACnD,IAAI;AACJ;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA,gBAAgB,iBAAiB;AACjC;AACA;AACA;AACA;AACA,YAAY,oBAAoB;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,oDAAoD,cAAc;;AAElE;AACA;;;;;;;AC3EA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,8CAA8C;AAC9C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;;AAEA,cAAc,mBAAO,CAAC,EAAQ;;AAE9B;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA,iBAAiB,mBAAmB;AACpC;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,iBAAiB,sBAAsB;AACvC;;AAEA;AACA,mBAAmB,2BAA2B;;AAE9C;AACA;AACA;AACA;AACA;;AAEA;AACA,gBAAgB,mBAAmB;AACnC;AACA;;AAEA;AACA;;AAEA,iBAAiB,2BAA2B;AAC5C;AACA;;AAEA,QAAQ,uBAAuB;AAC/B;AACA;AACA,GAAG;AACH;;AAEA,iBAAiB,uBAAuB;AACxC;AACA;;AAEA,2BAA2B;AAC3B;AACA;AACA;;AAEA;AACA;AACA;;AAEA,gBAAgB,iBAAiB;AACjC;AACA;AACA;AACA;AACA;AACA,cAAc;;AAEd,kDAAkD,sBAAsB;AACxE;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;AACA,EAAE;AACF;AACA,EAAE;AACF;AACA;AACA,EAAE;AACF;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,EAAE;AACF;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,CAAC;;AAED;AACA;;AAEA;AACA;AACA,EAAE;AACF;AACA;;AAEA;;AAEA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,EAAE;AACF;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,uDAAuD;AACvD;;AAEA,6BAA6B,mBAAmB;;AAEhD;;AAEA;;AAEA;AACA;;;;;;;;AC1XA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC,WAAW,EAAE;AACrD,wCAAwC,WAAW,EAAE;;AAErD;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA,sCAAsC;AACtC,GAAG;AACH;AACA,8DAA8D;AAC9D;;AAEA;AACA;AACA,EAAE;;AAEF;AACA;AACA;;;;;;;;;;;;;;;;;;;ACxFA;;;;AACA;;;;AACA;;;;AACA;;AACA;;AACA;;;;;;;;;;;;;;IAMqBI,Y,WAJpB,4BAAK;AAAA,WAAmB;AACrB5I,sBAAchE,eAAeC,GAAf,CAAmB,MAAnB;AADO,KAAnB;AAAA,CAAL,C;;;;;;;;;;;;;;sMAaG4M,W,GAAc,YAAM;AAAA,gBACTC,OADS,GACE,MAAKxK,KADP,CACTwK,OADS;;;AAGhBA;AACH,S;;;;;iCAEQ;AAAA,yBACuC,KAAKxK,KAD5C;AAAA,gBACEe,QADF,UACEA,QADF;AAAA,gBACYgJ,SADZ,UACYA,SADZ;AAAA,gBACuBrI,YADvB,UACuBA,YADvB;;AAEL,gBAAM+I,iBAAiB,8CAClBV,SADkB,EACNA,aAAaA,UAAUpK,MADjB,EAAvB;;AAIA,mBACI,8BAAC,6BAAD;AACI,2BAAW8K,cADf;AAEI,0BAAU1J,QAFd;AAGI,yBAAS,KAAKwJ,WAHlB;AAII,sBAAK,MAJT;AAKI,4BAAW,OALf;AAMI,uBAAO7I,aAAaC,SAAb,CAAuB,SAAvB;AANX,cADJ;AAUH;;;;EA/BqCqI,oB,WAC/BhB,S,GAAY;AACfpF,UAAMtG,oBAAU6L,MADD;AAEfY,eAAWzM,oBAAUgM,MAFN;AAGfkB,aAASlN,oBAAU2M,IAAV,CAAef,UAHT;AAIfnI,cAAUzD,oBAAU8L,IAAV,CAAeF,UAJV;AAKfxH,kBAAcpE,oBAAU6L,MAAV,CAAiBD;AALhB,C;kBADFoB,Y;;;;;;;;;;;;;ACXrB;;;;AACA;;;;AACA;;;;AAEA,IAAMI,cAAc,SAAdA,WAAc,OAAyC;AAAA,MAAvCC,QAAuC,QAAvCA,QAAuC;AAAA,MAA7BlI,UAA6B,QAA7BA,UAA6B;AAAA,MAAjBmI,WAAiB,QAAjBA,WAAiB;;AAC3D,MAAMC,aAAa,SAAbA,UAAa;AAAA,WAAMF,SAASlI,UAAT,CAAN;AAAA,GAAnB;AACA,SACE;AAAA;AAAA,MAAK,WAAWzE,gBAAM8M,aAAtB;AACE,kCAAC,4BAAD,IAAW,WAAW9M,gBAAM+M,kBAA5B,EAAgD,OAAOtI,UAAvD,EAAmE,aAAamI,WAAhF,EAA6F,UAAUD,QAAvG,EAAiH,YAAYE,UAA7H,GADF;AAEGpI,iBAAa,8BAAC,6BAAD,IAAY,MAAK,OAAjB,EAAyB,SAAS;AAAA,eAAMkI,SAAS,EAAT,CAAN;AAAA,OAAlC,EAAsD,WAAW3M,gBAAMgN,wBAAvE,GAAb,GAAmH;AAFtH,GADF;AAMD,CARD;kBASeN,W;;;;;;ACbf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB,WAAW,OAAO;AAClB,WAAW,OAAO,YAAY;AAC9B,WAAW,QAAQ;AACnB;AACA,WAAW,OAAO;AAClB;AACA,WAAW,QAAQ;AACnB;AACA,aAAa,SAAS;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA,8CAA8C,kBAAkB;AAChE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,EAAE;AACb,aAAa,QAAQ;AACrB;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,EAAE;AACb,aAAa,QAAQ;AACrB;AACA;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,EAAE;AACb,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,EAAE;AACb,aAAa,OAAO;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;ACxXA;;AAEA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;;AAEA;AACA;AACA,4CAA4C;;AAE5C","file":"Plugin.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 10);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 06beab519ab46c998ef5","export default function readFromConsumerApi(key) {\n return (...args) => {\n if (window['@Neos:HostPluginAPI'] && window['@Neos:HostPluginAPI'][`@${key}`]) {\n return window['@Neos:HostPluginAPI'][`@${key}`](...args);\n }\n\n throw new Error(`You are trying to read from a consumer api that hasn't been initialized yet!`);\n };\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/readFromConsumerApi.js","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nmodule.exports = readFromConsumerApi('vendor')().React;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/react/index.js","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nmodule.exports = readFromConsumerApi('NeosProjectPackages')().ReactUiComponents;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/neosProjectPackages/react-ui-components/index.js","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nmodule.exports = readFromConsumerApi('NeosProjectPackages')().NeosUiDecorators;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/neosProjectPackages/neos-ui-decorators/index.js","\nvar content = require(\"!!../node_modules/css-loader/index.js??ref--6-2!../node_modules/postcss-loader/lib/index.js??ref--6-3!./style.css\");\n\nif(typeof content === 'string') content = [[module.id, content, '']];\n\nvar transform;\nvar insertInto;\n\n\n\nvar options = {\"hmr\":true}\n\noptions.transform = transform\noptions.insertInto = undefined;\n\nvar update = require(\"!../node_modules/style-loader/lib/addStyles.js\")(content, options);\n\nif(content.locals) module.exports = content.locals;\n\nif(module.hot) {\n\tmodule.hot.accept(\"!!../node_modules/css-loader/index.js??ref--6-2!../node_modules/postcss-loader/lib/index.js??ref--6-3!./style.css\", function() {\n\t\tvar newContent = require(\"!!../node_modules/css-loader/index.js??ref--6-2!../node_modules/postcss-loader/lib/index.js??ref--6-3!./style.css\");\n\n\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\n\t\tvar locals = (function(a, b) {\n\t\t\tvar key, idx = 0;\n\n\t\t\tfor(key in a) {\n\t\t\t\tif(!b || a[key] !== b[key]) return false;\n\t\t\t\tidx++;\n\t\t\t}\n\n\t\t\tfor(key in b) idx--;\n\n\t\t\treturn idx === 0;\n\t\t}(content.locals, newContent.locals));\n\n\t\tif(!locals) throw new Error('Aborting CSS HMR due to changed css-modules locals.');\n\n\t\tupdate(newContent);\n\t});\n\n\tmodule.hot.dispose(function() { update(); });\n}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/style.css\n// module id = 4\n// module chunks = 0","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nmodule.exports = readFromConsumerApi('vendor')().plow;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/plow-js/index.js","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nmodule.exports = readFromConsumerApi('vendor')().reactRedux;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/react-redux/index.js","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nmodule.exports = readFromConsumerApi('NeosProjectPackages')().NeosUiReduxStore;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/neosProjectPackages/neos-ui-redux-store/index.js","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nmodule.exports = readFromConsumerApi('vendor')().PropTypes;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/prop-types/index.js","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nmodule.exports = readFromConsumerApi('vendor')().classnames;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/vendor/classnames/index.js","require('./manifest');\n\n\n\n// WEBPACK FOOTER //\n// ./src/index.js","import React from 'react';\nimport manifest from '@neos-project/neos-ui-extensibility';\nimport makeFlatNavContainer from './makeFlatNavContainer';\nimport style from './style.css';\n\nmanifest('Psmb.FlatNav:FlatNav', {}, globalRegistry => {\n const containerRegistry = globalRegistry.get('containers');\n const PageTreeToolbar = containerRegistry.get('LeftSideBar/Top/PageTreeToolbar');\n const PageTreeSearchbar = containerRegistry.get('LeftSideBar/Top/PageTreeSearchbar');\n const PageTree = containerRegistry.get('LeftSideBar/Top/PageTree');\n\n const OriginalTree = () => (\n
\n
\n \n
\n \n \n
\n );\n containerRegistry.set('LeftSideBar/Top/PageTreeToolbar', () => null);\n containerRegistry.set('LeftSideBar/Top/PageTreeSearchbar', () => null);\n\n containerRegistry.set('LeftSideBar/Top/PageTree', makeFlatNavContainer(OriginalTree));\n});\n\n\n\n// WEBPACK FOOTER //\n// ./src/manifest.js","import createConsumerApi from './createConsumerApi';\nimport readFromConsumerApi from './readFromConsumerApi';\n\nexport default readFromConsumerApi('manifest');\n\nexport {\n createConsumerApi\n};\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/index.js","import {version} from '../package.json';\nimport createManifestFunction from './manifest';\n\nconst createReadOnlyValue = value => ({\n value,\n writable: false,\n enumerable: false,\n configurable: true\n});\n\nexport default function createConsumerApi(manifests, exposureMap) {\n const api = {};\n\n Object.keys(exposureMap).forEach(key => {\n Object.defineProperty(api, key, createReadOnlyValue(exposureMap[key]));\n });\n\n Object.defineProperty(api, '@manifest', createReadOnlyValue(\n createManifestFunction(manifests)\n ));\n\n Object.defineProperty(window, '@Neos:HostPluginAPI', createReadOnlyValue(api));\n Object.defineProperty(window['@Neos:HostPluginAPI'], 'VERSION', createReadOnlyValue(version));\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/createConsumerApi.js","module.exports = {\"name\":\"@neos-project/neos-ui-extensibility\",\"version\":\"1.3.3\",\"description\":\"Extensibility mechanisms for the Neos CMS UI\",\"main\":\"./src/index.js\",\"scripts\":{\"prebuild\":\"check-dependencies && yarn clean\",\"test\":\"yarn jest -- -w 2 --coverage\",\"test:watch\":\"yarn jest -- --watch\",\"build\":\"exit 0\",\"build:watch\":\"exit 0\",\"clean\":\"rimraf ./lib ./dist\",\"lint\":\"eslint src\",\"jest\":\"NODE_ENV=test jest\"},\"devDependencies\":{\"@neos-project/babel-preset-neos-ui\":\"1.3.3\",\"@neos-project/jest-preset-neos-ui\":\"1.3.3\"},\"dependencies\":{\"@neos-project/build-essentials\":\"1.3.3\",\"@neos-project/positional-array-sorter\":\"1.3.3\",\"babel-core\":\"^6.13.2\",\"babel-eslint\":\"^7.1.1\",\"babel-loader\":\"^7.1.2\",\"babel-plugin-transform-decorators-legacy\":\"^1.3.4\",\"babel-plugin-transform-object-rest-spread\":\"^6.20.1\",\"babel-plugin-webpack-alias\":\"^2.1.1\",\"babel-preset-es2015\":\"^6.13.2\",\"babel-preset-react\":\"^6.3.13\",\"babel-preset-stage-0\":\"^6.3.13\",\"chalk\":\"^1.1.3\",\"css-loader\":\"^0.28.4\",\"file-loader\":\"^1.1.5\",\"json-loader\":\"^0.5.4\",\"postcss-loader\":\"^2.0.10\",\"react-dev-utils\":\"^0.5.0\",\"style-loader\":\"^0.21.0\"},\"bin\":{\"neos-react-scripts\":\"./bin/neos-react-scripts.js\"},\"jest\":{\"preset\":\"@neos-project/jest-preset-neos-ui\"}}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/@neos-project/neos-ui-extensibility/package.json\n// module id = 14\n// module chunks = 0","export default manifests => {\n return function (identifier, options, bootstrap) {\n manifests.push({\n [identifier]: {\n options,\n bootstrap\n }\n });\n };\n};\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/manifest.js","import React, {Component} from 'react';\nimport {$get, $transform} from 'plow-js';\nimport {Tabs} from '@neos-project/react-ui-components';\nimport {connect} from 'react-redux';\nimport {actions} from '@neos-project/neos-ui-redux-store';\nimport {neos} from '@neos-project/neos-ui-decorators';\nimport {fetchWithErrorHandling} from '@neos-project/neos-ui-backend-connector';\nimport backend from '@neos-project/neos-ui-backend-connector';\nimport FlatNav from './FlatNav';\nimport style from './style.css';\nimport debounce from 'lodash.debounce';\n\n// Taken from here, as it's not exported in the UI\n// https://github.com/neos/neos-ui/blob/b2a52d66a211b192dfc541799779a8be27bf5a31/packages/neos-ui-sagas/src/CR/NodeOperations/helpers.js#L3\nconst parentNodeContextPath = contextPath => {\n if (typeof contextPath !== 'string') {\n return null;\n }\n\n const [path, context] = contextPath.split('@');\n\n if (path.length === 0) {\n // We are at top level; so there is no parent anymore!\n return false;\n }\n\n return `${path.substr(0, path.lastIndexOf('/'))}@${context}`;\n};\n\nconst makeFlatNavContainer = OriginalPageTree => {\n class FlatNavContainer extends Component {\n state = {};\n\n constructor(props) {\n super(props);\n this.state = this.buildDefaultState(props);\n\n // It's not safe to rely on React's state to do the locking\n this.loadingLock = {};\n this.loadingReferenceNodePathLock = {};\n }\n\n componentDidUpdate(prevProps) {\n // If the siteNodeContextPath or baseWorkspaceName have changed, fully reset the state\n if (\n this.props.siteNodeContextPath !== prevProps.siteNodeContextPath ||\n this.props.baseWorkspaceName !== prevProps.baseWorkspaceName\n ) {\n this.fullReset();\n }\n }\n\n buildDefaultState = props => {\n const state = {};\n Object.keys(props.options.presets).forEach(presetName => {\n const preset = props.options.presets[presetName];\n if (!presetName) {\n return null;\n }\n let newReferenceNodePath;\n // If `newReferenceNodePath` is static, append context to it, otherwise set to empty, as it would be fetched later\n const newReferenceNodePathSetting = $get(['options', 'presets', presetName, 'newReferenceNodePath'], props);\n if (typeof newReferenceNodePathSetting === 'string' && newReferenceNodePathSetting.indexOf('/') === 0) {\n newReferenceNodePath = preset.newReferenceNodePath;\n } else {\n newReferenceNodePath = '';\n }\n state[presetName] = {\n page: 1,\n isLoading: false,\n isLoadingReferenceNodePath: false,\n nodes: [],\n searchTerm: '',\n moreNodesAvailable: true,\n newReferenceNodePath\n };\n });\n return state;\n };\n\n fullReset = () => {\n const defaultState = this.buildDefaultState(this.props);\n this.setState({\n ...defaultState\n });\n }\n\n makeResetNodes = (preset, fetchNodes) => () => {\n this.setState({\n [preset]: {\n ...this.state[preset],\n page: 1,\n nodes: [],\n moreNodesAvailable: true\n }\n }, fetchNodes);\n }\n\n makeFetchNodes = preset => (loadMore = false) => {\n const searchTerm = this.state[preset].searchTerm;\n const page = loadMore ? this.state[preset].page + 1 : 1\n const url = `/neos/flatnav/query?nodeContextPath=${encodeURIComponent(this.props.siteNodeContextPath)}&preset=${preset}&page=${page}${searchTerm ? `&searchTerm=${searchTerm}` : ''}`\n if (this.loadingLock[url]) {\n return;\n }\n this.loadingLock[url] = true;\n this.setState({\n [preset]: {\n ...this.state[preset],\n isLoading: true,\n moreNodesAvailable: true\n }\n });\n\n fetchWithErrorHandling.withCsrfToken(csrfToken => ({\n url,\n method: 'GET',\n credentials: 'include',\n headers: {\n 'X-Flow-Csrftoken': csrfToken,\n 'Content-Type': 'application/json'\n }\n }))\n .then(response => response && response.json())\n .then(nodes => {\n // Ignore the response if the searchTerm has changed while request was running\n if (searchTerm === this.state[preset].searchTerm) {\n if (nodes.length > 0) {\n const nodesMap = nodes.reduce((result, node) => {\n result[node.contextPath] = node;\n return result;\n }, {});\n this.props.merge(nodesMap);\n this.setState({\n [preset]: {\n ...this.state[preset],\n isLoading: false,\n nodes: loadMore ? [...this.state[preset].nodes, ...Object.keys(nodesMap)] : Object.keys(nodesMap),\n page,\n moreNodesAvailable: true\n }\n });\n } else {\n this.setState({\n [preset]: {\n ...this.state[preset],\n isLoading: false,\n moreNodesAvailable: false,\n nodes: loadMore ? this.state[preset].nodes : [],\n }\n });\n }\n this.loadingLock[url] = false;\n }\n });\n };\n\n makeSetSearchTerm = (preset, fetchNodes) => searchTerm => {\n this.setState({\n [preset]: {\n ...this.state[preset],\n nodes: [],\n page: 1,\n isLoading: true,\n searchTerm\n }\n }, fetchNodes);\n }\n\n // Gets the `newReferenceNodePath` setting and loads that node into state\n makeGetNewReference = preset => () => {\n if (this.loadingReferenceNodePathLock[preset]) {\n return;\n }\n this.loadingReferenceNodePathLock[preset] = true;\n const context = this.props.siteNodeContextPath.split('@')[1];\n if (this.state[preset].newReferenceNodePath.indexOf('/') === 0) {\n this.fetchNodeWithParents(this.state[preset].newReferenceNodePath + '@' + context);\n } else {\n this.setState({\n [preset]: {\n ...this.state[preset],\n isLoadingReferenceNodePath: true\n }\n });\n fetchWithErrorHandling.withCsrfToken(csrfToken => ({\n url: `/neos/flatnav/getNewReferenceNodePath?nodeContextPath=${encodeURIComponent(this.props.siteNodeContextPath)}&preset=${preset}`,\n method: 'GET',\n credentials: 'include',\n headers: {\n 'X-Flow-Csrftoken': csrfToken,\n 'Content-Type': 'application/json'\n }\n }))\n .then(response => response && response.json())\n .then(newReferenceNodePath => {\n this.setState({\n [preset]: {\n ...this.state[preset],\n isLoadingReferenceNodePath: false,\n newReferenceNodePath\n }\n });\n this.fetchNodeWithParents(newReferenceNodePath + '@' + context);\n this.loadingReferenceNodePathLock[preset] = false;\n });\n }\n };\n\n fetchNodeWithParents = contextPath => {\n // This is rather a hack. We need to make sure the target NewReferenceNode is loaded\n // in order to be able to create anything inside it.\n const {siteNodeContextPath} = this.props;\n const {q} = backend.get();\n\n let parentContextPath = contextPath;\n\n while (parentContextPath !== siteNodeContextPath) {\n const node = $get([parentContextPath], this.props.nodeData);\n // If the given node is not in the state, load it\n if (!node) {\n q(parentContextPath).get().then(nodes => {\n this.props.merge(nodes.reduce((nodeMap, node) => {\n nodeMap[$get('contextPath', node)] = node;\n return nodeMap;\n }, {}));\n });\n }\n parentContextPath = parentNodeContextPath(parentContextPath);\n }\n };\n\n render() {\n return (\n \n {Object.keys(this.props.options.presets).map(presetName => {\n const preset = this.props.options.presets[presetName];\n if (!preset) {\n return null;\n }\n if (preset.disabled) {\n return null;\n }\n const fetchNodes = this.makeFetchNodes(presetName)\n const resetNodes = this.makeResetNodes(presetName, fetchNodes)\n const debouncedFetchNodes = debounce(fetchNodes, 400);\n const setSearchTerm = this.makeSetSearchTerm(presetName, debouncedFetchNodes)\n const fetchNewReference = this.makeGetNewReference(presetName)\n return (\n \n {preset.type === 'flat' && ()}\n {preset.type === 'tree' && ()}\n \n );\n }).filter(Boolean)}\n \n );\n }\n }\n return neos(globalRegistry => ({\n options: globalRegistry.get('frontendConfiguration').get('Psmb_FlatNav'),\n i18nRegistry: globalRegistry.get('i18n')\n }))(connect($transform({\n siteNodeContextPath: $get('cr.nodes.siteNode'),\n baseWorkspaceName: $get('cr.workspaces.personalWorkspace.baseWorkspace')\n }), {\n merge: actions.CR.Nodes.merge\n })(FlatNavContainer));\n};\n\nexport default makeFlatNavContainer;\n\n\n\n// WEBPACK FOOTER //\n// ./src/makeFlatNavContainer.js","import readFromConsumerApi from '../../../readFromConsumerApi';\n\nexport default readFromConsumerApi('NeosProjectPackages')().NeosUiBackendConnectorDefault;\n\nconst {fetchWithErrorHandling} = readFromConsumerApi('NeosProjectPackages')().NeosUiBackendConnector;\nexport {fetchWithErrorHandling};\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@neos-project/neos-ui-extensibility/src/shims/neosProjectPackages/neos-ui-backend-connector/index.js","import React, {Component} from 'react';\nimport PropTypes from 'prop-types';\nimport {$get, $transform} from 'plow-js';\nimport {Button, Icon, IconButton, TextInput} from '@neos-project/react-ui-components';\nimport {connect} from 'react-redux';\nimport {actions, selectors} from '@neos-project/neos-ui-redux-store';\nimport {neos} from '@neos-project/neos-ui-decorators';\nimport HideSelectedNode from './HideSelectedNode';\nimport DeleteSelectedNode from './DeleteSelectedNode';\nimport mergeClassNames from 'classnames';\nimport style from './style.css';\nimport RefreshNodes from \"./RefreshNodes\";\nimport SearchInput from \"./SearchInput\";\n@neos(globalRegistry => ({\n nodeTypesRegistry: globalRegistry.get('@neos-project/neos-ui-contentrepository'),\n serverFeedbackHandlers: globalRegistry.get('serverFeedbackHandlers'),\n i18nRegistry: globalRegistry.get('i18n')\n}))\n@connect(\n (state, {nodeTypesRegistry}) => {\n const isAllowedToAddChildOrSiblingNodesSelector = selectors.CR.Nodes.makeIsAllowedToAddChildOrSiblingNodes(nodeTypesRegistry);\n return (state, {newReferenceNodePath}) => {\n const focusedNodeContextPath = selectors.UI.PageTree.getFocused(state);\n const getNodeByContextPathSelector = selectors.CR.Nodes.makeGetNodeByContextPathSelector(focusedNodeContextPath);\n const focusedNode = getNodeByContextPathSelector(state);\n const canBeDeleted = $get('policy.canRemove', focusedNode) || false;\n const canBeEdited = $get('policy.canEdit', focusedNode) || false;\n const context = focusedNodeContextPath.split('@')[1];\n const isAllowedToAddChildOrSiblingNodes = isAllowedToAddChildOrSiblingNodesSelector(state, {\n reference: newReferenceNodePath + '@' + context\n });\n return {\n nodeData: $get('cr.nodes.byContextPath', state),\n focused: selectors.CR.Nodes.focusedNodePathSelector(state),\n siteNodeContextPath: selectors.CR.Nodes.siteNodeContextPathSelector(state),\n baseWorkspaceName: $get('cr.workspaces.personalWorkspace.baseWorkspace', state),\n publishableNodes: $get('cr.workspaces.personalWorkspace.publishableNodes', state),\n isAllowedToAddChildOrSiblingNodes,\n canBeDeleted,\n canBeEdited\n }\n }\n }\n, {\n setSrc: actions.UI.ContentCanvas.setSrc,\n focus: actions.UI.PageTree.focus,\n openNodeCreationDialog: actions.UI.NodeCreationDialog.open,\n commenceNodeCreation: actions.CR.Nodes.commenceCreation,\n selectNodeType: actions.UI.SelectNodeTypeModal.apply,\n merge: actions.CR.Nodes.merge\n})\nexport default class FlatNav extends Component {\n static propTypes = {\n nodes: PropTypes.array.isRequired,\n preset: PropTypes.object.isRequired,\n isLoading: PropTypes.bool.isRequired,\n isLoadingReferenceNodePath: PropTypes.bool.isRequired,\n page: PropTypes.number.isRequired,\n newReferenceNodePath: PropTypes.string.isRequired,\n moreNodesAvailable: PropTypes.bool.isRequired\n };\n\n componentDidMount() {\n if (\n // No node paths in state on initial load\n this.props.nodes.length === 0\n ) {\n this.props.fetchNodes();\n this.props.fetchNewReference();\n }\n this.props.serverFeedbackHandlers.set('Neos.Neos.Ui:NodeCreated/DocumentAdded', this.handleNodeWasCreated, 'after Neos.Neos.Ui:NodeCreated/Main');\n }\n\n componentDidUpdate() {\n if (\n // Node data not available for some nodes (e.g. after tree reload)\n !this.props.nodes.every(contextPath => $get([contextPath], this.props.nodeData))\n ) {\n this.props.fetchNodes();\n this.props.fetchNewReference();\n }\n }\n\n handleNodeWasCreated = (feedbackPayload, {store}) => {\n const state = store.getState();\n\n const getNodeByContextPathSelector = selectors.CR.Nodes.makeGetNodeByContextPathSelector(feedbackPayload.contextPath);\n const node = getNodeByContextPathSelector(state);\n const nodeTypeName = $get('nodeType', node);\n\n if (nodeTypeName === this.props.preset.newNodeType) {\n this.refreshFlatNav();\n }\n }\n\n buildNewReferenceNodePath = () => {\n const context = this.props.siteNodeContextPath.split('@')[1];\n return this.props.newReferenceNodePath + '@' + context;\n };\n\n createNode = () => {\n const contextPath = this.buildNewReferenceNodePath();\n this.props.commenceNodeCreation(contextPath, undefined, 'into', this.props.preset.newNodeType || undefined);\n }\n\n refreshFlatNav = () => {\n this.props.resetNodes();\n }\n\n getNodeIconComponent(node) {\n const nodeTypeName = $get('nodeType', node);\n const nodeType = this.props.nodeTypesRegistry.getNodeType(nodeTypeName);\n const isHidden = $get('properties._hidden', node);\n const isHiddenBefore = $get('properties._hiddenBeforeDateTime', node);\n const isHiddenAfter = $get('properties._hiddenAfterDateTime', node);\n\n if (isHidden) {\n return (\n \n \n \n \n \n );\n }\n\n if (isHiddenBefore || isHiddenAfter) {\n return (\n \n \n \n \n \n );\n }\n\n return (\n \n );\n }\n\n renderNodes = () => {\n if (this.props.searchTerm && !this.props.isLoading && this.props.nodes.length === 0) {\n return {this.props.i18nRegistry.translate('Psmb.FlatNav:Main:noResults')}\n }\n return this.props.nodes\n .map(contextPath => {\n const item = $get([contextPath], this.props.nodeData);\n\n if (item) {\n const isFocused = this.props.focused === contextPath;\n console.log(this.props.focused, contextPath)\n const isDirty = this.props.publishableNodes.filter(i => (\n $get('contextPath', i) === contextPath ||\n $get('documentContextPath', i) === contextPath\n )).length > 0;\n const isRemoved = $get('properties._removed', item);\n const nodeIconComponent = this.getNodeIconComponent(item);\n\n return (\n {\n if ( ! isRemoved) {\n this.props.setSrc($get('uri', item));\n this.props.focus(contextPath);\n }\n }}\n role=\"button\"\n >\n \n {nodeIconComponent}\n \n \n {$get('label', item)}\n \n \n );\n }\n return null;\n }).filter(i => i);\n };\n\n render() {\n const {focused, nodes, isLoadingReferenceNodePath, isLoading, preset, isAllowedToAddChildOrSiblingNodes, canBeDeleted, canBeEdited} = this.props;\n\n const focusedInNodes = nodes.includes(focused);\n\n const searchEnabled = Boolean(preset.searchQuery)\n\n return (\n
\n
\n
\n \n \n \n \n
\n {searchEnabled && }\n
\n\n
\n {this.renderNodes()}\n {(isLoading || (!this.props.preset.disablePagination && this.props.moreNodesAvailable && !this.props.searchTerm)) && ( this.props.fetchNodes(true)}\n style=\"clean\"\n className={style.loadMoreButton}\n disabled={isLoading}\n >\n
\n \n  {isLoading ? this.props.i18nRegistry.translate('Psmb.FlatNav:Main:loading') : this.props.i18nRegistry.translate('Psmb.FlatNav:Main:loadMore')}\n
\n )}\n
\n
\n );\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/FlatNav.js","import React, {PureComponent} from 'react';\nimport PropTypes from 'prop-types';\nimport {connect} from 'react-redux';\nimport {neos} from '@neos-project/neos-ui-decorators';\nimport {$transform, $get} from 'plow-js';\nimport {IconButton} from '@neos-project/react-ui-components';\n\nimport {selectors, actions} from '@neos-project/neos-ui-redux-store';\n\n@neos(globalRegistry => ({\n i18nRegistry: globalRegistry.get('i18n')\n}))\n@connect($transform({\n node: selectors.CR.Nodes.focusedSelector\n}), {\n hideNode: actions.CR.Nodes.hide,\n showNode: actions.CR.Nodes.show\n})\nexport default class HideSelectedNode extends PureComponent {\n static propTypes = {\n node: PropTypes.object,\n className: PropTypes.string,\n hideNode: PropTypes.func.isRequired,\n showNode: PropTypes.func.isRequired,\n disabled: PropTypes.bool.isRequired,\n i18nRegistry: PropTypes.object.isRequired\n };\n\n handleHideNode = () => {\n const {node, hideNode} = this.props;\n\n hideNode($get('contextPath', node));\n }\n\n handleShowNode = () => {\n const {node, showNode} = this.props;\n\n showNode($get('contextPath', node));\n }\n\n render() {\n const {className, disabled, node, i18nRegistry} = this.props;\n const isHidden = $get('properties._hidden', node);\n\n return (\n \n );\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/HideSelectedNode.js","import React, {PureComponent} from 'react';\nimport PropTypes from 'prop-types';\nimport {connect} from 'react-redux';\nimport {$transform, $get} from 'plow-js';\nimport {neos} from '@neos-project/neos-ui-decorators';\nimport {IconButton} from '@neos-project/react-ui-components';\nimport {selectors, actions} from '@neos-project/neos-ui-redux-store';\n\n@neos(globalRegistry => ({\n i18nRegistry: globalRegistry.get('i18n')\n}))\n@connect($transform({\n node: selectors.CR.Nodes.focusedSelector\n}), {\n commenceNodeRemoval: actions.CR.Nodes.commenceRemoval\n})\nexport default class DeleteSelectedNode extends PureComponent {\n static propTypes = {\n node: PropTypes.object,\n className: PropTypes.string,\n commenceNodeRemoval: PropTypes.func.isRequired,\n disabled: PropTypes.bool.isRequired,\n i18nRegistry: PropTypes.object.isRequired\n };\n\n handleDeleteSelectedNodeClick = () => {\n const {node, commenceNodeRemoval} = this.props;\n commenceNodeRemoval($get('contextPath', node));\n }\n\n render() {\n const {className, disabled, i18nRegistry} = this.props;\n\n return (\n \n );\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/DeleteSelectedNode.js","exports = module.exports = require(\"../node_modules/css-loader/lib/css-base.js\")(false);\n// imports\n\n\n// module\nexports.push([module.id, \".style__loadMoreButton___9u14e {\\n width: 100% !important;\\n opacity: 1 !important;\\n}\\n\\n.style__tabs__content___pnV9i {\\n height: calc(100% - 41px);\\n}\\n\\n.style__tabs__panel___1f-I- {\\n height: 100%;\\n}\\n\\n.style__panel___8gH6H {\\n height: 100%;\\n}\\n\\n.style__toolbar___Y2z2P {\\n background-color: #222;\\n border-bottom: 1px solid #3f3f3f;\\n display: -ms-flexbox;\\n display: flex;\\n}\\n\\n.style__toolbarButtons___2DkPs {\\n -ms-flex-negative: 0;\\n flex-shrink: 0;\\n}\\n\\n.style__toolbarSearch___VoCND {\\n margin-left: 5px;\\n display: -ms-flexbox;\\n display: flex;\\n -ms-flex-align: center;\\n align-items: center;\\n}\\n\\n.style__toolbarSearchInput___3iqrB {\\n border-radius: 0;\\n}\\n\\n.style__toolbarSearchInput___3iqrB:focus {\\n background-color: #3f3f3f;\\n color: #FFF;\\n }\\n\\n.style__toolbarSearchClearButton___2zsD3 {\\n background-color: #3f3f3f;\\n}\\n\\n.style__toolbarSearchNoResults___1mTrz {\\n padding: 5px 10px;\\n}\\n\\n.style__pageTreeContainer___7tNsg {\\n display: -ms-flexbox;\\n display: flex;\\n -ms-flex-direction: column;\\n flex-direction: column;\\n height: 100%;\\n background-color: #222;\\n border-right: 1px solid #3f3f3f;\\n border-bottom: 1px solid #3f3f3f;\\n}\\n\\n.style__pageTreeContainerOriginal___dXhKR {\\n display: -ms-flexbox;\\n display: flex;\\n -ms-flex-direction: column;\\n flex-direction: column;\\n height: 100%;\\n}\\n\\n.style__pageTreeToolbarOriginal___3coJx div {\\n border-top: 0;\\n }\\n\\n.style__treeWrapper___1Ki9q {\\n overflow-y: auto;\\n padding: 5px 0;\\n}\\n\\n.style__node___37dXu {\\n position: relative;\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n width: 100%;\\n padding: 3px 6px;\\n cursor: pointer;\\n}\\n\\n.style__node--focused___2Ad0k {\\n background-color: #323232;\\n}\\n\\n.style__node--focused___2Ad0k .style__node__label___2ktrO {\\n color: #00ADEE;\\n}\\n\\n.style__node--dirty___K2yEx {\\n border-left: 2px solid #ff8700;\\n padding-left: 4px;\\n}\\n\\n.style__node--removed___3ycgN {\\n cursor: not-allowed;\\n border-color: #ff460d;\\n}\\n\\n.style__node--removed___3ycgN .style__node__label___2ktrO,\\n.style__node--removed___3ycgN .style__node__iconWrapper___32kOo {\\n opacity: 0.5;\\n}\\n\\n.style__node__iconWrapper___32kOo {\\n width: 2em;\\n display: inline-block;\\n position: absolute;\\n text-align: center;\\n}\\n\\n.style__node__label___2ktrO {\\n margin-left: 2em;\\n}\\n\", \"\"]);\n\n// exports\nexports.locals = {\n\t\"loadMoreButton\": \"style__loadMoreButton___9u14e\",\n\t\"tabs__content\": \"style__tabs__content___pnV9i\",\n\t\"tabs__panel\": \"style__tabs__panel___1f-I-\",\n\t\"panel\": \"style__panel___8gH6H\",\n\t\"toolbar\": \"style__toolbar___Y2z2P\",\n\t\"toolbarButtons\": \"style__toolbarButtons___2DkPs\",\n\t\"toolbarSearch\": \"style__toolbarSearch___VoCND\",\n\t\"toolbarSearchInput\": \"style__toolbarSearchInput___3iqrB\",\n\t\"toolbarSearchClearButton\": \"style__toolbarSearchClearButton___2zsD3\",\n\t\"toolbarSearchNoResults\": \"style__toolbarSearchNoResults___1mTrz\",\n\t\"pageTreeContainer\": \"style__pageTreeContainer___7tNsg\",\n\t\"pageTreeContainerOriginal\": \"style__pageTreeContainerOriginal___dXhKR\",\n\t\"pageTreeToolbarOriginal\": \"style__pageTreeToolbarOriginal___3coJx\",\n\t\"treeWrapper\": \"style__treeWrapper___1Ki9q\",\n\t\"node\": \"style__node___37dXu\",\n\t\"node--focused\": \"style__node--focused___2Ad0k\",\n\t\"node__label\": \"style__node__label___2ktrO\",\n\t\"node--dirty\": \"style__node--dirty___K2yEx\",\n\t\"node--removed\": \"style__node--removed___3ycgN\",\n\t\"node__iconWrapper\": \"style__node__iconWrapper___32kOo\"\n};\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/css-loader??ref--6-2!./node_modules/postcss-loader/lib??ref--6-3!./src/style.css\n// module id = 21\n// module chunks = 0","/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\nmodule.exports = function(useSourceMap) {\n\tvar list = [];\n\n\t// return the list of modules as css string\n\tlist.toString = function toString() {\n\t\treturn this.map(function (item) {\n\t\t\tvar content = cssWithMappingToString(item, useSourceMap);\n\t\t\tif(item[2]) {\n\t\t\t\treturn \"@media \" + item[2] + \"{\" + content + \"}\";\n\t\t\t} else {\n\t\t\t\treturn content;\n\t\t\t}\n\t\t}).join(\"\");\n\t};\n\n\t// import a list of modules into the list\n\tlist.i = function(modules, mediaQuery) {\n\t\tif(typeof modules === \"string\")\n\t\t\tmodules = [[null, modules, \"\"]];\n\t\tvar alreadyImportedModules = {};\n\t\tfor(var i = 0; i < this.length; i++) {\n\t\t\tvar id = this[i][0];\n\t\t\tif(typeof id === \"number\")\n\t\t\t\talreadyImportedModules[id] = true;\n\t\t}\n\t\tfor(i = 0; i < modules.length; i++) {\n\t\t\tvar item = modules[i];\n\t\t\t// skip already imported module\n\t\t\t// this implementation is not 100% perfect for weird media query combinations\n\t\t\t// when a module is imported multiple times with different media queries.\n\t\t\t// I hope this will never occur (Hey this way we have smaller bundles)\n\t\t\tif(typeof item[0] !== \"number\" || !alreadyImportedModules[item[0]]) {\n\t\t\t\tif(mediaQuery && !item[2]) {\n\t\t\t\t\titem[2] = mediaQuery;\n\t\t\t\t} else if(mediaQuery) {\n\t\t\t\t\titem[2] = \"(\" + item[2] + \") and (\" + mediaQuery + \")\";\n\t\t\t\t}\n\t\t\t\tlist.push(item);\n\t\t\t}\n\t\t}\n\t};\n\treturn list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n\tvar content = item[1] || '';\n\tvar cssMapping = item[3];\n\tif (!cssMapping) {\n\t\treturn content;\n\t}\n\n\tif (useSourceMap && typeof btoa === 'function') {\n\t\tvar sourceMapping = toComment(cssMapping);\n\t\tvar sourceURLs = cssMapping.sources.map(function (source) {\n\t\t\treturn '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'\n\t\t});\n\n\t\treturn [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n\t}\n\n\treturn [content].join('\\n');\n}\n\n// Adapted from convert-source-map (MIT)\nfunction toComment(sourceMap) {\n\t// eslint-disable-next-line no-undef\n\tvar base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n\tvar data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;\n\n\treturn '/*# ' + data + ' */';\n}\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/css-loader/lib/css-base.js\n// module id = 22\n// module chunks = 0","/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Tobias Koppers @sokra\n*/\n\nvar stylesInDom = {};\n\nvar\tmemoize = function (fn) {\n\tvar memo;\n\n\treturn function () {\n\t\tif (typeof memo === \"undefined\") memo = fn.apply(this, arguments);\n\t\treturn memo;\n\t};\n};\n\nvar isOldIE = memoize(function () {\n\t// Test for IE <= 9 as proposed by Browserhacks\n\t// @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805\n\t// Tests for existence of standard globals is to allow style-loader\n\t// to operate correctly into non-standard environments\n\t// @see https://github.com/webpack-contrib/style-loader/issues/177\n\treturn window && document && document.all && !window.atob;\n});\n\nvar getTarget = function (target) {\n return document.querySelector(target);\n};\n\nvar getElement = (function (fn) {\n\tvar memo = {};\n\n\treturn function(target) {\n // If passing function in options, then use it for resolve \"head\" element.\n // Useful for Shadow Root style i.e\n // {\n // insertInto: function () { return document.querySelector(\"#foo\").shadowRoot }\n // }\n if (typeof target === 'function') {\n return target();\n }\n if (typeof memo[target] === \"undefined\") {\n\t\t\tvar styleTarget = getTarget.call(this, target);\n\t\t\t// Special case to return head of iframe instead of iframe itself\n\t\t\tif (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n\t\t\t\ttry {\n\t\t\t\t\t// This will throw an exception if access to iframe is blocked\n\t\t\t\t\t// due to cross-origin restrictions\n\t\t\t\t\tstyleTarget = styleTarget.contentDocument.head;\n\t\t\t\t} catch(e) {\n\t\t\t\t\tstyleTarget = null;\n\t\t\t\t}\n\t\t\t}\n\t\t\tmemo[target] = styleTarget;\n\t\t}\n\t\treturn memo[target]\n\t};\n})();\n\nvar singleton = null;\nvar\tsingletonCounter = 0;\nvar\tstylesInsertedAtTop = [];\n\nvar\tfixUrls = require(\"./urls\");\n\nmodule.exports = function(list, options) {\n\tif (typeof DEBUG !== \"undefined\" && DEBUG) {\n\t\tif (typeof document !== \"object\") throw new Error(\"The style-loader cannot be used in a non-browser environment\");\n\t}\n\n\toptions = options || {};\n\n\toptions.attrs = typeof options.attrs === \"object\" ? options.attrs : {};\n\n\t// Force single-tag solution on IE6-9, which has a hard limit on the # of