123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import {Fragment, useState} from 'react';
- import styled from '@emotion/styled';
- import {Button} from 'sentry/components/button';
- import TextArea from 'sentry/components/forms/controls/textarea';
- import Input from 'sentry/components/input';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {useWidgetBuilderContext} from 'sentry/views/dashboards/widgetBuilder/contexts/widgetBuilderContext';
- import {BuilderStateAction} from 'sentry/views/dashboards/widgetBuilder/hooks/useWidgetBuilderState';
- function WidgetBuilderNameAndDescription() {
- const {state, dispatch} = useWidgetBuilderContext();
- const [isDescSelected, setIsDescSelected] = useState(state.description ? true : false);
- return (
- <Fragment>
- <Header>{t('Widget Name & Description')}</Header>
- <StyledInput
- size="md"
- placeholder={t('Name')}
- title={t('Widget Name')}
- type="text"
- aria-label={t('Widget Name')}
- value={state.title}
- onChange={e => {
- dispatch({type: BuilderStateAction.SET_TITLE, payload: e.target.value});
- }}
- />
- {!isDescSelected && (
- <AddDescriptionButton
- priority="link"
- aria-label={t('Add Widget Description')}
- onClick={() => {
- setIsDescSelected(true);
- }}
- data-test-id={'add-description'}
- >
- {t('+ Add Widget Description')}
- </AddDescriptionButton>
- )}
- {isDescSelected && (
- <DescriptionTextArea
- placeholder={t('Description')}
- aria-label={t('Widget Description')}
- autosize
- rows={4}
- value={state.description}
- onChange={e => {
- dispatch({type: BuilderStateAction.SET_DESCRIPTION, payload: e.target.value});
- }}
- />
- )}
- </Fragment>
- );
- }
- export default WidgetBuilderNameAndDescription;
- const Header = styled('h6')`
- font-size: ${p => p.theme.fontSizeLarge};
- margin-bottom: ${space(1)};
- `;
- const StyledInput = styled(Input)`
- margin-bottom: ${space(1)};
- `;
- const AddDescriptionButton = styled(Button)`
- margin-bottom: ${space(1)};
- `;
- const DescriptionTextArea = styled(TextArea)`
- margin: ${space(2)} 0;
- `;
|