office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
75 lines • 3.28 kB
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { Dropdown } from 'office-ui-fabric-react/lib/Dropdown';
import { DatePicker, DayOfWeek, mergeStyleSets } from 'office-ui-fabric-react';
var DayPickerStrings = {
months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
shortMonths: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
shortDays: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
goToToday: 'Go to today',
prevMonthAriaLabel: 'Go to previous month',
nextMonthAriaLabel: 'Go to next month',
prevYearAriaLabel: 'Go to previous year',
nextYearAriaLabel: 'Go to next year',
closeButtonAriaLabel: 'Close date picker'
};
var controlClass = mergeStyleSets({
control: {
margin: '0 0 15px 0',
maxWidth: '300px'
}
});
var DatePickerBasicExample = /** @class */ (function (_super) {
tslib_1.__extends(DatePickerBasicExample, _super);
function DatePickerBasicExample(props) {
var _this = _super.call(this, props) || this;
_this._onDropdownChange = function (event, option) {
_this.setState({
firstDayOfWeek: DayOfWeek[option.key]
});
};
_this.state = {
firstDayOfWeek: DayOfWeek.Sunday
};
return _this;
}
DatePickerBasicExample.prototype.render = function () {
var firstDayOfWeek = this.state.firstDayOfWeek;
return (React.createElement("div", { className: "docs-DatePickerExample" },
React.createElement(DatePicker, { className: controlClass.control, firstDayOfWeek: firstDayOfWeek, strings: DayPickerStrings, placeholder: "Select a date...", ariaLabel: "Select a date" }),
React.createElement(Dropdown, { className: controlClass.control, label: "Select the first day of the week", options: [
{
text: 'Sunday',
key: DayOfWeek[DayOfWeek.Sunday]
},
{
text: 'Monday',
key: DayOfWeek[DayOfWeek.Monday]
},
{
text: 'Tuesday',
key: DayOfWeek[DayOfWeek.Tuesday]
},
{
text: 'Wednesday',
key: DayOfWeek[DayOfWeek.Wednesday]
},
{
text: 'Thursday',
key: DayOfWeek[DayOfWeek.Thursday]
},
{
text: 'Friday',
key: DayOfWeek[DayOfWeek.Friday]
},
{
text: 'Saturday',
key: DayOfWeek[DayOfWeek.Saturday]
}
], selectedKey: DayOfWeek[firstDayOfWeek], onChange: this._onDropdownChange })));
};
return DatePickerBasicExample;
}(React.Component));
export { DatePickerBasicExample };
//# sourceMappingURL=DatePicker.Basic.Example.js.map