forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add color, icon and defaultVISTheme for workspace #36
Merged
wanglam
merged 3 commits into
ruanyl:workspace
from
wanglam:feat-update-workspace-create-ui
Jul 5, 2023
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,19 +20,23 @@ import { | |
EuiFlexGrid, | ||
EuiFlexGroup, | ||
EuiImage, | ||
EuiAccordion, | ||
EuiCheckbox, | ||
EuiCheckboxGroup, | ||
EuiCheckableCardProps, | ||
EuiCheckboxGroupProps, | ||
EuiCheckboxProps, | ||
EuiFieldTextProps, | ||
EuiColorPicker, | ||
EuiColorPickerProps, | ||
EuiComboBox, | ||
EuiComboBoxProps, | ||
} from '@elastic/eui'; | ||
|
||
import { WorkspaceTemplate } from '../../../../../core/types'; | ||
import { AppNavLinkStatus, ApplicationStart } from '../../../../../core/public'; | ||
import { useApplications, useWorkspaceTemplate } from '../../hooks'; | ||
import { WORKSPACE_OP_TYPE_CREATE, WORKSPACE_OP_TYPE_UPDATE } from '../../../common/constants'; | ||
import { WorkspaceIconSelector } from './workspace_icon_selector'; | ||
|
||
interface WorkspaceFeature { | ||
id: string; | ||
|
@@ -49,6 +53,9 @@ export interface WorkspaceFormData { | |
name: string; | ||
description?: string; | ||
features: string[]; | ||
color?: string; | ||
icon?: string; | ||
defaultVISTheme?: string; | ||
} | ||
|
||
type WorkspaceFormErrors = { [key in keyof WorkspaceFormData]?: string }; | ||
|
@@ -59,6 +66,8 @@ const isWorkspaceFeatureGroup = ( | |
|
||
const workspaceHtmlIdGenerator = htmlIdGenerator(); | ||
|
||
const defaultVISThemeOptions = [{ label: 'Categorical', value: 'categorical' }]; | ||
|
||
interface WorkspaceFormProps { | ||
application: ApplicationStart; | ||
onSubmit?: (formData: WorkspaceFormData) => void; | ||
|
@@ -76,6 +85,10 @@ export const WorkspaceForm = ({ | |
|
||
const [name, setName] = useState(defaultValues?.name); | ||
const [description, setDescription] = useState(defaultValues?.description); | ||
const [color, setColor] = useState(defaultValues?.color); | ||
const [icon, setIcon] = useState(defaultValues?.icon); | ||
const [defaultVISTheme, setDefaultVISTheme] = useState(defaultValues?.defaultVISTheme); | ||
|
||
const [selectedTemplateId, setSelectedTemplateId] = useState<string>(); | ||
const [selectedFeatureIds, setSelectedFeatureIds] = useState(defaultValues?.features || []); | ||
const selectedTemplate = workspaceTemplates.find( | ||
|
@@ -87,6 +100,9 @@ export const WorkspaceForm = ({ | |
name, | ||
description, | ||
features: selectedFeatureIds, | ||
color, | ||
icon, | ||
defaultVISTheme, | ||
}); | ||
const getFormDataRef = useRef(getFormData); | ||
getFormDataRef.current = getFormData; | ||
|
@@ -120,6 +136,11 @@ export const WorkspaceForm = ({ | |
}, []); | ||
}, [applications]); | ||
|
||
const selectedDefaultVISThemeOptions = useMemo( | ||
() => defaultVISThemeOptions.filter((item) => item.value === defaultVISTheme), | ||
[defaultVISTheme] | ||
); | ||
|
||
if (!formIdRef.current) { | ||
formIdRef.current = workspaceHtmlIdGenerator(); | ||
} | ||
|
@@ -198,6 +219,20 @@ export const WorkspaceForm = ({ | |
setDescription(e.target.value); | ||
}, []); | ||
|
||
const handleColorChange = useCallback<Required<EuiColorPickerProps>['onChange']>((text) => { | ||
setColor(text); | ||
}, []); | ||
|
||
const handleIconChange = useCallback((newIcon: string) => { | ||
setIcon(newIcon); | ||
}, []); | ||
|
||
const handleDefaultVISThemeInputChange = useCallback< | ||
Required<EuiComboBoxProps<string>>['onChange'] | ||
>((options) => { | ||
setDefaultVISTheme(options[0]?.value); | ||
}, []); | ||
|
||
return ( | ||
<EuiForm id={formIdRef.current} onSubmit={handleFormSubmit} component="form"> | ||
<EuiPanel> | ||
|
@@ -217,6 +252,25 @@ export const WorkspaceForm = ({ | |
> | ||
<EuiFieldText value={description} onChange={handleDescriptionInputChange} /> | ||
</EuiFormRow> | ||
<EuiFormRow label="Color" isInvalid={!!formErrors.color} error={formErrors.color}> | ||
<EuiColorPicker color={color} onChange={handleColorChange} /> | ||
</EuiFormRow> | ||
<EuiFormRow label="Icon" isInvalid={!!formErrors.icon} error={formErrors.icon}> | ||
<WorkspaceIconSelector value={icon} onChange={handleIconChange} color={color} /> | ||
</EuiFormRow> | ||
<EuiFormRow | ||
label="Default VIS Theme" | ||
isInvalid={!!formErrors.defaultVISTheme} | ||
error={formErrors.defaultVISTheme} | ||
> | ||
<EuiComboBox | ||
options={defaultVISThemeOptions} | ||
singleSelection | ||
onChange={handleDefaultVISThemeInputChange} | ||
selectedOptions={selectedDefaultVISThemeOptions} | ||
isClearable={false} | ||
/> | ||
</EuiFormRow> | ||
</EuiPanel> | ||
<EuiSpacer /> | ||
<EuiPanel> | ||
|
@@ -267,74 +321,67 @@ export const WorkspaceForm = ({ | |
<EuiSpacer /> | ||
</> | ||
)} | ||
<EuiAccordion | ||
id={workspaceHtmlIdGenerator()} | ||
buttonContent={ | ||
<> | ||
<EuiTitle size="xs"> | ||
<h3>Advanced Options</h3> | ||
</EuiTitle> | ||
</> | ||
} | ||
> | ||
<EuiFlexGrid style={{ paddingLeft: 20, paddingTop: 20 }} columns={2}> | ||
{featureOrGroups.map((featureOrGroup) => { | ||
const features = isWorkspaceFeatureGroup(featureOrGroup) | ||
</EuiPanel> | ||
<EuiSpacer /> | ||
<EuiPanel> | ||
<EuiTitle size="s"> | ||
<h2>Workspace features</h2> | ||
</EuiTitle> | ||
<EuiFlexGrid style={{ paddingLeft: 20, paddingTop: 20 }} columns={2}> | ||
{featureOrGroups.map((featureOrGroup) => { | ||
const features = isWorkspaceFeatureGroup(featureOrGroup) ? featureOrGroup.features : []; | ||
const selectedIds = selectedFeatureIds.filter((id) => | ||
(isWorkspaceFeatureGroup(featureOrGroup) | ||
? featureOrGroup.features | ||
: []; | ||
const selectedIds = selectedFeatureIds.filter((id) => | ||
(isWorkspaceFeatureGroup(featureOrGroup) | ||
? featureOrGroup.features | ||
: [featureOrGroup] | ||
).find((item) => item.id === id) | ||
); | ||
return ( | ||
<EuiFlexItem key={featureOrGroup.name}> | ||
<EuiCheckbox | ||
id={ | ||
isWorkspaceFeatureGroup(featureOrGroup) | ||
? featureOrGroup.name | ||
: featureOrGroup.id | ||
} | ||
onChange={ | ||
isWorkspaceFeatureGroup(featureOrGroup) | ||
? handleFeatureGroupChange | ||
: handleFeatureCheckboxChange | ||
} | ||
label={`${ | ||
featureOrGroup.name === 'OpenSearch Plugins' | ||
? 'OpenSearch Features' | ||
: featureOrGroup.name | ||
}${features.length > 0 ? `(${selectedIds.length}/${features.length})` : ''}`} | ||
checked={selectedIds.length > 0} | ||
indeterminate={ | ||
isWorkspaceFeatureGroup(featureOrGroup) && | ||
selectedIds.length > 0 && | ||
selectedIds.length < features.length | ||
} | ||
: [featureOrGroup] | ||
).find((item) => item.id === id) | ||
); | ||
return ( | ||
<EuiFlexItem key={featureOrGroup.name}> | ||
<EuiCheckbox | ||
id={ | ||
isWorkspaceFeatureGroup(featureOrGroup) | ||
? featureOrGroup.name | ||
: featureOrGroup.id | ||
} | ||
onChange={ | ||
isWorkspaceFeatureGroup(featureOrGroup) | ||
? handleFeatureGroupChange | ||
: handleFeatureCheckboxChange | ||
} | ||
label={`${ | ||
featureOrGroup.name === 'OpenSearch Plugins' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you help to revert this change? It's just a hack for demo, we don't need it now. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed |
||
? 'OpenSearch Features' | ||
: featureOrGroup.name | ||
}${features.length > 0 ? `(${selectedIds.length}/${features.length})` : ''}`} | ||
checked={selectedIds.length > 0} | ||
indeterminate={ | ||
isWorkspaceFeatureGroup(featureOrGroup) && | ||
selectedIds.length > 0 && | ||
selectedIds.length < features.length | ||
} | ||
/> | ||
{isWorkspaceFeatureGroup(featureOrGroup) && ( | ||
<EuiCheckboxGroup | ||
options={featureOrGroup.features.map((item) => ({ | ||
id: item.id, | ||
label: item.name, | ||
}))} | ||
idToSelectedMap={selectedIds.reduce( | ||
(previousValue, currentValue) => ({ | ||
...previousValue, | ||
[currentValue]: true, | ||
}), | ||
{} | ||
)} | ||
onChange={handleFeatureChange} | ||
style={{ marginLeft: 40 }} | ||
/> | ||
{isWorkspaceFeatureGroup(featureOrGroup) && ( | ||
<EuiCheckboxGroup | ||
options={featureOrGroup.features.map((item) => ({ | ||
id: item.id, | ||
label: item.name, | ||
}))} | ||
idToSelectedMap={selectedIds.reduce( | ||
(previousValue, currentValue) => ({ | ||
...previousValue, | ||
[currentValue]: true, | ||
}), | ||
{} | ||
)} | ||
onChange={handleFeatureChange} | ||
style={{ marginLeft: 40 }} | ||
/> | ||
)} | ||
</EuiFlexItem> | ||
); | ||
})} | ||
</EuiFlexGrid> | ||
</EuiAccordion> | ||
)} | ||
</EuiFlexItem> | ||
); | ||
})} | ||
</EuiFlexGrid> | ||
</EuiPanel> | ||
<EuiSpacer /> | ||
<EuiText textAlign="right"> | ||
|
36 changes: 36 additions & 0 deletions
36
src/plugins/workspace/public/components/workspace_creator/workspace_icon_selector.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React from 'react'; | ||
|
||
import { EuiFlexGroup, EuiFlexItem, EuiIcon } from '@elastic/eui'; | ||
|
||
const icons = ['glasses', 'search', 'bell']; | ||
|
||
export const WorkspaceIconSelector = ({ | ||
color, | ||
value, | ||
onChange, | ||
}: { | ||
color?: string; | ||
value?: string; | ||
onChange: (value: string) => void; | ||
}) => { | ||
return ( | ||
<EuiFlexGroup> | ||
{icons.map((item) => ( | ||
<EuiFlexItem | ||
key={item} | ||
onClick={() => { | ||
onChange(item); | ||
}} | ||
grow={false} | ||
> | ||
<EuiIcon size="l" type={item} color={value === item ? color : undefined} /> | ||
</EuiFlexItem> | ||
))} | ||
</EuiFlexGroup> | ||
); | ||
}; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not know if it would be better to use an object state instead of multiple isolated states in this case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For now, we don't know too much relations between these three fields. The defaultVISTheme and icon will be little bit complex. The icon may need to support custom icon upload and defaultVISTheme may contains multiple colors. Not sure the final design for this part.