UNPKG

@bigfishtv/cockpit

Version:

24 lines (21 loc) 833 B
import React, { Component } from 'react' import { Fieldset } from '@bigfishtv/react-forms' import Field from '../form/Field' import Switch from '../input/SwitchInput' import NumberInput from '../input/NumberInput' /** * Fieldset used in RedirectEdit template */ export default class RedirectEditFieldset extends Component { render() { return ( <Fieldset formValue={this.props.formValue}> <Field select="pattern" label="Redirect Pattern" placeholder="/xxl" /> <Field select="url" label="Target URL" placeholder="/some/extra-extra/long-url" /> <Field select="comment" label="Comment" placeholder="Describe the redirect" /> <Field select="priority" label="Priority" hint="Lower numbers execute first" Input={NumberInput} /> <Field select="enabled" label="Enabled" Input={Switch} /> </Fieldset> ) } }