-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
314 lines (272 loc) · 9.57 KB
/
index.js
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
const ERRORS = {
INVALID_INPUT:
"Um ou mais valores estão inválidos. Insira valores válidos para realizar o cálculo corretamente.",
VALUES_NOT_DECLARED:
"Nenhum valor foi informado, preencha os campos corretamente.",
};
class Validator {
static validate(valuesObject) {
if (valuesObject.length === 0) {
throw new Error(ERRORS.VALUES_NOT_DECLARED);
}
const newValuesObject = {};
const valuesArray = Object.entries(valuesObject);
const isInvalid = valuesArray.some((value) => {
const floatValue = parseFloat(
value[1].replace(/\./g, "").replace(/,/g, "")
);
const isNaN = Number.isNaN(floatValue);
const isNegative = Number(floatValue) < 0;
return isNaN || isNegative;
});
if (isInvalid) throw new Error(ERRORS.INVALID_INPUT);
valuesArray.forEach((valueEntry) => {
return (newValuesObject[valueEntry[0]] = valueEntry[1]
.replace(/\./g, "")
.replace(/,/g, "."));
});
return newValuesObject;
}
}
class Formmater {
static format(valuesObject) {
const newValuesObject = {};
const valuesArray = Object.entries(valuesObject);
const formmatedValues = valuesArray.map((value) => {
return parseFloat(String(value[1]).replace(",", "."));
});
valuesArray.forEach((valueEntry, index) => {
return (newValuesObject[valueEntry[0]] = formmatedValues[index]);
});
return newValuesObject;
}
static transformToReal(value) {
return Intl.NumberFormat("pt-br", {
currency: "brl",
style: "currency",
maximumFractionDigits: 2,
minimumFractionDigits: 2,
}).format(value);
}
static monthToYearPercentage(yearlyPercentage) {
return ((Math.pow(yearlyPercentage / 100 + 1, 1 / 12) - 1) * 100).toFixed(
2
);
}
static yearToMonthPercentage(monthlyPercentage) {
return ((Math.pow(1 + monthlyPercentage / 100, 12) - 1) * 100).toFixed(2);
}
}
class CompoundInterestsCalculator {
constructor({ resultsInterval, ...compoundInterestNecessaryValues }) {
if (resultsInterval === "invalid") {
alert(ERRORS.INVALID_INPUT);
throw new Error(ERRORS.INVALID_INPUT);
}
this.valuesObject = compoundInterestNecessaryValues;
this.resultsInterval = resultsInterval;
this.total = {
totalResult: 0,
totalInvested: 0,
totalInterests: 0,
};
this.#populateValuesObject();
}
#populateValuesObject() {
try {
const validatedValues = Validator.validate(this.valuesObject);
const {
initialValue,
interestRate,
growthRate,
capitalInjection,
totalPeriod,
} = Formmater.format(validatedValues);
this.initialValue = initialValue;
this.interestRate =
this.resultsInterval === "yearly"
? Formmater.monthToYearPercentage(interestRate) / 100
: interestRate / 100;
this.growthRate = growthRate / 100;
this.capitalInjection = capitalInjection;
this.totalPeriod =
this.resultsInterval === "yearly" ? totalPeriod * 12 : totalPeriod;
} catch (error) {
alert(error.message);
}
}
calculate() {
let value = this.initialValue;
let totalInvested = value;
for (let i = 1; i <= this.totalPeriod; i++) {
const rate =
this.resultsInterval === "monthly"
? this.interestRate / 100
: this.interestRate;
const interest = 1 + rate;
const valueWithInterest = value * interest;
value = valueWithInterest + this.capitalInjection;
totalInvested = totalInvested + this.capitalInjection;
if (i % 12 === 0 && i > 0) {
this.capitalInjection =
this.capitalInjection + this.capitalInjection * this.growthRate;
}
if (i == this.totalPeriod) {
this.total.totalInterests = Formmater.transformToReal(
value - totalInvested
);
this.total.totalInvested = Formmater.transformToReal(totalInvested);
this.total.totalResult = Formmater.transformToReal(value);
}
}
}
}
class EventCreator {
constructor({
initialValueInput,
interestRateInput,
growthRateInput,
capitalInjectionInput,
totalPeriodInput,
cleanButton,
calculateButton,
resultsInterval,
totalInterests,
totalInvested,
totalResult,
}) {
this.initialValueInput = initialValueInput;
this.interestRateInput = interestRateInput;
this.growthRateInput = growthRateInput;
this.capitalInjectionInput = capitalInjectionInput;
this.totalPeriodInput = totalPeriodInput;
this.cleanButton = cleanButton;
this.calculateButton = calculateButton;
this.resultsInterval = resultsInterval;
this.totalInterests = totalInterests;
this.totalInvested = totalInvested;
this.totalResult = totalResult;
this.firstResultIntervalChange = true;
}
start() {
const initialValue = document.querySelector(`#${this.initialValueInput}`);
const interestRate = document.querySelector(`#${this.interestRateInput}`);
const growthRate = document.querySelector(`#${this.growthRateInput}`);
const capitalInjection = document.querySelector(
`#${this.capitalInjectionInput}`
);
const totalPeriod = document.querySelector(`#${this.totalPeriodInput}`);
const resultsInterval = document.querySelector(`#${this.resultsInterval}`);
const calculateButton = document.querySelector(`#${this.calculateButton}`);
const cleanButton = document.querySelector(`#${this.cleanButton}`);
const totalInterests = document.querySelector(`#${this.totalInterests}`);
const totalInvested = document.querySelector(`#${this.totalInvested}`);
const totalResult = document.querySelector(`#${this.totalResult}`);
totalInterests.innerText = Formmater.transformToReal(0);
totalInvested.innerText = Formmater.transformToReal(0);
totalResult.innerText = Formmater.transformToReal(0);
const loadMasks = (
initialValue = this.initialValueInput,
capitalInjection = this.capitalInjectionInput,
interestRate = this.interestRateInput,
growthRate = this.growthRateInput
) =>
(function () {
jQuery(`#${initialValue}`).maskMoney({
thousands: ".",
decimal: ",",
allowZero: true,
});
jQuery(`#${capitalInjection}`).maskMoney({
thousands: ".",
decimal: ",",
allowZero: true,
});
jQuery(`#${interestRate}`).maskMoney({
thousands: "",
decimal: ",",
allowZero: true,
});
jQuery(`#${growthRate}`).maskMoney({
thousands: "",
decimal: ",",
allowZero: true,
});
})();
jQuery(loadMasks());
let lastResultInterval = resultsInterval.value;
resultsInterval.addEventListener("change", (event) => {
const periodSpan = document.querySelector(`.period-span`);
const interestSpan = document.querySelector(`.interest-span`);
if (resultsInterval.value == "yearly") {
periodSpan.innerText = "Tempo de investimento anual";
interestSpan.innerText = "Taxa anual de juros";
}
if (resultsInterval.value == "monthly") {
periodSpan.innerText = "Tempo de investimento mensal";
interestSpan.innerText = "Taxa mensal de juros";
}
if (
resultsInterval.value === "yearly" &&
!this.firstResultIntervalChange &&
lastResultInterval != resultsInterval.value
) {
interestRate.value = Formmater.yearToMonthPercentage(
Number(interestRate.value.replace(",", "."))
);
totalPeriod.value = totalPeriod.value / 12;
}
if (
resultsInterval.value === "monthly" &&
!this.firstResultIntervalChange &&
lastResultInterval != resultsInterval.value
) {
interestRate.value = Formmater.monthToYearPercentage(
Number(interestRate.value.replace(",", "."))
);
totalPeriod.value = totalPeriod.value * 12;
}
this.firstResultIntervalChange = false;
lastResultInterval = resultsInterval.value;
});
calculateButton.addEventListener("click", (event) => {
const compoundInterestsCalculator = new CompoundInterestsCalculator({
initialValue: initialValue.value,
interestRate: interestRate.value,
growthRate: growthRate.value,
capitalInjection: capitalInjection.value,
totalPeriod: totalPeriod.value,
resultsInterval: resultsInterval.value,
});
compoundInterestsCalculator.calculate();
totalInterests.innerText =
compoundInterestsCalculator.total.totalInterests;
totalInvested.innerText = compoundInterestsCalculator.total.totalInvested;
totalResult.innerText = compoundInterestsCalculator.total.totalResult;
});
cleanButton.addEventListener("click", (event) => {
initialValue.value = 0;
interestRate.value = 0;
growthRate.value = 0;
capitalInjection.value = 0;
totalPeriod.value = 0;
totalInterests.innerText = Formmater.transformToReal(0);
totalInvested.innerText = Formmater.transformToReal(0);
totalResult.innerText = Formmater.transformToReal(0);
});
}
}
const eventCreator = new EventCreator({
calculateButton: "calculate-button",
capitalInjectionInput: "capital-injection-input",
cleanButton: "clean-button",
growthRateInput: "growth-rate-input",
initialValueInput: "initial-value-input",
interestRateInput: "interest-rate-input",
resultsInterval: "results-interval",
totalPeriodInput: "total-period-input",
totalInterests: "total-interests",
totalInvested: "total-invested",
totalResult: "total-result",
});
eventCreator.start();