diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/coding-rules/components/AvailableSinceFacet.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/coding-rules/components/AvailableSinceFacet.tsx | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/coding-rules/components/AvailableSinceFacet.tsx b/server/sonar-web/src/main/js/apps/coding-rules/components/AvailableSinceFacet.tsx new file mode 100644 index 00000000000..b0a18157f67 --- /dev/null +++ b/server/sonar-web/src/main/js/apps/coding-rules/components/AvailableSinceFacet.tsx @@ -0,0 +1,79 @@ +/* + * SonarQube + * Copyright (C) 2009-2018 SonarSource SA + * mailto:info AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +import * as React from 'react'; +import { intlShape } from 'react-intl'; +import { Query } from '../query'; +import DateInput from '../../../components/controls/DateInput'; +import FacetBox from '../../../components/facet/FacetBox'; +import FacetHeader from '../../../components/facet/FacetHeader'; +import { longFormatterOption } from '../../../components/intl/DateFormatter'; +import { parseDate } from '../../../helpers/dates'; +import { translate } from '../../../helpers/l10n'; +import { serializeDateShort } from '../../../helpers/query'; + +interface Props { + onChange: (changes: Partial<Query>) => void; + onToggle: (property: keyof Query) => void; + open: boolean; + value?: Date; +} + +export default class AvailableSinceFacet extends React.PureComponent<Props> { + static contextTypes = { + intl: intlShape + }; + + handleHeaderClick = () => this.props.onToggle('availableSince'); + + handleClear = () => this.props.onChange({ availableSince: undefined }); + + handlePeriodChange = (value?: string) => + this.props.onChange({ availableSince: value ? parseDate(value) : undefined }); + + getValues = () => + this.props.value + ? [this.context.intl.formatDate(this.props.value, longFormatterOption)] + : undefined; + + renderDateInput = () => ( + <DateInput + name="available-since" + onChange={this.handlePeriodChange} + placeholder={translate('date')} + value={serializeDateShort(this.props.value)} + /> + ); + + render() { + return ( + <FacetBox property="availableSince"> + <FacetHeader + name={translate('coding_rules.facet.available_since')} + onClear={this.handleClear} + onClick={this.handleHeaderClick} + open={this.props.open} + values={this.getValues()} + /> + + {this.props.open && this.renderDateInput()} + </FacetBox> + ); + } +} |