refactor for sonar, deno fmt

This commit is contained in:
Ean Milligan 2024-05-21 04:06:29 -04:00
parent f4c10e372d
commit 2e3435db51
1 changed files with 29 additions and 24 deletions

View File

@ -1,5 +1,5 @@
import config from '../../../config.ts'; import config from '../../../config.ts';
import {editEventDetailsBtnName} from './utils.ts'; import { editEventDetailsBtnName } from './utils.ts';
enum DateTimeFormats { enum DateTimeFormats {
MMDDYYYY = 'MONTH/DAY/YEAR', MMDDYYYY = 'MONTH/DAY/YEAR',
@ -103,9 +103,11 @@ export const isDSTActive = (): boolean => {
const editButtonMessage = `click \`${editEventDetailsBtnName}\` and change`; const editButtonMessage = `click \`${editEventDetailsBtnName}\` and change`;
const warningText = (incorrectTZ: string, correctTZ: string, newEvent: boolean) => const warningText = (incorrectTZ: string, correctTZ: string, newEvent: boolean) =>
`⚠️⚠️⚠️ WARNING! Did you mean to enter \`${incorrectTZ}\` for the time zone? ⚠️⚠️⚠️\nCurrently (as of the posting of this message), Daylight Savings Time is ${isDSTActive() ? '' : 'not '}active in most of the United States. If DST is ${ `⚠️⚠️⚠️ WARNING! Did you mean to enter \`${incorrectTZ}\` for the time zone? ⚠️⚠️⚠️\nCurrently (as of the posting of this message), Daylight Savings Time is ${
isDSTActive() ? '' : 'not ' isDSTActive() ? '' : 'not '
}in effect for you (and will be when this event is scheduled to happen), ${newEvent ? editButtonMessage : 'please dismiss this message and start over, using'} the time zone ${newEvent ? 'to ' : ''}\`${correctTZ}\`, or shorten it to \`${correctTZ.slice(0, -2)}T\` to let ${config.name} automatically use the correct time zone.\n\n`; }active in most of the United States. If DST is ${isDSTActive() ? '' : 'not '}in effect for you (and will be when this event is scheduled to happen), ${
newEvent ? editButtonMessage : 'please dismiss this message and start over, using'
} the time zone ${newEvent ? 'to ' : ''}\`${correctTZ}\`, or shorten it to \`${correctTZ.slice(0, -2)}T\` to let ${config.name} automatically use the correct time zone.\n\n`;
const usTZDSTCheck = (timeZone: string, newEvent: boolean): string => { const usTZDSTCheck = (timeZone: string, newEvent: boolean): string => {
if (allUSTZ.includes(timeZone)) { if (allUSTZ.includes(timeZone)) {
@ -147,11 +149,11 @@ const parseEventTimeZone = (preParsedEventTimeZone: string): [string, string] =>
} }
}; };
// Takes user input Date and makes it actually usable const determineDateTimeOrder = (parsedSlot1: string, parsedSlot2: string, parsedSlot3: string): [string, string, string] => {
const parseEventDate = (preParsedEventDate: string): [string, string, string] => { // Default these to MMDDYYYY in case something goes wrong and does not properly override them
const today = new Date(); let parsedEventMonth = parsedSlot1;
let parsedEventMonth:string, parsedEventDay:string, parsedEventYear:string; let parsedEventDay = parsedSlot2;
const [parsedSlot1, parsedSlot2, parsedSlot3] = preParsedEventDate.split(/[\s,\\/-]+/g); let parsedEventYear = parsedSlot3;
const slot1AsInt = parseInt(parsedSlot1); const slot1AsInt = parseInt(parsedSlot1);
const slot2AsInt = parseInt(parsedSlot2); const slot2AsInt = parseInt(parsedSlot2);
@ -170,24 +172,27 @@ const parseEventDate = (preParsedEventDate: string): [string, string, string] =>
parsedEventMonth = parsedSlot1; parsedEventMonth = parsedSlot1;
parsedEventDay = parsedSlot2; parsedEventDay = parsedSlot2;
parsedEventYear = parsedSlot3; parsedEventYear = parsedSlot3;
} else { } else if (config.defaultDateFormat === DateTimeFormats.DDMMYYYY) {
// Year was not first, and cannot locate a day from the string, fall back to bot's default setting // Year was not first, and cannot locate a day from the string, fall back to bot's default setting
if (config.defaultDateFormat === DateTimeFormats.DDMMYYYY) { parsedEventDay = parsedSlot1;
parsedEventDay = parsedSlot1; parsedEventMonth = parsedSlot2;
parsedEventMonth = parsedSlot2; parsedEventYear = parsedSlot3;
parsedEventYear = parsedSlot3; } else if (config.defaultDateFormat === DateTimeFormats.MMDDYYYY) {
} else if (config.defaultDateFormat === DateTimeFormats.MMDDYYYY) { // Year was not first, and cannot locate a day from the string, fall back to bot's default setting
parsedEventMonth = parsedSlot1; parsedEventMonth = parsedSlot1;
parsedEventDay = parsedSlot2; parsedEventDay = parsedSlot2;
parsedEventYear = parsedSlot3; parsedEventYear = parsedSlot3;
} else {
// Worst case scenario and should not happen, but in case config.defaultDateFormat is screwed up, fall back to MMDDYYYY
parsedEventMonth = parsedSlot1;
parsedEventDay = parsedSlot2;
parsedEventYear = parsedSlot3;
}
} }
return [parsedEventMonth, parsedEventDay, parsedEventYear];
};
// Takes user input Date and makes it actually usable
const parseEventDate = (preParsedEventDate: string): [string, string, string] => {
const today = new Date();
const [parsedSlot1, parsedSlot2, parsedSlot3] = preParsedEventDate.split(/[\s,\\/-]+/g);
let [parsedEventMonth, parsedEventDay, parsedEventYear] = determineDateTimeOrder(parsedSlot1, parsedSlot2, parsedSlot3);
if (isNaN(parseInt(parsedEventDay))) { if (isNaN(parseInt(parsedEventDay))) {
// User only provided one word, we're assuming it was TOMORROW, and all others will be treated as today // User only provided one word, we're assuming it was TOMORROW, and all others will be treated as today
if (parsedEventMonth.includes('TOMORROW')) { if (parsedEventMonth.includes('TOMORROW')) {
@ -234,6 +239,6 @@ export const getDateFromRawInput = (rawEventTime: string, rawEventTimeZone: stri
} ${parsedEventDay}, ${parsedEventYear}`, } ${parsedEventDay}, ${parsedEventYear}`,
parsedDateTime.getTime() > new Date().getTime(), parsedDateTime.getTime() > new Date().getTime(),
!isNaN(parsedDateTime.getTime()), !isNaN(parsedDateTime.getTime()),
usTZWarning usTZWarning,
]; ];
}; };