mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
e6e0b02849
Flow first look
43 lines
849 B
JavaScript
43 lines
849 B
JavaScript
|
|
import _ from '_';
|
|
import ko from 'ko';
|
|
import {isUnd} from 'Common/Utils';
|
|
import {AbstractComponent} from 'Component/Abstract';
|
|
|
|
class AbstracRadio 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 {AbstracRadio, AbstracRadio as default};
|