38203-vm/frontend/src/pages/notification_preferences/notification_preferences-view.tsx
2026-02-05 03:50:33 +00:00

442 lines
8.9 KiB
TypeScript

import React, { ReactElement, useEffect } from 'react';
import Head from 'next/head'
import DatePicker from "react-datepicker";
import "react-datepicker/dist/react-datepicker.css";
import dayjs from "dayjs";
import {useAppDispatch, useAppSelector} from "../../stores/hooks";
import {useRouter} from "next/router";
import { fetch } from '../../stores/notification_preferences/notification_preferencesSlice'
import {saveFile} from "../../helpers/fileSaver";
import dataFormatter from '../../helpers/dataFormatter';
import ImageField from "../../components/ImageField";
import LayoutAuthenticated from "../../layouts/Authenticated";
import {getPageTitle} from "../../config";
import SectionTitleLineWithButton from "../../components/SectionTitleLineWithButton";
import SectionMain from "../../components/SectionMain";
import CardBox from "../../components/CardBox";
import BaseButton from "../../components/BaseButton";
import BaseDivider from "../../components/BaseDivider";
import {mdiChartTimelineVariant} from "@mdi/js";
import {SwitchField} from "../../components/SwitchField";
import FormField from "../../components/FormField";
const Notification_preferencesView = () => {
const router = useRouter()
const dispatch = useAppDispatch()
const { notification_preferences } = useAppSelector((state) => state.notification_preferences)
const { id } = router.query;
function removeLastCharacter(str) {
console.log(str,`str`)
return str.slice(0, -1);
}
useEffect(() => {
dispatch(fetch({ id }));
}, [dispatch, id]);
return (
<>
<Head>
<title>{getPageTitle('View notification_preferences')}</title>
</Head>
<SectionMain>
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={removeLastCharacter('View notification_preferences')} main>
<BaseButton
color='info'
label='Edit'
href={`/notification_preferences/notification_preferences-edit/?id=${id}`}
/>
</SectionTitleLineWithButton>
<CardBox>
<FormField label='Enabled'>
<SwitchField
field={{name: 'enabled', value: notification_preferences?.enabled}}
form={{setFieldValue: () => null}}
disabled
/>
</FormField>
<FormField label='NotifyNewChapters'>
<SwitchField
field={{name: 'notify_new_chapters', value: notification_preferences?.notify_new_chapters}}
form={{setFieldValue: () => null}}
disabled
/>
</FormField>
<FormField label='NotifyAppUpdates'>
<SwitchField
field={{name: 'notify_app_updates', value: notification_preferences?.notify_app_updates}}
form={{setFieldValue: () => null}}
disabled
/>
</FormField>
<FormField label='NotifyDownloads'>
<SwitchField
field={{name: 'notify_downloads', value: notification_preferences?.notify_downloads}}
form={{setFieldValue: () => null}}
disabled
/>
</FormField>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>DeliveryChannel</p>
<p>{notification_preferences?.delivery_channel ?? 'No data'}</p>
</div>
<FormField label='QuietHoursStart'>
{notification_preferences.quiet_hours_start ? <DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={notification_preferences.quiet_hours_start ?
new Date(
dayjs(notification_preferences.quiet_hours_start).format('YYYY-MM-DD hh:mm'),
) : null
}
disabled
/> : <p>No QuietHoursStart</p>}
</FormField>
<FormField label='QuietHoursEnd'>
{notification_preferences.quiet_hours_end ? <DatePicker
dateFormat="yyyy-MM-dd hh:mm"
showTimeSelect
selected={notification_preferences.quiet_hours_end ?
new Date(
dayjs(notification_preferences.quiet_hours_end).format('YYYY-MM-DD hh:mm'),
) : null
}
disabled
/> : <p>No QuietHoursEnd</p>}
</FormField>
<div className={'mb-4'}>
<p className={'block font-bold mb-2'}>User</p>
<p>{notification_preferences?.user?.firstName ?? 'No data'}</p>
</div>
<BaseDivider />
<BaseButton
color='info'
label='Back'
onClick={() => router.push('/notification_preferences/notification_preferences-list')}
/>
</CardBox>
</SectionMain>
</>
);
};
Notification_preferencesView.getLayout = function getLayout(page: ReactElement) {
return (
<LayoutAuthenticated
permission={'READ_NOTIFICATION_PREFERENCES'}
>
{page}
</LayoutAuthenticated>
)
}
export default Notification_preferencesView;