@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,419 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import LoginStore from './login-store';
|
|
5
|
+
import { ActionLoginDataChanged } from '../actions/action-login/action-login';
|
|
6
|
+
import { DataActionAddressesSrcGet, DataActionAddressesSrcUpdate, DataActionAddressesDstGet, DataActionAddressesDstUpdate, DataActionAddressesSrvGet, DataActionAddressesSrvUpdate, DataActionAddressesClientAddressGet, DataActionAddressesClientAddressUpdate, DataActionAddressesSutAddressGet, DataActionAddressesSutAddressUpdate, DataActionAddressesServerAddressGet, DataActionAddressesServerAddressUpdate, DataActionAddressesClientInterfaceGet, DataActionAddressesClientInterfaceUpdate, DataActionAddressesSutInterfaceGet, DataActionAddressesSutInterfaceUpdate, DataActionAddressesServerInterfaceGet, DataActionAddressesServerInterfaceUpdate, DataActionAddressesNetworkInterfaceGet, DataActionAddressesNetworkInterfaceUpdate, DataActionAddressesPortsGet, DataActionAddressesPortsUpdate, DataActionAddressesDnsGet, DataActionAddressesDnsUpdate } from '../actions/action-addresses/data-action-addresses';
|
|
7
|
+
import MarkupAddressesSrc from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-src';
|
|
8
|
+
import MarkupAddressesDst from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-dst';
|
|
9
|
+
import MarkupAddressesSrv from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-srv';
|
|
10
|
+
import MarkupAddressesClientAddress from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-client-address';
|
|
11
|
+
import MarkupAddressesSutAddress from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-sut-address';
|
|
12
|
+
import MarkupAddressesServerAddress from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-server-address';
|
|
13
|
+
import MarkupAddressesClientInterface from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-client-interface';
|
|
14
|
+
import MarkupAddressesSutInterface from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-sut-interface';
|
|
15
|
+
import MarkupAddressesServerInterface from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-server-interface';
|
|
16
|
+
import MarkupAddressesNetworkInterface from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-network-interface';
|
|
17
|
+
import MarkupAddressesPorts from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-ports';
|
|
18
|
+
import MarkupAddressesDns from 'z-abs-complayer-markup-client/client/markup/markup-addresses/markup-addresses-dns';
|
|
19
|
+
import StoreBaseData from 'z-abs-corelayer-client/client/store/store-base-data';
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class AddressesStore extends StoreBaseData {
|
|
23
|
+
constructor() {
|
|
24
|
+
super({
|
|
25
|
+
addressesSrcGlobals: [],
|
|
26
|
+
addressesSrcLocals: [],
|
|
27
|
+
addressesDnsGlobals: [],
|
|
28
|
+
addressesDnsLocals: [],
|
|
29
|
+
addressesDstGlobals: [],
|
|
30
|
+
addressesDstLocals: [],
|
|
31
|
+
addressesSrvGlobals: [],
|
|
32
|
+
addressesSrvLocals: [],
|
|
33
|
+
addressesClientAddressGlobals: [],
|
|
34
|
+
addressesClientAddressLocals: [],
|
|
35
|
+
addressesSutAddressGlobals: [],
|
|
36
|
+
addressesSutAddressLocals: [],
|
|
37
|
+
addressesServerAddressGlobals: [],
|
|
38
|
+
addressesServerAddressLocals: [],
|
|
39
|
+
addressesClientInterfaceGlobals: [],
|
|
40
|
+
addressesClientInterfaceLocals: [],
|
|
41
|
+
addressesSutInterfaceGlobals: [],
|
|
42
|
+
addressesSutInterfaceLocals: [],
|
|
43
|
+
addressesServerInterfaceGlobals: [],
|
|
44
|
+
addressesServerInterfaceLocals: [],
|
|
45
|
+
addressesNetworkInterfaceGlobals: [],
|
|
46
|
+
addressesNetworkInterfaceLocals: [],
|
|
47
|
+
addressesPortsGlobals: [],
|
|
48
|
+
addressesPortsLocals: [],
|
|
49
|
+
currentView: '',
|
|
50
|
+
markup: {
|
|
51
|
+
definition: false,
|
|
52
|
+
content: undefined,
|
|
53
|
+
contentOriginal: undefined,
|
|
54
|
+
rows: undefined
|
|
55
|
+
},
|
|
56
|
+
labUserFilter: true
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
onActionAddressesSrcGet(action) {
|
|
61
|
+
this.sendDataAction(new DataActionAddressesSrcGet());
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
onActionAddressesDstGet(action) {
|
|
65
|
+
this.sendDataAction(new DataActionAddressesDstGet());
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
onActionAddressesSrvGet(action) {
|
|
69
|
+
this.sendDataAction(new DataActionAddressesSrvGet());
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
onActionAddressesClientAddressGet(action) {
|
|
73
|
+
this.sendDataAction(new DataActionAddressesClientAddressGet());
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
onActionAddressesSutAddressGet(action) {
|
|
77
|
+
this.sendDataAction(new DataActionAddressesSutAddressGet());
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
onActionAddressesServerAddressGet(action) {
|
|
81
|
+
this.sendDataAction(new DataActionAddressesServerAddressGet());
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
onActionAddressesClientInterfaceGet(action) {
|
|
85
|
+
this.sendDataAction(new DataActionAddressesClientInterfaceGet());
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
onActionAddressesSutInterfaceGet(action) {
|
|
89
|
+
this.sendDataAction(new DataActionAddressesSutInterfaceGet());
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
onActionAddressesServerInterfaceGet(action) {
|
|
93
|
+
this.sendDataAction(new DataActionAddressesServerInterfaceGet());
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
onActionAddressesNetworkInterfaceGet(action) {
|
|
97
|
+
this.sendDataAction(new DataActionAddressesNetworkInterfaceGet());
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
onActionAddressesPortsGet(action) {
|
|
101
|
+
this.sendDataAction(new DataActionAddressesPortsGet());
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
onActionAddressesDnsGet(action) {
|
|
105
|
+
this.sendDataAction(new DataActionAddressesDnsGet());
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
onActionAddressesMarkup(action) {
|
|
109
|
+
const markup = this.markupStringify();
|
|
110
|
+
this.updateState({markup: { definition: {$set: true}}});
|
|
111
|
+
this.updateState({markup: { content: {$set: markup}}});
|
|
112
|
+
this.updateState({markup: { contentOriginal: {$set: markup}}});
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
onActionAddressesMarkupSave(action) {
|
|
116
|
+
const result = this.markupParse(this.state.markup.content);
|
|
117
|
+
if(!result.success) {
|
|
118
|
+
this.updateState({markup: { rows: {$set: result.rows}}});
|
|
119
|
+
}
|
|
120
|
+
else {
|
|
121
|
+
if('Src' === this.state.currentView) {
|
|
122
|
+
this.sendDataAction(new DataActionAddressesSrcUpdate(result.globals, result.locals));
|
|
123
|
+
}
|
|
124
|
+
else if('Dst' === this.state.currentView) {
|
|
125
|
+
this.sendDataAction(new DataActionAddressesDstUpdate(result.globals, result.locals));
|
|
126
|
+
}
|
|
127
|
+
else if('Srv' === this.state.currentView) {
|
|
128
|
+
this.sendDataAction(new DataActionAddressesSrvUpdate(result.globals, result.locals));
|
|
129
|
+
}
|
|
130
|
+
else if('ClientAddress' === this.state.currentView) {
|
|
131
|
+
this.sendDataAction(new DataActionAddressesClientAddressUpdate(result.globals, result.locals));
|
|
132
|
+
}
|
|
133
|
+
else if('SutAddress' === this.state.currentView) {
|
|
134
|
+
this.sendDataAction(new DataActionAddressesSutAddressUpdate(result.globals, result.locals));
|
|
135
|
+
}
|
|
136
|
+
else if('ServerAddress' === this.state.currentView) {
|
|
137
|
+
this.sendDataAction(new DataActionAddressesServerAddressUpdate(result.globals, result.locals));
|
|
138
|
+
}
|
|
139
|
+
else if('ClientInterface' === this.state.currentView) {
|
|
140
|
+
this.sendDataAction(new DataActionAddressesClientInterfaceUpdate(result.globals, result.locals));
|
|
141
|
+
}
|
|
142
|
+
else if('SutInterface' === this.state.currentView) {
|
|
143
|
+
this.sendDataAction(new DataActionAddressesSutInterfaceUpdate(result.globals, result.locals));
|
|
144
|
+
}
|
|
145
|
+
else if('ServerInterface' === this.state.currentView) {
|
|
146
|
+
this.sendDataAction(new DataActionAddressesServerInterfaceUpdate(result.globals, result.locals));
|
|
147
|
+
}
|
|
148
|
+
else if('NetworkInterface' === this.state.currentView) {
|
|
149
|
+
this.sendDataAction(new DataActionAddressesNetworkInterfaceUpdate(result.globals, result.locals));
|
|
150
|
+
}
|
|
151
|
+
else if('Ports' === this.state.currentView) {
|
|
152
|
+
this.sendDataAction(new DataActionAddressesPortsUpdate(result.globals, result.locals));
|
|
153
|
+
}
|
|
154
|
+
else if('Dns' === this.state.currentView) {
|
|
155
|
+
this.sendDataAction(new DataActionAddressesDnsUpdate(result.globals, result.locals));
|
|
156
|
+
}
|
|
157
|
+
this.clearMarkup();
|
|
158
|
+
LoginStore.dispatchAction(new ActionLoginDataChanged());
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
onActionAddressesMarkupCancel(action) {
|
|
163
|
+
this.clearMarkup();
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
onActionAddressesMarkupChange(action) {
|
|
167
|
+
const result = this.markupParse(action.markup);
|
|
168
|
+
this.updateState({markup: { rows: {$set: result.rows}}});
|
|
169
|
+
this.updateState({markup: { content: {$set: action.markup}}});
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
onActionAddressesLabUserFilter(action) {
|
|
173
|
+
this.updateState({labUserFilter: {$set: action.labUserFilter}});
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
onDataActionAddressesSrcGet(action) {
|
|
177
|
+
const response = action.getResponse();
|
|
178
|
+
if(response.isSuccess()) {
|
|
179
|
+
this.updateState({addressesSrcGlobals: {$set: response.data[0]}});
|
|
180
|
+
this.updateState({addressesSrcLocals: {$set: response.data[1]}});
|
|
181
|
+
this.updateState({currentView: {$set: 'Src'}});
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
onDataActionAddressesSrcUpdate(action) {
|
|
186
|
+
this.sendDataAction(new DataActionAddressesSrcGet());
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
onDataActionAddressesDstGet(action) {
|
|
190
|
+
const response = action.getResponse();
|
|
191
|
+
if(response.isSuccess()) {
|
|
192
|
+
this.updateState({addressesDstGlobals: {$set: response.data[0]}});
|
|
193
|
+
this.updateState({addressesDstLocals: {$set: response.data[1]}});
|
|
194
|
+
this.updateState({currentView: {$set: 'Dst'}});
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
onDataActionAddressesDstUpdate(action) {
|
|
199
|
+
this.sendDataAction(new DataActionAddressesDstGet());
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
onDataActionAddressesSrvGet(action) {
|
|
203
|
+
const response = action.getResponse();
|
|
204
|
+
if(response.isSuccess()) {
|
|
205
|
+
this.updateState({addressesSrvGlobals: {$set: response.data[0]}});
|
|
206
|
+
this.updateState({addressesSrvLocals: {$set: response.data[1]}});
|
|
207
|
+
this.updateState({currentView: {$set: 'Srv'}});
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
onDataActionAddressesSrvUpdate(action) {
|
|
212
|
+
this.sendDataAction(new DataActionAddressesSrvGet());
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
onDataActionAddressesClientAddressGet(action) {
|
|
216
|
+
const response = action.getResponse();
|
|
217
|
+
if(response.isSuccess()) {
|
|
218
|
+
this.updateState({addressesClientAddressGlobals: {$set: response.data[0]}});
|
|
219
|
+
this.updateState({addressesClientAddressLocals: {$set: response.data[1]}});
|
|
220
|
+
this.updateState({currentView: {$set: 'ClientAddress'}});
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
onDataActionAddressesClientAddressUpdate(action) {
|
|
225
|
+
this.sendDataAction(new DataActionAddressesClientAddressGet());
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
onDataActionAddressesSutAddressGet(action) {
|
|
229
|
+
const response = action.getResponse();
|
|
230
|
+
if(response.isSuccess()) {
|
|
231
|
+
this.updateState({addressesSutAddressGlobals: {$set: response.data[0]}});
|
|
232
|
+
this.updateState({addressesSutAddressLocals: {$set: response.data[1]}});
|
|
233
|
+
this.updateState({currentView: {$set: 'SutAddress'}});
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
onDataActionAddressesSutAddressUpdate(action) {
|
|
238
|
+
this.sendDataAction(new DataActionAddressesSutAddressGet());
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
onDataActionAddressesServerAddressGet(action) {
|
|
242
|
+
const response = action.getResponse();
|
|
243
|
+
if(response.isSuccess()) {
|
|
244
|
+
this.updateState({addressesServerAddressGlobals: {$set: response.data[0]}});
|
|
245
|
+
this.updateState({addressesServerAddressLocals: {$set: response.data[1]}});
|
|
246
|
+
this.updateState({currentView: {$set: 'ServerAddress'}})
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
onDataActionAddressesServerAddressUpdate(action) {
|
|
251
|
+
this.sendDataAction(new DataActionAddressesServerAddressGet());
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
onDataActionAddressesClientInterfaceGet(action) {
|
|
255
|
+
const response = action.getResponse();
|
|
256
|
+
if(response.isSuccess()) {
|
|
257
|
+
this.updateState({addressesClientInterfaceGlobals: {$set: response.data[0]}});
|
|
258
|
+
this.updateState({addressesClientInterfaceLocals: {$set: response.data[1]}});
|
|
259
|
+
this.updateState({currentView: {$set: 'ClientInterface'}});
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
onDataActionAddressesClientInterfaceUpdate(action) {
|
|
264
|
+
this.sendDataAction(new DataActionAddressesClientInterfaceGet());
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
onDataActionAddressesSutInterfaceGet(action) {
|
|
268
|
+
const response = action.getResponse();
|
|
269
|
+
if(response.isSuccess()) {
|
|
270
|
+
this.updateState({addressesSutInterfaceGlobals: {$set: response.data[0]}});
|
|
271
|
+
this.updateState({addressesSutInterfaceLocals: {$set: response.data[1]}});
|
|
272
|
+
this.updateState({currentView: {$set: 'SutInterface'}});
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
onDataActionAddressesSutInterfaceUpdate(action) {
|
|
277
|
+
this.sendDataAction(new DataActionAddressesSutInterfaceGet());
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
onDataActionAddressesServerInterfaceGet(action) {
|
|
281
|
+
const response = action.getResponse();
|
|
282
|
+
if(response.isSuccess()) {
|
|
283
|
+
this.updateState({addressesServerInterfaceGlobals: {$set: response.data[0]}});
|
|
284
|
+
this.updateState({addressesServerInterfaceLocals: {$set: response.data[1]}});
|
|
285
|
+
this.updateState({currentView: {$set: 'ServerInterface'}});
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
onDataActionAddressesServerInterfaceUpdate(action) {
|
|
290
|
+
this.sendDataAction(new DataActionAddressesServerInterfaceGet());
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
onDataActionAddressesNetworkInterfaceGet(action) {
|
|
294
|
+
const response = action.getResponse();
|
|
295
|
+
if(response.isSuccess()) {
|
|
296
|
+
this.updateState({addressesNetworkInterfaceGlobals: {$set: response.data[0]}});
|
|
297
|
+
this.updateState({addressesNetworkInterfaceLocals: {$set: response.data[1]}});
|
|
298
|
+
this.updateState({currentView: {$set: 'NetworkInterface'}});
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
onDataActionAddressesNetworkInterfaceUpdate(action) {
|
|
303
|
+
this.sendDataAction(new DataActionAddressesNetworkInterfaceGet());
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
onDataActionAddressesPortsGet(action) {
|
|
307
|
+
const response = action.getResponse();
|
|
308
|
+
if(response.isSuccess()) {
|
|
309
|
+
this.updateState({addressesPortsGlobals: {$set: response.data[0]}});
|
|
310
|
+
this.updateState({addressesPortsLocals: {$set: response.data[1]}});
|
|
311
|
+
this.updateState({currentView: {$set: 'Ports'}});
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
onDataActionAddressesPortsUpdate(action) {
|
|
316
|
+
this.sendDataAction(new DataActionAddressesPortsGet());
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
onDataActionAddressesDnsGet(action) {
|
|
320
|
+
const response = action.getResponse();
|
|
321
|
+
if(response.isSuccess()) {
|
|
322
|
+
this.updateState({addressesDnsGlobals: {$set: response.data[0]}});
|
|
323
|
+
this.updateState({addressesDnsLocals: {$set: response.data[1]}});
|
|
324
|
+
this.updateState({currentView: {$set: 'Dns'}});
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
onDataActionAddressesDnsUpdate(action) {
|
|
329
|
+
this.sendDataAction(new DataActionAddressesDnsGet());
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
clearMarkup(state) {
|
|
333
|
+
this.updateState({markup: { definition: {$set: false}}});
|
|
334
|
+
this.updateState({markup: { content: {$set: undefined}}});
|
|
335
|
+
this.updateState({markup: { contentOriginal: {$set: undefined}}});
|
|
336
|
+
this.updateState({markup: { rows: {$set: undefined}}});
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
markupStringify() {
|
|
340
|
+
if('Src' === this.state.currentView) {
|
|
341
|
+
return MarkupAddressesSrc.stringify(this.state.addressesSrcGlobals, this.state.addressesSrcLocals);
|
|
342
|
+
}
|
|
343
|
+
else if('Dst' === this.state.currentView) {
|
|
344
|
+
return MarkupAddressesDst.stringify(this.state.addressesDstGlobals, this.state.addressesDstLocals);
|
|
345
|
+
}
|
|
346
|
+
else if('Srv' === this.state.currentView) {
|
|
347
|
+
return MarkupAddressesSrv.stringify(this.state.addressesSrvGlobals, this.state.addressesSrvLocals);
|
|
348
|
+
}
|
|
349
|
+
else if('ClientAddress' === this.state.currentView) {
|
|
350
|
+
return MarkupAddressesClientAddress.stringify(this.state.addressesClientAddressGlobals, this.state.addressesClientAddressLocals);
|
|
351
|
+
}
|
|
352
|
+
else if('SutAddress' === this.state.currentView) {
|
|
353
|
+
return MarkupAddressesSutAddress.stringify(this.state.addressesSutAddressGlobals, this.state.addressesSutAddressLocals);
|
|
354
|
+
}
|
|
355
|
+
else if('ServerAddress' === this.state.currentView) {
|
|
356
|
+
return MarkupAddressesServerAddress.stringify(this.state.addressesServerAddressGlobals, this.state.addressesServerAddressLocals);
|
|
357
|
+
}
|
|
358
|
+
else if('ClientInterface' === this.state.currentView) {
|
|
359
|
+
return MarkupAddressesClientInterface.stringify(this.state.addressesClientInterfaceGlobals, this.state.addressesClientInterfaceLocals);
|
|
360
|
+
}
|
|
361
|
+
else if('SutInterface' === this.state.currentView) {
|
|
362
|
+
return MarkupAddressesSutInterface.stringify(this.state.addressesSutInterfaceGlobals, this.state.addressesSutInterfaceLocals);
|
|
363
|
+
}
|
|
364
|
+
else if('ServerInterface' === this.state.currentView) {
|
|
365
|
+
return MarkupAddressesServerInterface.stringify(this.state.addressesServerInterfaceGlobals, this.state.addressesServerInterfaceLocals);
|
|
366
|
+
}
|
|
367
|
+
else if('NetworkInterface' === this.state.currentView) {
|
|
368
|
+
return MarkupAddressesNetworkInterface.stringify(this.state.addressesNetworkInterfaceGlobals, this.state.addressesNetworkInterfaceLocals);
|
|
369
|
+
}
|
|
370
|
+
else if('Ports' === this.state.currentView) {
|
|
371
|
+
return MarkupAddressesPorts.stringify(this.state.addressesPortsGlobals, this.state.addressesPortsLocals);
|
|
372
|
+
}
|
|
373
|
+
else if('Dns' === this.state.currentView) {
|
|
374
|
+
return MarkupAddressesDns.stringify(this.state.addressesDnsGlobals, this.state.addressesDnsLocals);
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
markupParse(markup) {
|
|
379
|
+
if('Src' === this.state.currentView) {
|
|
380
|
+
return MarkupAddressesSrc.parse(markup);
|
|
381
|
+
}
|
|
382
|
+
else if('Dst' === this.state.currentView) {
|
|
383
|
+
return MarkupAddressesDst.parse(markup);
|
|
384
|
+
}
|
|
385
|
+
else if('Srv' === this.state.currentView) {
|
|
386
|
+
return MarkupAddressesSrv.parse(markup);
|
|
387
|
+
}
|
|
388
|
+
else if('ClientAddress' === this.state.currentView) {
|
|
389
|
+
return MarkupAddressesClientAddress.parse(markup);
|
|
390
|
+
}
|
|
391
|
+
else if('SutAddress' === this.state.currentView) {
|
|
392
|
+
return MarkupAddressesSutAddress.parse(markup);
|
|
393
|
+
}
|
|
394
|
+
else if('ServerAddress' === this.state.currentView) {
|
|
395
|
+
return MarkupAddressesServerAddress.parse(markup);
|
|
396
|
+
}
|
|
397
|
+
else if('ClientInterface' === this.state.currentView) {
|
|
398
|
+
return MarkupAddressesClientInterface.parse(markup);
|
|
399
|
+
}
|
|
400
|
+
else if('SutInterface' === this.state.currentView) {
|
|
401
|
+
return MarkupAddressesSutInterface.parse(markup);
|
|
402
|
+
}
|
|
403
|
+
else if('ServerInterface' === this.state.currentView) {
|
|
404
|
+
return MarkupAddressesServerInterface.parse(markup);
|
|
405
|
+
}
|
|
406
|
+
else if('NetworkInterface' === this.state.currentView) {
|
|
407
|
+
return MarkupAddressesNetworkInterface.parse(markup);
|
|
408
|
+
}
|
|
409
|
+
else if('Ports' === this.state.currentView) {
|
|
410
|
+
return MarkupAddressesPorts.parse(markup);
|
|
411
|
+
}
|
|
412
|
+
else if('Dns' === this.state.currentView) {
|
|
413
|
+
return MarkupAddressesDns.parse(markup);
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
module.exports = AddressesStore.export(AddressesStore);
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
import { DataActionConsoleClear } from '../actions/action-console/data-action-console';
|
|
6
|
+
import StoreBaseRealtime from 'z-abs-corelayer-client/client/store/store-base-realtime';
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ConsoleStore extends StoreBaseRealtime {
|
|
10
|
+
constructor() {
|
|
11
|
+
super({
|
|
12
|
+
dummy: false
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
onActionConsoleClear(action) {
|
|
17
|
+
this.sendDataAction(new DataActionConsoleClear(action));
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
onDataActionConsoleClear(action) {
|
|
21
|
+
const response = action.getResponse();
|
|
22
|
+
if(response.isSuccess()) {}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
module.exports = ConsoleStore.export(ConsoleStore);
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import { DataActionContentTextGet, DataActionContentDocumentsGet, DataActionContentImageGet, DataActionContentVideoGet, DataActionContentAudioGet, DataActionContentOtherGet, DataActionContentTextUpdate, DataActionContentDocumentsUpdate, DataActionContentImageUpdate, DataActionContentVideoUpdate, DataActionContentAudioUpdate, DataActionContentOtherUpdate } from '../actions/action-content/data-action-content';
|
|
5
|
+
import MarkupContentText from 'z-abs-complayer-markup-client/client/markup/markup-content/markup-content-text';
|
|
6
|
+
import MarkupContentDocuments from 'z-abs-complayer-markup-client/client/markup/markup-content/markup-content-documents';
|
|
7
|
+
import MarkupContentImage from 'z-abs-complayer-markup-client/client/markup/markup-content/markup-content-image';
|
|
8
|
+
import MarkupContentVideo from 'z-abs-complayer-markup-client/client/markup/markup-content/markup-content-video';
|
|
9
|
+
import MarkupContentAudio from 'z-abs-complayer-markup-client/client/markup/markup-content/markup-content-audio';
|
|
10
|
+
import MarkupContentOther from 'z-abs-complayer-markup-client/client/markup/markup-content/markup-content-other';
|
|
11
|
+
import StoreBaseData from 'z-abs-corelayer-client/client/store/store-base-data';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class ContentStore extends StoreBaseData {
|
|
15
|
+
constructor() {
|
|
16
|
+
super({
|
|
17
|
+
contentTextGlobals: [],
|
|
18
|
+
contentTextLocals: [],
|
|
19
|
+
contentDocumentsGlobals: [],
|
|
20
|
+
contentDocumentsLocals: [],
|
|
21
|
+
contentImageGlobals: [],
|
|
22
|
+
contentImageLocals: [],
|
|
23
|
+
contentVideoGlobals: [],
|
|
24
|
+
contentVideoLocals: [],
|
|
25
|
+
contentAudioGlobals: [],
|
|
26
|
+
contentAudioLocals: [],
|
|
27
|
+
contentOtherGlobals: [],
|
|
28
|
+
contentOtherLocals: [],
|
|
29
|
+
currentView: '',
|
|
30
|
+
markup: {
|
|
31
|
+
definition: false,
|
|
32
|
+
content: undefined,
|
|
33
|
+
contentOriginal: undefined,
|
|
34
|
+
rows: undefined
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
onActionContentTextGet(action) {
|
|
40
|
+
this.sendDataAction(new DataActionContentTextGet());
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
onActionContentDocumentsGet(action) {
|
|
44
|
+
this.sendDataAction(new DataActionContentDocumentsGet());
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
onActionContentImageGet(action) {
|
|
48
|
+
this.sendDataAction(new DataActionContentImageGet());
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
onActionContentVideoGet(action) {
|
|
52
|
+
this.sendDataAction(new DataActionContentVideoGet());
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
onActionContentAudioGet(action) {
|
|
56
|
+
this.sendDataAction(new DataActionContentAudioGet());
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
onActionContentOtherGet(action) {
|
|
60
|
+
this.sendDataAction(new DataActionContentOtherGet());
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
onActionContentMarkup(action) {
|
|
64
|
+
let markup = this.markupStringify();
|
|
65
|
+
this.updateState({markup: { definition: {$set: true}}});
|
|
66
|
+
this.updateState({markup: { content: {$set: markup}}});
|
|
67
|
+
this.updateState({markup: { contentOriginal: {$set: markup}}});
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
onActionContentMarkupSave(action) {
|
|
71
|
+
let result = this.markupParse(this.state.markup.content);
|
|
72
|
+
if(!result.success) {
|
|
73
|
+
this.updateState({markup: { rows: {$set: result.rows}}});
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
if('text' === this.state.currentView) {
|
|
77
|
+
this.sendDataAction(new DataActionContentTextUpdate(result.globals, result.locals));
|
|
78
|
+
}
|
|
79
|
+
else if('documents' === this.state.currentView) {
|
|
80
|
+
this.sendDataAction(new DataActionContentDocumentsUpdate(result.globals, result.locals));
|
|
81
|
+
}
|
|
82
|
+
else if('image' === this.state.currentView) {
|
|
83
|
+
this.sendDataAction(new DataActionContentImageUpdate(result.globals, result.locals));
|
|
84
|
+
}
|
|
85
|
+
else if('video' === this.state.currentView) {
|
|
86
|
+
this.sendDataAction(new DataActionContentVideoUpdate(result.globals, result.locals));
|
|
87
|
+
}
|
|
88
|
+
else if('audio' === this.state.currentView) {
|
|
89
|
+
this.sendDataAction(new DataActionContentAudioUpdate(result.globals, result.locals));
|
|
90
|
+
}
|
|
91
|
+
else if('other' === this.state.currentView) {
|
|
92
|
+
this.sendDataAction(new DataActionContentOtherUpdate(result.globals, result.locals));
|
|
93
|
+
}
|
|
94
|
+
this.clearMarkup();
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
onActionContentMarkupCancel(action) {
|
|
99
|
+
this.clearMarkup();
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
onActionContentMarkupChange(action) {
|
|
103
|
+
const result = this.markupParse(action.markup);
|
|
104
|
+
this.updateState({markup: { rows: {$set: result.rows}}});
|
|
105
|
+
this.updateState({markup: { content: {$set: action.markup}}});
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
onDataActionContentTextGet(action) {
|
|
109
|
+
const response = action.getResponse();
|
|
110
|
+
if(response.isSuccess()) {
|
|
111
|
+
this.updateState({contentTextGlobals: {$set: response.data[0]}});
|
|
112
|
+
this.updateState({contentTextLocals: {$set: response.data[1]}});
|
|
113
|
+
this.updateState({currentView: {$set: 'text'}});
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
onDataActionContentDocumentsGet(action) {
|
|
118
|
+
const response = action.getResponse();
|
|
119
|
+
if(response.isSuccess()) {
|
|
120
|
+
this.updateState({contentDocumentsGlobals: {$set: response.data[0]}});
|
|
121
|
+
this.updateState({contentDocumentsLocals: {$set: response.data[1]}});
|
|
122
|
+
this.updateState({currentView: {$set: 'documents'}});
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
onDataActionContentImageGet(action) {
|
|
127
|
+
const response = action.getResponse();
|
|
128
|
+
if(response.isSuccess()) {
|
|
129
|
+
this.updateState({contentImageGlobals: {$set: response.data[0]}});
|
|
130
|
+
this.updateState({contentImageLocals: {$set: response.data[1]}});
|
|
131
|
+
this.updateState({currentView: {$set: 'image'}});
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
onDataActionContentVideoGet(action) {
|
|
136
|
+
const response = action.getResponse();
|
|
137
|
+
if(response.isSuccess()) {
|
|
138
|
+
this.updateState({contentVideoGlobals: {$set: response.data[0]}});
|
|
139
|
+
this.updateState({contentVideoLocals: {$set: response.data[1]}});
|
|
140
|
+
this.updateState({currentView: {$set: 'video'}});
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
onDataActionContentAudioGet(action) {
|
|
145
|
+
const response = action.getResponse();
|
|
146
|
+
if(response.isSuccess()) {
|
|
147
|
+
this.updateState({contentAudioGlobals: {$set: response.data[0]}});
|
|
148
|
+
this.updateState({contentAudioLocals: {$set: response.data[1]}});
|
|
149
|
+
this.updateState({currentView: {$set: 'audio'}});
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
onDataActionContentOtherGet(action) {
|
|
154
|
+
const response = action.getResponse();
|
|
155
|
+
if(response.isSuccess()) {
|
|
156
|
+
this.updateState({contentOtherGlobals: {$set: response.data[0]}});
|
|
157
|
+
this.updateState({contentOtherLocals: {$set: response.data[1]}});
|
|
158
|
+
this.updateState({currentView: {$set: 'other'}});
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
onDataActionContentTextUpdate(action) {
|
|
163
|
+
this.sendDataAction(new DataActionContentTextGet());
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
onDataActionContentDocumentsUpdate(action) {
|
|
167
|
+
this.sendDataAction(new DataActionContentDocumentsGet());
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
onDataActionContentImageUpdate(action) {
|
|
171
|
+
this.sendDataAction(new DataActionContentImageGet());
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
onDataActionContentVideoUpdate(action) {
|
|
175
|
+
this.sendDataAction(new DataActionContentVideoGet());
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
onDataActionContentAudioUpdate(action) {
|
|
179
|
+
this.sendDataAction(new DataActionContentAudioGet());
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
onDataActionContentOtherUpdate(action) {
|
|
183
|
+
this.sendDataAction(new DataActionContentOtherGet());
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
clearMarkup() {
|
|
187
|
+
this.updateState({markup: { definition: {$set: false}}});
|
|
188
|
+
this.updateState({markup: { content: {$set: undefined}}});
|
|
189
|
+
this.updateState({markup: { contentOriginal: {$set: undefined}}});
|
|
190
|
+
this.updateState({markup: { rows: {$set: undefined}}});
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
markupStringify() {
|
|
194
|
+
if('text' === this.state.currentView) {
|
|
195
|
+
return MarkupContentText.stringify(this.state.contentTextGlobals, this.state.contentTextLocals);
|
|
196
|
+
}
|
|
197
|
+
else if('documents' === this.state.currentView) {
|
|
198
|
+
return MarkupContentDocuments.stringify(this.state.contentDocumentsGlobals, this.state.contentDocumentsLocals);
|
|
199
|
+
}
|
|
200
|
+
else if('image' === this.state.currentView) {
|
|
201
|
+
return MarkupContentImage.stringify(this.state.contentImageGlobals, this.state.contentImageLocals);
|
|
202
|
+
}
|
|
203
|
+
else if('video' === this.state.currentView) {
|
|
204
|
+
return MarkupContentVideo.stringify(this.state.contentVideoGlobals, this.state.contentVideoLocals);
|
|
205
|
+
}
|
|
206
|
+
else if('audio' === this.state.currentView) {
|
|
207
|
+
return MarkupContentAudio.stringify(this.state.contentAudioGlobals, this.state.contentAudioLocals);
|
|
208
|
+
}
|
|
209
|
+
else if('other' === this.state.currentView) {
|
|
210
|
+
return MarkupContentOther.stringify(this.state.contentOtherGlobals, this.state.contentOtherLocals);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
markupParse(markup) {
|
|
215
|
+
if('text' === this.state.currentView) {
|
|
216
|
+
return MarkupContentText.parse(markup);
|
|
217
|
+
}
|
|
218
|
+
else if('documents' === this.state.currentView) {
|
|
219
|
+
return MarkupContentDocuments.parse(markup);
|
|
220
|
+
}
|
|
221
|
+
else if('image' === this.state.currentView) {
|
|
222
|
+
return MarkupContentImage.parse(markup);
|
|
223
|
+
}
|
|
224
|
+
else if('video' === this.state.currentView) {
|
|
225
|
+
return MarkupContentVideo.parse(markup);
|
|
226
|
+
}
|
|
227
|
+
else if('audio' === this.state.currentView) {
|
|
228
|
+
return MarkupContentAudio.parse(markup);
|
|
229
|
+
}
|
|
230
|
+
else if('other' === this.state.currentView) {
|
|
231
|
+
return MarkupContentOther.parse(markup);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
module.exports = ContentStore.export(ContentStore);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
import DocumentationStoreBase from 'z-abs-complayer-documentation-client/client/stores/documentation-store-base';
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class DocumentationStore extends DocumentationStoreBase {
|
|
8
|
+
constructor() {
|
|
9
|
+
super('Documentation', 'actorjs');
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
module.exports = DocumentationStore.export(DocumentationStore);
|