jornada-ui 0.4.16 → 0.4.18

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.
Files changed (59) hide show
  1. package/lib/commonjs/components/modal-type-activities/index.js +7 -6
  2. package/lib/commonjs/components/modal-type-activities/index.js.map +1 -1
  3. package/lib/commonjs/components/modal-type-activities/mock/index.js +34 -3
  4. package/lib/commonjs/components/modal-type-activities/mock/index.js.map +1 -1
  5. package/lib/commonjs/components/modals/modal-change-activitie-history/helpers/index.js +35 -0
  6. package/lib/commonjs/components/modals/modal-change-activitie-history/helpers/index.js.map +1 -0
  7. package/lib/commonjs/components/modals/modal-change-activitie-history/index.js +203 -0
  8. package/lib/commonjs/components/modals/modal-change-activitie-history/index.js.map +1 -0
  9. package/lib/commonjs/components/modals/modal-change-activitie-history/interface.js +6 -0
  10. package/lib/commonjs/components/modals/modal-change-activitie-history/interface.js.map +1 -0
  11. package/lib/commonjs/components/step-indicator/index.js +131 -68
  12. package/lib/commonjs/components/step-indicator/index.js.map +1 -1
  13. package/lib/module/components/modal-type-activities/index.js +8 -7
  14. package/lib/module/components/modal-type-activities/index.js.map +1 -1
  15. package/lib/module/components/modal-type-activities/mock/index.js +33 -2
  16. package/lib/module/components/modal-type-activities/mock/index.js.map +1 -1
  17. package/lib/module/components/modals/modal-change-activitie-history/helpers/index.js +32 -0
  18. package/lib/module/components/modals/modal-change-activitie-history/helpers/index.js.map +1 -0
  19. package/lib/module/components/modals/modal-change-activitie-history/index.js +196 -0
  20. package/lib/module/components/modals/modal-change-activitie-history/index.js.map +1 -0
  21. package/lib/module/components/modals/modal-change-activitie-history/interface.js +4 -0
  22. package/lib/module/components/modals/modal-change-activitie-history/interface.js.map +1 -0
  23. package/lib/module/components/step-indicator/index.js +129 -65
  24. package/lib/module/components/step-indicator/index.js.map +1 -1
  25. package/lib/typescript/commonjs/src/components/modal-type-activities/index.d.ts.map +1 -1
  26. package/lib/typescript/commonjs/src/components/modal-type-activities/interface.d.ts +1 -0
  27. package/lib/typescript/commonjs/src/components/modal-type-activities/interface.d.ts.map +1 -1
  28. package/lib/typescript/commonjs/src/components/modal-type-activities/mock/index.d.ts +17 -0
  29. package/lib/typescript/commonjs/src/components/modal-type-activities/mock/index.d.ts.map +1 -1
  30. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/helpers/index.d.ts +13 -0
  31. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/helpers/index.d.ts.map +1 -0
  32. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/index.d.ts +10 -0
  33. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/index.d.ts.map +1 -0
  34. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/interface.d.ts +18 -0
  35. package/lib/typescript/commonjs/src/components/modals/modal-change-activitie-history/interface.d.ts.map +1 -0
  36. package/lib/typescript/commonjs/src/components/step-indicator/index.d.ts +3 -9
  37. package/lib/typescript/commonjs/src/components/step-indicator/index.d.ts.map +1 -1
  38. package/lib/typescript/module/src/components/modal-type-activities/index.d.ts.map +1 -1
  39. package/lib/typescript/module/src/components/modal-type-activities/interface.d.ts +1 -0
  40. package/lib/typescript/module/src/components/modal-type-activities/interface.d.ts.map +1 -1
  41. package/lib/typescript/module/src/components/modal-type-activities/mock/index.d.ts +17 -0
  42. package/lib/typescript/module/src/components/modal-type-activities/mock/index.d.ts.map +1 -1
  43. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/helpers/index.d.ts +13 -0
  44. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/helpers/index.d.ts.map +1 -0
  45. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/index.d.ts +10 -0
  46. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/index.d.ts.map +1 -0
  47. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/interface.d.ts +18 -0
  48. package/lib/typescript/module/src/components/modals/modal-change-activitie-history/interface.d.ts.map +1 -0
  49. package/lib/typescript/module/src/components/step-indicator/index.d.ts +3 -9
  50. package/lib/typescript/module/src/components/step-indicator/index.d.ts.map +1 -1
  51. package/package.json +1 -1
  52. package/src/components/modal-type-activities/index.tsx +173 -169
  53. package/src/components/modal-type-activities/interface.ts +36 -34
  54. package/src/components/modal-type-activities/mock/index.ts +103 -65
  55. package/src/components/modals/modal-change-activitie-history/helpers/index.ts +15 -0
  56. package/src/components/modals/modal-change-activitie-history/index.tsx +189 -0
  57. package/src/components/modals/modal-change-activitie-history/interface.ts +16 -0
  58. package/src/components/step-indicator/index.tsx +226 -155
  59. package/src/components/step-indicator/interface.d.ts +3 -2
