1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import React from 'react';
6 import { Dispatch } from 'redux';
7 import { connect, DispatchProp } from 'react-redux';
8 import { RootState } from 'store/store';
9 import { values, pipe } from 'lodash/fp';
10 import { HomeTreePicker } from 'views-components/projects-tree-picker/home-tree-picker';
11 import { SharedTreePicker } from 'views-components/projects-tree-picker/shared-tree-picker';
12 import { FavoritesTreePicker } from 'views-components/projects-tree-picker/favorites-tree-picker';
13 import { SearchProjectsPicker } from 'views-components/projects-tree-picker/search-projects-picker';
15 getProjectsTreePickerIds, treePickerActions, treePickerSearchActions, initProjectsTreePicker,
16 SHARED_PROJECT_ID, FAVORITES_PROJECT_ID
17 } from 'store/tree-picker/tree-picker-actions';
18 import { TreeItem } from 'components/tree/tree';
19 import { ProjectsTreePickerItem } from 'store/tree-picker/tree-picker-middleware';
20 import { PublicFavoritesTreePicker } from './public-favorites-tree-picker';
21 import { SearchInput } from 'components/search-input/search-input';
22 import { withStyles, StyleRulesCallback, WithStyles } from '@material-ui/core';
23 import { ArvadosTheme } from 'common/custom-theme';
25 export interface ToplevelPickerProps {
26 currentUuids?: string[];
28 cascadeSelection: boolean;
29 includeCollections?: boolean;
30 includeDirectories?: boolean;
31 includeFiles?: boolean;
32 showSelection?: boolean;
33 options?: { showOnlyOwned: boolean, showOnlyWritable: boolean };
34 toggleItemActive?: (event: React.MouseEvent<HTMLElement>, item: TreeItem<ProjectsTreePickerItem>, pickerId: string) => void;
35 toggleItemSelection?: (event: React.MouseEvent<HTMLElement>, item: TreeItem<ProjectsTreePickerItem>, pickerId: string) => void;
38 interface ProjectsTreePickerSearchProps {
39 projectSearch: string;
40 collectionFilter: string;
43 interface ProjectsTreePickerActionProps {
44 onProjectSearch: (value: string) => void;
45 onCollectionFilter: (value: string) => void;
48 const mapStateToProps = (state: RootState, props: ToplevelPickerProps): ProjectsTreePickerSearchProps => {
49 const { search } = getProjectsTreePickerIds(props.pickerId);
52 projectSearch: state.treePickerSearch.projectSearchValues[search],
53 collectionFilter: state.treePickerSearch.collectionFilterValues[search],
57 const mapDispatchToProps = (dispatch: Dispatch, props: ToplevelPickerProps): (ProjectsTreePickerActionProps & DispatchProp) => {
58 const { home, shared, favorites, publicFavorites, search } = getProjectsTreePickerIds(props.pickerId);
60 includeCollections: props.includeCollections,
61 includeDirectories: props.includeDirectories,
62 includeFiles: props.includeFiles,
63 options: props.options
65 dispatch(treePickerSearchActions.SET_TREE_PICKER_LOAD_PARAMS({ pickerId: home, params }));
66 dispatch(treePickerSearchActions.SET_TREE_PICKER_LOAD_PARAMS({ pickerId: shared, params }));
67 dispatch(treePickerSearchActions.SET_TREE_PICKER_LOAD_PARAMS({ pickerId: favorites, params }));
68 dispatch(treePickerSearchActions.SET_TREE_PICKER_LOAD_PARAMS({ pickerId: publicFavorites, params }));
69 dispatch(treePickerSearchActions.SET_TREE_PICKER_LOAD_PARAMS({ pickerId: search, params }));
72 onProjectSearch: (projectSearchValue: string) => dispatch(treePickerSearchActions.SET_TREE_PICKER_PROJECT_SEARCH({ pickerId: search, projectSearchValue })),
73 onCollectionFilter: (collectionFilterValue: string) => {
74 dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: home, collectionFilterValue }));
75 dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: shared, collectionFilterValue }));
76 dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: favorites, collectionFilterValue }));
77 dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: publicFavorites, collectionFilterValue }));
78 dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: search, collectionFilterValue }));
84 type CssRules = 'pickerHeight' | 'searchFlex' | 'scrolledBox';
86 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
89 flexDirection: "column",
94 justifyContent: "space-around",
102 type ProjectsTreePickerCombinedProps = ToplevelPickerProps & ProjectsTreePickerSearchProps & ProjectsTreePickerActionProps & DispatchProp & WithStyles<CssRules>;
104 export const ProjectsTreePicker = connect(mapStateToProps, mapDispatchToProps)(
106 class FileInputComponent extends React.Component<ProjectsTreePickerCombinedProps> {
108 componentDidMount() {
109 const { home, shared, favorites, publicFavorites, search } = getProjectsTreePickerIds(this.props.pickerId);
111 const preloadParams = this.props.currentUuids ? {
112 selectedItemUuids: this.props.currentUuids,
113 includeDirectories: !!this.props.includeDirectories,
114 includeFiles: !!this.props.includeFiles,
115 multi: !!this.props.showSelection,
117 this.props.dispatch<any>(initProjectsTreePicker(this.props.pickerId, preloadParams));
119 this.props.dispatch(treePickerSearchActions.SET_TREE_PICKER_PROJECT_SEARCH({ pickerId: search, projectSearchValue: "" }));
120 this.props.dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: search, collectionFilterValue: "" }));
121 this.props.dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: home, collectionFilterValue: "" }));
122 this.props.dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: shared, collectionFilterValue: "" }));
123 this.props.dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: favorites, collectionFilterValue: "" }));
124 this.props.dispatch(treePickerSearchActions.SET_TREE_PICKER_COLLECTION_FILTER({ pickerId: publicFavorites, collectionFilterValue: "" }));
127 componentWillUnmount() {
128 const { home, shared, favorites, publicFavorites, search } = getProjectsTreePickerIds(this.props.pickerId);
129 // Release all the state, we don't need it to hang around forever.
130 this.props.dispatch(treePickerActions.RESET_TREE_PICKER({ pickerId: search }));
131 this.props.dispatch(treePickerActions.RESET_TREE_PICKER({ pickerId: home }));
132 this.props.dispatch(treePickerActions.RESET_TREE_PICKER({ pickerId: shared }));
133 this.props.dispatch(treePickerActions.RESET_TREE_PICKER({ pickerId: favorites }));
134 this.props.dispatch(treePickerActions.RESET_TREE_PICKER({ pickerId: publicFavorites }));
138 const pickerId = this.props.pickerId;
139 const onProjectSearch = this.props.onProjectSearch;
140 const onCollectionFilter = this.props.onCollectionFilter;
142 const { home, shared, favorites, publicFavorites, search } = getProjectsTreePickerIds(pickerId);
143 const relatedTreePickers = getRelatedTreePickers(pickerId);
145 cascadeSelection: this.props.cascadeSelection,
146 includeCollections: this.props.includeCollections,
147 includeDirectories: this.props.includeDirectories,
148 includeFiles: this.props.includeFiles,
149 showSelection: this.props.showSelection,
150 options: this.props.options,
151 toggleItemActive: this.props.toggleItemActive,
152 toggleItemSelection: this.props.toggleItemSelection,
156 return <div className={this.props.classes.pickerHeight} >
157 <span className={this.props.classes.searchFlex}>
158 <SearchInput value="" label="Search for a Project" selfClearProp='' onSearch={onProjectSearch} debounce={500} />
159 {this.props.includeCollections &&
160 <SearchInput value="" label="Filter Collections list in Projects" selfClearProp='' onSearch={onCollectionFilter} debounce={500} />}
163 <div className={this.props.classes.scrolledBox}>
164 {this.props.projectSearch ?
165 <div data-cy="projects-tree-search-picker">
166 <SearchProjectsPicker {...p} pickerId={search} />
170 <div data-cy="projects-tree-home-tree-picker">
171 <HomeTreePicker {...p} pickerId={home} />
173 <div data-cy="projects-tree-shared-tree-picker">
174 <SharedTreePicker {...p} pickerId={shared} />
176 <div data-cy="projects-tree-public-favourites-tree-picker">
177 <PublicFavoritesTreePicker {...p} pickerId={publicFavorites} />
179 <div data-cy="projects-tree-favourites-tree-picker">
180 <FavoritesTreePicker {...p} pickerId={favorites} />
188 const getRelatedTreePickers = pipe(getProjectsTreePickerIds, values);
189 const disableActivation = [SHARED_PROJECT_ID, FAVORITES_PROJECT_ID];