X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/2cfb56ef5060cbad461062690fad650f15c49731..970a9e9dcd2a444d02181c4df3f205f7e0a8ebeb:/src/views-components/search-bar/search-bar-advanced-view.tsx diff --git a/src/views-components/search-bar/search-bar-advanced-view.tsx b/src/views-components/search-bar/search-bar-advanced-view.tsx index 4d9bd97b..9f9688c3 100644 --- a/src/views-components/search-bar/search-bar-advanced-view.tsx +++ b/src/views-components/search-bar/search-bar-advanced-view.tsx @@ -3,28 +3,33 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { reduxForm, reset, InjectedFormProps } from 'redux-form'; +import { reduxForm, InjectedFormProps, reset } from 'redux-form'; import { compose, Dispatch } from 'redux'; import { Paper, StyleRulesCallback, withStyles, WithStyles, Button, Grid, IconButton, CircularProgress } from '@material-ui/core'; -import { SearchView } from '~/store/search-bar/search-bar-reducer'; -import { SEARCH_BAR_ADVANCE_FORM_NAME, saveQuery } from '~/store/search-bar/search-bar-actions'; +import { + SEARCH_BAR_ADVANCED_FORM_NAME, SEARCH_BAR_ADVANCED_FORM_PICKER_ID, + searchAdvancedData, + setSearchValueFromAdvancedData +} from '~/store/search-bar/search-bar-actions'; import { ArvadosTheme } from '~/common/custom-theme'; import { CloseIcon } from '~/components/icon/icon'; -import { SearchBarAdvanceFormData } from '~/models/search-bar'; -import { - SearchBarTypeField, SearchBarClusterField, SearchBarProjectField, SearchBarTrashField, - SearchBarDataFromField, SearchBarDataToField, SearchBarKeyField, SearchBarValueField, - SearchBarSaveSearchField, SearchBarQuerySearchField +import { SearchBarAdvancedFormData } from '~/models/search-bar'; +import { + SearchBarTypeField, SearchBarClusterField, SearchBarProjectField, SearchBarTrashField, + SearchBarDateFromField, SearchBarDateToField, SearchBarPropertiesField, + SearchBarSaveSearchField, SearchBarQuerySearchField, SearchBarPastVersionsField } from '~/views-components/form-fields/search-bar-form-fields'; +import { treePickerActions } from "~/store/tree-picker/tree-picker-actions"; -type CssRules = 'container' | 'closeIcon' | 'label' | 'buttonWrapper' +type CssRules = 'container' | 'closeIcon' | 'label' | 'buttonWrapper' | 'button' | 'circularProgress' | 'searchView' | 'selectGrid'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ container: { padding: theme.spacing.unit * 2, - borderBottom: `1px solid ${theme.palette.grey["200"]}` - }, + borderBottom: `1px solid ${theme.palette.grey["200"]}`, + position: 'relative', + }, closeIcon: { position: 'absolute', top: '12px', @@ -36,8 +41,8 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ alignSelf: 'center' }, buttonWrapper: { - paddingRight: '14px', - paddingTop: '14px', + marginRight: '14px', + marginTop: '14px', position: 'relative', }, button: { @@ -45,7 +50,7 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, circularProgress: { position: 'absolute', - top: -9, + top: 0, bottom: 0, left: 0, right: 0, @@ -60,30 +65,55 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ } }); -interface SearchBarAdvancedViewDataProps { +// ToDo: maybe we should remove invalid and prostine +interface SearchBarAdvancedViewFormDataProps { submitting: boolean; invalid: boolean; pristine: boolean; } -interface SearchBarAdvancedViewActionProps { - setView: (currentView: string) => void; - saveQuery: (data: SearchBarAdvanceFormData) => void; +// ToDo: maybe we should remove tags +export interface SearchBarAdvancedViewDataProps { + tags: any; + saveQuery: boolean; +} + +export interface SearchBarAdvancedViewActionProps { + closeAdvanceView: () => void; } -type SearchBarAdvancedViewProps = SearchBarAdvancedViewActionProps & SearchBarAdvancedViewDataProps +type SearchBarAdvancedViewProps = SearchBarAdvancedViewActionProps & SearchBarAdvancedViewDataProps; + +type SearchBarAdvancedViewFormProps = SearchBarAdvancedViewProps & SearchBarAdvancedViewFormDataProps & InjectedFormProps & WithStyles; -export const SearchBarAdvancedView = compose( - reduxForm({ - form: SEARCH_BAR_ADVANCE_FORM_NAME, - onSubmit: (data: SearchBarAdvanceFormData, dispatch: Dispatch) => { - dispatch(saveQuery(data)); - dispatch(reset(SEARCH_BAR_ADVANCE_FORM_NAME)); +const validate = (values: any) => { + const errors: any = {}; + + if (values.dateFrom && values.dateTo) { + if (new Date(values.dateFrom).getTime() > new Date(values.dateTo).getTime()) { + errors.dateFrom = 'Invalid date'; } + } + + return errors; +}; + +export const SearchBarAdvancedView = compose( + reduxForm({ + form: SEARCH_BAR_ADVANCED_FORM_NAME, + validate, + onSubmit: (data: SearchBarAdvancedFormData, dispatch: Dispatch) => { + dispatch(searchAdvancedData(data)); + dispatch(reset(SEARCH_BAR_ADVANCED_FORM_NAME)); + dispatch(treePickerActions.DEACTIVATE_TREE_PICKER_NODE({ pickerId: SEARCH_BAR_ADVANCED_FORM_PICKER_ID })); + }, + onChange: (data: SearchBarAdvancedFormData, dispatch: Dispatch, props: any, prevData: SearchBarAdvancedFormData) => { + dispatch(setSearchValueFromAdvancedData(data, prevData)); + }, }), withStyles(styles))( - ({ classes, setView, handleSubmit, invalid, submitting, pristine }: SearchBarAdvancedViewProps) => + ({ classes, closeAdvanceView, handleSubmit, submitting, invalid, pristine, tags, saveQuery }: SearchBarAdvancedViewFormProps) =>
@@ -102,7 +132,7 @@ export const SearchBarAdvancedView = compose( Project - + @@ -111,50 +141,40 @@ export const SearchBarAdvancedView = compose( + + + - setView(SearchView.BASIC)} className={classes.closeIcon}> + - Data modified + Date modified - + - + - - Properties - - - - - - - - - - + - + {saveQuery && }