Make sure PrimitiveModel uses the schema's title first and then falls back to the passed-in `name` property. Added enzyme test for functionality.
59 lines
2.0 KiB
JavaScript
59 lines
2.0 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,
|
|
name: PropTypes.string,
|
|
depth: PropTypes.number
|
|
}
|
|
|
|
render(){
|
|
let { schema, getComponent, name, depth } = 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 title = schema.get("title") || name
|
|
let description = schema.get("description")
|
|
let properties = schema.filter( ( v, key) => ["enum", "type", "format", "description", "$$ref"].indexOf(key) === -1 )
|
|
const Markdown = getComponent("Markdown")
|
|
const EnumModel = getComponent("EnumModel")
|
|
|
|
return <span className="model">
|
|
<span className="prop">
|
|
{ name && <span className={`${depth === 1 && "model-title"} prop-name`}>{ title }</span> }
|
|
<span className="prop-type">{ type }</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>
|
|
</span>
|
|
}
|
|
} |