summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/flows/ImportantLogic.jsx
blob: c4ab41841b825e84c01d9935dd4e5a32b22e8b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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;