Skip to content

Commit

Permalink
ELEMENTS-1113: expose date format (#940)
Browse files Browse the repository at this point in the history
  • Loading branch information
swarnadipa-dev authored Sep 9, 2024
1 parent d9d0add commit 4cc1397
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions ui/widgets/nuxeo-date-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,13 @@ import { I18nBehavior } from '../nuxeo-i18n-behavior.js';
type: Boolean,
value: false,
},
/**
* Use this property to provide custom date format
*/
format: {
type: String,
value: '',
},
};
}

Expand Down Expand Up @@ -188,9 +195,11 @@ import { I18nBehavior } from '../nuxeo-i18n-behavior.js';
moment.locale(window.nuxeo.I18n.language ? window.nuxeo.I18n.language.split('-')[0] : 'en');
// tell vaadin-date-picker how to display dates since default behavior is US locales (MM-DD-YYYY)
// this way we can take advantage of moment locale and use the date format that is most suitable for the user
this.$.date.set('i18n.formatDate', (date) => this._moment(date).format(moment.localeData().longDateFormat('L')));
this.$.date.set('i18n.formatDate', (date) =>
this._moment(date).format(this.format ? this.format : moment.localeData().longDateFormat('L')),
);
this.$.date.set('i18n.parseDate', (text) => {
const date = this._moment(text, moment.localeData().longDateFormat('L'));
const date = this._moment(text, this.format ? this.format : moment.localeData().longDateFormat('L'));
return {
day: date.get('D'),
month: date.get('M'),
Expand Down

0 comments on commit 4cc1397

Please sign in to comment.