@@ -0,0 +1,196 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * IMPORTS
5
+ */
6
+ import React from "react";
7
+ // libs RN
8
+ import { Modal, View } from "react-native";
9
+
10
+ // componentes
11
+ import Box from "../../box/index.js";
12
+ import Button from "../../button/index.js";
13
+ import Typography from "../../typography/index.js";
14
+ import SelectOption from "../../selects/select-option/index.js";
15
+
16
+ // assets / icons
17
+ import { Icons } from "../../../common/icons-svg/index.js";
18
+
19
+ // helpers / data
20
+ import { optionsActivities } from "./helpers/index.js";
21
+
22
+ // typings
23
+
24
+ // styles / theme
25
+ import { theme } from "../../../styles/theme/theme.js";
26
+
27
+ /**
28
+ * Componente Modal para alteração de atividade.
29
+ */
30
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
31
+ export const ModalChangeActivity = ({
32
+ visible,
33
+ onClose,
34
+ modalConfirm,
35
+ descricao
36
+ }) => {
37
+ const [isLoading] = React.useState(false);
38
+ const initial = (descricao ?? "").toLowerCase().replace(/\s+/g, "_");
39
+ const [selectedOption, setSelectedOption] = React.useState(initial || "none");
40
+ const handleConfirm = () => {
41
+ const selected = optionsActivities?.find(activity => activity.value === selectedOption);
42
+ if (selected && selected.value !== "none") {
43
+ modalConfirm({
44
+ label: selected.label,
45
+ value: selected.value,
46
+ key: selected.key
47
+ });
48
+ }
49
+
50
+ // sempre fechar o modal
51
+ onClose();
52
+ };
53
+ const handleSelectDown = activity => {
54
+ const option = optionsActivities.find(o => o.label === activity || o.value === activity);
55
+ if (option) setSelectedOption(option.value);
56
+ };
57
+ return /*#__PURE__*/_jsx(Modal, {
58
+ animationType: "fade",
59
+ transparent: true,
60
+ visible: visible,
61
+ children: /*#__PURE__*/_jsx(View, {
62
+ style: {
63
+ flex: 1,
64
+ justifyContent: "center",
65
+ alignItems: "center",
66
+ backgroundColor: "rgba(0,0,0,0.6)"
67
+ },
68
+ children: /*#__PURE__*/_jsxs(Box, {
69
+ width: 346,
70
+ backgroundColor: theme.colors.orange[500],
71
+ borderStyled: {
72
+ borderRadius: theme.borderWidths.thick_medium
73
+ },
74
+ paddingStyle: {
75
+ paddingLeft: theme.paddings["2xs"],
76
+ paddingRight: theme.paddings["2xs"],
77
+ paddingTop: theme.paddings.sm,
78
+ paddingBottom: theme.paddings.sm
79
+ },
80
+ children: [/*#__PURE__*/_jsxs(Box, {
81
+ marginStyle: {
82
+ marginBottom: theme.margins["2xs"],
83
+ marginLeft: theme.margins["1xs"]
84
+ },
85
+ flexStyle: {
86
+ flexDirection: "row",
87
+ alignItems: "center"
88
+ },
89
+ children: [/*#__PURE__*/_jsx(Icons, {
90
+ icon: "EXCLAMATION_TRIANGLE",
91
+ color: theme.colors.black[10],
92
+ background: theme.colors.yellow[50],
93
+ size: theme.fontSizes["2xl"]
94
+ }), /*#__PURE__*/_jsx(Typography, {
95
+ text: "Alterar Atividade",
96
+ color: "#fff",
97
+ marginLeft: theme.margins["2xs"],
98
+ fontFamily: theme.fonts.inter_bold_700,
99
+ size: theme.fontSizes.md
100
+ })]
101
+ }), /*#__PURE__*/_jsxs(Box, {
102
+ backgroundColor: theme.colors.neutral[300],
103
+ paddingStyle: {
104
+ padding: theme.paddings.xs
105
+ },
106
+ borderStyled: {
107
+ borderRadius: theme.borderWidths.thick_medium
108
+ },
109
+ children: [/*#__PURE__*/_jsx(Box, {
110
+ flexStyle: {
111
+ flexDirection: "row",
112
+ justifyContent: "flex-start"
113
+ },
114
+ width: "100%",
115
+ children: /*#__PURE__*/_jsx(Typography, {
116
+ text: `Deseja realmente alterar sua atividade?`,
117
+ color: theme.colors.black[25],
118
+ fontFamily: theme.fonts.inter_medium_500,
119
+ size: theme.fontSizes.xs,
120
+ style: {
121
+ flexWrap: "wrap",
122
+ maxWidth: "100%"
123
+ }
124
+ })
125
+ }), /*#__PURE__*/_jsx(SelectOption, {
126
+ titleLabel: "Selecione atividade",
127
+ sizeTitleLabel: theme.fontSizes.xs,
128
+ dataOption: optionsActivities,
129
+ handleSelectDown: handleSelectDown,
130
+ backgroundColor: theme.colors.neutral[300]
131
+ }), /*#__PURE__*/_jsxs(Box, {
132
+ marginStyle: {
133
+ marginTop: theme.margins["1xs"]
134
+ },
135
+ flexStyle: {
136
+ flexDirection: "row",
137
+ justifyContent: "space-between"
138
+ },
139
+ children: [/*#__PURE__*/_jsx(Button, {
140
+ title: "CANCELAR",
141
+ onPress: onClose,
142
+ width: "48%",
143
+ height: 36,
144
+ isLoading: isLoading,
145
+ disabled: isLoading,
146
+ backgroundColor: theme.colors.neutral[300],
147
+ buttonTextStyle: {
148
+ color: theme.colors.blue[100],
149
+ fontFamily: "Inter-Medium",
150
+ fontSize: theme.fontSizes.xs,
151
+ fontWeight: "500"
152
+ },
153
+ flexStyle: {
154
+ flexDirection: "row",
155
+ alignItems: "center",
156
+ justifyContent: "center",
157
+ textAlign: "center"
158
+ },
159
+ borderStyled: {
160
+ borderWidth: theme.borderWidths.thin,
161
+ borderColor: theme.colors.blue[100],
162
+ borderRadius: theme.borderWidths.thick_medium
163
+ }
164
+ }), /*#__PURE__*/_jsx(Button, {
165
+ title: "CONFIRMAR",
166
+ onPress: handleConfirm,
167
+ width: "48%",
168
+ height: 36,
169
+ isLoading: isLoading,
170
+ disabled: isLoading,
171
+ backgroundColor: theme.colors.blue[100],
172
+ buttonTextStyle: {
173
+ color: "#fff",
174
+ fontFamily: "Inter-Medium",
175
+ fontSize: theme.fontSizes.xs,
176
+ fontWeight: "500"
177
+ },
178
+ flexStyle: {
179
+ flexDirection: "row",
180
+ alignItems: "center",
181
+ justifyContent: "center",
182
+ textAlign: "center"
183
+ },
184
+ borderStyled: {
185
+ borderWidth: theme.borderWidths.thin,
186
+ borderColor: theme.colors.blue[100],
187
+ borderRadius: theme.borderWidths.thick_medium
188
+ }
189
+ })]
190
+ })]
191
+ })]
192
+ })
193
+ })
194
+ });
195
+ };
196
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Modal","View","Box","Button","Typography","SelectOption","Icons","optionsActivities","theme","jsx","_jsx","jsxs","_jsxs","ModalChangeActivity","visible","onClose","modalConfirm","descricao","isLoading","useState","initial","toLowerCase","replace","selectedOption","setSelectedOption","handleConfirm","selected","find","activity","value","label","key","handleSelectDown","option","o","animationType","transparent","children","style","flex","justifyContent","alignItems","backgroundColor","width","colors","orange","borderStyled","borderRadius","borderWidths","thick_medium","paddingStyle","paddingLeft","paddings","paddingRight","paddingTop","sm","paddingBottom","marginStyle","marginBottom","margins","marginLeft","flexStyle","flexDirection","icon","color","black","background","yellow","size","fontSizes","text","fontFamily","fonts","inter_bold_700","md","neutral","padding","xs","inter_medium_500","flexWrap","maxWidth","titleLabel","sizeTitleLabel","dataOption","marginTop","title","onPress","height","disabled","buttonTextStyle","blue","fontSize","fontWeight","textAlign","borderWidth","thin","borderColor"],"sourceRoot":"..\\..\\..\\..\\..\\src","sources":["components/modals/modal-change-activitie-history/index.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+
3
+ export {};
4
+ //# sourceMappingURL=interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"..\\..\\..\\..\\..\\src","sources":["components/modals/modal-change-activitie-history/interface.ts"],"mappings":"","ignoreList":[]}
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
 
