168 lines
6.3 KiB
TypeScript
168 lines
6.3 KiB
TypeScript
import React from 'react';
|
|
import CardBox from '../CardBox';
|
|
import ImageField from '../ImageField';
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
import { saveFile } from '../../helpers/fileSaver';
|
|
import ListActionsPopover from '../ListActionsPopover';
|
|
import { useAppSelector } from '../../stores/hooks';
|
|
import { Pagination } from '../Pagination';
|
|
import LoadingSpinner from '../LoadingSpinner';
|
|
import Link from 'next/link';
|
|
|
|
import { hasPermission } from '../../helpers/userPermissions';
|
|
import type { PublishEvent } from '../../types/entities';
|
|
|
|
type Props = {
|
|
publish_events: PublishEvent[];
|
|
loading: boolean;
|
|
onDelete: (id: string) => void;
|
|
currentPage: number;
|
|
numPages: number;
|
|
onPageChange: (page: number) => void;
|
|
};
|
|
|
|
const ListPublish_events = ({
|
|
publish_events,
|
|
loading,
|
|
onDelete,
|
|
currentPage,
|
|
numPages,
|
|
onPageChange,
|
|
}: Props) => {
|
|
const currentUser = useAppSelector((state) => state.auth.currentUser);
|
|
const hasUpdatePermission = hasPermission(
|
|
currentUser,
|
|
'UPDATE_PUBLISH_EVENTS',
|
|
);
|
|
|
|
const corners = useAppSelector((state) => state.style.corners);
|
|
const bgColor = useAppSelector((state) => state.style.cardsColor);
|
|
|
|
return (
|
|
<>
|
|
<div className='relative overflow-x-auto p-4 space-y-4'>
|
|
{loading && <LoadingSpinner />}
|
|
{!loading &&
|
|
publish_events.map((item) => (
|
|
<div key={item.id}>
|
|
<CardBox hasTable isList className={'rounded shadow-none'}>
|
|
<div
|
|
className={`flex rounded dark:bg-dark-900 border border-stone-300 items-center overflow-hidden`}
|
|
>
|
|
<Link
|
|
href={`/publish_events/publish_events-view/?id=${item.id}`}
|
|
className={
|
|
'flex-1 px-4 py-6 h-24 flex divide-x-2 divide-stone-300 items-center overflow-hidden`}> dark:divide-dark-700 overflow-x-auto'
|
|
}
|
|
>
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Project</p>
|
|
<p className={'line-clamp-2'}>
|
|
{dataFormatter.projectsOneListFormatter(item.project)}
|
|
</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>User</p>
|
|
<p className={'line-clamp-2'}>
|
|
{dataFormatter.usersOneListFormatter(item.user)}
|
|
</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>
|
|
Fromenvironment
|
|
</p>
|
|
<p className={'line-clamp-2'}>{item.from_environment}</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>
|
|
Toenvironment
|
|
</p>
|
|
<p className={'line-clamp-2'}>{item.to_environment}</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Startedat</p>
|
|
<p className={'line-clamp-2'}>
|
|
{dataFormatter.dateTimeFormatter(item.started_at)}
|
|
</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Finishedat</p>
|
|
<p className={'line-clamp-2'}>
|
|
{dataFormatter.dateTimeFormatter(item.finished_at)}
|
|
</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Status</p>
|
|
<p className={'line-clamp-2'}>{item.status}</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Title</p>
|
|
<p className={'line-clamp-2'}>{item.title}</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Description</p>
|
|
<p className={'line-clamp-2'}>{item.description}</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Errormessage</p>
|
|
<p className={'line-clamp-2'}>{item.error_message}</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Pagescopied</p>
|
|
<p className={'line-clamp-2'}>{item.pages_copied}</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>
|
|
Transitionscopied
|
|
</p>
|
|
<p className={'line-clamp-2'}>
|
|
{item.transitions_copied}
|
|
</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500 '}>Audioscopied</p>
|
|
<p className={'line-clamp-2'}>{item.audios_copied}</p>
|
|
</div>
|
|
</Link>
|
|
<ListActionsPopover
|
|
onDelete={onDelete}
|
|
itemId={item.id}
|
|
pathEdit={`/publish_events/publish_events-edit/?id=${item.id}`}
|
|
pathView={`/publish_events/publish_events-view/?id=${item.id}`}
|
|
hasUpdatePermission={hasUpdatePermission}
|
|
/>
|
|
</div>
|
|
</CardBox>
|
|
</div>
|
|
))}
|
|
{!loading && publish_events.length === 0 && (
|
|
<div className='col-span-full flex items-center justify-center h-40'>
|
|
<p className=''>No data to display</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className={'flex items-center justify-center my-6'}>
|
|
<Pagination
|
|
currentPage={currentPage}
|
|
numPages={numPages}
|
|
setCurrentPage={onPageChange}
|
|
/>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ListPublish_events;
|