015ccbf0a7
- Add folder icon editing support - And other navbar customization fixes/improvements. --------- Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> Co-authored-by: Devessier <baptiste@devessier.fr> Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
379 lines
14 KiB
TypeScript
379 lines
14 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import {
|
|
matchPath,
|
|
useLocation,
|
|
useNavigate,
|
|
useParams,
|
|
} from 'react-router-dom';
|
|
import { useRecoilCallback, useRecoilValue } from 'recoil';
|
|
|
|
import {
|
|
setSessionId,
|
|
useEventTracker,
|
|
} from '@/analytics/hooks/useEventTracker';
|
|
import { useExecuteTasksOnAnyLocationChange } from '@/app/hooks/useExecuteTasksOnAnyLocationChange';
|
|
import { isAppEffectRedirectEnabledState } from '@/app/states/isAppEffectRedirectEnabledState';
|
|
import { useRequestFreshCaptchaToken } from '@/captcha/hooks/useRequestFreshCaptchaToken';
|
|
import { isCaptchaScriptLoadedState } from '@/captcha/states/isCaptchaScriptLoadedState';
|
|
import { isCaptchaRequiredForPath } from '@/captcha/utils/isCaptchaRequiredForPath';
|
|
import { useCommandMenu } from '@/command-menu/hooks/useCommandMenu';
|
|
import { commandMenuPageState } from '@/command-menu/states/commandMenuPageState';
|
|
import { CommandMenuPages } from '@/command-menu/types/CommandMenuPages';
|
|
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
|
|
import { contextStoreCurrentViewIdComponentState } from '@/context-store/states/contextStoreCurrentViewIdComponentState';
|
|
import { contextStoreCurrentViewTypeComponentState } from '@/context-store/states/contextStoreCurrentViewTypeComponentState';
|
|
import { ContextStoreViewType } from '@/context-store/types/ContextStoreViewType';
|
|
import { CoreObjectNamePlural } from '@/object-metadata/types/CoreObjectNamePlural';
|
|
import { useActiveRecordBoardCard } from '@/object-record/record-board/hooks/useActiveRecordBoardCard';
|
|
import { useFocusedRecordBoardCard } from '@/object-record/record-board/hooks/useFocusedRecordBoardCard';
|
|
import { useResetRecordBoardSelection } from '@/object-record/record-board/hooks/useResetRecordBoardSelection';
|
|
import { useResetFocusStackToRecordIndex } from '@/object-record/record-index/hooks/useResetFocusStackToRecordIndex';
|
|
import { useResetTableRowSelection } from '@/object-record/record-table/hooks/internal/useResetTableRowSelection';
|
|
import { useActiveRecordTableRow } from '@/object-record/record-table/hooks/useActiveRecordTableRow';
|
|
import { useFocusedRecordTableRow } from '@/object-record/record-table/hooks/useFocusedRecordTableRow';
|
|
import { useOpenNewRecordTitleCell } from '@/object-record/record-title-cell/hooks/useOpenNewRecordTitleCell';
|
|
import { getRecordIndexIdFromObjectNamePluralAndViewId } from '@/object-record/utils/getRecordIndexIdFromObjectNamePluralAndViewId';
|
|
import { PageFocusId } from '@/types/PageFocusId';
|
|
import { useResetFocusStackToFocusItem } from '@/ui/utilities/focus/hooks/useResetFocusStackToFocusItem';
|
|
import { FocusComponentType } from '@/ui/utilities/focus/types/FocusComponentType';
|
|
import { useRecoilComponentValue } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValue';
|
|
import { AppBasePath, AppPath } from 'twenty-shared/types';
|
|
import { isDefined } from 'twenty-shared/utils';
|
|
import { AnalyticsType } from '~/generated-metadata/graphql';
|
|
import { usePageChangeEffectNavigateLocation } from '~/hooks/usePageChangeEffectNavigateLocation';
|
|
import { useInitializeQueryParamState } from '~/modules/app/hooks/useInitializeQueryParamState';
|
|
import { isMatchingLocation } from '~/utils/isMatchingLocation';
|
|
import { getPageTitleFromPath } from '~/utils/title-utils';
|
|
|
|
// TODO: break down into smaller functions and / or hooks
|
|
// - moved usePageChangeEffectNavigateLocation into dedicated hook
|
|
export const PageChangeEffect = () => {
|
|
const navigate = useNavigate();
|
|
|
|
const [previousLocation, setPreviousLocation] = useState('');
|
|
|
|
const location = useLocation();
|
|
|
|
const pageChangeEffectNavigateLocation =
|
|
usePageChangeEffectNavigateLocation();
|
|
|
|
const eventTracker = useEventTracker();
|
|
|
|
const { initializeQueryParamState } = useInitializeQueryParamState();
|
|
|
|
//TODO: refactor useResetTableRowSelection hook to not throw when the argument `recordTableId` is an empty string
|
|
// - replace CoreObjectNamePlural.Person
|
|
const objectNamePlural =
|
|
useParams().objectNamePlural ?? CoreObjectNamePlural.Person;
|
|
|
|
const contextStoreCurrentViewId = useRecoilComponentValue(
|
|
contextStoreCurrentViewIdComponentState,
|
|
MAIN_CONTEXT_STORE_INSTANCE_ID,
|
|
);
|
|
|
|
const contextStoreCurrentViewType = useRecoilComponentValue(
|
|
contextStoreCurrentViewTypeComponentState,
|
|
MAIN_CONTEXT_STORE_INSTANCE_ID,
|
|
);
|
|
|
|
const recordIndexId = getRecordIndexIdFromObjectNamePluralAndViewId(
|
|
objectNamePlural,
|
|
contextStoreCurrentViewId || '',
|
|
);
|
|
|
|
const { resetTableRowSelection } = useResetTableRowSelection(recordIndexId);
|
|
const { unfocusRecordTableRow } = useFocusedRecordTableRow(recordIndexId);
|
|
const { deactivateRecordTableRow } = useActiveRecordTableRow(recordIndexId);
|
|
|
|
const { resetRecordBoardSelection } =
|
|
useResetRecordBoardSelection(recordIndexId);
|
|
const { deactivateBoardCard } = useActiveRecordBoardCard(recordIndexId);
|
|
const { unfocusBoardCard } = useFocusedRecordBoardCard(recordIndexId);
|
|
|
|
const { executeTasksOnAnyLocationChange } =
|
|
useExecuteTasksOnAnyLocationChange();
|
|
|
|
const isAppEffectRedirectEnabled = useRecoilValue(
|
|
isAppEffectRedirectEnabledState,
|
|
);
|
|
|
|
const { closeCommandMenu } = useCommandMenu();
|
|
|
|
const closeCommandMenuUnlessOnEditPage = useRecoilCallback(
|
|
({ snapshot }) =>
|
|
() => {
|
|
const currentPage = snapshot
|
|
.getLoadable(commandMenuPageState)
|
|
.getValue();
|
|
if (currentPage === CommandMenuPages.NavigationMenuItemEdit) {
|
|
return;
|
|
}
|
|
closeCommandMenu();
|
|
},
|
|
[closeCommandMenu],
|
|
);
|
|
|
|
const { resetFocusStackToFocusItem } = useResetFocusStackToFocusItem();
|
|
|
|
const { resetFocusStackToRecordIndex } = useResetFocusStackToRecordIndex();
|
|
|
|
const { openNewRecordTitleCell } = useOpenNewRecordTitleCell();
|
|
|
|
useEffect(() => {
|
|
closeCommandMenuUnlessOnEditPage();
|
|
}, [location.pathname, closeCommandMenuUnlessOnEditPage]);
|
|
|
|
useEffect(() => {
|
|
if (!previousLocation || previousLocation !== location.pathname) {
|
|
setPreviousLocation(location.pathname);
|
|
executeTasksOnAnyLocationChange();
|
|
} else {
|
|
return;
|
|
}
|
|
}, [location, previousLocation, executeTasksOnAnyLocationChange]);
|
|
|
|
useEffect(() => {
|
|
initializeQueryParamState();
|
|
|
|
if (
|
|
isDefined(pageChangeEffectNavigateLocation) &&
|
|
isAppEffectRedirectEnabled
|
|
) {
|
|
navigate(pageChangeEffectNavigateLocation);
|
|
}
|
|
}, [
|
|
navigate,
|
|
pageChangeEffectNavigateLocation,
|
|
initializeQueryParamState,
|
|
isAppEffectRedirectEnabled,
|
|
]);
|
|
|
|
useEffect(() => {
|
|
const isLeavingRecordIndexPage = !!matchPath(
|
|
AppPath.RecordIndexPage,
|
|
previousLocation,
|
|
);
|
|
|
|
if (isLeavingRecordIndexPage) {
|
|
if (contextStoreCurrentViewType === ContextStoreViewType.Table) {
|
|
resetTableRowSelection();
|
|
unfocusRecordTableRow();
|
|
deactivateRecordTableRow();
|
|
}
|
|
if (contextStoreCurrentViewType === ContextStoreViewType.Kanban) {
|
|
resetRecordBoardSelection();
|
|
deactivateBoardCard();
|
|
unfocusBoardCard();
|
|
}
|
|
}
|
|
|
|
if (location.pathname === previousLocation) {
|
|
return;
|
|
}
|
|
|
|
switch (true) {
|
|
case isMatchingLocation(location, AppPath.RecordIndexPage): {
|
|
resetFocusStackToRecordIndex();
|
|
break;
|
|
}
|
|
case isMatchingLocation(location, AppPath.RecordShowPage): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.RecordShowPage,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.RecordShowPage,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: true,
|
|
enableGlobalHotkeysConflictingWithKeyboard: true,
|
|
},
|
|
},
|
|
});
|
|
|
|
const isNewRecord = location.state?.isNewRecord === true;
|
|
|
|
if (
|
|
isNewRecord &&
|
|
isDefined(location.state?.labelIdentifierFieldName)
|
|
) {
|
|
openNewRecordTitleCell({
|
|
recordId: location.state.objectRecordId,
|
|
fieldName: location.state.labelIdentifierFieldName,
|
|
});
|
|
}
|
|
break;
|
|
}
|
|
case isMatchingLocation(location, AppPath.SignInUp): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.SignInUp,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.SignInUp,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: false,
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
},
|
|
});
|
|
break;
|
|
}
|
|
case isMatchingLocation(location, AppPath.Invite): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.InviteTeam,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.InviteTeam,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: false,
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
},
|
|
});
|
|
break;
|
|
}
|
|
case isMatchingLocation(location, AppPath.CreateProfile): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.CreateProfile,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.CreateProfile,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: false,
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
},
|
|
});
|
|
break;
|
|
}
|
|
case isMatchingLocation(location, AppPath.CreateWorkspace): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.CreateWorkspace,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.CreateWorkspace,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: false,
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
},
|
|
});
|
|
break;
|
|
}
|
|
case isMatchingLocation(location, AppPath.SyncEmails): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.SyncEmail,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.SyncEmail,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: false,
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
},
|
|
});
|
|
break;
|
|
}
|
|
case isMatchingLocation(location, AppPath.InviteTeam): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.InviteTeam,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.InviteTeam,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: false,
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
},
|
|
});
|
|
break;
|
|
}
|
|
case isMatchingLocation(location, AppPath.PlanRequired): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.PlanRequired,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.PlanRequired,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: false,
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
},
|
|
});
|
|
break;
|
|
}
|
|
case location.pathname.startsWith(AppBasePath.Settings): {
|
|
resetFocusStackToFocusItem({
|
|
focusStackItem: {
|
|
focusId: PageFocusId.Settings,
|
|
componentInstance: {
|
|
componentType: FocusComponentType.PAGE,
|
|
componentInstanceId: PageFocusId.Settings,
|
|
},
|
|
globalHotkeysConfig: {
|
|
enableGlobalHotkeysWithModifiers: false,
|
|
enableGlobalHotkeysConflictingWithKeyboard: false,
|
|
},
|
|
},
|
|
});
|
|
break;
|
|
}
|
|
}
|
|
}, [
|
|
location,
|
|
previousLocation,
|
|
contextStoreCurrentViewType,
|
|
resetTableRowSelection,
|
|
unfocusRecordTableRow,
|
|
deactivateRecordTableRow,
|
|
resetRecordBoardSelection,
|
|
deactivateBoardCard,
|
|
unfocusBoardCard,
|
|
resetFocusStackToRecordIndex,
|
|
resetFocusStackToFocusItem,
|
|
openNewRecordTitleCell,
|
|
]);
|
|
|
|
useEffect(() => {
|
|
setTimeout(() => {
|
|
setSessionId();
|
|
eventTracker(AnalyticsType['PAGEVIEW'], {
|
|
name: getPageTitleFromPath(location.pathname),
|
|
properties: {
|
|
pathname: location.pathname,
|
|
locale: navigator.language,
|
|
userAgent: window.navigator.userAgent,
|
|
href: window.location.href,
|
|
referrer: document.referrer,
|
|
timeZone: Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
},
|
|
});
|
|
}, 500);
|
|
}, [eventTracker, location.pathname]);
|
|
|
|
const { requestFreshCaptchaToken } = useRequestFreshCaptchaToken();
|
|
const isCaptchaScriptLoaded = useRecoilValue(isCaptchaScriptLoadedState);
|
|
|
|
useEffect(() => {
|
|
if (isCaptchaScriptLoaded && isCaptchaRequiredForPath(location.pathname)) {
|
|
requestFreshCaptchaToken();
|
|
}
|
|
}, [isCaptchaScriptLoaded, location.pathname, requestFreshCaptchaToken]);
|
|
|
|
return <></>;
|
|
};
|