55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
import React, { Component } from "react"
|
|
import PropTypes from "prop-types"
|
|
|
|
const propStyle = { color: "#999", fontStyle: "italic" }
|
|
|
|
export default class Primitive extends Component {
|
|
static propTypes = {
|
|
schema: PropTypes.object.isRequired,
|
|
getComponent: PropTypes.func.isRequired,
|
|
required: PropTypes.bool
|
|
}
|
|
|
|
render(){
|
|
let { schema, getComponent, required } = this.props
|
|
|
|
if(!schema || !schema.get) {
|
|
// don't render if schema isn't correctly formed
|
|
return <div></div>
|
|
}
|
|
|
|
let type = schema.get("type")
|
|
let format = schema.get("format")
|
|
let xml = schema.get("xml")
|
|
let enumArray = schema.get("enum")
|
|
let description = schema.get("description")
|
|
let properties = schema.filter( ( v, key) => ["enum", "type", "format", "description", "$$ref"].indexOf(key) === -1 )
|
|
let style = required ? { fontWeight: "bold" } : {}
|
|
const Markdown = getComponent("Markdown")
|
|
const EnumModel = getComponent("EnumModel")
|
|
|
|
return <span className="prop">
|
|
<span className="prop-type" style={ style }>{ type }</span> { required && <span style={{ color: "red" }}>*</span>}
|
|
{ format && <span className="prop-format">(${format})</span>}
|
|
{
|
|
properties.size ? properties.entrySeq().map( ( [ key, v ] ) => <span key={`${key}-${v}`} style={ propStyle }>
|
|
<br />{ key }: { String(v) }</span>)
|
|
: null
|
|
}
|
|
{
|
|
!description ? null :
|
|
<Markdown source={ description } />
|
|
}
|
|
{
|
|
xml && xml.size ? (<span><br /><span style={ propStyle }>xml:</span>
|
|
{
|
|
xml.entrySeq().map( ( [ key, v ] ) => <span key={`${key}-${v}`} style={ propStyle }><br/> {key}: { String(v) }</span>).toArray()
|
|
}
|
|
</span>): null
|
|
}
|
|
{
|
|
enumArray && <EnumModel value={ enumArray } getComponent={ getComponent } />
|
|
}
|
|
</span>
|
|
}
|
|
} |