-
Notifications
You must be signed in to change notification settings - Fork 894
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Workspace]Add WorkspaceCollaboratorTypesService and AddCollaborators…
…Modal (#8486)
- Loading branch information
Showing
18 changed files
with
1,102 additions
and
5 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
feat: | ||
- [Workspace]Add WorkspaceCollaboratorTypesService and AddCollaboratorsModal ([#8486](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/8486)) |
77 changes: 77 additions & 0 deletions
77
...gins/workspace/public/components/add_collaborators_modal/add_collaborators_modal.test.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,77 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React from 'react'; | ||
import { render, screen, fireEvent, waitFor } from '@testing-library/react'; | ||
import { AddCollaboratorsModal } from './add_collaborators_modal'; | ||
|
||
describe('AddCollaboratorsModal', () => { | ||
const defaultProps = { | ||
title: 'Add Collaborators', | ||
inputLabel: 'Collaborator ID', | ||
addAnotherButtonLabel: 'Add Another', | ||
permissionType: 'readOnly', | ||
onClose: jest.fn(), | ||
onAddCollaborators: jest.fn(), | ||
}; | ||
|
||
afterEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
it('renders the modal with the correct title', () => { | ||
render(<AddCollaboratorsModal {...defaultProps} />); | ||
expect(screen.getByText(defaultProps.title)).toBeInTheDocument(); | ||
}); | ||
|
||
it('renders the collaborator input field with the correct label', () => { | ||
render(<AddCollaboratorsModal {...defaultProps} />); | ||
expect(screen.getByLabelText(defaultProps.inputLabel)).toBeInTheDocument(); | ||
}); | ||
|
||
it('renders the "Add Another" button with the correct label', () => { | ||
render(<AddCollaboratorsModal {...defaultProps} />); | ||
expect( | ||
screen.getByRole('button', { name: defaultProps.addAnotherButtonLabel }) | ||
).toBeInTheDocument(); | ||
}); | ||
|
||
it('calls onAddCollaborators with valid collaborators when clicking the "Add collaborators" button', async () => { | ||
render(<AddCollaboratorsModal {...defaultProps} />); | ||
const collaboratorInput = screen.getByLabelText(defaultProps.inputLabel); | ||
fireEvent.change(collaboratorInput, { target: { value: 'user1' } }); | ||
const addCollaboratorsButton = screen.getByRole('button', { name: 'Add collaborators' }); | ||
fireEvent.click(addCollaboratorsButton); | ||
await waitFor(() => { | ||
expect(defaultProps.onAddCollaborators).toHaveBeenCalledWith([ | ||
{ collaboratorId: 'user1', accessLevel: 'readOnly', permissionType: 'readOnly' }, | ||
]); | ||
}); | ||
}); | ||
|
||
it('calls onClose when clicking the "Cancel" button', () => { | ||
render(<AddCollaboratorsModal {...defaultProps} />); | ||
const cancelButton = screen.getByRole('button', { name: 'Cancel' }); | ||
fireEvent.click(cancelButton); | ||
expect(defaultProps.onClose).toHaveBeenCalled(); | ||
}); | ||
|
||
it('renders the description if provided', () => { | ||
const props = { ...defaultProps, description: 'Add collaborators to your workspace' }; | ||
render(<AddCollaboratorsModal {...props} />); | ||
expect(screen.getByText(props.description)).toBeInTheDocument(); | ||
}); | ||
|
||
it('renders the instruction if provided', () => { | ||
const instruction = { | ||
title: 'Instructions', | ||
detail: 'Follow these instructions to add collaborators', | ||
}; | ||
const props = { ...defaultProps, instruction }; | ||
render(<AddCollaboratorsModal {...props} />); | ||
expect(screen.getByText(instruction.title)).toBeInTheDocument(); | ||
expect(screen.getByText(instruction.detail)).toBeInTheDocument(); | ||
}); | ||
}); |
128 changes: 128 additions & 0 deletions
128
src/plugins/workspace/public/components/add_collaborators_modal/add_collaborators_modal.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,128 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { | ||
EuiAccordion, | ||
EuiHorizontalRule, | ||
EuiModal, | ||
EuiModalBody, | ||
EuiModalFooter, | ||
EuiModalHeader, | ||
EuiModalHeaderTitle, | ||
EuiSmallButton, | ||
EuiSmallButtonEmpty, | ||
EuiSpacer, | ||
EuiText, | ||
} from '@elastic/eui'; | ||
import React, { useState } from 'react'; | ||
import { i18n } from '@osd/i18n'; | ||
|
||
import { WorkspaceCollaboratorPermissionType, WorkspaceCollaborator } from '../../types'; | ||
import { | ||
WorkspaceCollaboratorsPanel, | ||
WorkspaceCollaboratorInner, | ||
} from './workspace_collaborators_panel'; | ||
|
||
export interface AddCollaboratorsModalProps { | ||
title: string; | ||
description?: string; | ||
inputLabel: string; | ||
addAnotherButtonLabel: string; | ||
inputDescription?: string; | ||
inputPlaceholder?: string; | ||
instruction?: { | ||
title: string; | ||
detail: string; | ||
link?: string; | ||
}; | ||
permissionType: WorkspaceCollaboratorPermissionType; | ||
onClose: () => void; | ||
onAddCollaborators: (collaborators: WorkspaceCollaborator[]) => Promise<void>; | ||
} | ||
|
||
export const AddCollaboratorsModal = ({ | ||
title, | ||
inputLabel, | ||
instruction, | ||
description, | ||
permissionType, | ||
inputDescription, | ||
inputPlaceholder, | ||
addAnotherButtonLabel, | ||
onClose, | ||
onAddCollaborators, | ||
}: AddCollaboratorsModalProps) => { | ||
const [collaborators, setCollaborators] = useState<WorkspaceCollaboratorInner[]>([ | ||
{ id: 0, accessLevel: 'readOnly', collaboratorId: '' }, | ||
]); | ||
const validCollaborators = collaborators.flatMap(({ collaboratorId, accessLevel }) => { | ||
if (!collaboratorId) { | ||
return []; | ||
} | ||
return { collaboratorId, accessLevel, permissionType }; | ||
}); | ||
|
||
const handleAddCollaborators = () => { | ||
onAddCollaborators(validCollaborators); | ||
}; | ||
|
||
return ( | ||
<EuiModal style={{ minWidth: 748 }} onClose={onClose}> | ||
<EuiModalHeader> | ||
<EuiModalHeaderTitle> | ||
<h2>{title}</h2> | ||
</EuiModalHeaderTitle> | ||
</EuiModalHeader> | ||
<EuiModalBody> | ||
{description && ( | ||
<> | ||
<EuiText size="xs">{description}</EuiText> | ||
<EuiSpacer size="m" /> | ||
</> | ||
)} | ||
{instruction && ( | ||
<> | ||
<EuiAccordion | ||
id="workspace-details-add-collaborator-modal-instruction" | ||
buttonContent={<EuiText size="s">{instruction.title}</EuiText>} | ||
> | ||
<EuiSpacer size="xs" /> | ||
<EuiSpacer size="s" /> | ||
<EuiText size="xs">{instruction.detail}</EuiText> | ||
</EuiAccordion> | ||
<EuiHorizontalRule margin="xs" /> | ||
<EuiSpacer size="s" /> | ||
</> | ||
)} | ||
<WorkspaceCollaboratorsPanel | ||
collaborators={collaborators} | ||
onChange={setCollaborators} | ||
label={inputLabel} | ||
description={inputDescription} | ||
collaboratorIdInputPlaceholder={inputPlaceholder} | ||
addAnotherButtonLabel={addAnotherButtonLabel} | ||
/> | ||
</EuiModalBody> | ||
|
||
<EuiModalFooter> | ||
<EuiSmallButtonEmpty iconType="cross" onClick={onClose}> | ||
{i18n.translate('workspace.addCollaboratorsModal.cancelButton', { | ||
defaultMessage: 'Cancel', | ||
})} | ||
</EuiSmallButtonEmpty> | ||
<EuiSmallButton | ||
disabled={validCollaborators.length === 0} | ||
type="submit" | ||
onClick={handleAddCollaborators} | ||
fill | ||
> | ||
{i18n.translate('workspace.addCollaboratorsModal.addCollaboratorsButton', { | ||
defaultMessage: 'Add collaborators', | ||
})} | ||
</EuiSmallButton> | ||
</EuiModalFooter> | ||
</EuiModal> | ||
); | ||
}; |
6 changes: 6 additions & 0 deletions
6
src/plugins/workspace/public/components/add_collaborators_modal/index.ts
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,6 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export { AddCollaboratorsModal, AddCollaboratorsModalProps } from './add_collaborators_modal'; |
44 changes: 44 additions & 0 deletions
44
...workspace/public/components/add_collaborators_modal/workspace_collaborator_input.test.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,44 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React from 'react'; | ||
import { render, fireEvent, screen } from '@testing-library/react'; | ||
import { WorkspaceCollaboratorInput } from './workspace_collaborator_input'; | ||
|
||
describe('WorkspaceCollaboratorInput', () => { | ||
const defaultProps = { | ||
index: 0, | ||
collaboratorId: '', | ||
accessLevel: 'readOnly' as const, | ||
onCollaboratorIdChange: jest.fn(), | ||
onAccessLevelChange: jest.fn(), | ||
onDelete: jest.fn(), | ||
}; | ||
|
||
afterEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
it('calls onCollaboratorIdChange when input value changes', () => { | ||
render(<WorkspaceCollaboratorInput {...defaultProps} />); | ||
const input = screen.getByTestId('workspaceCollaboratorIdInput-0'); | ||
fireEvent.change(input, { target: { value: 'test' } }); | ||
expect(defaultProps.onCollaboratorIdChange).toHaveBeenCalledWith('test', 0); | ||
}); | ||
|
||
it('calls onAccessLevelChange when access level changes', () => { | ||
render(<WorkspaceCollaboratorInput {...defaultProps} />); | ||
const readButton = screen.getByText('Admin'); | ||
fireEvent.click(readButton); | ||
expect(defaultProps.onAccessLevelChange).toHaveBeenCalledWith('admin', 0); | ||
}); | ||
|
||
it('calls onDelete when delete button is clicked', () => { | ||
render(<WorkspaceCollaboratorInput {...defaultProps} />); | ||
const deleteButton = screen.getByRole('button', { name: 'Delete collaborator 0' }); | ||
fireEvent.click(deleteButton); | ||
expect(defaultProps.onDelete).toHaveBeenCalledWith(0); | ||
}); | ||
}); |
108 changes: 108 additions & 0 deletions
108
...gins/workspace/public/components/add_collaborators_modal/workspace_collaborator_input.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,108 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React, { useCallback } from 'react'; | ||
import { | ||
EuiFlexGroup, | ||
EuiFlexItem, | ||
EuiButtonIcon, | ||
EuiFieldText, | ||
EuiButtonGroup, | ||
EuiText, | ||
} from '@elastic/eui'; | ||
import { i18n } from '@osd/i18n'; | ||
import { WorkspaceCollaboratorAccessLevel } from '../../types'; | ||
import { WORKSPACE_ACCESS_LEVEL_NAMES } from '../../constants'; | ||
|
||
export const COLLABORATOR_ID_INPUT_LABEL_ID = 'collaborator_id_input_label'; | ||
|
||
export interface WorkspaceCollaboratorInputProps { | ||
index: number; | ||
collaboratorId?: string; | ||
accessLevel: WorkspaceCollaboratorAccessLevel; | ||
collaboratorIdInputPlaceholder?: string; | ||
onCollaboratorIdChange: (id: string, index: number) => void; | ||
onAccessLevelChange: (accessLevel: WorkspaceCollaboratorAccessLevel, index: number) => void; | ||
onDelete: (index: number) => void; | ||
} | ||
|
||
const accessLevelKeys = Object.keys( | ||
WORKSPACE_ACCESS_LEVEL_NAMES | ||
) as WorkspaceCollaboratorAccessLevel[]; | ||
|
||
const accessLevelButtonGroupOptions = accessLevelKeys.map((id) => ({ | ||
id, | ||
label: <EuiText size="xs">{WORKSPACE_ACCESS_LEVEL_NAMES[id]}</EuiText>, | ||
})); | ||
|
||
const isAccessLevelKey = (test: string): test is WorkspaceCollaboratorAccessLevel => | ||
(accessLevelKeys as string[]).includes(test); | ||
|
||
export const WorkspaceCollaboratorInput = ({ | ||
index, | ||
accessLevel, | ||
collaboratorId, | ||
onDelete, | ||
onAccessLevelChange, | ||
onCollaboratorIdChange, | ||
collaboratorIdInputPlaceholder, | ||
}: WorkspaceCollaboratorInputProps) => { | ||
const handleCollaboratorIdChange = useCallback( | ||
(e) => { | ||
onCollaboratorIdChange(e.target.value, index); | ||
}, | ||
[index, onCollaboratorIdChange] | ||
); | ||
|
||
const handlePermissionModeOptionChange = useCallback( | ||
(newAccessLevel: string) => { | ||
if (isAccessLevelKey(newAccessLevel)) { | ||
onAccessLevelChange(newAccessLevel, index); | ||
} | ||
}, | ||
[index, onAccessLevelChange] | ||
); | ||
|
||
const handleDelete = useCallback(() => { | ||
onDelete(index); | ||
}, [index, onDelete]); | ||
|
||
return ( | ||
<EuiFlexGroup alignItems="center" gutterSize="s"> | ||
<EuiFlexItem> | ||
<EuiFieldText | ||
compressed={true} | ||
onChange={handleCollaboratorIdChange} | ||
value={collaboratorId} | ||
data-test-subj={`workspaceCollaboratorIdInput-${index}`} | ||
placeholder={collaboratorIdInputPlaceholder} | ||
aria-labelledby={COLLABORATOR_ID_INPUT_LABEL_ID} | ||
/> | ||
</EuiFlexItem> | ||
<EuiFlexItem grow={false}> | ||
<EuiButtonGroup | ||
options={accessLevelButtonGroupOptions} | ||
legend={i18n.translate('workspace.form.permissionSettingInput.accessLevelLegend', { | ||
defaultMessage: 'This is a access level button group', | ||
})} | ||
buttonSize="compressed" | ||
type="single" | ||
idSelected={accessLevel} | ||
onChange={handlePermissionModeOptionChange} | ||
/> | ||
</EuiFlexItem> | ||
<EuiFlexItem grow={false}> | ||
<EuiButtonIcon | ||
color="danger" | ||
aria-label={`Delete collaborator ${index}`} | ||
iconType="trash" | ||
display="empty" | ||
size="xs" | ||
onClick={handleDelete} | ||
/> | ||
</EuiFlexItem> | ||
</EuiFlexGroup> | ||
); | ||
}; |
Oops, something went wrong.