FixedPlugin.jsx
7.53 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*!
=========================================================
* Light Bootstrap Dashboard React - v1.3.0
=========================================================
* Product Page: https://www.creative-tim.com/product/light-bootstrap-dashboard-react
* Copyright 2019 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/light-bootstrap-dashboard-react/blob/master/LICENSE.md)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
/*eslint-disable*/
import React, { Component } from "react";
import Toggle from "react-toggle";
``
class FixedPlugin extends Component {
constructor(props) {
super(props);
this.state = {
classes: "dropdown show-dropdown open",
bg_checked: true,
bgImage: this.props.bgImage
};
}
handleClick = () => {
this.props.handleFixedClick();
};
onChangeClick = () => {
this.props.handleHasImage(!this.state.bg_checked);
this.setState({ bg_checked: !this.state.bg_checked });
};
render() {
return (
<div className="fixed-plugin">
<div id="fixedPluginClasses" className={this.props.fixedClasses}>
<div onClick={this.handleClick}>
<i className="fa fa-cog fa-2x" />
</div>
<ul className="dropdown-menu">
<li className="header-title">Configuration</li>
<li className="adjustments-line">
<p className="pull-left">Background Image</p>
<div className="pull-right">
<Toggle
defaultChecked={this.state.bg_checked}
onChange={this.onChangeClick}
/>
</div>
<div className="clearfix" />
</li>
<li className="adjustments-line">
<a className="switch-trigger">
<p>Filters</p>
<div className="pull-right">
<span
className={
this.props.bgColor === "black"
? "badge filter active"
: "badge filter"
}
data-color="black"
onClick={() => {
this.props.handleColorClick("black");
}}
/>
<span
className={
this.props.bgColor === "azure"
? "badge filter badge-azure active"
: "badge filter badge-azure"
}
data-color="azure"
onClick={() => {
this.props.handleColorClick("azure");
}}
/>
<span
className={
this.props.bgColor === "green"
? "badge filter badge-green active"
: "badge filter badge-green"
}
data-color="green"
onClick={() => {
this.props.handleColorClick("green");
}}
/>
<span
className={
this.props.bgColor === "orange"
? "badge filter badge-orange active"
: "badge filter badge-orange"
}
data-color="orange"
onClick={() => {
this.props.handleColorClick("orange");
}}
/>
<span
className={
this.props.bgColor === "red"
? "badge filter badge-red active"
: "badge filter badge-red"
}
data-color="red"
onClick={() => {
this.props.handleColorClick("red");
}}
/>
<span
className={
this.props.bgColor === "purple"
? "badge filter badge-purple active"
: "badge filter badge-purple"
}
data-color="purple"
onClick={() => {
this.props.handleColorClick("purple");
}}
/>
</div>
<div className="clearfix" />
</a>
</li>
<li className="header-title">Sidebar Images</li>
<li className={this.state["bgImage"] === imagine1 ? "active" : ""}>
<a
className="img-holder switch-trigger"
onClick={() => {
this.setState({ bgImage: imagine1 });
this.props.handleImageClick(imagine1);
}}
>
<img src={imagine1} alt="..." />
</a>
</li>
<li className={this.state["bgImage"] === imagine2 ? "active" : ""}>
<a
className="img-holder switch-trigger"
onClick={() => {
this.setState({ bgImage: imagine2 });
this.props.handleImageClick(imagine2);
}}
>
<img src={imagine2} alt="..." />
</a>
</li>
<li className={this.state["bgImage"] === imagine3 ? "active" : ""}>
<a
className="img-holder switch-trigger"
onClick={() => {
this.setState({ bgImage: imagine3 });
this.props.handleImageClick(imagine3);
}}
>
<img src={imagine3} alt="..." />
</a>
</li>
<li className={this.state["bgImage"] === imagine4 ? "active" : ""}>
<a
className="img-holder switch-trigger"
onClick={() => {
this.setState({ bgImage: imagine4 });
this.props.handleImageClick(imagine4);
}}
>
<img src={imagine4} alt="..." />
</a>
</li>
<li className="button-container">
<div className="">
<a
href="https://www.creative-tim.com/product/light-bootstrap-dashboard-react?ref=lbdr-fixed-plugin"
target="_blank"
className="btn btn-success btn-block btn-fill"
>
Download free!
</a>
</div>
</li>
<li className="button-container">
<div className="">
<a
href="https://www.creative-tim.com/product/light-bootstrap-dashboard-pro-react?ref=lbdr-fixed-plugin"
target="_blank"
className="btn btn-warning btn-block btn-fill"
>
Buy Pro
</a>
</div>
</li>
<li className="button-container">
<a
href="https://demos.creative-tim.com/light-bootstrap-dashboard-react/#/documentation/getting-started?ref=lbdr-fixed-plugin"
target="_blank"
className="btn btn-fill btn-info"
>
Documentation
</a>
</li>
</ul>
</div>
</div>
);
}
}
export default FixedPlugin;