Skip to content

Commit 07d756e

Browse files
author
Mike Surcouf
committed
Fix @typescript-eslint/no-non-null-assertion
1 parent 9703737 commit 07d756e

File tree

7 files changed

+48
-28
lines changed

7 files changed

+48
-28
lines changed

.eslintrc.js

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ module.exports = {
1414
'@typescript-eslint/explicit-function-return-type': 'none,',
1515
'@typescript-eslint/no-explicit-any': 'none',
1616
'@typescript-eslint/prefer-interface': 'none',
17-
'@typescript-eslint/no-non-null-assertion': 'none',
1817
'@typescript-eslint/no-object-literal-type-assertion': 'none',
1918
'@typescript-eslint/camelcase': ['error', { allow: ['time_24hr', 'zh_tw'] }],
2019
},

build.ts

+3
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ function uglify(src: string) {
6969

7070
async function buildFlatpickrJs() {
7171
const bundle = await rollup.rollup(rollupConfig);
72+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
7273
return bundle.write(rollupConfig.output!);
7374
}
7475

@@ -218,6 +219,7 @@ function watch(path: string, cb: (path: string) => void) {
218219

219220
async function start() {
220221
if (DEV_MODE) {
222+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
221223
rollupConfig.output!.sourcemap = true;
222224
const indexExists = await fs.pathExists("./index.html");
223225
if (!indexExists) {
@@ -241,6 +243,7 @@ async function start() {
241243

242244
function logEvent(e: RollupWatchEvent) {
243245
write(
246+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
244247
[e.code, e.input && `${e.input} -> ${e.output!}`, "\n"]
245248
.filter(x => x)
246249
.join(" ")

config/rollup.ts

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export const getConfig = (opts?: { dev: boolean }): RollupOptions => ({
2525
else if (
2626
warning.code !== "CIRCULAR_DEPENDENCY" ||
2727
!warning.importer ||
28+
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2829
!ignoredCircular.includes(warning.importer!)
2930
) {
3031
throw Error(warning.message);

src/__tests__/index.spec.ts

+16-6
Original file line numberDiff line numberDiff line change
@@ -1428,14 +1428,19 @@ describe("flatpickr", () => {
14281428
const monthsDropdown = fp.calendarContainer.querySelector(
14291429
".flatpickr-monthDropdown-months"
14301430
);
1431-
const months = monthsDropdown!.querySelectorAll(
1431+
1432+
expect(monthsDropdown).toBeTruthy();
1433+
if (!monthsDropdown) return;
1434+
1435+
const months = monthsDropdown.querySelectorAll(
14321436
".flatpickr-monthDropdown-month"
14331437
);
14341438

14351439
expect(months.length).toEqual(8);
1440+
if (months.length != 8) return;
14361441

1437-
expect(months[0]!.innerHTML).toEqual("May");
1438-
expect(months[7]!.innerHTML).toEqual("December");
1442+
expect(months[0].innerHTML).toEqual("May");
1443+
expect(months[7].innerHTML).toEqual("December");
14391444
});
14401445

14411446
it("dropdown should correctly load months with maxDate", () => {
@@ -1447,14 +1452,19 @@ describe("flatpickr", () => {
14471452
const monthsDropdown = fp.calendarContainer.querySelector(
14481453
".flatpickr-monthDropdown-months"
14491454
);
1450-
const months = monthsDropdown!.querySelectorAll(
1455+
1456+
expect(monthsDropdown).toBeTruthy();
1457+
if (!monthsDropdown) return;
1458+
1459+
const months = monthsDropdown.querySelectorAll(
14511460
".flatpickr-monthDropdown-month"
14521461
);
14531462

14541463
expect(months.length).toEqual(9);
1464+
if (months.length != 9) return;
14551465

1456-
expect(months[0]!.innerHTML).toEqual("January");
1457-
expect(months[months.length - 1]!.innerHTML).toEqual("September");
1466+
expect(months[0].innerHTML).toEqual("January");
1467+
expect(months[months.length - 1].innerHTML).toEqual("September");
14581468
});
14591469

14601470
it("dropdown should change month", () => {

src/index.ts

+9-10
Original file line numberDiff line numberDiff line change
@@ -1342,8 +1342,8 @@ function FlatpickrInstance(
13421342

13431343
if (wrapper.parentNode) {
13441344
while (wrapper.firstChild)
1345-
wrapper.parentNode!.insertBefore(wrapper.firstChild, wrapper);
1346-
wrapper.parentNode!.removeChild(wrapper);
1345+
wrapper.parentNode.insertBefore(wrapper.firstChild, wrapper);
1346+
wrapper.parentNode.removeChild(wrapper);
13471347
}
13481348
} else
13491349
self.calendarContainer.parentNode.removeChild(self.calendarContainer);
@@ -1683,7 +1683,8 @@ function FlatpickrInstance(
16831683
}
16841684
} else if (
16851685
!self.config.noCalendar &&
1686-
self.daysContainer!.contains(e.target as Node) &&
1686+
self.daysContainer &&
1687+
self.daysContainer.contains(e.target as Node) &&
16871688
e.shiftKey
16881689
) {
16891690
e.preventDefault();
@@ -1740,16 +1741,14 @@ function FlatpickrInstance(
17401741
true
17411742
) as Date).getTime(),
17421743
rangeStartDate = Math.min(hoverDate, self.selectedDates[0].getTime()),
1743-
rangeEndDate = Math.max(hoverDate, self.selectedDates[0].getTime()),
1744-
lastDate = (self.daysContainer!.lastChild!
1745-
.lastChild as DayElement).dateObj.getTime();
1744+
rangeEndDate = Math.max(hoverDate, self.selectedDates[0].getTime());
17461745

17471746
let containsDisabled = false;
17481747

17491748
let minRange = 0,
17501749
maxRange = 0;
17511750

1752-
for (let t = rangeStartDate; t < lastDate; t += duration.DAY) {
1751+
for (let t = rangeStartDate; t < rangeEndDate; t += duration.DAY) {
17531752
if (!isEnabled(new Date(t), true)) {
17541753
containsDisabled =
17551754
containsDisabled || (t > rangeStartDate && t < rangeEndDate);
@@ -2734,9 +2733,9 @@ function FlatpickrInstance(
27342733
self.l10n.amPM[int(self.amPM.textContent === self.l10n.amPM[0])];
27352734
}
27362735

2737-
const min = parseFloat(input.getAttribute("min")!),
2738-
max = parseFloat(input.getAttribute("max")!),
2739-
step = parseFloat(input.getAttribute("step")!),
2736+
const min = parseFloat(input.getAttribute("min") as string),
2737+
max = parseFloat(input.getAttribute("max") as string),
2738+
step = parseFloat(input.getAttribute("step") as string),
27402739
curValue = parseInt(input.value, 10),
27412740
delta =
27422741
(e as IncrementEvent).delta ||

src/plugins/monthSelect/index.ts

+14-10
Original file line numberDiff line numberDiff line change
@@ -138,40 +138,44 @@ function monthSelectPlugin(pluginConfig?: Partial<Config>): Plugin {
138138
return;
139139
}
140140

141-
const currentlySelected = fp.rContainer!.querySelector(
141+
if (!fp.rContainer || !self.monthsContainer) return;
142+
143+
const currentlySelected = fp.rContainer.querySelector(
142144
".flatpickr-monthSelect-month.selected"
143145
) as HTMLElement;
144146

145147
let index = Array.prototype.indexOf.call(
146-
self.monthsContainer!.children,
148+
self.monthsContainer.children,
147149
document.activeElement
148150
);
149151

150152
if (index === -1) {
151153
const target =
152-
currentlySelected || self.monthsContainer!.firstElementChild;
154+
currentlySelected || self.monthsContainer.firstElementChild;
153155
target.focus();
154156
index = (target as MonthElement).$i;
155157
}
156158

157159
if (shouldMove) {
158-
(self.monthsContainer!.children[
160+
(self.monthsContainer.children[
159161
(12 + index + shifts[e.keyCode]) % 12
160162
] as HTMLElement).focus();
161163
} else if (
162164
e.keyCode === 13 &&
163-
self.monthsContainer!.contains(document.activeElement)
165+
self.monthsContainer.contains(document.activeElement)
164166
) {
165167
setMonth((document.activeElement as MonthElement).dateObj);
166168
}
167169
}
168170

169171
function destroyPluginInstance() {
170-
self
171-
.monthsContainer!.querySelectorAll(".flatpickr-monthSelect-month")
172-
.forEach(element => {
173-
element.removeEventListener("click", selectMonth);
174-
});
172+
if (self.monthsContainer !== null) {
173+
self.monthsContainer
174+
.querySelectorAll(".flatpickr-monthSelect-month")
175+
.forEach(element => {
176+
element.removeEventListener("click", selectMonth);
177+
});
178+
}
175179
}
176180

177181
return {

src/plugins/monthSelect/tests.spec.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ describe("monthSelect", () => {
5353
}) as Instance;
5454

5555
expect(fp.input.value).toEqual("03.19");
56-
expect(fp.altInput!.value).toEqual("03 19");
56+
57+
expect(fp.altInput).toBeDefined();
58+
if (!fp.altInput) return;
59+
60+
expect(fp.altInput.value).toEqual("03 19");
5761
});
5862
});

0 commit comments

Comments
 (0)