mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:29:54 +08:00
32 lines
714 B
JavaScript
32 lines
714 B
JavaScript
import ComboBoxComponent from "select-kit/components/combo-box";
|
|
import { default as discourseComputed } from "discourse-common/utils/decorators";
|
|
|
|
export default ComboBoxComponent.extend({
|
|
pluginApiIdentifiers: ["timezone-input"],
|
|
classNames: "timezone-input",
|
|
allowAutoSelectFirst: false,
|
|
fullWidthOnMobile: true,
|
|
filterable: true,
|
|
allowAny: false,
|
|
|
|
@discourseComputed
|
|
content() {
|
|
let timezones;
|
|
|
|
if (
|
|
moment.locale() !== "en" &&
|
|
typeof moment.tz.localizedNames === "function"
|
|
) {
|
|
timezones = moment.tz.localizedNames();
|
|
}
|
|
timezones = moment.tz.names();
|
|
|
|
return timezones.map(t => {
|
|
return {
|
|
id: t,
|
|
name: t
|
|
};
|
|
});
|
|
}
|
|
});
|