2020-07-16 05:26:56 +02:00
|
|
|
import Component from "@ember/component";
|
2021-03-28 11:06:49 +02:00
|
|
|
import { observes } from "discourse-common/utils/decorators";
|
2020-07-16 05:26:56 +02:00
|
|
|
|
|
|
|
export default Component.extend({
|
2023-03-22 11:38:18 +01:00
|
|
|
classNameBindings: ["fieldClass"],
|
2023-03-22 10:11:48 +01:00
|
|
|
|
2021-03-28 11:06:49 +02:00
|
|
|
@observes("time")
|
2020-07-16 05:26:56 +02:00
|
|
|
setValue() {
|
2021-03-28 11:06:49 +02:00
|
|
|
this.set("field.value", this.time.format(this.field.format));
|
2020-07-16 05:26:56 +02:00
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
|
2020-07-16 05:26:56 +02:00
|
|
|
actions: {
|
|
|
|
onChange(value) {
|
2021-03-28 11:06:49 +02:00
|
|
|
this.set(
|
|
|
|
"time",
|
2020-07-16 05:26:56 +02:00
|
|
|
moment({
|
|
|
|
hours: value.hours,
|
2021-03-28 11:06:49 +02:00
|
|
|
minutes: value.minutes,
|
2020-07-16 05:26:56 +02:00
|
|
|
})
|
2021-03-28 11:06:49 +02:00
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|