imbric-theme 1.1.4 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,13 @@
1
1
  import React, { useState } from 'react'
2
2
  import PropTypes from 'prop-types'
3
3
  import ReactTooltip from 'react-tooltip'
4
- import { Horizontal, Vertical } from '../../layout/Spacer/components'
4
+ // import { Horizontal, Vertical } from '../../layout/Spacer/components'
5
5
  import Label from '../../atoms/Label'
6
6
  import Icon from '../../atoms/Icon'
7
+ import Button from '../../atoms/Button'
7
8
 
8
9
  import styles from './CardServiceDetail.module.css'
9
- import { options } from './constants'
10
+ // import { options } from './constants'
10
11
  import withStyles from '../../hocs/withStyles'
11
12
 
12
13
  export const handleClick = ({ onClick }) => (event) => {
@@ -20,8 +21,8 @@ export const CardServiceDetail = ({
20
21
  txtInfoLabel,
21
22
  txtUserService,
22
23
  statusService,
23
- txtZoneService,
24
- txtTimeTotalService,
24
+ // txtZoneService,
25
+ // txtTimeTotalService,
25
26
  txtDistanceService,
26
27
  txtServiceService,
27
28
  txtPayService,
@@ -30,13 +31,12 @@ export const CardServiceDetail = ({
30
31
  txtModelCarService,
31
32
  txtCarNumberService,
32
33
  txtNumberDriverService,
33
- viewNumberDriverService,
34
34
  txtSmsDriverService,
35
35
  onClickCross,
36
36
  txtTootipCross,
37
37
  labelUserService,
38
- labelZoneService,
39
- labelTimeTotalService,
38
+ // labelZoneService,
39
+ // labelTimeTotalService,
40
40
  labelDistanceService,
41
41
  labelServiceService,
42
42
  labelPayService,
@@ -46,6 +46,12 @@ export const CardServiceDetail = ({
46
46
  labelCarNumberService,
47
47
  labelNumberDriverService,
48
48
  labelSmsDriverService,
49
+ labelPhoneNumberSupplierService,
50
+ txtPhoneNumberSupplierService,
51
+ labelPhoneNumberTaxiDriverService,
52
+ txtPhoneNumberTaxiDriverService,
53
+ canRequestCallFromDriver,
54
+ onClickBtnCanRequestCallFromDriver,
49
55
  }) => {
50
56
  // STATE TOOLTIP
51
57
  const [isToolTipMounted, setIsToolTipMounted] = useState(false)
@@ -96,16 +102,32 @@ export const CardServiceDetail = ({
96
102
  </div>
97
103
 
98
104
  <div className={getStyles('card-content')}>
99
- <div className={getStyles('card-subcontent')}>
105
+ <div className={getStyles('card-subcontent-inLine')}>
100
106
  <Label>
101
107
  <Icon name="reference" size="xs" color="highlight" />
102
108
  &nbsp;
103
109
  {labelRefService}
104
110
  </Label>
105
111
 
106
- <p className={getStyles('card-content-p')}>{txtRefService}</p>
112
+ <p className={getStyles('card-content-p')}>
113
+ &nbsp; {txtRefService}
114
+ </p>
107
115
  </div>
116
+ </div>
108
117
 
118
+ {txtPhoneNumberSupplierService ? (
119
+ <div className={getStyles('card-content')}>
120
+ <div className={getStyles('card-subcontent-inLine')}>
121
+ <Label>{labelPhoneNumberSupplierService}</Label>
122
+
123
+ <p className={getStyles('card-content-p')}>
124
+ &nbsp; {txtPhoneNumberSupplierService}
125
+ </p>
126
+ </div>
127
+ </div>
128
+ ) : null}
129
+
130
+ <div className={getStyles('card-content')}>
109
131
  <div className={getStyles('card-subcontent')}>
110
132
  <Label>
111
133
  <Icon name="userNumber" size="xs" color="highlight" />
@@ -127,6 +149,31 @@ export const CardServiceDetail = ({
127
149
  </div>
128
150
  </div>
129
151
 
152
+ {txtPhoneNumberTaxiDriverService ? (
153
+ <div className={getStyles('card-content')}>
154
+ <div className={getStyles('card-subcontent-inLine')}>
155
+ <Label>{labelPhoneNumberTaxiDriverService}</Label>
156
+
157
+ <p className={getStyles('card-content-p')}>
158
+ &nbsp; {txtPhoneNumberTaxiDriverService}
159
+ </p>
160
+ </div>
161
+ </div>
162
+ ) : null}
163
+
164
+ {canRequestCallFromDriver ? (
165
+ <div className={getStyles('card-content-btn')}>
166
+ <div className={getStyles('card-subcontent-inLine')}>
167
+ <Button
168
+ type="primary"
169
+ onClick={onClickBtnCanRequestCallFromDriver}
170
+ >
171
+ Solicitar que el conductor me llame
172
+ </Button>
173
+ </div>
174
+ </div>
175
+ ) : null}
176
+
130
177
  <div className={getStyles('card-content')}>
131
178
  {/* <div className={getStyles('card-subcontent')}>
132
179
  <Label>
@@ -138,21 +185,19 @@ export const CardServiceDetail = ({
138
185
  <p className={getStyles('card-content-p')}>{txtZoneService}</p>
139
186
  </div> */}
140
187
 
141
- {viewNumberDriverService ? (
142
- <div className={getStyles('card-subcontent')}>
143
- <Label>
144
- <Icon name="userNumber" size="xs" color="highlight" />
145
- &nbsp;
146
- {labelNumberDriverService}
147
- </Label>
188
+ <div className={getStyles('card-subcontent')}>
189
+ <Label>
190
+ {/* <Icon name="userNumber" size="xs" color="highlight" />
191
+ &nbsp; */}
192
+ {labelNumberDriverService}
193
+ </Label>
148
194
 
149
- <p className={getStyles('card-content-p')}>
150
- {txtNumberDriverService}
151
- </p>
152
- </div>
153
- ) : null}
195
+ <p className={getStyles('card-content-p')}>
196
+ {txtNumberDriverService}
197
+ </p>
198
+ </div>
154
199
 
155
- <div className={getStyles('card-subcontent')}>
200
+ {/* <div className={getStyles('card-subcontent')}>
156
201
  <Label>
157
202
  <Icon name="clock" size="xs" color="highlight" />
158
203
  &nbsp;
@@ -160,7 +205,7 @@ export const CardServiceDetail = ({
160
205
  </Label>
161
206
 
162
207
  <p className={getStyles('card-content-p')}>{txtTimeTotalService}</p>
163
- </div>
208
+ </div> */}
164
209
 
165
210
  <div className={getStyles('card-subcontent')}>
166
211
  <Label>
@@ -193,7 +238,9 @@ export const CardServiceDetail = ({
193
238
 
194
239
  <p className={getStyles('card-content-p')}>{txtPayService}</p>
195
240
  </div>
241
+ </div>
196
242
 
243
+ <div className={getStyles('card-content')}>
197
244
  <div className={getStyles('card-subcontent')}>
198
245
  <Label>
199
246
  <Icon name="userNumber" size="xs" color="highlight" />
@@ -203,9 +250,7 @@ export const CardServiceDetail = ({
203
250
 
204
251
  <p className={getStyles('card-content-p')}>{txtServiceService}</p>
205
252
  </div>
206
- </div>
207
253
 
208
- <div className={getStyles('card-content')}>
209
254
  <div className={getStyles('card-subcontent')}>
210
255
  <Label>
211
256
  <Icon name="messageDriver" size="xs" color="highlight" />
@@ -253,8 +298,8 @@ CardServiceDetail.propTypes = {
253
298
  txtInfoLabel: PropTypes.any,
254
299
  statusService: PropTypes.number,
255
300
  txtUserService: PropTypes.string,
256
- txtZoneService: PropTypes.string,
257
- txtTimeTotalService: PropTypes.string,
301
+ // txtZoneService: PropTypes.string,
302
+ // txtTimeTotalService: PropTypes.string,
258
303
  txtDistanceService: PropTypes.string,
259
304
  txtServiceService: PropTypes.string,
260
305
  txtPayService: PropTypes.string,
@@ -263,14 +308,13 @@ CardServiceDetail.propTypes = {
263
308
  txtModelCarService: PropTypes.string,
264
309
  txtCarNumberService: PropTypes.string,
265
310
  txtNumberDriverService: PropTypes.string,
266
- viewNumberDriverService: PropTypes.bool,
267
311
  txtSmsDriverService: PropTypes.string,
268
312
  onClickCross: PropTypes.func,
269
313
  txtTootipCross: PropTypes.string,
270
314
  selectCard: PropTypes.bool,
271
315
  labelUserService: PropTypes.string,
272
- labelZoneService: PropTypes.string,
273
- labelTimeTotalService: PropTypes.string,
316
+ // labelZoneService: PropTypes.string,
317
+ // labelTimeTotalService: PropTypes.string,
274
318
  labelDistanceService: PropTypes.string,
275
319
  labelServiceService: PropTypes.string,
276
320
  labelPayService: PropTypes.string,
@@ -280,6 +324,12 @@ CardServiceDetail.propTypes = {
280
324
  labelCarNumberService: PropTypes.string,
281
325
  labelNumberDriverService: PropTypes.string,
282
326
  labelSmsDriverService: PropTypes.string,
327
+ txtPhoneNumberSupplierService: PropTypes.string,
328
+ labelPhoneNumberSupplierService: PropTypes.string,
329
+ labelPhoneNumberTaxiDriverService: PropTypes.string,
330
+ txtPhoneNumberTaxiDriverService: PropTypes.string,
331
+ onClickBtnCanRequestCallFromDriver: PropTypes.func,
332
+ canRequestCallFromDriver: PropTypes.bool,
283
333
  }
284
334
 
285
335
  CardServiceDetail.defaultProps = {
@@ -287,8 +337,8 @@ CardServiceDetail.defaultProps = {
287
337
  txtInfoLabel: '',
288
338
  statusService: 10,
289
339
  txtUserService: '',
290
- txtZoneService: '',
291
- txtTimeTotalService: '',
340
+ // txtZoneService: '',
341
+ // txtTimeTotalService: '',
292
342
  txtDistanceService: '',
293
343
  txtServiceService: '',
294
344
  txtPayService: '',
@@ -297,14 +347,13 @@ CardServiceDetail.defaultProps = {
297
347
  txtModelCarService: '',
298
348
  txtCarNumberService: '',
299
349
  txtNumberDriverService: '',
300
- viewNumberDriverService: false,
301
350
  txtSmsDriverService: '',
302
351
  onClickCross: () => {},
303
352
  txtTootipCross: 'Cerrar',
304
353
  selectCard: false,
305
354
  labelUserService: 'Creado por:',
306
- labelZoneService: 'Recogida',
307
- labelTimeTotalService: 'Tiempo estimado',
355
+ // labelZoneService: 'Recogida',
356
+ // labelTimeTotalService: 'Tiempo estimado',
308
357
  labelDistanceService: 'Distancia',
309
358
  labelServiceService: 'Servicio',
310
359
  labelPayService: 'Método de pago',
@@ -314,6 +363,12 @@ CardServiceDetail.defaultProps = {
314
363
  labelCarNumberService: ' Matrícula',
315
364
  labelNumberDriverService: ' Telefono conductor',
316
365
  labelSmsDriverService: 'Mensaje al conductor',
366
+ txtPhoneNumberSupplierService: '',
367
+ labelPhoneNumberSupplierService: 'Teléfono de la flota',
368
+ txtPhoneNumberTaxiDriverService: '',
369
+ labelPhoneNumberTaxiDriverService: 'Teléfono del conductor',
370
+ onClickBtnCanRequestCallFromDriver: () => {},
371
+ canRequestCallFromDriver: false,
317
372
  }
318
373
 
319
374
  export default withStyles(styles)(CardServiceDetail)
@@ -1,4 +1,4 @@
1
- .card-service-detail {
1
+ .card-service-detail {
2
2
  /* display: flex; */
3
3
  width: 100%;
4
4
  align-items: center;
@@ -35,6 +35,17 @@
35
35
  margin-left: 4px;
36
36
  }
37
37
 
38
+ .card-content-btn {
39
+ display: flex;
40
+ align-items: center;
41
+ align-content: center;
42
+ border-top: 1px solid #dfe8f2;
43
+ padding: 6px 6px;
44
+ justify-content: center;
45
+ flex-wrap: nowrap;
46
+ }
47
+
48
+
38
49
  .card-content-action {
39
50
  padding-right: 4px;
40
51
  }
@@ -143,7 +154,7 @@
143
154
  -webkit-background-size: 4px 100%;
144
155
  -moz-background-size: 4px 100%;
145
156
  background-size: 4px 100%;
146
- background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMzYWNmZDUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNhNGVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=),url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMzYWNmZDUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNhNGVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
157
+ background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMzYWNmZDUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNhNGVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=), url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMzYWNmZDUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNhNGVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
147
158
  background-image: -webkit-linear-gradient(top, #39b54a 0%, #00a3ff 100%), -webkit-linear-gradient(top, #39b54a 0%, #00a3ff 100%);
148
159
  background-image: -moz-linear-gradient(top, #39b54a 0%, #00a3ff 100%), -moz-linear-gradient(top, #39b54a 0%, #00a3ff 100%);
149
160
  background-image: -o-linear-gradient(top, #39b54a 0%, #00a3ff 100%), -o-linear-gradient(top, #39b54a 0%, #00a3ff 100%);
@@ -151,13 +162,13 @@
151
162
  }
152
163
 
153
164
  .flip-out-hor-bottom {
154
- -webkit-animation: flip-out-hor-bottom 0.45s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
155
- animation: flip-out-hor-bottom 0.45s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
165
+ -webkit-animation: flip-out-hor-bottom 0.45s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
166
+ animation: flip-out-hor-bottom 0.45s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
156
167
  }
157
168
 
158
169
  .flip-in-hor-bottom {
159
- -webkit-animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
160
- animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
170
+ -webkit-animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
171
+ animation: flip-in-hor-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
161
172
  }
162
173
 
163
174
  /**
@@ -165,27 +176,30 @@
165
176
  * animation flip-out-hor-bottom
166
177
  * ----------------------------------------
167
178
  */
168
- @-webkit-keyframes flip-out-hor-bottom {
179
+ @-webkit-keyframes flip-out-hor-bottom {
169
180
  0% {
170
181
  -webkit-transform: rotateX(0);
171
- transform: rotateX(0);
182
+ transform: rotateX(0);
172
183
  opacity: 1;
173
184
  }
185
+
174
186
  100% {
175
187
  -webkit-transform: rotateX(-70deg);
176
- transform: rotateX(-70deg);
188
+ transform: rotateX(-70deg);
177
189
  opacity: 0;
178
190
  }
179
191
  }
192
+
180
193
  @keyframes flip-out-hor-bottom {
181
194
  0% {
182
195
  -webkit-transform: rotateX(0);
183
- transform: rotateX(0);
196
+ transform: rotateX(0);
184
197
  opacity: 1;
185
198
  }
199
+
186
200
  100% {
187
201
  -webkit-transform: rotateX(-70deg);
188
- transform: rotateX(-70deg);
202
+ transform: rotateX(-70deg);
189
203
  opacity: 0;
190
204
  }
191
205
  }
@@ -196,27 +210,30 @@
196
210
  * animation flip-in-hor-bottom
197
211
  * ----------------------------------------
198
212
  */
199
- @-webkit-keyframes flip-in-hor-bottom {
213
+ @-webkit-keyframes flip-in-hor-bottom {
200
214
  0% {
201
215
  -webkit-transform: rotateX(80deg);
202
- transform: rotateX(80deg);
216
+ transform: rotateX(80deg);
203
217
  opacity: 0;
204
218
  }
219
+
205
220
  100% {
206
221
  -webkit-transform: rotateX(0);
207
- transform: rotateX(0);
222
+ transform: rotateX(0);
208
223
  opacity: 1;
209
224
  }
210
225
  }
226
+
211
227
  @keyframes flip-in-hor-bottom {
212
228
  0% {
213
229
  -webkit-transform: rotateX(80deg);
214
- transform: rotateX(80deg);
230
+ transform: rotateX(80deg);
215
231
  opacity: 0;
216
232
  }
233
+
217
234
  100% {
218
235
  -webkit-transform: rotateX(0);
219
- transform: rotateX(0);
236
+ transform: rotateX(0);
220
237
  opacity: 1;
221
238
  }
222
- }
239
+ }
@@ -1,5 +1,5 @@
1
1
  import React from 'react'
2
- import { useState } from "react";
2
+ import { useState } from 'react'
3
3
  import PropTypes from 'prop-types'
4
4
  import styles from './ColumnTable.module.css'
5
5
  import { options } from './constants'
@@ -10,145 +10,123 @@ import Icon from '../../atoms/Icon'
10
10
  import DynamicSelect from '../../molecules/DynamicSelect'
11
11
  import { Horizontal, Vertical } from '../../layout/Spacer/components'
12
12
 
13
-
14
- export const ColumnTable = ({ getStyles, handleSorting, columnUppercase, onChangeInput, onChangeSelect, columnsData, opSelect }) => {
15
-
13
+ export const ColumnTable = ({
14
+ getStyles,
15
+ handleSorting,
16
+ columnUppercase,
17
+ onChangeInput,
18
+ onChangeSelect,
19
+ columnsData,
20
+ opSelect,
21
+ }) => {
16
22
  // const [sortable, setSortable] = useState(true)
17
23
  // const [accessor, setAccessor] = useState("")
18
24
 
19
- const [sortField, setSortField] = useState("")
20
- const [order, setOrder] = useState("asc")
25
+ const [sortField, setSortField] = useState('')
26
+ const [order, setOrder] = useState('asc')
21
27
 
22
28
  // const [optionsSelect, setOptionsSelect] = useState(opSelect);
23
29
 
24
-
25
30
  const handleSortingChange = (accessor) => {
26
- const sortOrder =
27
- accessor === sortField && order === "asc" ? "desc" : "asc"
31
+ const sortOrder = accessor === sortField && order === 'asc' ? 'desc' : 'asc'
28
32
 
29
33
  setSortField(accessor)
30
34
  setOrder(sortOrder)
31
35
  handleSorting(accessor, sortOrder)
32
36
  }
33
37
 
34
-
35
38
  return (
36
-
37
39
  // <div className={getStyles('tbl-header')}>
38
40
  // <table className={getStyles('table')} cellPadding="0" cellSpacing="0" border="0">
39
41
  <thead>
40
42
  <tr>
41
-
42
43
  {columnsData.map(({ accessor, sortable, ...props }) => {
43
-
44
44
  const cl = sortable
45
- ? sortField && sortField === accessor && order === "asc"
46
- ? "up"
47
- : sortField && sortField === accessor && order === "desc"
48
- ? "down"
49
- : "default"
50
- : "";
51
-
52
- return (
53
- props.activeView ?
54
- // setSortable(props.sortable)
55
- // setAccessor()
56
- (<th
57
- key={props.idInput}
58
- className={getStyles('column-table',
59
- { 'column-uppercase': columnUppercase },
60
- { 'thacction': accessor === 'iconUrl' },
61
- { 'thcheckbox': props.isCheckbox }
62
- )}>
63
-
64
- <span className={getStyles('tbl-txtTh')} onClick={sortable ? () => handleSortingChange(accessor) : null}>
65
- <Paragraph
66
- size="xs"
67
- isInline
68
- >
69
- {props.title}
70
- </Paragraph>
71
-
72
- <Horizontal size="xs" />
73
-
74
- {sortable ?
75
-
76
- cl === "default" ?
77
- <Icon
78
- name="angleUpDown"
79
- size="xs"
80
- />
81
- : cl === "" ? null
82
-
83
- : cl === "up"
84
- ? <Icon
85
- name="angleDown"
86
- size="xs"
87
- />
88
-
89
- : <Icon
90
- name="angleUp"
91
- size="xs"
92
- />
93
- : null
94
- }
95
- </span>
96
-
97
-
98
- <Vertical size="xs" />
99
-
100
- {props.viewIsFilter ? (
101
-
102
- props.typeFilter === 'select' ?
103
-
104
-
105
- props.opSelectSecundary ?
106
-
107
- <DynamicSelect
108
- isInline
109
- // onChange={item => useStateDate([item.selection])}
110
- onChange={item => { onChangeSelect(item, props.idInput) }}
111
- optionsSelect={props.optionsSelect}
112
- placeholder={props.placeholder}
113
- maxMenuHeight={110}
114
- />
115
-
116
- :
117
-
118
- <DynamicSelect
119
- isInline
120
- // onChange={item => useStateDate([item.selection])}
121
- onChange={item => { onChangeSelect(item, props.idInput) }}
122
- optionsSelect={opSelect || props.optionsSelect}
123
- placeholder={props.placeholder}
124
- maxMenuHeight={110}
125
- />
126
-
127
- :
128
- <Input
129
- isInputFilter
130
- id={props.idInput}
131
- type={props.typeFilter}
132
- name={props.nameInput}
133
- onChange={onChangeInput}
45
+ ? sortField && sortField === accessor && order === 'asc'
46
+ ? 'up'
47
+ : sortField && sortField === accessor && order === 'desc'
48
+ ? 'down'
49
+ : 'default'
50
+ : ''
51
+
52
+ return props.activeView ? (
53
+ // setSortable(props.sortable)
54
+ // setAccessor()
55
+ <th
56
+ key={props.idInput}
57
+ className={getStyles(
58
+ 'column-table',
59
+ { 'column-uppercase': columnUppercase },
60
+ { thacction: accessor === 'iconUrl' },
61
+ { thcheckbox: props.isCheckbox }
62
+ )}
63
+ >
64
+ <span
65
+ className={getStyles('tbl-txtTh')}
66
+ onClick={sortable ? () => handleSortingChange(accessor) : null}
67
+ >
68
+ <Paragraph size="xs" isInline>
69
+ {props.title}
70
+ </Paragraph>
71
+
72
+ <Horizontal size="xs" />
73
+
74
+ {sortable ? (
75
+ cl === 'default' ? (
76
+ <Icon name="angleUpDown" size="xs" />
77
+ ) : cl === '' ? null : cl === 'up' ? (
78
+ <Icon name="angleDown" size="xs" />
79
+ ) : (
80
+ <Icon name="angleUp" size="xs" />
81
+ )
82
+ ) : null}
83
+ </span>
84
+
85
+ <Vertical size="xs" />
86
+
87
+ {props.viewIsFilter ? (
88
+ props.typeFilter === 'select' ? (
89
+ props.opSelectSecundary ? (
90
+ <DynamicSelect
91
+ isInline
92
+ // onChange={item => useStateDate([item.selection])}
93
+ onChange={(item) => {
94
+ onChangeSelect(item, props.idInput)
95
+ }}
96
+ optionsSelect={props.optionsSelect}
134
97
  placeholder={props.placeholder}
98
+ maxMenuHeight={110}
135
99
  />
100
+ ) : (
101
+ <DynamicSelect
102
+ isInline
103
+ // onChange={item => useStateDate([item.selection])}
104
+ onChange={(item) => {
105
+ onChangeSelect(item, props.idInput)
106
+ }}
107
+ optionsSelect={opSelect || props.optionsSelect}
108
+ placeholder={props.placeholder}
109
+ maxMenuHeight={110}
110
+ />
111
+ )
112
+ ) : (
113
+ <Input
114
+ isInputFilter
115
+ id={props.idInput}
116
+ type={props.typeFilter}
117
+ name={props.nameInput}
118
+ onChange={onChangeInput}
119
+ placeholder={props.placeholder}
120
+ />
136
121
  )
137
-
138
- : null
139
- }
140
-
141
- </th>
142
- ) : null
143
- )
144
-
122
+ ) : null}
123
+ </th>
124
+ ) : null
145
125
  })}
146
-
147
126
  </tr>
148
127
  </thead>
149
128
  // </table>
150
129
  // </div>
151
-
152
130
  )
153
131
  }
154
132
 
@@ -161,11 +139,11 @@ ColumnTable.propTypes = {
161
139
  }
162
140
 
163
141
  ColumnTable.defaultProps = {
164
- getStyles: () => { },
165
- handleSorting: () => { },
142
+ getStyles: () => {},
143
+ handleSorting: () => {},
166
144
  columnUppercase: false,
167
- onChangeInput: () => { },
168
- onChangeSelect: () => { },
145
+ onChangeInput: () => {},
146
+ onChangeSelect: () => {},
169
147
  }
170
148
 
171
149
  export default withStyles(styles)(ColumnTable)