-
-
Notifications
You must be signed in to change notification settings - Fork 337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Calendar] "get date" can return formatted date #3141
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -802,24 +802,64 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
formattedDate: function (format, date) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.dateFormat(format || formatter[settings.type], date || module.get.date()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
date: function () { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.sanitiseDate($module.data(metadata.date)) || null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
date: function (format = '') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!module.helper.sanitiseDate($module.data(metadata.date))) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (format === '') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.sanitiseDate($module.data(metadata.date)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.dateFormat(format, $module.data(metadata.date)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
inputDate: function () { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $input.val(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
focusDate: function () { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $module.data(metadata.focusDate) || null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
focusDate: function (format = '') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!module.helper.sanitiseDate($module.data(metadata.focusDate))) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (format === '') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.sanitiseDate($module.data(metadata.focusDate)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.dateFormat(format, $module.data(metadata.focusDate)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+819
to
+828
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
startDate: function () { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
startDate: function (format = '') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Default function parameter values are not supported in IE11 (which FUI 2.9.x still supports)
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var startModule = module.get.calendarModule(settings.startCalendar); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return (startModule ? startModule.get.date() : $module.data(metadata.startDate)) || null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (startModule) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return startModule.get.date(format); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!module.helper.sanitiseDate($module.data(metadata.startDate))) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (format === '') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.sanitiseDate($module.data(metadata.startDate)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.dateFormat(format, $module.data(metadata.startDate)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+833
to
+845
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
endDate: function () { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
endDate: function (format = '') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Default function parameter values are not supported in IE11 (which FUI 2.9.x still supports)
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var endModule = module.get.calendarModule(settings.endCalendar); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return (endModule ? endModule.get.date() : $module.data(metadata.endDate)) || null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (endModule) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return endModule.get.date(format); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!module.helper.sanitiseDate($module.data(metadata.endDate))) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (format === '') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.sanitiseDate($module.data(metadata.endDate)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return module.helper.dateFormat(format, $module.data(metadata.endDate)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+850
to
+862
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
minDate: function () { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $module.data(metadata.minDate) || null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.