mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
Filters out fields from other which have group id. Added some margin to group tabs to make them look "better".
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import { View, Text } from 'react-native';
|
|
import React from 'react';
|
|
import TypeMap from './types';
|
|
|
|
const InvalidType = () => <Text style={{ margin: 10 }}>Invalid Type</Text>;
|
|
|
|
const PropField = ({ onChange, onPress, knob }) => {
|
|
const InputType = TypeMap[knob.type] || InvalidType;
|
|
|
|
return (
|
|
<View>
|
|
{!knob.hideLabel ? (
|
|
<Text
|
|
style={{
|
|
marginLeft: 10,
|
|
fontSize: 14,
|
|
color: 'rgb(68, 68, 68)',
|
|
fontWeight: 'bold',
|
|
}}
|
|
>
|
|
{`${knob.label || knob.name}`}
|
|
</Text>
|
|
) : null}
|
|
<InputType knob={knob} onChange={onChange} onPress={onPress} />
|
|
</View>
|
|
);
|
|
};
|
|
|
|
PropField.propTypes = {
|
|
knob: PropTypes.shape({
|
|
name: PropTypes.string,
|
|
label: PropTypes.string,
|
|
value: PropTypes.any,
|
|
hideLabel: PropTypes.bool,
|
|
type: PropTypes.oneOf([
|
|
'text',
|
|
'number',
|
|
'color',
|
|
'boolean',
|
|
'object',
|
|
'select',
|
|
'array',
|
|
'date',
|
|
'button',
|
|
]),
|
|
}).isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
onPress: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default PropField;
|