Displays proper input name.

Filters out fields  from other which have group id.
Added some margin to group tabs to make them look "better".
This commit is contained in:
Gytis Vinclovas 2019-07-18 12:46:39 +03:00
parent 4f026d27a4
commit 3a42f39d40
3 changed files with 8 additions and 1 deletions

View File

@ -14,6 +14,7 @@ class GroupTabs extends Component {
return (
<TouchableOpacity
style={{
marginTop: 5,
marginRight: 15,
paddingBottom: 10,
}}

View File

@ -19,7 +19,7 @@ const PropField = ({ onChange, onPress, knob }) => {
fontWeight: 'bold',
}}
>
{`${knob.name}`}
{`${knob.label || knob.name}`}
</Text>
) : null}
<InputType knob={knob} onChange={onChange} onPress={onPress} />
@ -30,6 +30,7 @@ const PropField = ({ onChange, onPress, knob }) => {
PropField.propTypes = {
knob: PropTypes.shape({
name: PropTypes.string,
label: PropTypes.string,
value: PropTypes.any,
hideLabel: PropTypes.bool,
type: PropTypes.oneOf([

View File

@ -118,6 +118,11 @@ export default class Panel extends React.Component {
render: () => <Text id={DEFAULT_GROUP_ID}>{DEFAULT_GROUP_ID}</Text>,
title: DEFAULT_GROUP_ID,
};
if (groupId === DEFAULT_GROUP_ID) {
knobsArray = knobsArray.filter(key => !knobs[key].groupId);
}
if (groupId !== DEFAULT_GROUP_ID) {
knobsArray = knobsArray.filter(key => knobs[key].groupId === groupId);
}