163 lines
6.2 KiB
TypeScript
163 lines
6.2 KiB
TypeScript
'use client';
|
|
|
|
import { AddProviderButton } from '@gitroom/frontend/components/launches/add.provider.component';
|
|
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
import Image from 'next/image';
|
|
import { orderBy } from 'lodash';
|
|
import { Calendar } from '@gitroom/frontend/components/launches/calendar';
|
|
import { CalendarWeekProvider } from '@gitroom/frontend/components/launches/calendar.context';
|
|
import { Filters } from '@gitroom/frontend/components/launches/filters';
|
|
import { useFetch } from '@gitroom/helpers/utils/custom.fetch';
|
|
import useSWR from 'swr';
|
|
import { LoadingComponent } from '@gitroom/frontend/components/layout/loading';
|
|
import clsx from 'clsx';
|
|
import { useUser } from '../layout/user.context';
|
|
import { Menu } from '@gitroom/frontend/components/launches/menu/menu';
|
|
import { GeneratorComponent } from '@gitroom/frontend/components/launches/generator/generator';
|
|
import { useRouter } from 'next/navigation';
|
|
|
|
export const LaunchesComponent = () => {
|
|
const fetch = useFetch();
|
|
const router = useRouter();
|
|
|
|
const [reload, setReload] = useState(false);
|
|
const load = useCallback(async (path: string) => {
|
|
return (await (await fetch(path)).json()).integrations;
|
|
}, []);
|
|
const user = useUser();
|
|
|
|
const {
|
|
isLoading,
|
|
data: integrations,
|
|
mutate,
|
|
} = useSWR('/integrations/list', load, {
|
|
fallbackData: [],
|
|
});
|
|
|
|
const totalNonDisabledChannels = useMemo(() => {
|
|
return (
|
|
integrations?.filter((integration: any) => !integration.disabled)
|
|
?.length || 0
|
|
);
|
|
}, [integrations]);
|
|
|
|
const sortedIntegrations = useMemo(() => {
|
|
return orderBy(
|
|
integrations,
|
|
['type', 'disabled', 'identifier'],
|
|
['desc', 'asc', 'asc']
|
|
);
|
|
}, [integrations]);
|
|
|
|
const update = useCallback(async (shouldReload: boolean) => {
|
|
if (shouldReload) {
|
|
setReload(true);
|
|
}
|
|
await mutate();
|
|
|
|
if (shouldReload) {
|
|
setReload(false);
|
|
}
|
|
}, []);
|
|
|
|
const continueIntegration = useCallback((integration: any) => async () => {
|
|
router.push(`/launches?added=${integration.identifier}&continue=${integration.id}`);
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (typeof window !== 'undefined' && window.opener) {
|
|
window.close();
|
|
}
|
|
}, []);
|
|
|
|
if (isLoading || reload) {
|
|
return <LoadingComponent />;
|
|
}
|
|
|
|
return (
|
|
<CalendarWeekProvider integrations={sortedIntegrations}>
|
|
<div className="flex flex-1 flex-col">
|
|
<div className="flex flex-1 relative">
|
|
<div className="absolute w-full h-full flex flex-1 gap-[30px] overflow-hidden overflow-y-scroll scrollbar scrollbar-thumb-tableBorder scrollbar-track-secondary">
|
|
<div className="w-[220px] bg-third p-[16px] flex flex-col gap-[24px] sticky top-0">
|
|
<h2 className="text-[20px]">Channels</h2>
|
|
<div className="gap-[16px] flex flex-col">
|
|
{sortedIntegrations.length === 0 && (
|
|
<div className="text-[12px]">No channels</div>
|
|
)}
|
|
{sortedIntegrations.map((integration) => (
|
|
<div
|
|
key={integration.id}
|
|
className="flex gap-[8px] items-center"
|
|
>
|
|
<div
|
|
className={clsx(
|
|
'relative w-[34px] h-[34px] rounded-full flex justify-center items-center bg-fifth',
|
|
integration.disabled && 'opacity-50'
|
|
)}
|
|
>
|
|
{integration.inBetweenSteps && (
|
|
<div className="absolute left-0 top-0 w-[39px] h-[46px] cursor-pointer" onClick={continueIntegration(integration)}>
|
|
<div className="bg-red-500 w-[15px] h-[15px] rounded-full -left-[5px] -top-[5px] absolute z-[200] text-[10px] flex justify-center items-center">
|
|
!
|
|
</div>
|
|
<div className="bg-black/60 w-[39px] h-[46px] left-0 top-0 absolute rounded-full z-[199]" />
|
|
</div>
|
|
)}
|
|
<img
|
|
src={integration.picture}
|
|
className="rounded-full"
|
|
alt={integration.identifier}
|
|
width={32}
|
|
height={32}
|
|
/>
|
|
<Image
|
|
src={`/icons/platforms/${integration.identifier}.png`}
|
|
className="rounded-full absolute z-10 -bottom-[5px] -right-[5px] border border-fifth"
|
|
alt={integration.identifier}
|
|
width={20}
|
|
height={20}
|
|
/>
|
|
</div>
|
|
<div
|
|
{...(integration.disabled &&
|
|
totalNonDisabledChannels === user?.totalChannels
|
|
? {
|
|
'data-tooltip-id': 'tooltip',
|
|
'data-tooltip-content':
|
|
'This channel is disabled, please upgrade your plan to enable it.',
|
|
}
|
|
: {})}
|
|
className={clsx(
|
|
'flex-1 whitespace-nowrap text-ellipsis overflow-hidden',
|
|
integration.disabled && 'opacity-50'
|
|
)}
|
|
>
|
|
{integration.name}
|
|
</div>
|
|
<Menu
|
|
onChange={update}
|
|
id={integration.id}
|
|
canEnable={
|
|
user?.totalChannels! > totalNonDisabledChannels &&
|
|
integration.disabled
|
|
}
|
|
canDisable={!integration.disabled}
|
|
/>
|
|
</div>
|
|
))}
|
|
</div>
|
|
<AddProviderButton update={() => update(true)} />
|
|
{sortedIntegrations?.length > 0 && <GeneratorComponent />}
|
|
</div>
|
|
<div className="flex-1 flex flex-col gap-[14px]">
|
|
<Filters />
|
|
<Calendar />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</CalendarWeekProvider>
|
|
);
|
|
};
|