Show card profile availability and order by priority

This commit is contained in:
futpib 2018-11-15 19:15:37 +03:00
parent 9a0ef19b12
commit edb9fa9c9f

View File

@ -3,6 +3,7 @@ const {
values,
map,
path,
sortBy,
} = require('ramda');
const r = require('r-dom');
@ -50,9 +51,14 @@ const Preferences = withStateHandlers(
]),
r(Select, {
options: card.profiles,
options: sortBy(p => -p.priority, card.profiles),
optionValue: p => p.name,
optionText: p => p.description,
optionText: p => [
p.description,
!p.available && '(unavailable)',
]
.filter(Boolean)
.join(' '),
value: card.activeProfileName,
onChange: e => {
props.actions.setCardProfile(card.index, e.target.value);