You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.4 KiB
60 lines
1.4 KiB
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
|
|
module.exports = RadioList
|
|
|
|
inherits(RadioList, Component)
|
|
function RadioList () {
|
|
Component.call(this)
|
|
}
|
|
|
|
RadioList.prototype.render = function () {
|
|
const props = this.props
|
|
const activeClass = '.custom-radio-selected'
|
|
const inactiveClass = '.custom-radio-inactive'
|
|
const {
|
|
labels,
|
|
defaultFocus,
|
|
} = props
|
|
|
|
|
|
return (
|
|
h('.flex-row', {
|
|
style: {
|
|
fontSize: '12px',
|
|
},
|
|
}, [
|
|
h('.flex-column.custom-radios', {
|
|
style: {
|
|
marginRight: '5px',
|
|
},
|
|
},
|
|
labels.map((lable, i) => {
|
|
let isSelcted = (this.state !== null)
|
|
isSelcted = isSelcted ? (this.state.selected === lable) : (defaultFocus === lable)
|
|
return h(isSelcted ? activeClass : inactiveClass, {
|
|
title: lable,
|
|
onClick: (event) => {
|
|
this.setState({selected: event.target.title})
|
|
props.onClick(event)
|
|
},
|
|
})
|
|
})
|
|
),
|
|
h('.text', {},
|
|
labels.map((lable) => {
|
|
if (props.subtext) {
|
|
return h('.flex-row', {}, [
|
|
h('.radio-titles', lable),
|
|
h('.radio-titles-subtext', `- ${props.subtext[lable]}`),
|
|
])
|
|
} else {
|
|
return h('.radio-titles', lable)
|
|
}
|
|
})
|
|
),
|
|
])
|
|
)
|
|
}
|
|
|
|
|