Skip to content

Commit

Permalink
feat(ui): removed workspace context redirect and added redirect when …
Browse files Browse the repository at this point in the history
…project is deleted
  • Loading branch information
akhilmhdh committed Feb 4, 2023
1 parent 0ac40ac commit e72e6cf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
11 changes: 1 addition & 10 deletions frontend/src/context/WorkspaceContext/WorkspaceContext.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createContext, ReactNode, useContext, useEffect, useMemo } from 'react';
import { createContext, ReactNode, useContext, useMemo } from 'react';
import { useRouter } from 'next/router';

import { useGetUserWorkspaces } from '@app/hooks/api';
Expand Down Expand Up @@ -30,15 +30,6 @@ export const WorkspaceProvider = ({ children }: Props): JSX.Element => {
};
}, [ws, workspaceId, isLoading]);

useEffect(() => {
// not loading and current workspace is empty
// ws empty means user has no access to the ws
// push to the first workspace
if (!isLoading && !value?.currentWorkspace?._id) {
router.push(`/dashboard/${value.workspaces?.[0]?._id}`);
}
}, [value?.currentWorkspace?._id, isLoading, value.workspaces?.[0]?._id, router.pathname]);

return <WorkspaceContext.Provider value={value}>{children}</WorkspaceContext.Provider>;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import crypto from 'crypto';

import { useState } from 'react';
import { useTranslation } from 'react-i18next';
import { useRouter } from 'next/router';

import { useNotificationContext } from '@app/components/context/Notifications/NotificationProvider';
import NavHeader from '@app/components/navigation/NavHeader';
Expand Down Expand Up @@ -37,7 +38,8 @@ import {

export const ProjectSettingsPage = () => {
const { t } = useTranslation();
const { currentWorkspace } = useWorkspace();
const { currentWorkspace, workspaces } = useWorkspace();
const router = useRouter();
const { data: serviceTokens } = useGetUserWsServiceTokens({
workspaceID: currentWorkspace?._id || ''
});
Expand All @@ -64,7 +66,6 @@ export const ProjectSettingsPage = () => {
const host = window.location.origin;
const isEnvServiceAllowed =
subscriptionPlan !== plans.starter || host !== 'https://app.infisical.com';


const onRenameWorkspace = async (name: string) => {
try {
Expand All @@ -86,6 +87,9 @@ export const ProjectSettingsPage = () => {
setIsDeleting.on();
try {
await deleteWorkspace.mutateAsync({ workspaceID });
// redirect user to first workspace user is part of
const ws = workspaces.find(({ _id }) => _id !== workspaceID);
router.push(`/dashboard/${ws?._id}`);
createNotification({
text: 'Successfully deleted workspace',
type: 'success'
Expand Down

0 comments on commit e72e6cf

Please sign in to comment.