fix: type rendering

This commit is contained in:
cha0s 2020-06-20 03:02:46 -05:00
parent ef28829e19
commit b3c5e760cc
3 changed files with 60 additions and 32 deletions

View File

@ -19,7 +19,7 @@ const Steps = (props) => {
else {
stepsList = contextStepsList(
context,
value.steps ? typeFromSteps(context, value.steps) : typeFromLiteral(value.value),
value.steps ? typeFromSteps(context, value.steps) : typeFromLiteral(value),
);
}
return (
@ -67,7 +67,7 @@ const Steps = (props) => {
type={
arg.steps
? typeFromSteps(context, arg.steps)
: typeFromLiteral(arg.value)
: typeFromLiteral(arg)
}
value={arg}
/>

View File

@ -1,23 +1,30 @@
import {Context} from '@avocado/behavior'
export function typeFromLiteral(v) {
if ('undefined' === typeof v) {
return 'undefined';
console.log('tfl', v);
if ('literal' === v.type) {
const {value} = v;
if ('undefined' === typeof value) {
return 'undefined';
}
if (null === value) {
return 'null';
}
if ('number' === typeof value) {
return 'number';
}
if ('string' === typeof value) {
return 'string';
}
if ('boolean' === typeof value) {
return 'bool';
}
if (value.length && 2 === value.length && value instanceof Array) {
return 'vector';
}
}
if (null === v) {
return 'null';
}
if ('number' === typeof v) {
return 'number';
}
if ('string' === typeof v) {
return 'string';
}
if ('boolean' === typeof v) {
return 'bool';
}
if (v.length && 2 === v.length && v instanceof Array) {
return 'vector';
if ('actions' === v.type && v.traversals) {
return 'actions';
}
return 'object';
}

View File

@ -13,12 +13,28 @@ import String from './string.type-renderer';
import {contextStepsList} from './steps-lists';
import {typeFits, typeFromSteps} from './typing';
let TypeRenderers;
const ensureTypeRenderers = () => {
if (!TypeRenderers) {
const {all: allTypeRenderers} = require('./type-renderers.scwp');
TypeRenderers = Object.values(allTypeRenderers()).reduce((r, M) => {
const {default: {type, component}} = M;
return {...r, [type]: component};
}, {});
}
};
const renderValue = (context, type, value) => {
ensureTypeRenderers();
switch (value.type) {
case 'traversal': {
return <Steps context={context} steps={value.steps} type={type} value={value.value} />;
}
case 'literal':
case 'actions': {
const Component = TypeRenderers['actions'];
return <Component context={context} value={value} />;
}
case 'literal': {
const stepsList = contextStepsList(context, type);
const tierOptions = Object.keys(stepsList.reduce((r, optionSteps) => {
if (!optionSteps[0] || !optionSteps[0].key) {
@ -39,23 +55,28 @@ const renderValue = (context, type, value) => {
</select>
{
(() => {
switch (type) {
case 'bool':
return <Bool.component value={value.value} />;
case 'number':
return <Number.component value={value.value} />;
case 'any':
case 'string':
return <String.component value={value.value} />;
case 'object':
return <ObjectType.component value={value.value} />;
default:
return null;
}
const Component = TypeRenderers[type];
return Component
? <Component value={value.value} />
: null;
// switch (type) {
// case 'bool':
// return <Bool.component value={value.value} />;
// case 'number':
// return <Number.component value={value.value} />;
// case 'any':
// case 'string':
// return <String.component value={value.value} />;
// case 'object':
// return <ObjectType.component value={value.value} />;
// default:
// return null;
// }
})()
}
</div>
);
}
default:
return null;
}