Skip to content
Snippets Groups Projects
Unverified Commit bfa92f4d authored by Gustavo Reis Bauer's avatar Gustavo Reis Bauer Committed by GitHub
Browse files

fix: system throws GUI Application error while enabling, disabling and...

fix: system throws GUI Application error while enabling, disabling and uninstalling an app. (#34887)
parent 86567ca0
No related branches found
No related tags found
No related merge requests found
---
"@rocket.chat/meteor": patch
"@rocket.chat/core-typings": patch
---
Fixes an issue where the system would throw the error: 'GUI Application error' while uninstalling an app(when on the requests tab).
...@@ -17,7 +17,7 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean ...@@ -17,7 +17,7 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean
const [limit, setLimit] = useState<itemsPerPage>(25); const [limit, setLimit] = useState<itemsPerPage>(25);
const [offset, setOffset] = useState<number>(0); const [offset, setOffset] = useState<number>(0);
const paginatedAppRequests = useAppRequests(id, limit, offset); const { isSuccess, data: paginatedAppRequests, isLoading } = useAppRequests(id, limit, offset);
const { t } = useTranslation(); const { t } = useTranslation();
const onSetItemsPerPage = (itemsPerPageOption: SetStateAction<itemsPerPage>) => setLimit(itemsPerPageOption); const onSetItemsPerPage = (itemsPerPageOption: SetStateAction<itemsPerPage>) => setLimit(itemsPerPageOption);
...@@ -35,8 +35,10 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean ...@@ -35,8 +35,10 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean
useEffect(() => { useEffect(() => {
return () => { return () => {
if (isAdminUser && paginatedAppRequests.isSuccess) { if (isAdminUser && isSuccess) {
const unseenRequests = paginatedAppRequests.data.data.filter(({ seen }) => !seen).map(({ id }) => id); // Marketplace returns data = null if the app was removed, so we need to be sure that the thing
// we are filtering & mapping is an array
const unseenRequests = (paginatedAppRequests.data || []).filter(({ seen }) => !seen).map(({ id }) => id);
if (unseenRequests.length) { if (unseenRequests.length) {
markAppRequestsAsSeen.mutate(unseenRequests, { markAppRequestsAsSeen.mutate(unseenRequests, {
...@@ -49,9 +51,9 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean ...@@ -49,9 +51,9 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean
} }
}; };
// eslint-disable-next-line react-hooks/exhaustive-deps // eslint-disable-next-line react-hooks/exhaustive-deps
}, [isAdminUser, paginatedAppRequests.isSuccess, paginatedAppRequests?.data, reloadApps]); }, [isAdminUser, isSuccess, paginatedAppRequests?.data, reloadApps]);
if (paginatedAppRequests.isLoading) { if (isLoading) {
return ( return (
<Box w='full' maxWidth='x608' marginInline='auto' pbs={36}> <Box w='full' maxWidth='x608' marginInline='auto' pbs={36}>
<AppRequestsLoading /> <AppRequestsLoading />
...@@ -62,8 +64,8 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean ...@@ -62,8 +64,8 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean
return ( return (
<Box h='full' display='flex' flexDirection='column'> <Box h='full' display='flex' flexDirection='column'>
<Box w='full' maxWidth='x608' marginInline='auto' pbs={36} flexGrow='1'> <Box w='full' maxWidth='x608' marginInline='auto' pbs={36} flexGrow='1'>
{paginatedAppRequests.isSuccess && paginatedAppRequests.data.data?.length ? ( {isSuccess && paginatedAppRequests.data?.length ? (
paginatedAppRequests.data.data.map((request) => ( paginatedAppRequests.data.map((request) => (
<AppRequestItem <AppRequestItem
key={request.id} key={request.id}
seen={request.seen} seen={request.seen}
...@@ -80,12 +82,12 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean ...@@ -80,12 +82,12 @@ const AppRequests = ({ id, isAdminUser }: { id: App['id']; isAdminUser: boolean
</States> </States>
)} )}
</Box> </Box>
{paginatedAppRequests.isSuccess && paginatedAppRequests.data.data?.length && ( {isSuccess && paginatedAppRequests.data?.length && (
<Pagination <Pagination
divider divider
count={paginatedAppRequests.data.meta.total} count={paginatedAppRequests.meta.total}
itemsPerPage={paginatedAppRequests.data.meta.limit} itemsPerPage={paginatedAppRequests.meta.limit}
current={paginatedAppRequests.data.meta.offset} current={paginatedAppRequests.meta.offset}
onSetItemsPerPage={onSetItemsPerPage} onSetItemsPerPage={onSetItemsPerPage}
onSetCurrent={onSetCurrent} onSetCurrent={onSetCurrent}
/> />
......
...@@ -35,7 +35,7 @@ export type Meta = { ...@@ -35,7 +35,7 @@ export type Meta = {
}; };
export type PaginatedAppRequests = { export type PaginatedAppRequests = {
data: AppRequest[]; data: AppRequest[] | null;
meta: Meta; meta: Meta;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment