// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import React from 'react'; import { WrappedFieldProps } from 'redux-form'; import { ArvadosTheme } from 'common/custom-theme'; import { TextField as MaterialTextField, StyleRulesCallback, WithStyles, withStyles, PropTypes } from '@material-ui/core'; import RichTextEditor from 'react-rte'; type CssRules = 'textField' | 'rte'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ textField: { marginBottom: theme.spacing.unit }, rte: { fontFamily: 'Arial', '& a': { textDecoration: 'none', color: theme.palette.primary.main, '&:hover': { cursor: 'pointer', textDecoration: 'underline' } } } }); type TextFieldProps = WrappedFieldProps & WithStyles; export const TextField = withStyles(styles)((props: TextFieldProps & { label?: string, autoFocus?: boolean, required?: boolean, select?: boolean, disabled?: boolean, children: React.ReactNode, margin?: PropTypes.Margin, placeholder?: string, helperText?: string, type?: string, }) => ); interface RichEditorTextFieldData { label?: string; } type RichEditorTextFieldProps = RichEditorTextFieldData & TextFieldProps; export const RichEditorTextField = withStyles(styles)( class RichEditorTextField extends React.Component { state = { value: RichTextEditor.createValueFromString(this.props.input.value, 'html') }; onChange = (value: any) => { this.setState({ value }); this.props.input.onChange(value.toString('html')); } render() { return ; } } ); export const DateTextField = withStyles(styles) ((props: TextFieldProps) => );