mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 13:09:21 +03:00
Add prettier
This commit is contained in:
parent
08da3030b0
commit
450528ff00
61 changed files with 516 additions and 1456 deletions
37
dev/Component/AbstractRadio.js
Normal file
37
dev/Component/AbstractRadio.js
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
import _ from '_';
|
||||
import ko from 'ko';
|
||||
import { isUnd } from 'Common/Utils';
|
||||
import { AbstractComponent } from 'Component/Abstract';
|
||||
|
||||
class AbstractRadio extends AbstractComponent {
|
||||
/**
|
||||
* @param {Object} params
|
||||
*/
|
||||
constructor(params) {
|
||||
super();
|
||||
|
||||
this.values = ko.observableArray([]);
|
||||
|
||||
this.value = params.value;
|
||||
if (isUnd(this.value) || !this.value.subscribe) {
|
||||
this.value = ko.observable('');
|
||||
}
|
||||
|
||||
this.inline = isUnd(params.inline) ? false : params.inline;
|
||||
this.readOnly = isUnd(params.readOnly) ? false : !!params.readOnly;
|
||||
|
||||
if (params.values) {
|
||||
this.values(_.map(params.values, (label, value) => ({ label: label, value: value })));
|
||||
}
|
||||
|
||||
this.click = _.bind(this.click, this);
|
||||
}
|
||||
|
||||
click(value) {
|
||||
if (!this.readOnly && value) {
|
||||
this.value(value.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export { AbstractRadio, AbstractRadio as default };
|
||||
Loading…
Add table
Add a link
Reference in a new issue