AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | /*! |
| 2 | * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 13 | * or implied. See the License for the specific language governing |
| 14 | * permissions and limitations under the License. |
| 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | import React from 'react'; |
| 17 | import ReactDOM from 'react-dom'; |
| 18 | import Configuration from 'sdc-app/config/Configuration.js'; |
| 19 | import Application from 'sdc-app/Application.jsx'; |
| 20 | import store from 'sdc-app/AppStore.js'; |
| 21 | import FlowsListEditor from './FlowsListEditor.js'; |
| 22 | import FlowsActions from './FlowsActions.js'; |
| 23 | |
| 24 | class FlowsListEditorPunchOutWrapper extends React.Component { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 25 | componentDidMount() { |
| 26 | let element = ReactDOM.findDOMNode(this); |
| 27 | element.addEventListener('click', event => { |
| 28 | if (event.target.tagName === 'A') { |
| 29 | event.preventDefault(); |
| 30 | } |
| 31 | }); |
| 32 | ['wheel', 'mousewheel', 'DOMMouseScroll'].forEach(eventType => |
| 33 | element.addEventListener(eventType, event => |
| 34 | event.stopPropagation() |
| 35 | ) |
| 36 | ); |
| 37 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 38 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 39 | render() { |
| 40 | return <FlowsListEditor />; |
| 41 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | export default class DiagramPunchOut { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 45 | render({ options: { data, apiRoot, apiHeaders }, onEvent }, element) { |
| 46 | if (!this.isConfigSet) { |
| 47 | Configuration.setCatalogApiRoot(apiRoot); |
| 48 | Configuration.setCatalogApiHeaders(apiHeaders); |
| 49 | this.isConfigSet = true; |
| 50 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 51 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 52 | this.onEvent = onEvent; |
| 53 | this.handleData(data); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 54 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 55 | if (!this.rendered) { |
| 56 | ReactDOM.render( |
| 57 | <Application> |
| 58 | <div className="dox-ui"> |
| 59 | <FlowsListEditorPunchOutWrapper /> |
| 60 | </div> |
| 61 | </Application>, |
| 62 | element |
| 63 | ); |
| 64 | this.rendered = true; |
| 65 | } |
| 66 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 67 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 68 | unmount(element) { |
| 69 | let dispatch = action => store.dispatch(action); |
| 70 | ReactDOM.unmountComponentAtNode(element); |
| 71 | FlowsActions.reset(dispatch); |
| 72 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 73 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 74 | handleData(data) { |
| 75 | let { serviceID, diagramType } = data; |
| 76 | let dispatch = action => store.dispatch(action); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 77 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 78 | if ( |
| 79 | serviceID !== this.prevServiceID || |
| 80 | diagramType !== this.prevDiagramType |
| 81 | ) { |
| 82 | this.prevServiceID = serviceID; |
| 83 | this.prevDiagramType = diagramType; |
| 84 | FlowsActions.fetchFlowArtifacts(dispatch, { ...data }); |
| 85 | } |
| 86 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 87 | } |