mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
52 lines
1.1 KiB
JavaScript
52 lines
1.1 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.name}`}
|
|
</Text>
|
|
) : null}
|
|
<InputType knob={knob} onChange={onChange} onPress={onPress} />
|
|
</View>
|
|
);
|
|
};
|
|
|
|
PropField.propTypes = {
|
|
knob: PropTypes.shape({
|
|
name: 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;
|