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({
|
2022-03-16 12:33:34 +01:00
|
|
|
layoutName: 'wizard/templates/components/wizard-field-date',
|
|
|
|
|
2021-03-28 11:06:49 +02:00
|
|
|
@observes("date")
|
2020-07-16 05:26:56 +02:00
|
|
|
setValue() {
|
2021-03-28 11:06:49 +02:00
|
|
|
this.set("field.value", this.date.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("date", moment(value));
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|