Summary: The bundling of gatsby is done in node. This caused the node-libs from yoga being loaded. This directly imports the browser version. Reviewed By: emilsjolander Differential Revision: D6975779 fbshipit-source-id: 0257a86733c5552259b171309e59cc676786621e
100 lines
2.7 KiB
JavaScript
100 lines
2.7 KiB
JavaScript
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
import React, {Component} from 'react';
|
|
import yoga from 'yoga-layout/dist/entry-browser';
|
|
import {Radio, Menu, Dropdown, Button, Icon} from 'antd';
|
|
import './YogaEnumSelect.css';
|
|
const RadioButton = Radio.Button;
|
|
const RadioGroup = Radio.Group;
|
|
|
|
const PROPERTY_LOOKUP = {
|
|
flexDirection: 'FLEX_DIRECTION',
|
|
direction: 'DIRECTION',
|
|
justifyContent: 'JUSTIFY',
|
|
alignSelf: 'ALIGN',
|
|
alignContent: 'ALIGN',
|
|
alignItems: 'ALIGN',
|
|
positionType: 'POSITION_TYPE',
|
|
flexWrap: 'WRAP',
|
|
};
|
|
|
|
type Props = {
|
|
property: $Keys<typeof PROPERTY_LOOKUP>,
|
|
disabled?: boolean,
|
|
value: string | number,
|
|
onChange: (value: number) => void,
|
|
};
|
|
|
|
export default class YogaEnumSelect extends Component<Props> {
|
|
static availableProperties = Object.keys(PROPERTY_LOOKUP);
|
|
|
|
values: Array<{key: string, value: number}>;
|
|
|
|
constructor({property}: Props) {
|
|
super();
|
|
property = PROPERTY_LOOKUP[property];
|
|
// $FlowFixMe
|
|
this.values = Object.keys(yoga)
|
|
.map(key => ({key, value: yoga[key]}))
|
|
.filter(
|
|
({key}) => key.startsWith(property) && key !== `${property}_COUNT`,
|
|
);
|
|
}
|
|
|
|
handleMenuClick = ({key}: {key: string}) => {
|
|
this.props.onChange(yoga[key]);
|
|
};
|
|
|
|
render() {
|
|
let {property, ...props} = this.props;
|
|
property = PROPERTY_LOOKUP[property];
|
|
const selected = this.values.find(
|
|
({key, value}) => value === this.props.value,
|
|
);
|
|
const replacer = new RegExp(`^${property}_`);
|
|
|
|
return this.values.length > 3 ? (
|
|
<div className="YogaEnumSelect">
|
|
<Dropdown
|
|
disabled={props.disabled}
|
|
overlay={
|
|
<Menu onClick={this.handleMenuClick}>
|
|
{this.values.map(({key, value}) => (
|
|
<Menu.Item key={key} value={value}>
|
|
{key.replace(replacer, '')}
|
|
</Menu.Item>
|
|
))}
|
|
</Menu>
|
|
}>
|
|
<Button>
|
|
{selected ? selected.key.replace(replacer, '') : ''}
|
|
<Icon type="down" />
|
|
</Button>
|
|
</Dropdown>
|
|
</div>
|
|
) : (
|
|
<RadioGroup
|
|
{...props}
|
|
onChange={e => this.props.onChange(e.target.value)}
|
|
defaultValue="a"
|
|
className="YogaEnumSelect">
|
|
{this.values.map(({key, value}) => (
|
|
<RadioButton key={key} value={value}>
|
|
{key.replace(new RegExp(`^${property}_`), '')}
|
|
</RadioButton>
|
|
))}
|
|
</RadioGroup>
|
|
);
|
|
}
|
|
}
|