-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariablesDefinition10.txt
221 lines (204 loc) · 5.7 KB
/
variablesDefinition10.txt
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
216
217
218
219
220
221
1.
const imagesToFiles = (images: any[]) => {
//...
return files;
};
=>
const imagesToFiles = (images: string[]): string[] => {
//...
return files;
};
//явное определение типа возвращаемого значения функцией
2.
const getProducts = async () => {
try {
const res = await fetchGetProducts();
if (res) {
setProducts(res.data);
}
} catch {
toast.error("getProducts wrong");
}
};
=>
const getProducts = async (): Promise<void> => {
try {
const products: IProduct[] = (await fetchGetProducts()).data;
if (products) {
setProducts(res);
}
} catch {
toast.error("getProducts wrong");
}
};
//явное определение типа возвращаемого значения функцией
//явное определение типа переменной products
3, 4, 5.
const setSettings = async (
generationName: string,
imageCount: number,
width: number,
height: number,
init: any
) => {
let config: IConfig = {
layers: layerName
.filter((item) => item.isUploaded === true)
.map((item) => item.name),
image_count: imageCount,
image_details: {
width: width,
height: height,
},
};
//60 строк
const res = await fetchSetSettings(
generationName,
config,
rarity,
init,
manifestJsonResult
);
}
=>
const setSettings = async (
generationName: string,
imageCount: number,
width: number,
height: number,
init: { [x: string]: number }
): Promise<boolean> => {
//60 строк
let config: IConfig = {
layers: layerName
.filter((item) => item.isUploaded === true)
.map((item) => item.name),
image_count: imageCount,
image_details: {
width: width,
height: height,
},
};
const isLoadedSettings = await fetchSetSettings(
generationName,
config,
rarity,
init,
manifestJsonResult
);
if (isLoadedSettings.data.result) {
return true;
}
return false;
}
//явное определение типа переменной init
//инициализация переменной там, где она используется
//явное определение типа возвращаемого значения функцией
6, 7, 8.
const checkAllLayers = () => {
let names: any = [];
layerName.map((item, index) => {
names.push(item.name);
});
if (
generationName === "" ||
Number(amount) < 1 ||
layerName.find((i) => i.name === "") !== undefined ||
layerName.find((i) => i.images.length === 0) !== undefined ||
!check2 ||
check1.find((i) => i === false) !== undefined
) {
return true;
} else {
return false;
}
}
=>
const checkAllLayers = (checkedLayers: boolean[], isCheckedSecondStep: boolean): boolean => {
const isEmptyNames = layerName.findIndex((i) => i.name === "") === -1;
const isEmptyImages = layerName.findIndex((i) => i.images.length === 0) === -1;
const isChecked = checkedLayers.findIndex((i) => i === false) !== -1;
if (
generationName === "" ||
Number(amount) < 1 ||
isEmptyNames === false ||
isEmptyImages === false ||
isCheckedSecondStep === false ||
isChecked === false
) {
return true;
} else {
return false;
}
}
//явное определение типа возвращаемого значения функцией
//удаление неиспользуемой переменной names
//явное определение типа входных параметров функции
//упрощение условия
9.
const setCheckboxes = () => {...}
=>
const setCheckboxes = (): void => {...}
//явное определение типа возвращаемого значения функцией
10, 11.
const swapElements = (array: any) => {...}
=>
const swapElements = (
array: { name: string; weight: number }[]
): { name: string; weight: number }[] => {...}
//явное определение типа возвращаемого значения функцией
//явное определение типа входных параметров функции
12.
const getBlockchainId = (blockchain: string) => {...}
=>
const getBlockchainId = (blockchain: string): number => {...}
//явное определение типа возвращаемого значения функцией
13.
const checkedSecondStep = () => {
let totalAmount = 1;
//20 строк
if (totalAmount >= amount) {
return true;
} else {
toast.error("max images = " + String(Math.floor(res)));
return false;
}
}
=>
const checkedSecondStep = () => {
//20 строк
let totalAmount = 1;
if (totalAmount >= amount) {
return true;
} else {
toast.error("max images = " + String(Math.floor(res)));
return false;
}
}
//инициализация переменной там, где она используется
14, 15.
def lengthOfKey(text):
dict = alphabet(text)
text2 = oneRegistr(text)
text1 = ""
for i in text2:
if i in dict:
text1+=i
arrOfInd = searchCombinations(text1, 3)
//...
}
=>
def lengthOfKey(text):
dict = alphabet(text)
text2 = oneRegistr(text)
text1 = ""
for i in text2:
if i in dict:
text1+=i
dict = None
text2 = None
arrOfInd = searchCombinations(text1, 3)
//...
}
//присваивание "недопустимого" значения переменной dict
//присваивание "недопустимого" значения переменной text2