This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/select-kit/addon/components/timezone-input.js
Robin Ward 09ca75d17e FIX: select-kit was in the wrong place
`app/` means we want to merge it into our application there. `addon`
means give it its own module namespace, which is what we wanted.
2020-05-20 11:51:49 -04:00

26 lines
597 B
JavaScript

import ComboBoxComponent from "select-kit/components/combo-box";
import { computed } from "@ember/object";
export default ComboBoxComponent.extend({
pluginApiIdentifiers: ["timezone-input"],
classNames: ["timezone-input"],
nameProperty: null,
valueProperty: null,
selectKitOptions: {
filterable: true,
allowAny: false
},
content: computed(function() {
if (
moment.locale() !== "en" &&
typeof moment.tz.localizedNames === "function"
) {
return moment.tz.localizedNames().mapBy("value");
} else {
return moment.tz.names();
}
})
});