Compare commits
3 commits
be347ca896
...
2a1e691d62
Author | SHA1 | Date | |
---|---|---|---|
2a1e691d62 | |||
884b53b8b2 | |||
99b3722ed3 |
3 changed files with 18 additions and 8 deletions
|
@ -23,4 +23,4 @@ jobs:
|
|||
run: npm run format-check
|
||||
|
||||
- name: Run tests
|
||||
run: npm run test
|
||||
run: npm run test -- --ci --onlyChanged
|
||||
|
|
|
@ -46,13 +46,23 @@ export type dbReminder = {
|
|||
* @returns An object with the time and the option
|
||||
*/
|
||||
export const splitTime = (time: string) => {
|
||||
if (time?.endsWith("@")) {
|
||||
return { time: time.slice(0, -1), option: OptionReminder.Mention };
|
||||
} else if (time?.toLowerCase().endsWith("p")) {
|
||||
return { time: time.slice(0, -1), option: OptionReminder.DirectMessage };
|
||||
}
|
||||
const mapping = {
|
||||
[OptionReminder.DirectMessage]: "p",
|
||||
[OptionReminder.Mention]: "@",
|
||||
};
|
||||
|
||||
return { time: time, option: OptionReminder.Nothing };
|
||||
const lowered = time.toLowerCase();
|
||||
const trimmed = lowered.replaceAll(new RegExp(Object.values(mapping).join("|"), "g"), "");
|
||||
|
||||
// Depending of the last character of the string
|
||||
switch (lowered.slice(-1)) {
|
||||
case mapping[OptionReminder.Mention]:
|
||||
return { time: trimmed, option: OptionReminder.Mention };
|
||||
case mapping[OptionReminder.DirectMessage]:
|
||||
return { time: trimmed, option: OptionReminder.DirectMessage };
|
||||
default:
|
||||
return { time: time, option: OptionReminder.Nothing };
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -10,7 +10,7 @@ describe("Time splitter", () => {
|
|||
{
|
||||
const name = "2m@p";
|
||||
test(name, () => {
|
||||
expect(splitTime(name)).toStrictEqual({ option: OptionReminder.Mention, time: "2m" });
|
||||
expect(splitTime(name)).toStrictEqual({ option: OptionReminder.DirectMessage, time: "2m" });
|
||||
});
|
||||
}
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue