c07fffd6448dd833a7859e42b17188567c31cae1
[osm/UI.git] / skyquake / plugins / composer / src / src / stores / ComposerAppStore.js
1
2 /*
3 *
4 * Copyright 2016 RIFT.IO Inc
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 */
19 'use strict';
20
21 import _isNumber from 'lodash/isNumber'
22 import _cloneDeep from 'lodash/cloneDeep'
23 import _isEmpty from 'lodash/isEmpty'
24 import _mergeWith from 'lodash/mergeWith'
25 import _uniqBy from 'lodash/uniqBy'
26 import _isEqual from 'lodash/isEqual'
27 import _findIndex from 'lodash/findIndex'
28 import _remove from 'lodash/remove'
29 import d3 from 'd3'
30 import alt from '../alt'
31 import UID from '../libraries/UniqueId'
32 import DescriptorModelFactory from '../libraries/model/DescriptorModelFactory'
33 import PanelResizeAction from '../actions/PanelResizeAction'
34 import CatalogItemsActions from '../actions/CatalogItemsActions'
35 import CanvasEditorActions from '../actions/CanvasEditorActions'
36 import ComposerAppActions from '../actions/ComposerAppActions'
37 import CatalogFilterActions from '../actions/CatalogFilterActions'
38 import CanvasPanelTrayActions from '../actions/CanvasPanelTrayActions'
39 import SelectionManager from '../libraries/SelectionManager'
40 import CatalogDataStore from '../stores/CatalogDataStore'
41 import isFullScreen from '../libraries/isFullScreen'
42
43 import FileManagerSource from '../components/filemanager/FileManagerSource';
44 import FileManagerActions from '../components/filemanager/FileManagerActions';
45
46 import React from 'react';
47
48 //Hack for crouton fix. Should eventually put composer in skyquake alt context
49 import SkyquakeComponent from 'widgets/skyquake_container/skyquakeComponent.jsx';
50 let NotificationError = null;
51
52 import utils from '../libraries/utils';
53
54 class ComponentBridge extends React.Component {
55 constructor(props) {
56 super(props);
57 NotificationError = this.props.flux.actions.global.showNotification;
58 }
59 render(){
60 return <i></i>
61 }
62 }
63 const getDefault = (name, defaultValue) => {
64 const val = window.localStorage.getItem('defaults-' + name);
65 if (val) {
66 if (_isNumber(val)) {
67 if (val < 0) {
68 return setDefault(name, 0);
69 }
70 }
71 return Number(val);
72 }
73 setDefault(name, defaultValue);
74 return defaultValue;
75 };
76
77 const setDefault = (name, defaultValue) => {
78 window.localStorage.setItem('defaults-' + name, defaultValue);
79 return defaultValue;
80 };
81
82 /* the top and bottom positions are managed by css; requires div to be display: absolute*/
83 const defaults = {
84 left: getDefault('catalog-panel-start-width', 300),
85 right: getDefault('details-panel-start-width', 365),
86 bottom: 25 + getDefault('defaults-forwarding-graphs-panel-start-height', 0),
87 showMore: false,
88 zoom: getDefault('zoom', 100),
89 filterCatalogBy: 'nsd',
90 defaultPanelTrayOpenZoom: (() => {
91 let zoom = parseFloat(getDefault('panel-tray-zoom', 75));
92 if (isNaN(zoom)) {
93 zoom = 75;
94 }
95 zoom = Math.min(100, zoom);
96 zoom = Math.max(25, zoom);
97 setDefault('panel-tray-zoom', zoom);
98 return zoom;
99 })()
100 };
101
102 const autoZoomCanvasScale = d3.scale.linear().domain([0, 300]).range([100, 50]).clamp(true);
103
104 const uiTransientState = {};
105
106 class ComposerAppStore {
107
108 constructor() {
109 //Bridge for crouton fix
110 this.ComponentBridgeElement = SkyquakeComponent(ComponentBridge);
111
112 this.exportAsync(FileManagerSource)
113 // the catalog item currently being edited in the composer
114 this.item = null;
115 // the left and right sides of the canvas area
116 this.layout = {
117 left: defaults.left,
118 right: defaults.right,
119 bottom: defaults.bottom
120 };
121 uiTransientState.restoreLayout = this.layout;
122 this.zoom = defaults.zoom;
123 this.showMore = defaults.showMore;
124 this.filterCatalogByTypeValue = defaults.filterCatalogBy;
125 // transient ui state
126 this.drag = null;
127 this.message = '';
128 this.messageType = '';
129 this.showJSONViewer = false;
130 this.showClassifiers = {};
131 this.editPathsMode = false;
132 this.fullScreenMode = false;
133 this.panelTabShown = 'descriptor';
134 //File manager values
135 this.files = false;
136 this.filesState = {};
137 this.downloadJobs = {};
138 this.containers = [];
139 this.newPathName = '';
140 //End File manager values
141 this.bindListeners({
142 onResize: PanelResizeAction.RESIZE,
143 editCatalogItem: CatalogItemsActions.EDIT_CATALOG_ITEM,
144 catalogItemMetaDataChanged: CatalogItemsActions.CATALOG_ITEM_META_DATA_CHANGED,
145 catalogItemDescriptorChanged: CatalogItemsActions.CATALOG_ITEM_DESCRIPTOR_CHANGED,
146 toggleShowMoreInfo: CanvasEditorActions.TOGGLE_SHOW_MORE_INFO,
147 showMoreInfo: CanvasEditorActions.SHOW_MORE_INFO,
148 showLessInfo: CanvasEditorActions.SHOW_LESS_INFO,
149 applyDefaultLayout: CanvasEditorActions.APPLY_DEFAULT_LAYOUT,
150 addVirtualLinkDescriptor: CanvasEditorActions.ADD_VIRTUAL_LINK_DESCRIPTOR,
151 addForwardingGraphDescriptor: CanvasEditorActions.ADD_FORWARDING_GRAPH_DESCRIPTOR,
152 addVirtualDeploymentDescriptor: CanvasEditorActions.ADD_VIRTUAL_DEPLOYMENT_DESCRIPTOR,
153 selectModel: ComposerAppActions.SELECT_MODEL,
154 outlineModel: ComposerAppActions.OUTLINE_MODEL,
155 showError: ComposerAppActions.SHOW_ERROR,
156 clearError: ComposerAppActions.CLEAR_ERROR,
157 setDragState: ComposerAppActions.SET_DRAG_STATE,
158 filterCatalogByType: CatalogFilterActions.FILTER_BY_TYPE,
159 setCanvasZoom: CanvasEditorActions.SET_CANVAS_ZOOM,
160 showJsonViewer: ComposerAppActions.SHOW_JSON_VIEWER,
161 closeJsonViewer: ComposerAppActions.CLOSE_JSON_VIEWER,
162 toggleCanvasPanelTray: CanvasPanelTrayActions.TOGGLE_OPEN_CLOSE,
163 openCanvasPanelTray: CanvasPanelTrayActions.OPEN,
164 closeCanvasPanelTray: CanvasPanelTrayActions.CLOSE,
165 enterFullScreenMode: ComposerAppActions.ENTER_FULL_SCREEN_MODE,
166 exitFullScreenMode: ComposerAppActions.EXIT_FULL_SCREEN_MODE,
167 showAssets: ComposerAppActions.showAssets,
168 showDescriptor: ComposerAppActions.showDescriptor,
169 getFilelistSuccess: FileManagerActions.getFilelistSuccess,
170 updateFileLocationInput: FileManagerActions.updateFileLocationInput,
171 sendDownloadFileRequst: FileManagerActions.sendDownloadFileRequst,
172 addFileSuccess: FileManagerActions.addFileSuccess,
173 deletePackageFile: FileManagerActions.deletePackageFile,
174 deleteFileSuccess: FileManagerActions.deleteFileSuccess,
175 closeFileManagerSockets: FileManagerActions.closeFileManagerSockets,
176 openFileManagerSockets: FileManagerActions.openFileManagerSockets,
177 openDownloadMonitoringSocketSuccess: FileManagerActions.openDownloadMonitoringSocketSuccess,
178 getFilelistSocketSuccess: FileManagerActions.getFilelistSocketSuccess,
179 newPathNameUpdated: FileManagerActions.newPathNameUpdated,
180 createDirectory: FileManagerActions.createDirectory
181 });
182 this.exportPublicMethods({
183 closeFileManagerSockets: this.closeFileManagerSockets.bind(this)
184 })
185 }
186
187 onResize(e) {
188 if (e.type === 'resize-manager.resize.catalog-panel') {
189 const layout = Object.assign({}, this.layout);
190 layout.left = Math.max(0, layout.left - e.moved.x);
191 if (layout.left !== this.layout.left) {
192 this.setState({layout: layout});
193 }
194 } else if (e.type === 'resize-manager.resize.details-panel') {
195 const layout = Object.assign({}, this.layout);
196 layout.right = Math.max(0, layout.right + e.moved.x);
197 if (layout.right !== this.layout.right) {
198 this.setState({layout: layout});
199 }
200 } else if (/^resize-manager\.resize\.canvas-panel-tray/.test(e.type)) {
201 const layout = Object.assign({}, this.layout);
202 layout.bottom = Math.max(25, layout.bottom + e.moved.y);
203 if (layout.bottom !== this.layout.bottom) {
204 const zoom = autoZoomCanvasScale(layout.bottom) ;
205 if (this.zoom !== zoom) {
206 this.setState({layout: layout, zoom: zoom});
207 } else {
208 this.setState({layout: layout});
209 }
210 }
211 } else if (e.type !== 'resize') {
212 console.log('no resize handler for ', e.type, '. Do you need to add a handler in ComposerAppStore::onResize()?')
213 }
214 SelectionManager.refreshOutline();
215 }
216
217 updateItem(item) {
218 const self = this;
219 let containers = [];
220 let cpNumber = 0;
221 if(!document.body.classList.contains('resizing')) {
222 containers = [item].reduce(DescriptorModelFactory.buildCatalogItemFactory(CatalogDataStore.getState().catalogs), []);
223
224 containers.filter(d => DescriptorModelFactory.isConnectionPoint(d)).forEach(d => {
225 d.cpNumber = ++cpNumber;
226 containers.filter(d => DescriptorModelFactory.isVnfdConnectionPointRef(d)).filter(ref => ref.key === d.key).forEach(ref => ref.cpNumber = d.cpNumber);
227 });
228 this.setState({containers: containers, item: _cloneDeep(item)});
229 }
230 SelectionManager.refreshOutline();
231 }
232
233 editCatalogItem(item) {
234 let self = this;
235 self.closeFileManagerSockets();
236 if (item && item.uiState) {
237 item.uiState.isOpenForEdit = true;
238 if (item.uiState.type !== 'nsd') {
239 this.closeCanvasPanelTray();
240 }
241 }
242 SelectionManager.select(item);
243 this.updateItem(item);
244 if (item) {
245 this.openFileManagerSockets(item);
246 }
247 }
248 catalogItemMetaDataChanged(item) {
249 this.updateItem(item);
250 }
251
252 catalogItemDescriptorChanged(itemDescriptor) {
253 this.catalogItemMetaDataChanged(itemDescriptor.model);
254 }
255
256 showMoreInfo() {
257 this.setState({showMore: true});
258 }
259
260 showLessInfo() {
261 this.setState({showMore: false});
262 }
263
264 showError(data) {
265 NotificationError.defer({msg: data.errorMessage, type: 'error'})
266 // this.setState({message: data.errorMessage, messageType: 'error'});
267 }
268
269 clearError() {
270 this.setState({message: '', messageType: ''});
271 }
272
273 toggleShowMoreInfo() {
274 this.setState({showMore: !this.showMore});
275 }
276
277 applyDefaultLayout() {
278 if (this.item && this.item.uiState && this.item.uiState.containerPositionMap) {
279 if (!_isEmpty(this.item.uiState.containerPositionMap)) {
280 this.item.uiState.containerPositionMap = {};
281 CatalogItemsActions.catalogItemMetaDataChanged.defer(this.item);
282 }
283 }
284 }
285
286 addVirtualLinkDescriptor(dropCoordinates = null) {
287 let vld;
288 if (this.item) {
289 if (this.item.uiState.type === 'nsd') {
290 const nsdc = DescriptorModelFactory.newNetworkService(this.item);
291 vld = nsdc.createVld();
292 } else if (this.item.uiState.type === 'vnfd') {
293 const vnfd = DescriptorModelFactory.newVirtualNetworkFunction(this.item);
294 vld = vnfd.createVld();
295 }
296 if (vld) {
297 vld.uiState.dropCoordinates = dropCoordinates;
298 SelectionManager.clearSelectionAndRemoveOutline();
299 SelectionManager.addSelection(vld);
300 this.updateItem(vld.getRoot().model);
301 CatalogItemsActions.catalogItemDescriptorChanged.defer(vld.getRoot());
302 }
303 }
304 }
305
306 addForwardingGraphDescriptor(dropCoordinates = null) {
307 if (this.item && this.item.uiState.type === 'nsd') {
308 const nsdc = DescriptorModelFactory.newNetworkService(this.item);
309 const fg = nsdc.createVnffgd();
310 fg.uiState.dropCoordinates = dropCoordinates;
311 SelectionManager.clearSelectionAndRemoveOutline();
312 SelectionManager.addSelection(fg);
313 this.updateItem(nsdc.model);
314 CatalogItemsActions.catalogItemDescriptorChanged.defer(nsdc);
315 }
316 }
317
318 addVirtualDeploymentDescriptor(dropCoordinates = null) {
319 if (this.item.uiState.type === 'vnfd') {
320 const vnfd = DescriptorModelFactory.newVirtualNetworkFunction(this.item);
321 const vdu = vnfd.createVdu();
322 vdu.uiState.dropCoordinates = dropCoordinates;
323 SelectionManager.clearSelectionAndRemoveOutline();
324 SelectionManager.addSelection(vdu);
325 this.updateItem(vdu.getRoot().model);
326 CatalogItemsActions.catalogItemDescriptorChanged.defer(vdu.getRoot());
327 }
328 }
329
330 selectModel(container) {
331 if (SelectionManager.select(container)) {
332 const model = DescriptorModelFactory.isContainer(container) ? container.getRoot().model : container;
333 this.catalogItemMetaDataChanged(model);
334 }
335 }
336
337 outlineModel(obj) {
338 const uid = UID.from(obj);
339 requestAnimationFrame(() => {
340 SelectionManager.outline(Array.from(document.querySelectorAll(`[data-uid="${uid}"]`)));
341 });
342 }
343
344 clearSelection() {
345 SelectionManager.clearSelectionAndRemoveOutline();
346 this.catalogItemMetaDataChanged(this.item);
347 }
348
349 setDragState(dragState) {
350 this.setState({drag: dragState});
351 }
352
353 filterCatalogByType(typeValue) {
354 this.setState({filterCatalogByTypeValue: typeValue})
355 }
356
357 setCanvasZoom(zoom) {
358 this.setState({zoom: zoom});
359 }
360
361 showJsonViewer() {
362 this.setState({showJSONViewer: true});
363 }
364
365 closeJsonViewer() {
366 this.setState({showJSONViewer: false});
367 }
368
369 toggleCanvasPanelTray() {
370 const layout = this.layout;
371 if (layout.bottom > 25) {
372 this.closeCanvasPanelTray();
373 } else {
374 this.openCanvasPanelTray();
375 }
376 }
377
378 openCanvasPanelTray() {
379 const layout = {
380 left: this.layout.left,
381 right: this.layout.right,
382 bottom: 300
383 };
384 const zoom = defaults.defaultPanelTrayOpenZoom;
385 if (this.zoom !== zoom) {
386 this.setState({layout: layout, zoom: zoom, restoreZoom: this.zoom});
387 } else {
388 this.setState({layout: layout});
389 }
390 }
391
392 closeCanvasPanelTray() {
393 const layout = {
394 left: this.layout.left,
395 right: this.layout.right,
396 bottom: 25
397 };
398 const zoom = this.restoreZoom || autoZoomCanvasScale(layout.bottom);
399 if (this.zoom !== zoom) {
400 this.setState({layout: layout, zoom: zoom, restoreZoom: null});
401 } else {
402 this.setState({layout: layout, restoreZoom: null});
403 }
404 }
405
406 enterFullScreenMode() {
407
408 /**
409 * https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API
410 * This is an experimental api but works our target browsers and ignored by others
411 */
412 const eventNames = ['fullscreenchange', 'mozfullscreenchange', 'webkitfullscreenchange', 'msfullscreenchange'];
413
414 const appRoot = document.body;//.getElementById('RIFT_wareLaunchpadComposerAppRoot');
415
416 const comp = this;
417
418 function onFullScreenChange() {
419
420 if (isFullScreen()) {
421 const layout = comp.layout;
422 const restoreLayout = _cloneDeep(layout);
423 uiTransientState.restoreLayout = restoreLayout;
424 layout.left = 0;
425 layout.right = 0;
426 comp.setState({fullScreenMode: true, layout: layout, restoreLayout: restoreLayout});
427 } else {
428 comp.setState({fullScreenMode: false, layout: uiTransientState.restoreLayout});
429 }
430
431 }
432
433 if (this.fullScreenMode === false) {
434
435 if (appRoot.requestFullscreen) {
436 appRoot.requestFullscreen();
437 } else if (appRoot.msRequestFullscreen) {
438 appRoot.msRequestFullscreen();
439 } else if (appRoot.mozRequestFullScreen) {
440 appRoot.mozRequestFullScreen();
441 } else if (appRoot.webkitRequestFullscreen) {
442 appRoot.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
443 }
444
445 eventNames.map(name => {
446 document.removeEventListener(name, onFullScreenChange);
447 document.addEventListener(name, onFullScreenChange);
448 });
449
450 }
451
452 }
453
454 exitFullScreenMode() {
455
456 if (document.exitFullscreen) {
457 document.exitFullscreen();
458 } else if (document.msExitFullscreen) {
459 document.msExitFullscreen();
460 } else if (document.mozCancelFullScreen) {
461 document.mozCancelFullScreen();
462 } else if (document.webkitExitFullscreen) {
463 document.webkitExitFullscreen();
464 }
465
466 this.setState({fullScreenMode: false});
467
468 }
469 showAssets() {
470 this.setState({
471 panelTabShown: 'assets'
472 });
473 }
474 showDescriptor() {
475 this.setState({
476 panelTabShown: 'descriptor'
477 });
478 }
479
480 //File Manager methods
481 getFilelistSuccess(data) {
482 let self = this;
483 let filesState = null;
484 if (self.fileMonitoringSocketID) {
485 let newState = {};
486 if(data.hasOwnProperty('contents')) {
487 filesState = addInputState( _cloneDeep(this.filesState),data);
488 let normalizedData = normalizeTree(data);
489 newState = {
490 files: {
491 data: _mergeWith(normalizedData.data, self.files.data, function(obj, src) {
492 return _uniqBy(obj? obj.concat(src) : src, 'name');
493 }),
494 id: normalizedData.id
495 },
496 filesState: filesState
497 }
498 } else {
499 newState = {
500 files: false
501 }
502 }
503 if(!_isEqual(newState.files, this.files) || ! _isEqual(newState.fileState, this.fileState)) {
504 this.setState(newState);
505 }
506
507 }
508 function normalizeTree(data) {
509 let f = {
510 id:[],
511 data:{}
512 };
513 data.contents.map(getContents);
514 function getContents(d) {
515 if(d.hasOwnProperty('contents')) {
516 let contents = [];
517 d.contents.map(function(c,i) {
518 if (!c.hasOwnProperty('contents')) {
519 contents.push(c);
520 } else {
521 getContents(c);
522 }
523 })
524 f.id.push(d.name);
525 f.data[d.name] = contents;
526 }
527 }
528 return f;
529 }
530 function addInputState(obj, d) {
531 d.newFile = '';
532 if(d.hasOwnProperty('contents')) {
533 d.contents.map(addInputState.bind(null, obj))
534 }
535 if(!obj[d.name]) {
536 obj[d.name] = '';
537 }
538 return obj;
539 }
540 }
541 sendDownloadFileRequst(data) {
542 let id = data.id || this.item.id;
543 let type = data.type || this.item.uiState.type;
544 let path = data.path;
545 let url = data.url;
546 this.getInstance().addFile(id, type, path, url, data.refresh);
547 }
548 updateFileLocationInput = (data) => {
549 let name = data.name;
550 let value = data.value;
551 var filesState = _cloneDeep(this.filesState);
552 filesState[name] = value;
553 this.setState({
554 filesState: filesState
555 });
556 }
557 addFileSuccess = (data) => {
558 if(!data.refresh) {
559 let path = data.path;
560 let fileName = data.fileName;
561 let files = _cloneDeep(this.files);
562 let loadingIndex = files.data[path].push({
563 status: 'DOWNLOADING',
564 name: path + '/' + fileName
565 }) - 1;
566 this.setState({files: files});
567 }
568
569 }
570 startWatchingJob = () => {
571 let ws = window.multiplexer.channel(this.jobSocketId);
572 this.setState({
573 jobSocket:null
574 })
575 }
576 openDownloadMonitoringSocketSuccess = (id) => {
577 let self = this;
578 let ws = window.multiplexer.channel(id);
579 let downloadJobs = _cloneDeep(self.downloadJobs);
580 let newFiles = false;
581 ws.onmessage = (socket) => {
582 if (self.files && self.files.length > 0) {
583 let jobs = [];
584 try {
585 jobs = JSON.parse(socket.data);
586 } catch(e) {}
587 newFiles = _cloneDeep(self.files);
588 jobs.map(function(j) {
589 //check if not in completed state
590 let fullPath = j['package-path'];
591 let path = fullPath.split('/');
592 let fileName = path.pop();
593 path = path.join('/');
594 let index = _findIndex(self.files.data[path], function(o){
595 return fullPath == o.name
596 });
597 if((index > -1) && newFiles.data[path][index]) {
598 newFiles.data[path][index].status = j.status
599 } else {
600 if(j.status.toUpperCase() == 'LOADING...' || j.status.toUpperCase() == 'IN_PROGRESS') {
601 newFiles.data[path].push({
602 status: j.status,
603 name: fullPath
604 })
605 } else {
606 // if ()
607 }
608 }
609 })
610 self.setState({
611 files: newFiles
612 })
613 // console.log(JSON.parse(socket.data));
614 }
615 }
616 this.setState({
617 jobSocketId: id,
618 jobSocket: ws
619 })
620
621 }
622 getFilelistSocketSuccess = (id) => {
623 let self = this;
624 let ws = window.multiplexer.channel(id);
625 ws.onmessage = (socket) => {
626 if (self.fileMonitoringSocketID) {
627 let data = [];
628 try {
629 data = JSON.parse(socket.data);
630 } catch(e) {}
631 self.getFilelistSuccess(data)
632 }
633 }
634
635 this.setState({
636 fileMonitoringSocketID: id,
637 fileMonitoringSocket: ws
638 })
639
640 }
641 closeFileManagerSockets() {
642 this.fileMonitoringSocketID = null;
643 this.setState({
644 jobSocketId : null,
645 fileMonitoringSocketID : null
646 // jobSocket : null,
647 // fileMonitoringSocket : null,
648 });
649 this.jobSocket && this.jobSocket.close();
650 this.fileMonitoringSocket && this.fileMonitoringSocket.close();
651 console.log('closing');
652 }
653 openFileManagerSockets(i) {
654 let self = this;
655 let item = i || self.item;
656 // this.closeFileManagerSockets();
657 this.getInstance().openFileMonitoringSocket(item.id, item.uiState.type).then(function() {
658 // // self.getInstance().openDownloadMonitoringSocket(item.id);
659 });
660 this.getInstance().openDownloadMonitoringSocket(item.id);
661 }
662 endWatchingJob(id) {
663
664 }
665 deletePackageFile(name) {
666 let id = this.item.id;
667 let type = this.item.uiState.type;
668 this.getInstance().deleteFile(id, type, name);
669 }
670 deleteFileSuccess = (data) => {
671 let path = data.path.split('/')
672 let files = _cloneDeep(this.files);
673 path.pop();
674 path = path.join('/');
675 let pathFiles = files.data[path]
676 _remove(pathFiles, function(c) {
677 return c.name == data.path;
678 });
679
680 this.setState({
681 files: files
682 })
683 }
684 newPathNameUpdated = (event) => {
685 const value = event.target.value;
686 this.setState({
687 newPathName: value
688 })
689 }
690 createDirectory = () => {
691 console.log(this.newPathName);
692 this.sendDownloadFileRequst({
693 id: this.item.id,
694 type: this.item.uiState.type,
695 path: this.item.name + '/' + this.newPathName,
696 url: utils.getSearchParams(window.location).dev_download_server || window.location.protocol + '//' + window.location.host,
697 refresh: true
698 });
699 this.setState({
700 newPathName: ''
701 })
702 }
703 }
704
705 export default alt.createStore(ComposerAppStore, 'ComposerAppStore');