3
- /**
4
- * IMPORTS
5
- */
6
- import React from "react";
7
- import { View, Text, TouchableOpacity } from "react-native";
3
+ import React, { useState, forwardRef, useImperativeHandle, useRef } from "react";
4
+ import { View, Text, TouchableOpacity, FlatList } from "react-native";
5
+
6
+ // components
7
+ import { ModalChangeActivity } from "../modals/modal-change-activitie-history/index.js";
8
8
 
9
9
  // commons / svg
10
10
  import { Icons } from "../../common/icons-svg/index.js";
@@ -12,83 +12,146 @@ import { Icons } from "../../common/icons-svg/index.js";
12
12
  // helpers
13
13
  import { getIconKeyByValue } from "./helpers/get-icon-by-status.js";
14
14
 
15
+ // typings
16
+
15
17
  // utils
16
18
  import { formHoursMinute } from "../../utils/format-date/index.js";
17
19
 
18
- // typings
19
-
20
20
  // styles
21
21
  import { styles } from "./styles.js";
22
22
  import { theme } from "../../styles/theme/theme.js";
23
+ import { asBaseComponent } from "../../@types/as-base-component.js";
23
24
 
24
25
  /**
25
26
  * Componente StepIndicator para a interação da ui.
26
27
  */
27
28
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
28
- const StepIndicator = ({
29
+ const StepIndicator = /*#__PURE__*/forwardRef(({
29
30
  data = [],
30
31
  type,
31
32
  textColorDescription,
32
33
  titleColor,
33
34
  titleNumberColor,
34
- handleOnPressActivitie
35
- }) => {
35
+ onChangeActivity
36
+ }, ref) => {
36
37
  const StepDefault = () => {
37
- return /*#__PURE__*/_jsx(_Fragment, {
38
- children: data.length > 0 && data.map((history, index) => {
39
- // pegando primeira atividade pelo index
40
- const isFirst = index === 0;
41
- //pegando o tipo de atividade
42
- const isEditableType = history.tipo === "descanso";
38
+ const [isModalVisible, setIsModalVisible] = useState(false);
39
+ const [currentStepIndex, setCurrentStepIndex] = useState(null);
40
+ const [stepData, setStepData] = useState(data);
41
+ const flatListRef = useRef(null);
42
+ const handleOnPressActivitie = (stepItem, index) => {
43
+ const desc = stepItem?.descricao?.toLowerCase?.();
44
+ if (!desc) return;
45
+ const isDescanso = ["descanso", "refeição", "repouso_noturno", "repouso_semanal"].includes(desc.replace(/\s+/g, "_"));
46
+ if (isDescanso && stepItem?.sincronizado === true) {
47
+ setCurrentStepIndex(index);
48
+ setIsModalVisible(true);
49
+ }
50
+ };
51
+ const handleConfirmModal = newData => {
52
+ if (currentStepIndex !== null) {
53
+ const updatedStep = {
54
+ ...stepData[currentStepIndex],
55
+ descricao: newData.label,
56
+ referencia: newData.value,
57
+ jr_tipo_atividade_id: newData.key
58
+ };
59
+ const newSteps = stepData.map((item, index) => index === currentStepIndex ? updatedStep : item);
60
+ setStepData(newSteps);
61
+ if (onChangeActivity) {
62
+ onChangeActivity(updatedStep);
63
+ }
64
+ }
65
+ setIsModalVisible(false);
66
+ setCurrentStepIndex(null);
67
+ };
43
68
 
44
- // pegando o valor para saber se atividade ta ou não sincronizada
45
- const isSynced = history?.sincronizado === true;
46
- const canEdit = isFirst && isEditableType && isSynced;
47
- return /*#__PURE__*/_jsxs(TouchableOpacity, {
48
- testID: "step-indicator",
49
- activeOpacity: 0.7,
50
- style: styles({}).containerIndicator,
51
- disabled: !canEdit,
52
- onPress: () => handleOnPressActivitie(history),
53
- children: [/*#__PURE__*/_jsxs(View, {
69
+ // render item padrão do step indicator
70
+ const renderItem = ({
71
+ item: history,
72
+ index
73
+ }) => {
74
+ const isFirst = index === 0;
75
+ const isEditableType = history.tipo === "descanso";
76
+ const isSynced = history?.sincronizado === true;
77
+ const canEdit = isFirst && isEditableType && isSynced;
78
+ return /*#__PURE__*/_jsxs(TouchableOpacity, {
79
+ testID: "step-indicator",
80
+ activeOpacity: 0.7,
81
+ style: styles({}).containerIndicator,
82
+ disabled: !canEdit,
83
+ onPress: () => handleOnPressActivitie(history, index),
84
+ children: [/*#__PURE__*/_jsxs(View, {
85
+ style: styles({
86
+ sincronizado: history.sincronizado
87
+ }).containerBall,
88
+ children: [stepData.length > 1 && index < stepData.length - 1 && /*#__PURE__*/_jsx(View, {
89
+ style: {
90
+ width: 2,
91
+ height: 84,
92
+ marginTop: 116,
93
+ position: "relative",
94
+ backgroundColor: history.sincronizado ? theme.colors.blue[500] : theme.colors.orange[150]
95
+ }
96
+ }), /*#__PURE__*/_jsx(Text, {
54
97
  style: styles({
55
- sincronizado: history.sincronizado
56
- }).containerBall,
57
- children: [data?.length > 1 && index < data?.length - 1 && /*#__PURE__*/_jsx(View, {
58
- style: {
59
- width: 2,
60
- height: 84,
61
- marginTop: 116,
62
- position: "relative",
63
- backgroundColor: history.sincronizado ? theme.colors.blue[500] : theme.colors.orange[150]
64
- }
65
- }), /*#__PURE__*/_jsx(Text, {
66
- style: styles({
67
- titleNumberColor
68
- }).titleNumber,
69
- children: data?.length - index
70
- })]
71
- }), /*#__PURE__*/_jsxs(View, {
72
- style: styles({}).containerMain,
73
- children: [/*#__PURE__*/_jsx(Text, {
74
- style: styles({
75
- titleColor
76
- }).title,
77
- children: history?.descricao
78
- }), history?.data_inicio && /*#__PURE__*/_jsx(Text, {
79
- style: styles({
80
- textColorDescription
81
- }).titleDescription,
82
- children: `Inicio: ${history.data_inicio} ás ${history.data_fim}`
83
- }), history.duracao_segundos && /*#__PURE__*/_jsxs(Text, {
84
- style: styles({
85
- textColorDescription
86
- }).titleDescription,
87
- children: ["Dura\xE7\xE3o: ", formHoursMinute(history?.duracao_segundos)]
88
- })]
98
+ titleNumberColor
99
+ }).titleNumber,
100
+ children: stepData.length - index
89
101
  })]
90
- }, history.id);
91
- })
102
+ }), /*#__PURE__*/_jsxs(View, {
103
+ style: styles({}).containerMain,
104
+ children: [/*#__PURE__*/_jsx(Text, {
105
+ style: styles({
106
+ titleColor
107
+ }).title,
108
+ children: history?.descricao
109
+ }), history?.data_inicio && /*#__PURE__*/_jsx(Text, {
110
+ style: styles({
111
+ textColorDescription
112
+ }).titleDescription,
113
+ children: `Inicio: ${history.data_inicio} ás ${history.data_fim}`
114
+ }), history.duracao_segundos && /*#__PURE__*/_jsxs(Text, {
115
+ style: styles({
116
+ textColorDescription
117
+ }).titleDescription,
118
+ children: ["Dura\xE7\xE3o: ", formHoursMinute(history?.duracao_segundos)]
119
+ })]
120
+ })]
121
+ });
122
+ };
123
+
124
+ // Expor funções para o pai via forwardRef
125
+ useImperativeHandle(ref, () => ({
126
+ scrollToIndex: index => {
127
+ flatListRef.current?.scrollToIndex({
128
+ index,
129
+ animated: true
130
+ });
131
+ },
132
+ openModalAt: index => {
133
+ if (stepData[index]) {
134
+ setCurrentStepIndex(index);
135
+ setIsModalVisible(true);
136
+ }
137
+ },
138
+ resetSteps: newData => {
139
+ setStepData(newData);
140
+ }
141
+ }));
142
+ return /*#__PURE__*/_jsxs(_Fragment, {
143
+ children: [/*#__PURE__*/_jsx(FlatList, {
144
+ ref: flatListRef,
145
+ data: stepData,
146
+ renderItem: renderItem,
147
+ keyExtractor: (item, index) => String(item?.id ?? String(index)),
148
+ showsVerticalScrollIndicator: false
149
+ }), isModalVisible && /*#__PURE__*/_jsx(ModalChangeActivity, {
150
+ visible: isModalVisible,
151
+ modalConfirm: handleConfirmModal,
152
+ descricao: "",
153
+ onClose: () => setIsModalVisible(false)
154
+ })]
92
155
  });
93
156
  };
94
157
  const StepCustom = () => {
@@ -165,10 +228,11 @@ const StepIndicator = ({
165
228
  return /*#__PURE__*/_jsx(_Fragment, {
166
229
  children: handleRenderComponent(type)
167
230
  });
168
- };
231
+ });
232
+ StepIndicator.displayName = "StepIndicator";
169
233
 
170
234
  /**
171
- * EXPORTS
235
+ * Componente StepIndicator para a interação da ui.
172
236
  */
173
- export default StepIndicator;
237
+ export default asBaseComponent(StepIndicator);
174
238
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","View","Text","TouchableOpacity","Icons","getIconKeyByValue","formHoursMinute","styles","theme","jsx","_jsx","jsxs","_jsxs","Fragment","_Fragment","StepIndicator","data","type","textColorDescription","titleColor","titleNumberColor","handleOnPressActivitie","StepDefault","children","length","map","history","index","isFirst","isEditableType","tipo","isSynced","sincronizado","canEdit","testID","activeOpacity","style","containerIndicator","disabled","onPress","containerBall","width","height","marginTop","position","backgroundColor","colors","blue","orange","titleNumber","containerMain","title","descricao","data_inicio","titleDescription","data_fim","duracao_segundos","id","StepCustom","paddingHorizontal","display","flexDirection","step","indexCustom","borderRadius","alignItems","justifyContent","borderWidth","borderColor","icon","top","fontWeight","fontSize","lineHeight","textAlign","color","handleRenderComponent","stepType"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/step-indicator/index.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["React","useState","forwardRef","useImperativeHandle","useRef","View","Text","TouchableOpacity","FlatList","ModalChangeActivity","Icons","getIconKeyByValue","formHoursMinute","styles","theme","asBaseComponent","jsx","_jsx","jsxs","_jsxs","Fragment","_Fragment","StepIndicator","data","type","textColorDescription","titleColor","titleNumberColor","onChangeActivity","ref","StepDefault","isModalVisible","setIsModalVisible","currentStepIndex","setCurrentStepIndex","stepData","setStepData","flatListRef","handleOnPressActivitie","stepItem","index","desc","descricao","toLowerCase","isDescanso","includes","replace","sincronizado","handleConfirmModal","newData","updatedStep","label","referencia","value","jr_tipo_atividade_id","key","newSteps","map","item","renderItem","history","isFirst","isEditableType","tipo","isSynced","canEdit","testID","activeOpacity","style","containerIndicator","disabled","onPress","children","containerBall","length","width","height","marginTop","position","backgroundColor","colors","blue","orange","titleNumber","containerMain","title","data_inicio","titleDescription","data_fim","duracao_segundos","scrollToIndex","current","animated","openModalAt","resetSteps","keyExtractor","String","id","showsVerticalScrollIndicator","visible","modalConfirm","onClose","StepCustom","paddingHorizontal","display","flexDirection","step","indexCustom","borderRadius","alignItems","justifyContent","borderWidth","borderColor","icon","top","fontWeight","fontSize","lineHeight","textAlign","color","handleRenderComponent","stepType","displayName"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/step-indicator/index.tsx"],"mappings":"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","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal-type-activities/index.tsx"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAqB,MAAM,OAAO,CAAC;AAe1C,OAAO,KAAK,EAAE,oBAAoB,EAAa,MAAM,aAAa,CAAC;AAmJnE;;GAEG;;AACH,wBAA0C"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal-type-activities/index.tsx"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAqB,MAAM,OAAO,CAAC;AAe1C,OAAO,KAAK,EAAE,oBAAoB,EAAa,MAAM,aAAa,CAAC;AAuJnE;;GAEG;;AACH,wBAA0C"}
@@ -15,6 +15,7 @@ interface IModalTypeActivities extends ModalProps, IGlobalCss {
15
15
  onClose: () => void;
16
16
  /** tipo de atividades */
17
17
  activityType: IActivity["tipo"];
18
+ driverType?: "normal" | "reserva";
18
19
  /** se está carregando */
19
20
  isLoading: boolean;
20
21
  /** função que seleciona atividade */
@@ -1 +1 @@
1
- {"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal-type-activities/interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAGhE,UAAU,SAAS;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,UAAU,GAAG,UAAU,CAAC;CAC/B;AAED,UAAU,oBAAqB,SAAQ,UAAU,EAAE,UAAU;IAC3D,6BAA6B;IAC7B,OAAO,EAAE,MAAM,IAAI,CAAC;IAEpB,yBAAyB;IACzB,YAAY,EAAE,SAAS,CAAC,MAAM,CAAC,CAAC;IAEhC,yBAAyB;IACzB,SAAS,EAAE,OAAO,CAAC;IAEnB,qCAAqC;IAErC,oBAAoB,EAAE,CAAC,QAAQ,EAAE,SAAS,KAAK,IAAI,CAAC;CACrD;AAED;;GAEG;AACH,YAAY,EAAE,oBAAoB,EAAE,SAAS,EAAE,CAAC"}
1
+ {"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal-type-activities/interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAGhE,UAAU,SAAS;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,UAAU,GAAG,UAAU,CAAC;CAC/B;AAED,UAAU,oBAAqB,SAAQ,UAAU,EAAE,UAAU;IAC3D,6BAA6B;IAC7B,OAAO,EAAE,MAAM,IAAI,CAAC;IAEpB,yBAAyB;IACzB,YAAY,EAAE,SAAS,CAAC,MAAM,CAAC,CAAC;IAEhC,UAAU,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAElC,yBAAyB;IACzB,SAAS,EAAE,OAAO,CAAC;IAEnB,qCAAqC;IAErC,oBAAoB,EAAE,CAAC,QAAQ,EAAE,SAAS,KAAK,IAAI,CAAC;CACrD;AAED;;GAEG;AACH,YAAY,EAAE,oBAAoB,EAAE,SAAS,EAAE,CAAC"}
@@ -17,4 +17,21 @@ export declare const activities: {
17
17
  tipo: string;
18
18
  }[];
19
19
  };
20
+ export declare const activitiesReserva: {
21
+ trabalho: {
22
+ id: number;
23
+ referencia: string;
24
+ cor_hex: string;
25
+ descricao: string;
26
+ tipo: string;
27
+ }[];
28
+ descanso: {
29
+ id: number;
30
+ atividade_id: number;
31
+ referencia: string;
32
+ cor_hex: string;
33
+ descricao: string;
34
+ tipo: string;
35
+ }[];
36
+ };
20
37
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/modal-type-activities/mock/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;CA6DtB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/modal-type-activities/mock/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;CA6DtB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;CAoC7B,CAAC"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * CONSTANTS
3
+ */
4
+ declare const optionsActivities: {
5
+ label: string;
6
+ value: string;
7
+ key: number;
8
+ }[];
9
+ /**
10
+ * EXPORTS
11
+ */
12
+ export { optionsActivities };
13
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/modals/modal-change-activitie-history/helpers/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,QAAA,MAAM,iBAAiB;;;;GAMtB,CAAC;AAEF;;GAEG;AACH,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
@@ -0,0 +1,10 @@
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import React from "react";
5
+ import type { IModalChangeActivityProps } from "./interface";
6
+ /**
7
+ * Componente Modal para alteração de atividade.
8
+ */
9
+ export declare const ModalChangeActivity: React.FC<IModalChangeActivityProps>;
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/modals/modal-change-activitie-history/index.tsx"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,MAAM,OAAO,CAAC;AAiB1B,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAC;AAK7D;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAgKnE,CAAC"}
@@ -0,0 +1,18 @@
1
+ /**
2
+ * IMPROTS
3
+ */
4
+ interface IModalChangeActivityProps {
5
+ visible: boolean;
6
+ onClose: () => void;
7
+ modalConfirm: (newData: {
8
+ label: string;
9
+ value: string;
10
+ key: number;
11
+ }) => void;
12
+ descricao: string;
13
+ }
14
+ /**
15
+ * EXPORTS
16
+ */
17
+ export { type IModalChangeActivityProps };
18
+ //# sourceMappingURL=interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/modals/modal-change-activitie-history/interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,UAAU,yBAAyB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,IAAI,CAAC;IAEpB,YAAY,EAAE,CAAC,OAAO,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IAC/E,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,OAAO,EAAE,KAAK,yBAAyB,EAAE,CAAC"}
@@ -1,14 +1,8 @@
1
- /**
2
- * IMPORTS
3
- */
4
1
  import React from "react";
5
2
  import type { IStepIndicator } from "./interface";
6
3
  /**
7
- * Componente StepIndicator para a interação da ui.
8
- */
9
- declare const StepIndicator: React.FC<IStepIndicator>;
10
- /**
11
- * EXPORTS
4
+ * Componente StepIndicator para a interação da ui.
12
5
  */
13
- export default StepIndicator;
6
+ declare const _default: React.ComponentType<IStepIndicator & React.RefAttributes<any>>;
7
+ export default _default;
14
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/step-indicator/index.tsx"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAMlD;;GAEG;AAEH,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CA+J3C,CAAC;AAEF;;GAEG;AACH,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/step-indicator/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAajF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAqPlD;;GAEG;;AACH,wBAA8C"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal-type-activities/index.tsx"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAqB,MAAM,OAAO,CAAC;AAe1C,OAAO,KAAK,EAAE,oBAAoB,EAAa,MAAM,aAAa,CAAC;AAmJnE;;GAEG;;AACH,wBAA0C"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/modal-type-activities/index.tsx"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAqB,MAAM,OAAO,CAAC;AAe1C,OAAO,KAAK,EAAE,oBAAoB,EAAa,MAAM,aAAa,CAAC;AAuJnE;;GAEG;;AACH,wBAA0C"}
@@ -15,6 +15,7 @@ interface IModalTypeActivities extends ModalProps, IGlobalCss {
15
15
  onClose: () => void;
16
16
  /** tipo de atividades */
17
17
  activityType: IActivity["tipo"];
18
+ driverType?: "normal" | "reserva";
18
19
  /** se está carregando */
19
20
  isLoading: boolean;
20
21
  /** função que seleciona atividade */