Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
840ec36
feat(files_reminders): integrate load scripts
Pytal Aug 3, 2023
a3abb0b
feat(files_reminders): add reminder service
Pytal Aug 3, 2023
c25ed87
fix: due date nullable
Pytal Aug 3, 2023
ec4d660
fix: frontend ocs
Pytal Aug 3, 2023
1d46632
feat(files_reminders): add datetime utils
Pytal Aug 3, 2023
5c6925d
feat(files_reminders): register file action
Pytal Aug 3, 2023
b57a884
feat(files_reminders): emit action menu opened
Pytal Aug 3, 2023
c2be544
fix: action icon color
Pytal Aug 3, 2023
1af7287
feat(files_reminders): add logger
Pytal Aug 3, 2023
b10a1a7
feat(files_reminders): add webpack module
Pytal Aug 3, 2023
dd36606
feat(files_reminders): add types
Pytal Aug 3, 2023
118ea83
feat(files_reminders): mount set reminder actions
Pytal Aug 3, 2023
103f2c6
fix: prevent sidebar from opening
Pytal Aug 3, 2023
33c4861
feat(files_reminders): add verbose date string util
Pytal Aug 3, 2023
ec8f8ce
feat(files_reminders): add set reminder actions
Pytal Aug 3, 2023
3248e3f
enh: later today 3 hours later
Pytal Aug 3, 2023
2139e33
enh: rename to saturday sunday
Pytal Aug 3, 2023
effc210
enh: shorten date string if same day
Pytal Aug 3, 2023
d13b8dd
fix: indent with tabs
Pytal Aug 3, 2023
d498414
enh: use vue-material-design-icons
Pytal Aug 3, 2023
64cd84b
fix: composer
Pytal Aug 3, 2023
68f4a13
feat(files_reminders): v1.0.0
Pytal Aug 4, 2023
6335282
enh: add clean up buffer
Pytal Aug 4, 2023
3bba555
fix: eslint
Pytal Aug 4, 2023
0131005
fix: load script
Pytal Aug 4, 2023
72bcafb
fix: remove non-existing reminder notification
Pytal Aug 4, 2023
e5e5c97
enh: use alarm icon
Pytal Aug 4, 2023
fa48409
refactor: format options
Pytal Aug 4, 2023
271122e
enh: remove icons
Pytal Aug 8, 2023
c71db8a
feat: custom date & time
Pytal Aug 8, 2023
f6a8441
enh: en dash
Pytal Aug 8, 2023
6c89550
enh: move to 8am
Pytal Aug 8, 2023
15ade72
chore: compile assets
Pytal Aug 8, 2023
0c0ed38
enh: pass params in subject
Pytal Aug 9, 2023
87f9700
enh: set later today to 6pm
Pytal Aug 9, 2023
a3c333c
chore: compile assets
Pytal Aug 9, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: format options
Signed-off-by: Christopher Ng <[email protected]>
(cherry picked from commit dbe8ba2)
  • Loading branch information
Pytal authored and AndyScherzinger committed Aug 10, 2023
commit fa4840976ef40cb1ae76a1da21169bdb09518903
4 changes: 2 additions & 2 deletions apps/files_reminders/src/shared/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const getDateString = (dueDate: Date): string => {
}

export const getVerboseDateString = (dueDate: Date): string => {
const localeOptions: Intl.DateTimeFormatOptions = {
const formatOptions: Intl.DateTimeFormatOptions = {
weekday: 'long',
hour: 'numeric',
minute: '2-digit',
Expand All @@ -129,6 +129,6 @@ export const getVerboseDateString = (dueDate: Date): string => {

return dueDate.toLocaleString(
getCanonicalLocale(),
localeOptions,
formatOptions,
)
}