2019-10-30 21:48:24 +08:00
|
|
|
import { next } from "@ember/runloop";
|
2019-10-24 00:30:52 +08:00
|
|
|
import Component from "@ember/component";
|
2019-11-08 05:38:28 +08:00
|
|
|
import { observes, on } from "discourse-common/utils/decorators";
|
2016-09-10 03:57:44 +08:00
|
|
|
|
2019-10-24 00:30:52 +08:00
|
|
|
export default Component.extend({
|
2016-09-10 03:57:44 +08:00
|
|
|
tagName: "label",
|
|
|
|
|
|
|
|
click(e) {
|
|
|
|
e.preventDefault();
|
2019-05-27 16:15:39 +08:00
|
|
|
this.onChange(this.radioValue);
|
2016-09-10 03:57:44 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
@observes("value")
|
|
|
|
@on("init")
|
|
|
|
updateVal() {
|
2019-05-27 16:15:39 +08:00
|
|
|
const checked = this.value === this.radioValue;
|
2019-10-30 21:48:24 +08:00
|
|
|
next(
|
2019-07-16 18:45:15 +08:00
|
|
|
() => (this.element.querySelector("input[type=radio]").checked = checked)
|
|
|
|
);
|
2016-09-10 03:57:44 +08:00
|
|
|
}
|
|
|
|
});
|