Files
mtdb_movie/resources/client/admin/reports/pages/title-insights-page.tsx
maher 703f50a09d
Some checks failed
Build / run (push) Has been cancelled
first commit
2025-10-29 11:42:25 +01:00

52 lines
2.0 KiB
TypeScript
Executable File

import React from 'react';
import {useTitle} from '@app/titles/requests/use-title';
import {PageStatus} from '@common/http/page-status';
import {
ModelInsightsPageLayout,
ModelInsightsPageTitle,
} from '@app/admin/reports/model-insights-page-layout';
import {useParams} from 'react-router-dom';
import {TitlePoster} from '@app/titles/title-poster/title-poster';
import {TitleLink} from '@app/titles/title-link';
import {InsightsReportRow} from '@app/admin/reports/insights/insights-report-row';
import {InsightsPlaysChart} from '@app/admin/reports/insights/insights-plays-chart';
import {InsightsDevicesChart} from '@app/admin/reports/insights/insights-devices-chart';
import {InsightsLocationsChart} from '@app/admin/reports/insights/insights-locations-chart';
import {InsightsPlatformsChart} from '@app/admin/reports/insights/insights-platforms-chart';
import {InsightsSeasonsChart} from '@app/admin/reports/insights/insights-seasons-chart';
import {InsightsEpisodesChart} from '@app/admin/reports/insights/insights-episodes-chart';
export function TitleInsightsPage() {
const {titleId} = useParams();
const query = useTitle('title');
return query.data ? (
<ModelInsightsPageLayout
reportModel={`title=${titleId}`}
name={query.data.title.name}
title={
<ModelInsightsPageTitle
image={<TitlePoster title={query.data.title} srcSize="sm" />}
name={<TitleLink title={query.data.title} />}
description={<span>{query.data.title.year}</span>}
/>
}
>
<InsightsReportRow>
<InsightsPlaysChart />
<InsightsDevicesChart />
</InsightsReportRow>
<InsightsReportRow>
<InsightsSeasonsChart />
<InsightsEpisodesChart />
</InsightsReportRow>
<InsightsReportRow>
<InsightsLocationsChart />
<InsightsPlatformsChart />
</InsightsReportRow>
</ModelInsightsPageLayout>
) : (
<PageStatus query={query} loaderClassName="absolute inset-0 m-auto" />
);
}