@aj-shadow/actorjs-app 0.0.0-aj-beta.221
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +29 -0
- package/.vscode/launch.json +18 -0
- package/CHANGELOG.md +79 -0
- package/LICENSE.txt +96 -0
- package/README.md +86 -0
- package/contributors.txt +3 -0
- package/main.js +14 -0
- package/npm-post-install.js +618 -0
- package/npm-shrinkwrap.json +14 -0
- package/package.json +16 -0
- package/project/actorjs-project.tree +466 -0
- package/project/client/actions/action-actor-editor/action-actor-editor-file.js +101 -0
- package/project/client/actions/action-actor-editor/action-actor-editor-folder.js +41 -0
- package/project/client/actions/action-actor-editor/action-actor-editor-persistent-data.js +23 -0
- package/project/client/actions/action-actor-editor/action-actor-editor-project.js +23 -0
- package/project/client/actions/action-actor-editor/data-action-actor-editor-file.js +70 -0
- package/project/client/actions/action-actor-editor/data-action-actor-editor-folder.js +26 -0
- package/project/client/actions/action-actor-editor/data-action-actor-editor-project.js +27 -0
- package/project/client/actions/action-actor-editor/realtime-action-actors-editor.js +14 -0
- package/project/client/actions/action-addresses/action-addresses.js +180 -0
- package/project/client/actions/action-addresses/data-action-addresses.js +174 -0
- package/project/client/actions/action-console/action-console.js +11 -0
- package/project/client/actions/action-console/data-action-console.js +12 -0
- package/project/client/actions/action-content/action-content.js +101 -0
- package/project/client/actions/action-content/data-action-content.js +90 -0
- package/project/client/actions/action-function-under-test.js +45 -0
- package/project/client/actions/action-load/action-load.js +29 -0
- package/project/client/actions/action-load/data-action-load.js +4 -0
- package/project/client/actions/action-login/action-login.js +95 -0
- package/project/client/actions/action-login/data-action-login.js +83 -0
- package/project/client/actions/action-plugins/action-plugins.js +17 -0
- package/project/client/actions/action-plugins/data-action-plugins.js +20 -0
- package/project/client/actions/action-plus-services/action-plus-services.js +17 -0
- package/project/client/actions/action-plus-services/data-action-plus-services.js +20 -0
- package/project/client/actions/action-repos/action-repos.js +35 -0
- package/project/client/actions/action-repos/data-action-repos.js +42 -0
- package/project/client/actions/action-stack-editor/action-stack-editor-file.js +84 -0
- package/project/client/actions/action-stack-editor/action-stack-editor-folder.js +41 -0
- package/project/client/actions/action-stack-editor/action-stack-editor-persistent-data.js +23 -0
- package/project/client/actions/action-stack-editor/action-stack-editor-project.js +29 -0
- package/project/client/actions/action-stack-editor/data-action-stack-editor-file.js +49 -0
- package/project/client/actions/action-stack-editor/data-action-stack-editor-folder.js +26 -0
- package/project/client/actions/action-stack-editor/data-action-stack-editor-project.js +34 -0
- package/project/client/actions/action-sut-fut-filter.js +23 -0
- package/project/client/actions/action-system-under-test/action-system-under-test.js +164 -0
- package/project/client/actions/action-system-under-test/data-action-system-under-test.js +70 -0
- package/project/client/actions/action-test-case/action-test-case.js +323 -0
- package/project/client/actions/action-test-case/data-action-test-case.js +133 -0
- package/project/client/actions/action-test-case/realtime-action-test-case.js +69 -0
- package/project/client/actions/action-test-cases.js +49 -0
- package/project/client/actions/action-test-data/action-test-data.js +77 -0
- package/project/client/actions/action-test-data/data-action-test-data.js +62 -0
- package/project/client/actions/action-test-suite/action-test-suite.js +122 -0
- package/project/client/actions/action-test-suite/data-action-test-suite.js +76 -0
- package/project/client/actions/action-test-suite/realtime-action-test-suite.js +20 -0
- package/project/client/actions/action-test-suites.js +47 -0
- package/project/client/actor-default.js +18 -0
- package/project/client/communication/messages/messages-c-to-c/message-new-actor-index.js +15 -0
- package/project/client/communication/messages/messages-c-to-c/message-test-case-clear.js +15 -0
- package/project/client/communication/messages/messages-c-to-c/message-test-case-not-started.js +15 -0
- package/project/client/communication/messages/messages-c-to-c/message-test-suite-clear.js +15 -0
- package/project/client/components/footer/footer.jsx +94 -0
- package/project/client/components/header/header-status-login.jsx +78 -0
- package/project/client/components/header/header-status-staging-environment.jsx +132 -0
- package/project/client/components/header/header.jsx +27 -0
- package/project/client/components/header/header_icon.jsx +37 -0
- package/project/client/components/header/header_status.jsx +33 -0
- package/project/client/components/middle/abbreviation/middle-abbreviation-toolbar.jsx +126 -0
- package/project/client/components/middle/abbreviation/middle-abbreviation.jsx +27 -0
- package/project/client/components/middle/actor-editor/middle-actor-editor-sidebar.jsx +101 -0
- package/project/client/components/middle/actor-editor/middle-actor-editor-toolbar.jsx +612 -0
- package/project/client/components/middle/actor-editor/middle-actor-editor-view.jsx +157 -0
- package/project/client/components/middle/actor-editor/middle-actor-editor.jsx +38 -0
- package/project/client/components/middle/addresses/helpers/stage-filter.js +32 -0
- package/project/client/components/middle/addresses/middle-addresses-toolbar.jsx +183 -0
- package/project/client/components/middle/addresses/middle-addresses-view-client-address.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-client-interface.jsx +68 -0
- package/project/client/components/middle/addresses/middle-addresses-view-dns.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-dst.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-network-interface.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-ports.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-server-address.jsx +68 -0
- package/project/client/components/middle/addresses/middle-addresses-view-server-interface.jsx +68 -0
- package/project/client/components/middle/addresses/middle-addresses-view-src.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-srv.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-sut-address.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view-sut-interface.jsx +67 -0
- package/project/client/components/middle/addresses/middle-addresses-view.jsx +155 -0
- package/project/client/components/middle/addresses/middle-addresses.jsx +39 -0
- package/project/client/components/middle/content/middle-content-toolbar.jsx +135 -0
- package/project/client/components/middle/content/middle-content-view-audio.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-documents.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-image.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-other.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-text.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view-video.jsx +60 -0
- package/project/client/components/middle/content/middle-content-view.jsx +111 -0
- package/project/client/components/middle/content/middle-content.jsx +39 -0
- package/project/client/components/middle/middle-not-found.jsx +24 -0
- package/project/client/components/middle/middle-sut-fut-filter.jsx +90 -0
- package/project/client/components/middle/middle.jsx +90 -0
- package/project/client/components/middle/middle_sidebar.jsx +256 -0
- package/project/client/components/middle/plugins/middle-plugins.jsx +64 -0
- package/project/client/components/middle/plus-services/middle-plus-services.jsx +63 -0
- package/project/client/components/middle/repos/middle-repos-toolbar.jsx +137 -0
- package/project/client/components/middle/repos/middle-repos-view.jsx +47 -0
- package/project/client/components/middle/repos/middle-repos.jsx +36 -0
- package/project/client/components/middle/stack-editor/middle-stack-editor-sidebar.jsx +101 -0
- package/project/client/components/middle/stack-editor/middle-stack-editor-toolbar.jsx +525 -0
- package/project/client/components/middle/stack-editor/middle-stack-editor-view.jsx +156 -0
- package/project/client/components/middle/stack-editor/middle-stack-editor.jsx +38 -0
- package/project/client/components/middle/staging/helper.js +58 -0
- package/project/client/components/middle/staging/middle-staging-modal-interface-create.jsx +244 -0
- package/project/client/components/middle/staging/middle-staging-modal-interface-delete.jsx +186 -0
- package/project/client/components/middle/staging/middle-staging-toolbar.jsx +267 -0
- package/project/client/components/middle/staging/middle-staging-view.jsx +67 -0
- package/project/client/components/middle/staging/middle-staging.jsx +40 -0
- package/project/client/components/middle/staging/tabs/middle-staging-tab-logical.jsx +27 -0
- package/project/client/components/middle/staging/tabs/middle-staging-tab-report.jsx +62 -0
- package/project/client/components/middle/staging/tabs/middle-staging-tab-repos.jsx +96 -0
- package/project/client/components/middle/staging/tabs/middle-staging-tab-setup.jsx +73 -0
- package/project/client/components/middle/start/middle-start-toolbar.jsx +134 -0
- package/project/client/components/middle/start/middle-start-view.jsx +335 -0
- package/project/client/components/middle/start/middle-start.jsx +36 -0
- package/project/client/components/middle/system-under-test/middle-system-under-test-toolbar.jsx +171 -0
- package/project/client/components/middle/system-under-test/middle-system-under-test-view-multi.jsx +119 -0
- package/project/client/components/middle/system-under-test/middle-system-under-test-view-single.jsx +85 -0
- package/project/client/components/middle/system-under-test/middle-system-under-test.jsx +40 -0
- package/project/client/components/middle/system-under-test/tabs/middle-system-under-test-tab-instances.jsx +164 -0
- package/project/client/components/middle/system-under-test/tabs/middle-system-under-test-tab-nodes.jsx +160 -0
- package/project/client/components/middle/system-under-test/tabs/middle-system-under-test-tab-specification.jsx +463 -0
- package/project/client/components/middle/test-cases/general-helpers/actors-sorting.js +52 -0
- package/project/client/components/middle/test-cases/middle-test-cases-not-found.jsx +51 -0
- package/project/client/components/middle/test-cases/middle-test-cases-toolbar.jsx +804 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-columns.jsx +222 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-fut.jsx +105 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-recent.jsx +74 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-sut.jsx +98 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-tc.jsx +108 -0
- package/project/client/components/middle/test-cases/middle-test-cases-view-test-case.jsx +104 -0
- package/project/client/components/middle/test-cases/middle-test-cases.jsx +59 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-analyze.jsx +289 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-debug.jsx +699 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-definition.jsx +103 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-execution.jsx +321 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-log.jsx +150 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-sequence-diagram.jsx +160 -0
- package/project/client/components/middle/test-cases/tabs/middle-test-cases-tab-specification.jsx +472 -0
- package/project/client/components/middle/test-data/middle-test-data-toolbar.jsx +135 -0
- package/project/client/components/middle/test-data/middle-test-data-view-environment.jsx +64 -0
- package/project/client/components/middle/test-data/middle-test-data-view-general.jsx +61 -0
- package/project/client/components/middle/test-data/middle-test-data-view-output.jsx +60 -0
- package/project/client/components/middle/test-data/middle-test-data-view-system.jsx +61 -0
- package/project/client/components/middle/test-data/middle-test-data-view.jsx +98 -0
- package/project/client/components/middle/test-data/middle-test-data.jsx +39 -0
- package/project/client/components/middle/test-suites/middle-test-suites-toolbar.jsx +524 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-columns.jsx +222 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-fut.jsx +105 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-recent.jsx +74 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-sut.jsx +96 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-test-suite.jsx +593 -0
- package/project/client/components/middle/test-suites/middle-test-suites-view-ts.jsx +109 -0
- package/project/client/components/middle/test-suites/middle-test-suites.jsx +55 -0
- package/project/client/components/middle/test-suites/tabs/middle-test-suites-tab-definition.jsx +74 -0
- package/project/client/components/middle/test-suites/tabs/middle-test-suites-tab-execution.jsx +544 -0
- package/project/client/components/middle/test-suites/tabs/middle-test-suites-tab-log.jsx +118 -0
- package/project/client/components/middle/test-suites/tabs/middle-test-suites-tab-sequence-diagram.jsx +155 -0
- package/project/client/components/middle/user/middle-user-toolbar.jsx +32 -0
- package/project/client/components/middle/user/middle-user-view.jsx +32 -0
- package/project/client/components/middle/user/middle-user.jsx +39 -0
- package/project/client/components/middle/videos/middle-videos-view.jsx +135 -0
- package/project/client/components/middle/videos/middle-videos.jsx +32 -0
- package/project/client/css/components/component-video.css +15 -0
- package/project/client/css/components/modal-dialog-file.css +4 -0
- package/project/client/css/footer/footer-info.css +18 -0
- package/project/client/css/footer/footer-logo.css +39 -0
- package/project/client/css/from-code-editor/sidebar-dark.css +20 -0
- package/project/client/css/from-code-editor/sidebar-light.css +18 -0
- package/project/client/css/from-code-editor/tab.css +19 -0
- package/project/client/css/from-code-editor/tab_dark.css +9 -0
- package/project/client/css/from-code-editor/tab_light.css +9 -0
- package/project/client/css/from-code-editor/view-dark.css +11 -0
- package/project/client/css/from-code-editor/view-light.css +10 -0
- package/project/client/css/header/header-status.css +114 -0
- package/project/client/css/header/header.css +16 -0
- package/project/client/css/log-inner.css +46 -0
- package/project/client/css/main.css +4 -0
- package/project/client/css/middle/actor-editor.css +30 -0
- package/project/client/css/middle/address.css +57 -0
- package/project/client/css/middle/content.css +41 -0
- package/project/client/css/middle/login.css +118 -0
- package/project/client/css/middle/middle-start.css +5 -0
- package/project/client/css/middle/middle.css +13 -0
- package/project/client/css/middle/middle_sidebar.css +44 -0
- package/project/client/css/middle/middle_view.css +41 -0
- package/project/client/css/middle/stack-editor.css +30 -0
- package/project/client/css/middle/start/middle_start.css +94 -0
- package/project/client/css/middle/systems-under-test/systems-under-test-specification.css +48 -0
- package/project/client/css/middle/systems-under-test/systems-under-test.css +49 -0
- package/project/client/css/middle/test-case-and-test-suite/analyze.css +5 -0
- package/project/client/css/middle/test-case-and-test-suite/debug.css +281 -0
- package/project/client/css/middle/test-case-and-test-suite/execution.css +7 -0
- package/project/client/css/middle/test-case-and-test-suite/log.css +13 -0
- package/project/client/css/middle/test-case-and-test-suite/seq-dia.css +13 -0
- package/project/client/css/middle/test-cases/test-cases-analyze.css +9 -0
- package/project/client/css/middle/test-cases/test-cases-debug.css +61 -0
- package/project/client/css/middle/test-cases/test-cases-execution.css +4 -0
- package/project/client/css/middle/test-cases/test-cases-specification.css +82 -0
- package/project/client/css/middle/test-cases/test-cases.css +189 -0
- package/project/client/css/middle/test-data.css +52 -0
- package/project/client/css/middle/test-suites.css +525 -0
- package/project/client/css/middle/videos/videos.css +37 -0
- package/project/client/css/middle_test_cases_screen.css +8 -0
- package/project/client/css/middle_toolbar.css +10 -0
- package/project/client/css/repos.css +15 -0
- package/project/client/css/same_size_as_parent.css +6 -0
- package/project/client/css/test.css +116 -0
- package/project/client/html/index.html +61 -0
- package/project/client/main.jsx +59 -0
- package/project/client/stores/abbreviation-store.js +57 -0
- package/project/client/stores/actor-editor-store.js +758 -0
- package/project/client/stores/addresses-store.js +419 -0
- package/project/client/stores/console-store.js +27 -0
- package/project/client/stores/content-store.js +237 -0
- package/project/client/stores/documentation-store.js +14 -0
- package/project/client/stores/education-store.js +14 -0
- package/project/client/stores/filter-store.js +30 -0
- package/project/client/stores/function-under-test-store.js +58 -0
- package/project/client/stores/load-store.js +92 -0
- package/project/client/stores/login-store.js +232 -0
- package/project/client/stores/plugins-store.js +255 -0
- package/project/client/stores/plus-services-store.js +267 -0
- package/project/client/stores/repos-store.js +160 -0
- package/project/client/stores/stack-editor-store.js +691 -0
- package/project/client/stores/system-under-test-store.js +340 -0
- package/project/client/stores/test-case-store.js +1118 -0
- package/project/client/stores/test-cases-store.js +106 -0
- package/project/client/stores/test-data-store.js +181 -0
- package/project/client/stores/test-suite-store.js +438 -0
- package/project/client/stores/test-suites-store.js +86 -0
- package/project/client/stores/workshop-store.js +15 -0
- package/project/server/os/os-hardware.js +83 -0
- package/project/server/os/os-networks.js +50 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorBuild.js +185 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileDelete.js +21 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileGet.js +18 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileInlineGet.js +60 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileInlineUpdate.js +69 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileNew.js +396 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileRename.js +28 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFileUpdate.js +18 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFolderDelete.js +21 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFolderNew.js +19 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorFolderUpdate.js +19 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorProjectGet.js +77 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorProjectToggle.js +18 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorProjectUpdate.js +22 -0
- package/project/server/plugin-data/actor-editor/plugin_data_ActorEditorStacksGet.js +54 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesClientAddressGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesClientAddressUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesClientInterfaceGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesClientInterfaceUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesDnsGet.js +20 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesDnsUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesDstGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesDstUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesNetworkInterfaceGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesNetworkInterfaceUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesPortsGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesPortsUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesServerAddressGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesServerAddressUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesServerInterfaceGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesServerInterfaceUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSrcGet.js +38 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSrcUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSrvGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSrvUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSutAddressGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSutAddressUpdate.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSutInterfaceGet.js +19 -0
- package/project/server/plugin-data/addresses/plugin_data_AddressesSutInterfaceUpdate.js +19 -0
- package/project/server/plugin-data/console/plugin_data_ConsoleClear.js +20 -0
- package/project/server/plugin-data/content/plugin_data_ContentAudioGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentAudioUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentDocumentsGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentDocumentsUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentImageGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentImageUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentOtherGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentOtherUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentTextGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentTextUpdate.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentVideoGet.js +19 -0
- package/project/server/plugin-data/content/plugin_data_ContentVideoUpdate.js +19 -0
- package/project/server/plugin-data/function-under-test/plugin_data_FunctionUnderTestAdd.js +60 -0
- package/project/server/plugin-data/function-under-test/plugin_data_FunctionUnderTestDelete.js +20 -0
- package/project/server/plugin-data/function-under-test/plugin_data_FunctionUnderTestGet.js +92 -0
- package/project/server/plugin-data/login/plugin_data_LoginButtonsAdd.js +18 -0
- package/project/server/plugin-data/login/plugin_data_LoginButtonsGet.js +18 -0
- package/project/server/plugin-data/login/plugin_data_LoginButtonsUpdate.js +18 -0
- package/project/server/plugin-data/login/plugin_data_LoginCreateInterfaces.js +73 -0
- package/project/server/plugin-data/login/plugin_data_LoginDataGet.js +88 -0
- package/project/server/plugin-data/login/plugin_data_LoginDeleteInterfaces.js +38 -0
- package/project/server/plugin-data/login/plugin_data_LoginGet.js +22 -0
- package/project/server/plugin-data/login/plugin_data_LoginPing.js +72 -0
- package/project/server/plugin-data/login/plugin_data_LoginReposGet.js +18 -0
- package/project/server/plugin-data/login/plugin_data_LoginUpdate.js +44 -0
- package/project/server/plugin-data/login/plugin_data_LoginWsGet.js +39 -0
- package/project/server/plugin-data/plugins/plugin_data_PluginsBundleGet.js +34 -0
- package/project/server/plugin-data/plugins/plugin_data_PluginsGet.js +26 -0
- package/project/server/plugin-data/plus-services/plugin_data_PlusServicesBundleGet.js +34 -0
- package/project/server/plugin-data/plus-services/plugin_data_PlusServicesGet.js +78 -0
- package/project/server/plugin-data/repos/plugin_data_ReposAnalyzeLocalReposGet.js +142 -0
- package/project/server/plugin-data/repos/plugin_data_ReposClone.js +154 -0
- package/project/server/plugin-data/repos/plugin_data_ReposGet.js +18 -0
- package/project/server/plugin-data/repos/plugin_data_ReposVerifyGit.js +79 -0
- package/project/server/plugin-data/repos/repos.js +94 -0
- package/project/server/plugin-data/stack-editor/helpers/template.js +351 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorBuild.js +185 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileDelete.js +21 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileGet.js +18 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileNew.js +24 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileRename.js +27 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFileUpdate.js +18 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFolderDelete.js +21 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFolderNew.js +19 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorFolderUpdate.js +19 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorProjectGet.js +77 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorProjectToggle.js +18 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorProjectUpdate.js +22 -0
- package/project/server/plugin-data/stack-editor/plugin_data_StackEditorWizard.js +43 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestAdd.js +72 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestDelete.js +20 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestGet.js +138 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestInstancesUpdate.js +21 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestNodesUpdate.js +21 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestRepoAdd.js +46 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestRepoGet.js +57 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestSpecificationUpdate.js +21 -0
- package/project/server/plugin-data/system-under-test/plugin_data_SystemUnderTestUpdate.js +24 -0
- package/project/server/plugin-data/test-case/debug.js +39 -0
- package/project/server/plugin-data/test-case/debugger-api.js +398 -0
- package/project/server/plugin-data/test-case/debugger.js +129 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseActorsFileGet.js +26 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseAdd.js +74 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseAnalyze.js +451 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseButtonsAdd.js +19 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseButtonsGet.js +19 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseButtonsUpdate.js +19 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugBreakpointClear.js +56 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugBreakpointClearAll.js +23 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugBreakpointSet.js +118 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugBreakpointUpdate.js +84 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugGet.js +40 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugGetMembers.js +40 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugGetProperty.js +47 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugGetSource.js +29 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugLoad.js +35 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugRun.js +52 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugStart.js +217 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDebugStop.js +23 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseDelete.js +20 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseExecutionStart.js +73 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseGet.js +118 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseRecentDelete.js +57 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseRecentGet.js +20 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseRecentUpdate.js +62 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseRename.js +43 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseSpecificationUpdate.js +21 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseStacksGet.js +54 -0
- package/project/server/plugin-data/test-case/plugin_data_TestCaseUpdate.js +42 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataEnvironmentGet.js +72 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataEnvironmentUpdate.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataGeneralGet.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataGeneralUpdate.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataOutputGet.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataOutputUpdate.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataSystemGet.js +19 -0
- package/project/server/plugin-data/test-data/plugin_data_TestDataSystemUpdate.js +19 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteAdd.js +51 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteButtonsAdd.js +19 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteButtonsGet.js +18 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteButtonsUpdate.js +18 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteDelete.js +20 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteExecutionStart.js +401 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteGet.js +110 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteRecentDelete.js +54 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteRecentGet.js +18 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteRecentUpdate.js +59 -0
- package/project/server/plugin-data/test-suite/plugin_data_TestSuiteUpdate.js +42 -0
- package/project/server/plugin-service/platform-fs/plugin_service_Platform-Fs.js +65 -0
- package/project/server/plugin-service/platform-fs/verify-or-create-files.js +57 -0
- package/repos.json +19 -0
- package/server-test-case.js +50 -0
- package/settings - Copy (2).json +77 -0
- package/settings.json +63 -0
- package/workspace/Bundle-AppLayer-client.bld +77 -0
- package/workspace/Bundle-AppLayer-cs.bld +37 -0
- package/workspace/Client-AppLayer-client-jsx.bld +10 -0
- package/workspace/Client-AppLayer-client.bld +10 -0
- package/workspace/Client-AppLayer-cs.bld +10 -0
- package/workspace/Server-AppLayer-cs.bld +12 -0
- package/workspace/Server-AppLayer-server.bld +12 -0
- package/workspace/actorjs.wrk +336 -0
- package/workspace/clean-all.tsk +11 -0
- package/workspace/clean-build.tsk +8 -0
- package/workspace/clean-compiled.tsk +9 -0
- package/workspace/clean-dist.tsk +7 -0
- package/workspace/clean-generated.tsk +7 -0
- package/workspace/clean-node.tsk +7 -0
- package/workspace/clean-temp.tsk +7 -0
- package/workspace/client-css-actorjs-bundle.bld +10 -0
- package/workspace/list-debug.tsk +4 -0
- package/workspace/list-default.tsk +4 -0
- package/workspace/list-redebug.tsk +4 -0
- package/workspace/list-release.tsk +4 -0
- package/workspace/list-rerelease.tsk +4 -0
- package/workspace/list-start.tsk +4 -0
- package/workspace/server-html-rc.bld +10 -0
- package/workspace/server-image-actorjs-rc.bld +9 -0
- package/workspace/simple-help.tsk +5 -0
- package/workspace/simple-help.txt +39 -0
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import AddressesStore from '../../../stores/addresses-store';
|
|
5
|
+
import LoginStore from '../../../stores/login-store';
|
|
6
|
+
import MiddleAddressesViewSrc from './middle-addresses-view-src';
|
|
7
|
+
import MiddleAddressesViewDst from './middle-addresses-view-dst';
|
|
8
|
+
import MiddleAddressesViewSrv from './middle-addresses-view-srv';
|
|
9
|
+
import MiddleAddressesViewClientAddress from './middle-addresses-view-client-address';
|
|
10
|
+
import MiddleAddressesViewSutAddress from './middle-addresses-view-sut-address';
|
|
11
|
+
import MiddleAddressesViewServerAddress from './middle-addresses-view-server-address';
|
|
12
|
+
import MiddleAddressesViewClientInterface from './middle-addresses-view-client-interface';
|
|
13
|
+
import MiddleAddressesViewSutInterface from './middle-addresses-view-sut-interface';
|
|
14
|
+
import MiddleAddressesViewServerInterface from './middle-addresses-view-server-interface';
|
|
15
|
+
import MiddleAddressesViewNetworkInterface from './middle-addresses-view-network-interface';
|
|
16
|
+
import MiddleAddressesViewPorts from './middle-addresses-view-ports';
|
|
17
|
+
import MiddleAddressesViewDns from './middle-addresses-view-dns';
|
|
18
|
+
import { ActionAddressesSrcGet, ActionAddressesDstGet, ActionAddressesSrvGet, ActionAddressesClientAddressGet, ActionAddressesSutAddressGet, ActionAddressesServerAddressGet, ActionAddressesClientInterfaceGet, ActionAddressesSutInterfaceGet, ActionAddressesServerInterfaceGet, ActionAddressesNetworkInterfaceGet, ActionAddressesPortsGet, ActionAddressesDnsGet, ActionAddressesMarkupCancel } from '../../../actions/action-addresses/action-addresses';
|
|
19
|
+
import Tabs from 'z-abs-complayer-bootstrap-client/client/tabs';
|
|
20
|
+
import Tab from 'z-abs-complayer-bootstrap-client/client/tab';
|
|
21
|
+
import {RouterContext} from 'z-abs-complayer-router-client/client/react-component/router-context';
|
|
22
|
+
import HelperTab from 'z-abs-corelayer-client/client/components/helper-tab';
|
|
23
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
24
|
+
import React from 'react';
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
export default class MiddleAddressesViewAddresses extends ReactComponentStore {
|
|
28
|
+
constructor(props) {
|
|
29
|
+
super(props, [AddressesStore, LoginStore], {
|
|
30
|
+
activeKey: 0
|
|
31
|
+
});
|
|
32
|
+
this.helperTab = new HelperTab(['Src', 'Dst', 'Srv', 'Client-address', 'Sut-address', 'Server-address', 'Client-interface', 'Sut-interface', 'Server-interface', 'Network-interface', 'Ports', 'Dns']);
|
|
33
|
+
this.state.activeKey = this.helperTab.getIndex(props.tab);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
didMount() {
|
|
37
|
+
this._getData(this.state.activeKey);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
shouldUpdate(nextProps, nextState) {
|
|
41
|
+
return !this.shallowCompare(this.props.tab, nextProps.tab)
|
|
42
|
+
|| !this.shallowCompare(this.state.activeKey, nextState.activeKey)
|
|
43
|
+
|| !this.shallowCompare(this.state.AddressesStore.markup.definition, nextState.AddressesStore.markup.definition)
|
|
44
|
+
|| !this.shallowCompare(this.state.LoginStore.login, nextState.LoginStore.login);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
didUpdate(prevProps) {
|
|
48
|
+
const nextKey = this.helperTab.getIndex(this.props.tab);
|
|
49
|
+
if(this.state.activeKey !== nextKey) {
|
|
50
|
+
this.updateState({activeKey: {$set: nextKey}});
|
|
51
|
+
this._getData(nextKey);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
render() {
|
|
56
|
+
let index = 0;
|
|
57
|
+
return (
|
|
58
|
+
<div className="same_size_as_parent">
|
|
59
|
+
<div className="address_tabs">
|
|
60
|
+
<Tabs id="address_tabs" activeKey={this.state.activeKey}
|
|
61
|
+
onSelect={(key) => {
|
|
62
|
+
if(undefined !== key && this.state.activeKey !== key) {
|
|
63
|
+
if(this.state.AddressesStore.markup.definition) {
|
|
64
|
+
// TODO: Ask if we really want to leve markup.
|
|
65
|
+
this.dispatch(AddressesStore, new ActionAddressesMarkupCancel());
|
|
66
|
+
}
|
|
67
|
+
this.context.history(`${this.helperTab.getRoute(key)}`, {replace: true});
|
|
68
|
+
}
|
|
69
|
+
}}
|
|
70
|
+
>
|
|
71
|
+
<Tab id="addresses_src_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
72
|
+
<MiddleAddressesViewSrc stage={this.state.LoginStore.login} />
|
|
73
|
+
</Tab>
|
|
74
|
+
<Tab id="addresses_dst_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
75
|
+
<MiddleAddressesViewDst stage={this.state.LoginStore.login} />
|
|
76
|
+
</Tab>
|
|
77
|
+
<Tab id="addresses_srv_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
78
|
+
<MiddleAddressesViewSrv stage={this.state.LoginStore.login} />
|
|
79
|
+
</Tab>
|
|
80
|
+
<Tab id="addresses_client_address_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
81
|
+
<MiddleAddressesViewClientAddress stage={this.state.LoginStore.login} />
|
|
82
|
+
</Tab>
|
|
83
|
+
<Tab id="addresses_sut_address_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
84
|
+
<MiddleAddressesViewSutAddress stage={this.state.LoginStore.login} />
|
|
85
|
+
</Tab>
|
|
86
|
+
<Tab id="addresses_server_address_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
87
|
+
<MiddleAddressesViewServerAddress stage={this.state.LoginStore.login} />
|
|
88
|
+
</Tab>
|
|
89
|
+
<Tab id="addresses_client_interface_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
90
|
+
<MiddleAddressesViewClientInterface stage={this.state.LoginStore.login} />
|
|
91
|
+
</Tab>
|
|
92
|
+
<Tab id="addresses_sut_interface_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
93
|
+
<MiddleAddressesViewSutInterface stage={this.state.LoginStore.login} />
|
|
94
|
+
</Tab>
|
|
95
|
+
<Tab id="addresses_server_interface_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
96
|
+
<MiddleAddressesViewServerInterface stage={this.state.LoginStore.login} />
|
|
97
|
+
</Tab>
|
|
98
|
+
<Tab id="addresses_network_interface_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
99
|
+
<MiddleAddressesViewNetworkInterface stage={this.state.LoginStore.login} />
|
|
100
|
+
</Tab>
|
|
101
|
+
<Tab id="addresses_ports_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
102
|
+
<MiddleAddressesViewPorts stage={this.state.LoginStore.login} />
|
|
103
|
+
</Tab>
|
|
104
|
+
<Tab id="addresses_dns_tab" tab={`${this.helperTab.getRoute(index)}`} title={this.helperTab.getTabName(index++)}>
|
|
105
|
+
<MiddleAddressesViewDns stage={this.state.LoginStore.login} />
|
|
106
|
+
</Tab>
|
|
107
|
+
</Tabs>
|
|
108
|
+
</div>
|
|
109
|
+
</div>
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
_getData(key) {
|
|
114
|
+
let tabName = this.helperTab.getTabName(key);
|
|
115
|
+
if('Src' === tabName) {
|
|
116
|
+
this.dispatch(AddressesStore, new ActionAddressesSrcGet());
|
|
117
|
+
}
|
|
118
|
+
else if('Dst' === tabName) {
|
|
119
|
+
this.dispatch(AddressesStore, new ActionAddressesDstGet());
|
|
120
|
+
}
|
|
121
|
+
else if('Srv' === tabName) {
|
|
122
|
+
this.dispatch(AddressesStore, new ActionAddressesSrvGet());
|
|
123
|
+
}
|
|
124
|
+
else if('Client-address' === tabName) {
|
|
125
|
+
this.dispatch(AddressesStore, new ActionAddressesClientAddressGet());
|
|
126
|
+
}
|
|
127
|
+
else if('Sut-address' === tabName) {
|
|
128
|
+
this.dispatch(AddressesStore, new ActionAddressesSutAddressGet());
|
|
129
|
+
}
|
|
130
|
+
else if('Server-address' === tabName) {
|
|
131
|
+
this.dispatch(AddressesStore, new ActionAddressesServerAddressGet());
|
|
132
|
+
}
|
|
133
|
+
else if('Client-interface' === tabName) {
|
|
134
|
+
this.dispatch(AddressesStore, new ActionAddressesClientInterfaceGet());
|
|
135
|
+
}
|
|
136
|
+
else if('Sut-interface' === tabName) {
|
|
137
|
+
this.dispatch(AddressesStore, new ActionAddressesSutInterfaceGet());
|
|
138
|
+
}
|
|
139
|
+
else if('Server-interface' === tabName) {
|
|
140
|
+
this.dispatch(AddressesStore, new ActionAddressesServerInterfaceGet());
|
|
141
|
+
}
|
|
142
|
+
else if('Network-interface' === tabName) {
|
|
143
|
+
this.dispatch(AddressesStore, new ActionAddressesNetworkInterfaceGet());
|
|
144
|
+
}
|
|
145
|
+
else if('Ports' === tabName) {
|
|
146
|
+
this.dispatch(AddressesStore, new ActionAddressesPortsGet());
|
|
147
|
+
}
|
|
148
|
+
else if('Dns' === tabName) {
|
|
149
|
+
this.dispatch(AddressesStore, new ActionAddressesDnsGet());
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
MiddleAddressesViewAddresses.contextType = RouterContext;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import MiddleAddressesToolbar from './middle-addresses-toolbar';
|
|
5
|
+
import MiddleSidebar from '../middle_sidebar';
|
|
6
|
+
import MiddleAddressesView from './middle-addresses-view';
|
|
7
|
+
import Route from 'z-abs-complayer-router-client/client/react-component/route';
|
|
8
|
+
import ReactComponentBase from 'z-abs-corelayer-client/client/react-component/react-component-base';
|
|
9
|
+
import React from 'react';
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
export default class MiddleAddresses extends ReactComponentBase {
|
|
13
|
+
constructor(props) {
|
|
14
|
+
super(props);
|
|
15
|
+
this.setTitle(() => {
|
|
16
|
+
return {
|
|
17
|
+
isPath: this.props._uriPath,
|
|
18
|
+
text: this.props._uriPath ? this.props._uriPath : 'Addresses',
|
|
19
|
+
prefix: 'ADDR: '
|
|
20
|
+
};
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
shouldUpdate(nextProps, nextState) {
|
|
25
|
+
return !this.shallowCompare(this.props._uriPath, nextProps._uriPath);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
render() {
|
|
29
|
+
return (
|
|
30
|
+
<div className="middle">
|
|
31
|
+
<MiddleAddressesToolbar />
|
|
32
|
+
<MiddleSidebar />
|
|
33
|
+
<div className="middle_view middle_view_address">
|
|
34
|
+
<Route switch="/:tab" handler={MiddleAddressesView} />
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
7
|
+
import ButtonNew from 'z-abs-complayer-bootstrap-client/client/button-new';
|
|
8
|
+
import ContentStore from '../../../stores/content-store';
|
|
9
|
+
import { ActionContentMarkup, ActionContentMarkupSave, ActionContentMarkupCancel } from '../../../actions/action-content/action-content';
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
export default class MiddleContentToolbar extends ReactComponentStore {
|
|
13
|
+
constructor(props) {
|
|
14
|
+
super(props, [ContentStore]);
|
|
15
|
+
this.boundKeyDown = this._keyDown.bind(this);
|
|
16
|
+
this.markupDisabledOpen = false;
|
|
17
|
+
this.markupDisabledSave = true;
|
|
18
|
+
this.markupDisabledHelp = false;
|
|
19
|
+
this.markupDisabledCancel = true;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
didMount() {
|
|
23
|
+
window.addEventListener('keydown', this.boundKeyDown, true);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
shouldUpdate(nextProps, nextState) {
|
|
27
|
+
return !this.shallowCompare(this.state.ContentStore.markup, nextState.ContentStore.markup);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
willUnmount() {
|
|
31
|
+
window.removeEventListener('keydown', this.boundKeyDown, true);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
_markupOpen() {
|
|
35
|
+
this.dispatch(ContentStore, new ActionContentMarkup());
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
_markupSave() {
|
|
39
|
+
this.dispatch(ContentStore, new ActionContentMarkupSave());
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
_markupHelp() {
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
_markupCancel() {
|
|
47
|
+
this.dispatch(ContentStore, new ActionContentMarkupCancel());
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
_keyDown(e) {
|
|
51
|
+
if(e.ctrlKey && 'o' === e.key) {
|
|
52
|
+
if(!this.markupDisabledOpen) {
|
|
53
|
+
e.preventDefault();
|
|
54
|
+
this._markupOpen();
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
else if(e.ctrlKey && e.shiftKey && '?' === e.key) {
|
|
58
|
+
if(!this.markupDisabledHelp) {
|
|
59
|
+
e.preventDefault();
|
|
60
|
+
this._markupHelp();
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
else if(e.ctrlKey && e.shiftKey && 'C' === e.key) {
|
|
64
|
+
if(!this.markupDisabledCancel) {
|
|
65
|
+
e.preventDefault();
|
|
66
|
+
this._markupCancel();
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
else if(e.ctrlKey && 's' === e.key) {
|
|
70
|
+
if(!this.markupDisabledSave) {
|
|
71
|
+
e.preventDefault();
|
|
72
|
+
this._markupSave();
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
renderMarkupOpenButton() {
|
|
78
|
+
this.markupDisabledOpen = this.state.ContentStore.markup.definition;
|
|
79
|
+
return (
|
|
80
|
+
<ButtonNew id="content_markup_open" icon="icon-markup-open" size="aj_btn_sm" colorMark="markup_color" placement="bottom" heading="Open" content="Markup" shortcut="Ctrl+O" disabled={this.markupDisabledOpen}
|
|
81
|
+
onClick={(e) => {
|
|
82
|
+
this._markupOpen();
|
|
83
|
+
}}
|
|
84
|
+
/>
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
renderMarkupSaveButton() {
|
|
89
|
+
this.markupDisabledSave = this.state.ContentStore.markup.content === this.state.ContentStore.markup.contentOriginal;
|
|
90
|
+
return (
|
|
91
|
+
<ButtonNew id="content_markup_save" icon="icon-markup-save" size="aj_btn_sm" colorMark="markup_color" placement="bottom" heading="Save" content="Markup" shortcut="Ctrl+S" disabled={this.markupDisabledSave}
|
|
92
|
+
onClick={(e) => {
|
|
93
|
+
this._markupSave();
|
|
94
|
+
}}
|
|
95
|
+
/>
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
renderMarkupHelpButton() {
|
|
100
|
+
this.markupDisabledHelp = this.state.ContentStore.markup.definition;
|
|
101
|
+
return (
|
|
102
|
+
<ButtonNew id="content_markup_help" icon="icon-markup-help" size="aj_btn_sm" colorMark="markup_color" placement="bottom" heading="Help" content="Markup" shortcut="Ctrl+?" shortcut="Ctrl+Shift+C" disabled={this.markupDisabledHelp}
|
|
103
|
+
onClick={(e) => {
|
|
104
|
+
this._markupHelp();
|
|
105
|
+
}}
|
|
106
|
+
/>
|
|
107
|
+
);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
renderMarkupCancelButton() {
|
|
111
|
+
this.markupDisabledCancel = !this.state.ContentStore.markup.definition;
|
|
112
|
+
return (
|
|
113
|
+
<ButtonNew id="content_markup_cancel" icon="icon-markup-close" size="aj_btn_sm" colorMark="markup_color" placement="bottom" heading="Cancel" content="Markup" shortcut="Ctrl+Shift+C" disabled={this.markupDisabledCancel}
|
|
114
|
+
onClick={(e) => {
|
|
115
|
+
this._markupCancel();
|
|
116
|
+
}}
|
|
117
|
+
/>
|
|
118
|
+
);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
render() {
|
|
122
|
+
return (
|
|
123
|
+
<div className="middle_toolbar">
|
|
124
|
+
<div className="toolbar" role="toolbar" aria-label="...">
|
|
125
|
+
<div className="aj_btn_group" role="group" aria-label="...">
|
|
126
|
+
{this.renderMarkupOpenButton()}
|
|
127
|
+
{this.renderMarkupSaveButton()}
|
|
128
|
+
{this.renderMarkupHelpButton()}
|
|
129
|
+
{this.renderMarkupCancelButton()}
|
|
130
|
+
</div>
|
|
131
|
+
</div>
|
|
132
|
+
</div>
|
|
133
|
+
);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import ContentStore from '../../../stores/content-store';
|
|
5
|
+
import { ActionContentMarkupChange } from '../../../actions/action-content/action-content';
|
|
6
|
+
import ComponentMarkedTextarea from 'z-abs-complayer-bootstrap-client/client/marked-textarea';
|
|
7
|
+
import DataContentAudioGlobal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-audio-global';
|
|
8
|
+
import DataContentAudioLocal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-audio-local';
|
|
9
|
+
import ComponentTableDataTable from 'z-abs-complayer-markup-client/client/react-components/markup/component-table-data-table';
|
|
10
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
11
|
+
import React from 'react';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export default class MiddleContentViewAudio extends ReactComponentStore {
|
|
15
|
+
constructor(props) {
|
|
16
|
+
super(props, [ContentStore]);
|
|
17
|
+
this.dataContentAudioGlobal = new DataContentAudioGlobal();
|
|
18
|
+
this.dataContentAudioLocal = new DataContentAudioLocal();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
shouldUpdate(nextProps, nextState) {
|
|
22
|
+
return 'audio' === nextState.ContentStore.currentView
|
|
23
|
+
&& (
|
|
24
|
+
!this.shallowCompare(this.state.ContentStore.markup, nextState.ContentStore.markup)
|
|
25
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentAudioLocals, nextState.ContentStore.contentAudioLocals)
|
|
26
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentAudioGlobals, nextState.ContentStore.contentAudioGlobals)
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
renderMarkup() {
|
|
31
|
+
return (
|
|
32
|
+
<div className="content_group">
|
|
33
|
+
<label htmlFor="content_audio_markup_textarea">Content - Markup</label>
|
|
34
|
+
<ComponentMarkedTextarea id="content_audio_markup_textarea" className="form-control content_definition same_size_as_parent" rows="10" value={this.state.ContentStore.markup.content} results={this.state.ContentStore.markup.rows}
|
|
35
|
+
onChange={(value) => {
|
|
36
|
+
this.dispatch(ContentStore, new ActionContentMarkupChange(value));
|
|
37
|
+
}}
|
|
38
|
+
/>
|
|
39
|
+
</div>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
render() {
|
|
44
|
+
if(this.state.ContentStore.markup.definition) {
|
|
45
|
+
return (
|
|
46
|
+
<div className="content_tab_view">
|
|
47
|
+
{this.renderMarkup()}
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
return (
|
|
53
|
+
<div className="content_tab_view">
|
|
54
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_local" classHeading="markup_table_local_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentAudioLocal} values={this.state.ContentStore.contentAudioLocals}/>
|
|
55
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_global" classHeading="markup_table_global_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentAudioGlobal} values={this.state.ContentStore.contentAudioGlobals}/>
|
|
56
|
+
</div>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import ContentStore from '../../../stores/content-store';
|
|
5
|
+
import { ActionContentMarkupChange } from '../../../actions/action-content/action-content';
|
|
6
|
+
import ComponentMarkedTextarea from 'z-abs-complayer-bootstrap-client/client/marked-textarea';
|
|
7
|
+
import DataContentDocumentsGlobal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-documents-global';
|
|
8
|
+
import DataContentDocumentsLocal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-documents-local';
|
|
9
|
+
import ComponentTableDataTable from 'z-abs-complayer-markup-client/client/react-components/markup/component-table-data-table';
|
|
10
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
11
|
+
import React from 'react';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export default class MiddleContentViewDocuments extends ReactComponentStore {
|
|
15
|
+
constructor(props) {
|
|
16
|
+
super(props, [ContentStore]);
|
|
17
|
+
this.dataContentDocumentsGlobal = new DataContentDocumentsGlobal();
|
|
18
|
+
this.dataContentDocumentsLocal = new DataContentDocumentsLocal();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
shouldUpdate(nextProps, nextState) {
|
|
22
|
+
return 'documents' === nextState.ContentStore.currentView
|
|
23
|
+
&& (
|
|
24
|
+
!this.shallowCompare(this.state.ContentStore.markup, nextState.ContentStore.markup)
|
|
25
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentDocumentsLocals, nextState.ContentStore.contentDocumentsLocals)
|
|
26
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentDocumentsGlobals, nextState.ContentStore.contentDocumentsGlobals)
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
renderMarkup() {
|
|
31
|
+
return (
|
|
32
|
+
<div className="content_group">
|
|
33
|
+
<label htmlFor="content_documents_markup_textarea">Content - Markup</label>
|
|
34
|
+
<ComponentMarkedTextarea id="content_documents_markup_textarea" className="form-control content_definition same_size_as_parent" rows="10" value={this.state.ContentStore.markup.content} results={this.state.ContentStore.markup.rows}
|
|
35
|
+
onChange={(value) => {
|
|
36
|
+
this.dispatch(ContentStore, new ActionContentMarkupChange(value));
|
|
37
|
+
}}
|
|
38
|
+
/>
|
|
39
|
+
</div>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
render() {
|
|
44
|
+
if(this.state.ContentStore.markup.definition) {
|
|
45
|
+
return (
|
|
46
|
+
<div className="content_tab_view">
|
|
47
|
+
{this.renderMarkup()}
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
return (
|
|
53
|
+
<div className="content_tab_view">
|
|
54
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_local" classHeading="markup_table_local_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentDocumentsLocal} values={this.state.ContentStore.contentDocumentsLocals}/>
|
|
55
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_global" classHeading="markup_table_global_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentDocumentsGlobal} values={this.state.ContentStore.contentDocumentsGlobals}/>
|
|
56
|
+
</div>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import ContentStore from '../../../stores/content-store';
|
|
5
|
+
import { ActionContentMarkupChange } from '../../../actions/action-content/action-content';
|
|
6
|
+
import ComponentMarkedTextarea from 'z-abs-complayer-bootstrap-client/client/marked-textarea';
|
|
7
|
+
import DataContentImageGlobal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-image-global';
|
|
8
|
+
import DataContentImageLocal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-image-local';
|
|
9
|
+
import ComponentTableDataTable from 'z-abs-complayer-markup-client/client/react-components/markup/component-table-data-table';
|
|
10
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
11
|
+
import React from 'react';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export default class MiddleContentViewImage extends ReactComponentStore {
|
|
15
|
+
constructor(props) {
|
|
16
|
+
super(props, [ContentStore]);
|
|
17
|
+
this.dataContentImageGlobal = new DataContentImageGlobal();
|
|
18
|
+
this.dataContentImageLocal = new DataContentImageLocal();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
shouldUpdate(nextProps, nextState) {
|
|
22
|
+
return 'image' === nextState.ContentStore.currentView
|
|
23
|
+
&& (
|
|
24
|
+
!this.shallowCompare(this.state.ContentStore.markup, nextState.ContentStore.markup)
|
|
25
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentImageLocals, nextState.ContentStore.contentImageLocals)
|
|
26
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentImageGlobals, nextState.ContentStore.contentImageGlobals)
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
renderMarkup() {
|
|
31
|
+
return (
|
|
32
|
+
<div className="content_group">
|
|
33
|
+
<label htmlFor="content_image_markup_textarea">Content - Markup</label>
|
|
34
|
+
<ComponentMarkedTextarea id="content_image_markup_textarea" className="form-control content_definition same_size_as_parent" rows="10" value={this.state.ContentStore.markup.content} results={this.state.ContentStore.markup.rows}
|
|
35
|
+
onChange={(value) => {
|
|
36
|
+
this.dispatch(ContentStore, new ActionContentMarkupChange(value));
|
|
37
|
+
}}
|
|
38
|
+
/>
|
|
39
|
+
</div>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
render() {
|
|
44
|
+
if(this.state.ContentStore.markup.definition) {
|
|
45
|
+
return (
|
|
46
|
+
<div className="content_tab_view">
|
|
47
|
+
{this.renderMarkup()}
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
return (
|
|
53
|
+
<div className="content_tab_view">
|
|
54
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_local" classHeading="markup_table_local_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentImageLocal} values={this.state.ContentStore.contentImageLocals}/>
|
|
55
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_global" classHeading="markup_table_global_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentImageGlobal} values={this.state.ContentStore.contentImageGlobals}/>
|
|
56
|
+
</div>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import ContentStore from '../../../stores/content-store';
|
|
5
|
+
import { ActionContentMarkupChange } from '../../../actions/action-content/action-content';
|
|
6
|
+
import ComponentMarkedTextarea from 'z-abs-complayer-bootstrap-client/client/marked-textarea';
|
|
7
|
+
import DataContentOtherGlobal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-other-global';
|
|
8
|
+
import DataContentOtherLocal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-other-local';
|
|
9
|
+
import ComponentTableDataTable from 'z-abs-complayer-markup-client/client/react-components/markup/component-table-data-table';
|
|
10
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
11
|
+
import React from 'react';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export default class MiddleContentViewOther extends ReactComponentStore {
|
|
15
|
+
constructor(props) {
|
|
16
|
+
super(props, [ContentStore]);
|
|
17
|
+
this.dataContentOtherGlobal = new DataContentOtherGlobal();
|
|
18
|
+
this.dataContentOtherLocal = new DataContentOtherLocal();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
shouldUpdate(nextProps, nextState) {
|
|
22
|
+
return 'other' === nextState.ContentStore.currentView
|
|
23
|
+
&& (
|
|
24
|
+
!this.shallowCompare(this.state.ContentStore.markup, nextState.ContentStore.markup)
|
|
25
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentOtherLocals, nextState.ContentStore.contentOtherLocals)
|
|
26
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentOtherGlobals, nextState.ContentStore.contentOtherGlobals)
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
renderMarkup() {
|
|
31
|
+
return (
|
|
32
|
+
<div className="content_group">
|
|
33
|
+
<label htmlFor="content_other_markup_textarea">Content - Markup</label>
|
|
34
|
+
<ComponentMarkedTextarea id="content_other_markup_textarea" className="form-control content_definition same_size_as_parent" rows="10" value={this.state.ContentStore.markup.content} results={this.state.ContentStore.markup.rows}
|
|
35
|
+
onChange={(value) => {
|
|
36
|
+
this.dispatch(ContentStore, new ActionContentMarkupChange(value));
|
|
37
|
+
}}
|
|
38
|
+
/>
|
|
39
|
+
</div>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
render() {
|
|
44
|
+
if(this.state.ContentStore.markup.definition) {
|
|
45
|
+
return (
|
|
46
|
+
<div className="content_tab_view">
|
|
47
|
+
{this.renderMarkup()}
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
return (
|
|
53
|
+
<div className="content_tab_view">
|
|
54
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_local" classHeading="markup_table_local_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentOtherLocal} values={this.state.ContentStore.contentOtherLocals}/>
|
|
55
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_global" classHeading="markup_table_global_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentOtherGlobal} values={this.state.ContentStore.contentOtherGlobals}/>
|
|
56
|
+
</div>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import ContentStore from '../../../stores/content-store';
|
|
5
|
+
import { ActionContentMarkupChange } from '../../../actions/action-content/action-content';
|
|
6
|
+
import ComponentMarkedTextarea from 'z-abs-complayer-bootstrap-client/client/marked-textarea';
|
|
7
|
+
import DataContentTextGlobal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-text-global';
|
|
8
|
+
import DataContentTextLocal from 'z-abs-complayer-markup-client/client/data/data-content/data-content-text-local';
|
|
9
|
+
import ComponentTableDataTable from 'z-abs-complayer-markup-client/client/react-components/markup/component-table-data-table';
|
|
10
|
+
import ReactComponentStore from 'z-abs-corelayer-client/client/react-component/react-component-store';
|
|
11
|
+
import React from 'react';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export default class MiddleContentViewText extends ReactComponentStore {
|
|
15
|
+
constructor(props) {
|
|
16
|
+
super(props, [ContentStore]);
|
|
17
|
+
this.dataContentTextGlobal = new DataContentTextGlobal();
|
|
18
|
+
this.dataContentTextLocal = new DataContentTextLocal();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
shouldUpdate(nextProps, nextState) {
|
|
22
|
+
return 'text' === nextState.ContentStore.currentView
|
|
23
|
+
&& (
|
|
24
|
+
!this.shallowCompare(this.state.ContentStore.markup, nextState.ContentStore.markup)
|
|
25
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentTextLocals, nextState.ContentStore.contentTextLocals)
|
|
26
|
+
|| !this.shallowCompareArrayValues(this.state.ContentStore.contentTextGlobals, nextState.ContentStore.contentTextGlobals)
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
renderMarkup() {
|
|
31
|
+
return (
|
|
32
|
+
<div className="content_group">
|
|
33
|
+
<label htmlFor="content_text_markup_textarea">Content - Markup</label>
|
|
34
|
+
<ComponentMarkedTextarea id="content_text_markup_textarea" className="form-control content_definition same_size_as_parent" rows="10" value={this.state.ContentStore.markup.content} results={this.state.ContentStore.markup.rows}
|
|
35
|
+
onChange={(value) => {
|
|
36
|
+
this.dispatch(ContentStore, new ActionContentMarkupChange(value));
|
|
37
|
+
}}
|
|
38
|
+
/>
|
|
39
|
+
</div>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
render() {
|
|
44
|
+
if(this.state.ContentStore.markup.definition) {
|
|
45
|
+
return (
|
|
46
|
+
<div className="content_tab_view">
|
|
47
|
+
{this.renderMarkup()}
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
return (
|
|
53
|
+
<div className="content_tab_view">
|
|
54
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_local" classHeading="markup_table_local_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentTextLocal} values={this.state.ContentStore.contentTextLocals}/>
|
|
55
|
+
<ComponentTableDataTable classTable="markup_table_fit_content markup_table_global" classHeading="markup_table_global_table_heading" classRow="test_data_table" showAlways dataTable={this.dataContentTextGlobal} values={this.state.ContentStore.contentTextGlobals}/>
|
|
56
|
+
</div>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|