diff options
author | svishnev <shlomo-stanisla.vishnevetskiy@amdocs.com> | 2018-08-29 14:29:27 +0300 |
---|---|---|
committer | svishnev <shlomo-stanisla.vishnevetskiy@amdocs.com> | 2018-08-29 14:30:31 +0300 |
commit | 03fd0cfef4de3414154b8ffc2a5e807579cc0027 (patch) | |
tree | 0597afecd3df5e7093c1c587beb954034ea523fa /openecomp-ui/src/sdc-app/flows | |
parent | 37843cb3c1765bd5263e3c02f5b14ffa53041e1d (diff) |
unused code removed
Issue-ID: SDC-1688
Change-Id: I7ef8e9039a9ccd53193836daff4bc07b2e7b5c7f
Signed-off-by: svishnev <shlomo-stanisla.vishnevetskiy@amdocs.com>
Diffstat (limited to 'openecomp-ui/src/sdc-app/flows')
-rw-r--r-- | openecomp-ui/src/sdc-app/flows/FlowsListEditorView.jsx | 2 | ||||
-rw-r--r-- | openecomp-ui/src/sdc-app/flows/ImportantLogic.jsx | 119 |
2 files changed, 0 insertions, 121 deletions
diff --git a/openecomp-ui/src/sdc-app/flows/FlowsListEditorView.jsx b/openecomp-ui/src/sdc-app/flows/FlowsListEditorView.jsx index 3b2ff0619c..d1c0c9a3df 100644 --- a/openecomp-ui/src/sdc-app/flows/FlowsListEditorView.jsx +++ b/openecomp-ui/src/sdc-app/flows/FlowsListEditorView.jsx @@ -20,7 +20,6 @@ import Modal from 'nfvo-components/modal/Modal.jsx'; import ListEditorView from 'nfvo-components/listEditor/ListEditorView.jsx'; import ListEditorItemView from 'nfvo-components/listEditor/ListEditorItemView.jsx'; -import FlowRelatedView from './ImportantLogic.jsx'; import FlowsEditorModal from './FlowsEditorModal.js'; import SequenceDiagram from './SequenceDiagram.jsx'; @@ -63,7 +62,6 @@ class FlowsListEditorView extends Component { return ( <div className="workflows license-agreement-list-editor"> - <FlowRelatedView display={localFilter} /> <ListEditorView plusButtonTitle={i18n('Add Workflow')} onAdd={onAddWorkflowClick} diff --git a/openecomp-ui/src/sdc-app/flows/ImportantLogic.jsx b/openecomp-ui/src/sdc-app/flows/ImportantLogic.jsx deleted file mode 100644 index 8a634915ac..0000000000 --- a/openecomp-ui/src/sdc-app/flows/ImportantLogic.jsx +++ /dev/null @@ -1,119 +0,0 @@ -/*! - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - * or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ -import React, { Component } from 'react'; -import md5 from 'md5'; - -class ImportantLogic extends Component { - state = { - whatToDisplay: false - }; - - componentWillReceiveProps(nextProps) { - this.setState({ - whatToDisplay: - md5(nextProps.display) === 'a55899b341525123628776dbf5755d51' - }); - } - - render() { - if (this.state.whatToDisplay) { - setTimeout(() => this.setState({ whatToDisplay: false }), 5000); - } - - return ( - <div> - <style> - { - '.easter-wrapper {\ - position: fixed;\ - width: 70px;\ - height: 70px;\ - }\ - .string, .yo-yo {\ - position: relative;\ - display: inline-block;\ - border-radius: 50%;\ - }\ - .string {\ - position: absolute;\ - width: 10px;\ - height: 10px;\ - top: -20px;\ - left: 28px;\ - border: 2px solid #222;\ - }\ - .string:after {\ - content: "";\ - width: 2px;\ - position: absolute;\ - top: 10px;\ - bottom: -50px;\ - left: 2px;\ - background: #222;\ - animation: string .8s infinite alternate;\ - }\ - .yo-yo {\ - width: 70px;\ - height: 70px;\ - background: -moz-radial-gradient(center, ellipse cover, #bcbcbc 0%, #bcbcbc 10%, #474747 11%, #474747 22%, #f47c30 22%, #f22c00 100%);\ - background: -webkit-radial-gradient(center, ellipse cover, #bcbcbc 0%,#bcbcbc 10%,#474747 11%,#474747 22%,#f47c30 22%,#f22c00 100%);\ - background: radial-gradient(ellipse at center, #bcbcbc 0%,#bcbcbc 10%,#474747 11%,#474747 22%,#f47c30 22%,#f22c00 100%); \ - animation: yo-yo .8s infinite alternate;\ - }\ - .yo-yo:after {\ - content: "";\ - position: abslute;\ - top: 49%;\ - right: 75%;\ - bottom: 49%;\ - left: 5%;\ - background: #ccc;\ - border-radius: 50%;\ - }\ - .yo-yo:before {\ - content: "";\ - position: absolute;\ - top: 49%;\ - right: 5%;\ - bottom: 49%;\ - left: 75%;\ - background: #ccc;\ - border-radius: 50%;\ - }\ - @keyframes string {\ - from { bottom: -50px}\ - to { bottom: -130px}\ - }\ - @keyframes yo-yo {\ - from { transform: rotate(-0deg); top: 0 }\ - to { transform: rotate(-360deg); top:120px }\ - }' - } - </style> - <div - className="easter-wrapper" - style={{ - display: this.state.whatToDisplay ? 'block' : 'none' - }}> - <span className="string">{}</span> - <span className="yo-yo">{}</span> - </div> - </div> - ); - } -} - -export default ImportantLogic; |