| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673 |
- import React, { type JSX, useCallback, useEffect, useState } from 'react';
- import dynamic from 'next/dynamic';
- import Link from 'next/link';
- import { useRouter } from 'next/router';
- import {
- GroupType,
- getIdStringForRef,
- type IGrantedGroup,
- type IUserGroup,
- type IUserGroupHasId,
- } from '@growi/core';
- import { objectIdUtils } from '@growi/core/dist/utils';
- import { useAtomValue } from 'jotai';
- import { useTranslation } from 'next-i18next';
- import {
- apiv3Delete,
- apiv3Get,
- apiv3Post,
- apiv3Put,
- } from '~/client/util/apiv3-client';
- import { toastError, toastSuccess } from '~/client/util/toastr';
- import type { IExternalUserGroupHasId } from '~/features/external-user-group/interfaces/external-user-group';
- import type {
- PageActionOnGroupDelete,
- SearchType,
- } from '~/interfaces/user-group';
- import { SearchTypes } from '~/interfaces/user-group';
- import { isAclEnabledAtom } from '~/states/server-configurations';
- import { useUpdateUserGroupConfirmModalActions } from '~/states/ui/modal/update-user-group-confirm';
- import {
- useSWRxSelectableChildUserGroups,
- useSWRxSelectableParentUserGroups,
- useSWRxUserGroupPages,
- } from '~/stores/user-group';
- import loggerFactory from '~/utils/logger';
- import {
- useAncestorUserGroups,
- useChildUserGroupList,
- useUserGroup,
- useUserGroupRelationList,
- useUserGroupRelations,
- } from './use-user-group-resource';
- import styles from './UserGroupDetailPage.module.scss';
- const logger = loggerFactory('growi:services:AdminCustomizeContainer');
- const UserGroupPageList = dynamic(() => import('./UserGroupPageList'), {
- ssr: false,
- });
- const UserGroupUserTable = dynamic(
- () => import('./UserGroupUserTable').then((mod) => mod.UserGroupUserTable),
- { ssr: false },
- );
- const UserGroupUserModal = dynamic(() => import('./UserGroupUserModal'), {
- ssr: false,
- });
- const UserGroupDeleteModal = dynamic(
- () =>
- import('../UserGroup/UserGroupDeleteModal').then(
- (mod) => mod.UserGroupDeleteModal,
- ),
- { ssr: false },
- );
- const UserGroupDropdown = dynamic(
- () =>
- import('../UserGroup/UserGroupDropdown').then(
- (mod) => mod.UserGroupDropdown,
- ),
- { ssr: false },
- );
- const UserGroupForm = dynamic(
- () => import('../UserGroup/UserGroupForm').then((mod) => mod.UserGroupForm),
- { ssr: false },
- );
- const UserGroupModal = dynamic(
- () => import('../UserGroup/UserGroupModal').then((mod) => mod.UserGroupModal),
- { ssr: false },
- );
- const UserGroupTable = dynamic(
- () => import('../UserGroup/UserGroupTable').then((mod) => mod.UserGroupTable),
- { ssr: false },
- );
- const UpdateParentConfirmModal = dynamic(
- () =>
- import('./UpdateParentConfirmModal').then(
- (mod) => mod.UpdateParentConfirmModal,
- ),
- { ssr: false },
- );
- type Props = {
- userGroupId: string;
- isExternalGroup: boolean;
- };
- const UserGroupDetailPage = (props: Props): JSX.Element => {
- const { t } = useTranslation('admin');
- const router = useRouter();
- const { userGroupId: currentUserGroupId, isExternalGroup } = props;
- const { data: currentUserGroup } = useUserGroup(
- currentUserGroupId,
- isExternalGroup,
- );
- const [searchType, setSearchType] = useState<SearchType>(SearchTypes.PARTIAL);
- const [isAlsoMailSearched, setAlsoMailSearched] = useState<boolean>(false);
- const [isAlsoNameSearched, setAlsoNameSearched] = useState<boolean>(false);
- const [selectedUserGroup, setSelectedUserGroup] = useState<
- IUserGroupHasId | undefined
- >(undefined); // not null but undefined (to use defaultProps in UserGroupDeleteModal)
- const [isCreateModalShown, setCreateModalShown] = useState<boolean>(false);
- const [isUpdateModalShown, setUpdateModalShown] = useState<boolean>(false);
- const [isDeleteModalShown, setDeleteModalShown] = useState<boolean>(false);
- const [isUserGroupUserModalShown, setIsUserGroupUserModalShown] =
- useState<boolean>(false);
- const isLoading = currentUserGroup === undefined;
- const notExistsUerGroup = !isLoading && currentUserGroup == null;
- useEffect(() => {
- if (
- !objectIdUtils.isValidObjectId(currentUserGroupId) ||
- notExistsUerGroup
- ) {
- router.push('/admin/user-groups');
- }
- }, [currentUserGroupId, notExistsUerGroup, router]);
- /*
- * Fetch
- */
- const { data: userGroupPages } = useSWRxUserGroupPages(
- currentUserGroupId,
- 10,
- 0,
- );
- const { data: userGroupRelations, mutate: mutateUserGroupRelations } =
- useUserGroupRelations(currentUserGroupId, isExternalGroup);
- const {
- data: childUserGroupsList,
- mutate: mutateChildUserGroups,
- updateChild,
- } = useChildUserGroupList(currentUserGroupId, isExternalGroup);
- const childUserGroups =
- childUserGroupsList != null ? childUserGroupsList.childUserGroups : [];
- const childUserGroupsForDeleteModal: IGrantedGroup[] = childUserGroups.map(
- (group) => {
- const groupType = isExternalGroup
- ? GroupType.externalUserGroup
- : GroupType.userGroup;
- return { item: group, type: groupType };
- },
- );
- const grandChildUserGroups =
- childUserGroupsList != null ? childUserGroupsList.grandChildUserGroups : [];
- const childUserGroupIds = childUserGroups.map((group) => group._id);
- const { data: userGroupRelationList, mutate: mutateUserGroupRelationList } =
- useUserGroupRelationList(childUserGroupIds, isExternalGroup);
- const childUserGroupRelations =
- userGroupRelationList != null ? userGroupRelationList : [];
- const {
- data: selectableParentUserGroups,
- mutate: mutateSelectableParentUserGroups,
- } = useSWRxSelectableParentUserGroups(
- isExternalGroup ? null : currentUserGroupId,
- );
- const {
- data: selectableChildUserGroups,
- mutate: mutateSelectableChildUserGroups,
- } = useSWRxSelectableChildUserGroups(
- isExternalGroup ? null : currentUserGroupId,
- );
- const { data: ancestorUserGroups, mutate: mutateAncestorUserGroups } =
- useAncestorUserGroups(currentUserGroupId, isExternalGroup);
- const isAclEnabled = useAtomValue(isAclEnabledAtom);
- const { open: openUpdateParentConfirmModal } =
- useUpdateUserGroupConfirmModalActions();
- const parentUserGroup = (() => {
- if (isExternalGroup) {
- return ancestorUserGroups != null && ancestorUserGroups.length > 1
- ? ancestorUserGroups[ancestorUserGroups.length - 2]
- : undefined;
- }
- return selectableParentUserGroups?.find(
- (selectableParentUserGroup) =>
- selectableParentUserGroup._id === currentUserGroup?.parent,
- );
- })();
- /*
- * Function
- */
- const toggleIsAlsoMailSearched = useCallback(() => {
- setAlsoMailSearched((prev) => !prev);
- }, []);
- const toggleAlsoNameSearched = useCallback(() => {
- setAlsoNameSearched((prev) => !prev);
- }, []);
- const switchSearchType = useCallback((searchType: SearchType) => {
- setSearchType(searchType);
- }, []);
- const updateUserGroup = useCallback(
- async (
- userGroup: IUserGroupHasId,
- update: IUserGroupHasId,
- forceUpdateParents: boolean,
- ) => {
- if (isExternalGroup) {
- await apiv3Put<{ userGroup: IExternalUserGroupHasId }>(
- `/external-user-groups/${userGroup._id}`,
- {
- description: update.description,
- },
- );
- } else {
- await apiv3Put<{ userGroup: IUserGroupHasId }>(
- `/user-groups/${userGroup._id}`,
- {
- name: update.name,
- description: update.description,
- parentId:
- update.parent != null ? getIdStringForRef(update.parent) : null,
- forceUpdateParents,
- },
- );
- }
- // mutate
- mutateChildUserGroups();
- mutateAncestorUserGroups();
- mutateSelectableChildUserGroups();
- mutateSelectableParentUserGroups();
- },
- [
- mutateAncestorUserGroups,
- mutateChildUserGroups,
- mutateSelectableChildUserGroups,
- mutateSelectableParentUserGroups,
- isExternalGroup,
- ],
- );
- const onSubmitUpdateGroup = useCallback(
- async (
- targetGroup: IUserGroupHasId,
- userGroupData: IUserGroupHasId,
- forceUpdateParents: boolean,
- ): Promise<void> => {
- try {
- await updateUserGroup(targetGroup, userGroupData, forceUpdateParents);
- toastSuccess(
- t('toaster.update_successed', {
- target: t('UserGroup'),
- ns: 'commons',
- }),
- );
- } catch {
- toastError(
- t('toaster.update_failed', { target: t('UserGroup'), ns: 'commons' }),
- );
- }
- },
- [t, updateUserGroup],
- );
- const onClickSubmitForm = useCallback(
- async (targetGroup: IUserGroupHasId, userGroupData: IUserGroupHasId) => {
- if (typeof userGroupData.parent === 'string') {
- toastError(t('Something went wrong. Please try again.'));
- logger.error('Something went wrong.');
- return;
- }
- const prevParentId =
- typeof targetGroup.parent === 'string'
- ? targetGroup.parent
- : targetGroup.parent?._id || null;
- const newParentId =
- typeof userGroupData.parent?._id === 'string'
- ? userGroupData.parent?._id
- : null;
- const shouldShowConfirmModal = prevParentId !== newParentId;
- if (shouldShowConfirmModal) {
- // show confirm modal before submiting
- await openUpdateParentConfirmModal(
- targetGroup,
- userGroupData,
- onSubmitUpdateGroup,
- );
- } else {
- // directly submit
- await onSubmitUpdateGroup(targetGroup, userGroupData, false);
- }
- },
- [t, openUpdateParentConfirmModal, onSubmitUpdateGroup],
- );
- const fetchApplicableUsers = useCallback(
- async (searchWord: string) => {
- const res = await apiv3Get(
- `/user-groups/${currentUserGroupId}/unrelated-users`,
- {
- searchWord,
- searchType,
- isAlsoMailSearched,
- isAlsoNameSearched,
- },
- );
- const { users } = res.data;
- return users;
- },
- [currentUserGroupId, searchType, isAlsoMailSearched, isAlsoNameSearched],
- );
- const addUserByUsername = useCallback(
- async (username: string) => {
- try {
- await apiv3Post(`/user-groups/${currentUserGroupId}/users/${username}`);
- setIsUserGroupUserModalShown(false);
- mutateUserGroupRelations();
- mutateUserGroupRelationList();
- } catch (err) {
- toastError(
- new Error(
- `Unable to add "${username}" from "${currentUserGroup?.name}"`,
- ),
- );
- }
- },
- [
- currentUserGroupId,
- mutateUserGroupRelationList,
- mutateUserGroupRelations,
- currentUserGroup?.name,
- ],
- );
- // Fix: invalid csrf token => https://redmine.weseek.co.jp/issues/102704
- const removeUserByUsername = useCallback(
- async (username: string) => {
- try {
- await apiv3Delete(
- `/user-groups/${currentUserGroupId}/users/${username}`,
- );
- toastSuccess(`Removed "${username}" from "${currentUserGroup?.name}"`);
- mutateUserGroupRelationList();
- } catch (err) {
- toastError(
- new Error(
- `Unable to remove "${username}" from "${currentUserGroup?.name}"`,
- ),
- );
- }
- },
- [currentUserGroupId, mutateUserGroupRelationList, currentUserGroup?.name],
- );
- const showUpdateModal = useCallback((group: IUserGroupHasId) => {
- setUpdateModalShown(true);
- setSelectedUserGroup(group);
- }, []);
- const hideUpdateModal = useCallback(() => {
- setUpdateModalShown(false);
- setSelectedUserGroup(undefined);
- }, []);
- const updateChildUserGroup = useCallback(
- async (userGroupData: IUserGroupHasId) => {
- try {
- updateChild(userGroupData);
- toastSuccess(
- t('toaster.update_successed', {
- target: t('UserGroup'),
- ns: 'commons',
- }),
- );
- hideUpdateModal();
- } catch (err) {
- toastError(err);
- }
- },
- [t, updateChild, hideUpdateModal],
- );
- const onClickAddExistingUserGroupButtonHandler = useCallback(
- async (selectedChild: IUserGroupHasId): Promise<void> => {
- // show confirm modal before submiting
- await openUpdateParentConfirmModal(
- selectedChild,
- {
- parent: currentUserGroupId,
- },
- onSubmitUpdateGroup,
- );
- },
- [openUpdateParentConfirmModal, currentUserGroupId, onSubmitUpdateGroup],
- );
- const showCreateModal = useCallback(() => {
- setCreateModalShown(true);
- }, []);
- const hideCreateModal = useCallback(() => {
- setCreateModalShown(false);
- }, []);
- const createChildUserGroup = useCallback(
- async (userGroupData: IUserGroup) => {
- try {
- await apiv3Post('/user-groups', {
- name: userGroupData.name,
- description: userGroupData.description,
- parentId: currentUserGroupId,
- });
- toastSuccess(
- t('toaster.update_successed', {
- target: t('UserGroup'),
- ns: 'commons',
- }),
- );
- // mutate
- mutateChildUserGroups();
- mutateSelectableChildUserGroups();
- mutateSelectableParentUserGroups();
- hideCreateModal();
- } catch (err) {
- toastError(err);
- }
- },
- [
- currentUserGroupId,
- t,
- mutateChildUserGroups,
- mutateSelectableChildUserGroups,
- mutateSelectableParentUserGroups,
- hideCreateModal,
- ],
- );
- const showDeleteModal = useCallback(async (group: IUserGroupHasId) => {
- setSelectedUserGroup(group);
- setDeleteModalShown(true);
- }, []);
- const hideDeleteModal = useCallback(() => {
- setSelectedUserGroup(undefined);
- setDeleteModalShown(false);
- }, []);
- const deleteChildUserGroupById = useCallback(
- async (
- deleteGroupId: string,
- actionName: PageActionOnGroupDelete,
- transferToUserGroup: IGrantedGroup | null,
- ) => {
- const url = isExternalGroup
- ? `/external-user-groups/${deleteGroupId}`
- : `/user-groups/${deleteGroupId}`;
- const transferToUserGroupId =
- transferToUserGroup != null
- ? getIdStringForRef(transferToUserGroup.item)
- : null;
- const transferToUserGroupType =
- transferToUserGroup != null ? transferToUserGroup.type : null;
- try {
- const res = await apiv3Delete(url, {
- actionName,
- transferToUserGroupId,
- transferToUserGroupType,
- });
- // sync
- await mutateChildUserGroups();
- setSelectedUserGroup(undefined);
- setDeleteModalShown(false);
- toastSuccess(`Deleted ${res.data.userGroups.length} groups.`);
- } catch (err) {
- toastError(new Error('Unable to delete the groups'));
- }
- },
- [mutateChildUserGroups, isExternalGroup],
- );
- const removeChildUserGroup = useCallback(
- async (userGroupData: IUserGroupHasId) => {
- try {
- await apiv3Put(`/user-groups/${userGroupData._id}`, {
- name: userGroupData.name,
- description: userGroupData.description,
- parentId: null,
- });
- toastSuccess(
- t('toaster.update_successed', {
- target: t('UserGroup'),
- ns: 'commons',
- }),
- );
- // mutate
- mutateChildUserGroups();
- mutateSelectableChildUserGroups();
- } catch (err) {
- toastError(err);
- throw err;
- }
- },
- [t, mutateChildUserGroups, mutateSelectableChildUserGroups],
- );
- /*
- * Dependencies
- */
- if (currentUserGroup == null || currentUserGroupId == null) {
- return <></>;
- }
- return (
- <div>
- <nav aria-label="breadcrumb">
- <ol className="breadcrumb">
- <li className="breadcrumb-item">
- <Link href="/admin/user-groups">
- {t('user_group_management.group_list')}
- </Link>
- </li>
- {ancestorUserGroups != null &&
- ancestorUserGroups.length > 0 &&
- ancestorUserGroups.map((ancestorUserGroup: IUserGroupHasId) => (
- <li
- key={ancestorUserGroup._id}
- className={`breadcrumb-item ${ancestorUserGroup._id === currentUserGroupId ? 'active' : ''}`}
- >
- {ancestorUserGroup._id === currentUserGroupId ? (
- <span>{ancestorUserGroup.name}</span>
- ) : (
- <Link
- href={{
- pathname: `/admin/user-group-detail/${ancestorUserGroup._id}`,
- query: { isExternalGroup: 'true' },
- }}
- >
- {ancestorUserGroup.name}
- </Link>
- )}
- </li>
- ))}
- </ol>
- </nav>
- <div className="mt-4 form-box">
- <UserGroupForm
- userGroup={currentUserGroup}
- parentUserGroup={parentUserGroup}
- selectableParentUserGroups={selectableParentUserGroups}
- submitButtonLabel={t('Update')}
- onSubmit={onClickSubmitForm}
- isExternalGroup={isExternalGroup}
- />
- </div>
- <h2 className="admin-setting-header mt-4">
- {t('user_group_management.user_list')}
- </h2>
- <UserGroupUserTable
- userGroupRelations={userGroupRelations}
- onClickPlusBtn={() => setIsUserGroupUserModalShown(true)}
- onClickRemoveUserBtn={removeUserByUsername}
- isExternalGroup={isExternalGroup}
- />
- <UserGroupUserModal
- isOpen={isUserGroupUserModalShown}
- userGroup={currentUserGroup}
- searchType={searchType}
- isAlsoMailSearched={isAlsoMailSearched}
- isAlsoNameSearched={isAlsoNameSearched}
- onClickAddUserBtn={addUserByUsername}
- onSearchApplicableUsers={fetchApplicableUsers}
- onSwitchSearchType={switchSearchType}
- onClose={() => setIsUserGroupUserModalShown(false)}
- onToggleIsAlsoMailSearched={toggleIsAlsoMailSearched}
- onToggleIsAlsoNameSearched={toggleAlsoNameSearched}
- />
- <h2 className="admin-setting-header mt-4">
- {t('user_group_management.child_group_list')}
- </h2>
- {!isExternalGroup && (
- <UserGroupDropdown
- selectableUserGroups={selectableChildUserGroups}
- onClickAddExistingUserGroupButton={
- onClickAddExistingUserGroupButtonHandler
- }
- onClickCreateUserGroupButton={showCreateModal}
- />
- )}
- <UserGroupModal
- userGroup={selectedUserGroup}
- buttonLabel={t('Update')}
- onClickSubmit={updateChildUserGroup}
- isShow={isUpdateModalShown}
- onHide={hideUpdateModal}
- isExternalGroup={isExternalGroup}
- />
- <UserGroupModal
- buttonLabel={t('Create')}
- onClickSubmit={createChildUserGroup}
- isShow={isCreateModalShown}
- onHide={hideCreateModal}
- />
- <UpdateParentConfirmModal />
- <UserGroupTable
- userGroups={childUserGroups}
- childUserGroups={grandChildUserGroups}
- isAclEnabled={isAclEnabled ?? false}
- onEdit={showUpdateModal}
- onRemove={removeChildUserGroup}
- onDelete={showDeleteModal}
- userGroupRelations={childUserGroupRelations}
- isExternalGroup={isExternalGroup}
- />
- <UserGroupDeleteModal
- userGroups={childUserGroupsForDeleteModal}
- deleteUserGroup={selectedUserGroup}
- onDelete={deleteChildUserGroupById}
- isShow={isDeleteModalShown}
- onHide={hideDeleteModal}
- />
- <h2 className="admin-setting-header mt-4">{t('Page')}</h2>
- <div className={`page-list ${styles['page-list']}`}>
- <UserGroupPageList
- userGroupId={currentUserGroupId}
- relatedPages={userGroupPages}
- />
- </div>
- </div>
- );
- };
- export default UserGroupDetailPage;
|