mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
33 lines
626 B
JavaScript
33 lines
626 B
JavaScript
import Component from "@ember/component";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
classNames: ["embed-setting"],
|
|
|
|
@discourseComputed("field")
|
|
inputId(field) {
|
|
return field.dasherize();
|
|
},
|
|
|
|
@discourseComputed("field")
|
|
translationKey(field) {
|
|
return `admin.embedding.${field}`;
|
|
},
|
|
|
|
@discourseComputed("type")
|
|
isCheckbox(type) {
|
|
return type === "checkbox";
|
|
},
|
|
|
|
@discourseComputed("value")
|
|
checked: {
|
|
get(value) {
|
|
return !!value;
|
|
},
|
|
set(value) {
|
|
this.set("value", value);
|
|
return value;
|
|
},
|
|
},
|
|
});
|