mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
20 lines
516 B
JavaScript
20 lines
516 B
JavaScript
|
import Component from '@glimmer/component';
|
||
|
import {action} from '@ember/object';
|
||
|
import {camelize} from '@ember/string';
|
||
|
import {guidFor} from '@ember/object/internals';
|
||
|
|
||
|
export default class CustomThemeSettingsTextComponent extends Component {
|
||
|
inputId = `input-${guidFor(this)}`;
|
||
|
inputName = camelize(this.args.setting.key);
|
||
|
|
||
|
@action
|
||
|
updateValue(event) {
|
||
|
this.args.setting.set('value', event.target.value);
|
||
|
}
|
||
|
|
||
|
@action
|
||
|
triggerOnChange() {
|
||
|
this.args.onChange?.();
|
||
|
}
|
||
|
}
|