openreplay/frontend/app/components/Spots/SpotsList/index.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

162 lines
5.2 KiB
TypeScript

import withPageTitle from 'HOCs/withPageTitle';
import { message } from 'antd';
import { observer } from 'mobx-react-lite';
import React from 'react';
import withPermissions from 'App/components/hocs/withPermissions';
import { useStore } from 'App/mstore';
import { numberWithCommas } from 'App/utils';
import { Loader, NoContent, Pagination } from 'UI';
import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG';
import EmptyPage from './EmptyPage';
import InstallCTA from './InstallCTA';
import SpotListItem from './SpotListItem';
import SpotsListHeader from './SpotsListHeader';
import { useTranslation } from 'react-i18next';
function SpotsList() {
const { t } = useTranslation();
const [selectedSpots, setSelectedSpots] = React.useState<string[]>([]);
const { spotStore } = useStore();
React.useEffect(() => {
void spotStore.fetchSpots();
}, []);
const onPageChange = (page: number) => {
spotStore.setPage(page);
void spotStore.fetchSpots();
};
const onDelete = async (spotId: string) => {
await spotStore.deleteSpot([spotId]);
setSelectedSpots(selectedSpots.filter((s) => s !== spotId));
};
const batchDelete = async () => {
const deletedCount = selectedSpots.length;
await spotStore.deleteSpot(selectedSpots);
setSelectedSpots([]);
const remainingItemsOnPage = spotStore.spots.length - deletedCount;
if (remainingItemsOnPage <= 0 && spotStore.page > 1) {
spotStore.setPage(spotStore.page - 1);
await spotStore.fetchSpots();
} else {
await spotStore.fetchSpots();
}
message.success(
`${deletedCount} Spot${deletedCount > 1 ? 's' : ''} ${t('deleted successfully.')}`,
);
};
const onRename = (id: string, newName: string) =>
spotStore.updateSpot(id, { name: newName });
const onVideo = (id: string) => spotStore.getVideo(id);
const handleSelectSpot = (spotId: string, isSelected: boolean) => {
if (isSelected) {
setSelectedSpots((prev) => [...prev, spotId]);
} else {
setSelectedSpots((prev) => prev.filter((id) => id !== spotId));
}
};
const isSpotSelected = (spotId: string) => selectedSpots.includes(spotId);
const clearSelection = () => {
setSelectedSpots([]);
};
const { isLoading } = spotStore;
const isEmpty = spotStore.total === 0 && spotStore.query === '';
return (
<div className="relative w-full mx-auto" style={{ maxWidth: 1360 }}>
<InstallCTA />
<div className="flex mx-auto p-2 px-4 bg-white rounded-lg shadow-sm w-full z-50 border-b">
<SpotsListHeader
onDelete={batchDelete}
onRefresh={spotStore.fetchSpots}
selectedCount={selectedSpots.length}
onClearSelection={clearSelection}
isEmpty={isEmpty}
tenantHasSpots={spotStore.tenantHasSpots}
/>
</div>
<div className="pb-4 w-full">
{isEmpty ? (
isLoading ? (
<Loader />
) : (
<EmptyPage />
)
) : (
<>
<NoContent
className="w-full bg-white rounded-lg shadow-sm"
show={spotStore.spots.length === 0}
title={
<div>
<AnimatedSVG name={ICONS.NO_RECORDINGS} size={60} />
<div className="font-medium text-center mt-4">
{t('No Matching Results.')}
</div>
</div>
}
>
<div className="py-2 border-gray-lighter grid grid-cols-3 gap-6">
{spotStore.spots.map((spot) => (
<SpotListItem
key={spot.spotId}
spot={spot}
onDelete={() => onDelete(spot.spotId)}
onRename={onRename}
onVideo={onVideo}
onSelect={(checked: boolean) =>
handleSelectSpot(spot.spotId, checked)
}
isSelected={isSpotSelected(spot.spotId)}
/>
))}
</div>
</NoContent>
<div className="flex items-center justify-between px-4 py-3 shadow-sm w-full bg-white rounded-lg mt-2">
<div>
{t('Showing')}{' '}
<span className="font-medium">
{(spotStore.page - 1) * spotStore.limit + 1}
</span>{' '}
{t('to')}{' '}
<span className="font-medium">
{(spotStore.page - 1) * spotStore.limit +
spotStore.spots.length}
</span>{' '}
{t('of')}{' '}
<span className="font-medium">
{numberWithCommas(spotStore.total)}
</span>{' '}
{t('spots.')}
</div>
<Pagination
page={spotStore.page}
total={spotStore.total}
onPageChange={onPageChange}
limit={spotStore.limit}
debounceRequest={500}
/>
</div>
</>
)}
</div>
</div>
);
}
export default withPermissions(['SPOT'])(
withPageTitle('Spot List - OpenReplay')(observer(SpotsList)),
);