X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f26a160eb9a476f1d5037d899e0636cf150fb573..3c7e3cdc547ad5468421e1c049daa94b0d4b8bc0:/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 93bd0a69..323f07b2 100644 --- a/src/views-components/search-bar/search-bar-advanced-view.tsx +++ b/src/views-components/search-bar/search-bar-advanced-view.tsx @@ -2,30 +2,34 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import { reduxForm, reset, InjectedFormProps } from 'redux-form'; +import React from 'react'; +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, SearchBarAdvanceFormData } from '~/store/search-bar/search-bar-actions'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { CloseIcon } from '~/components/icon/icon'; -import { - SearchBarTypeField, SearchBarClusterField, SearchBarProjectField, SearchBarTrashField, - SearchBarDataFromField, SearchBarDataToField, SearchBarKeyField, SearchBarValueField, - SearchBarSaveSearchField, SearchBarQuerySearchField -} from '~/views-components/form-fields/search-bar-form-fields'; +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 { 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 = 'form' | 'container' | 'closeIcon' | 'label' | 'buttonWrapper' | 'button' | 'circularProgress'; +type CssRules = 'container' | 'closeIcon' | 'label' | 'buttonWrapper' + | 'button' | 'circularProgress' | 'searchView' | 'selectGrid'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ - form: { - - }, container: { - padding: theme.spacing.unit * 3, - borderBottom: `1px solid ${theme.palette.grey["200"]}` - }, + padding: theme.spacing.unit * 2, + borderBottom: `1px solid ${theme.palette.grey["200"]}`, + position: 'relative', + }, closeIcon: { position: 'absolute', top: '12px', @@ -37,7 +41,8 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ alignSelf: 'center' }, buttonWrapper: { - paddingTop: '14px', + marginRight: '14px', + marginTop: '14px', position: 'relative', }, button: { @@ -45,47 +50,81 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, circularProgress: { position: 'absolute', - top: -9, + top: 0, bottom: 0, left: 0, right: 0, margin: 'auto' + }, + searchView: { + color: theme.palette.common.black, + borderRadius: `0 0 ${theme.spacing.unit / 2}px ${theme.spacing.unit / 2}px` + }, + selectGrid: { + marginBottom: theme.spacing.unit * 2 } }); -interface SearchBarAdvancedViewDataProps { +// ToDo: maybe we should remove invalid and prostine +interface SearchBarAdvancedViewFormDataProps { submitting: boolean; invalid: boolean; pristine: boolean; } -interface SearchBarAdvancedViewActionProps { - setView: (currentView: string) => 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(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) => + + - + Type - + Cluster @@ -93,7 +132,7 @@ export const SearchBarAdvancedView = compose( Project - + @@ -102,50 +141,40 @@ export const SearchBarAdvancedView = compose( + + + - setView(SearchView.BASIC)} className={classes.closeIcon}> + - - Data modified - - + + Date modified + + - - + + - - Properties - - - - - - - - - - - + + - + {saveQuery && }