Merge branch 'mhmfajar-dev' into mhmfajar
This commit is contained in:
@@ -15,39 +15,39 @@ class AuthController extends Controller
|
|||||||
public function requestOtp(Request $request)
|
public function requestOtp(Request $request)
|
||||||
{
|
{
|
||||||
$request->validate([
|
$request->validate([
|
||||||
'phone_or_email' => 'required'
|
'phoneOrEmail' => 'required'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$user = User::query()
|
$user = User::query()
|
||||||
->when(filter_var($request->phone_or_email, FILTER_VALIDATE_EMAIL), function (Builder $query) use ($request) {
|
->when(filter_var($request->phoneOrEmail, FILTER_VALIDATE_EMAIL), function (Builder $query) use ($request) {
|
||||||
$query->getQuery()->where('email', $request->phone_or_email);
|
$query->getQuery()->where('email', $request->phoneOrEmail);
|
||||||
}, function (Builder $query) use ($request) {
|
}, function (Builder $query) use ($request) {
|
||||||
$query->getQuery()->where('phone', $request->phone_or_email);
|
$query->getQuery()->where('phone', $request->phoneOrEmail);
|
||||||
})
|
})
|
||||||
->first();
|
->first();
|
||||||
|
|
||||||
if (!$user) {
|
if (!$user) {
|
||||||
$message = filter_var($request->phone_or_email, FILTER_VALIDATE_EMAIL) ? "User dengan alamat email " . $request->phone_or_email . " tidak ditemukan" : "User dengan nomor telepon " . $request->phone_or_email . " tidak ditemukan";
|
$message = filter_var($request->phoneOrEmail, FILTER_VALIDATE_EMAIL) ? "User dengan alamat email " . $request->phoneOrEmail . " tidak ditemukan" : "User dengan nomor telepon " . $request->phoneOrEmail . " tidak ditemukan";
|
||||||
|
|
||||||
return Helper::responseJson(statusCode: Response::HTTP_NOT_FOUND, message: $message);
|
return Helper::responseJson(statusCode: Response::HTTP_NOT_FOUND, message: $message);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (filter_var($request->phone_or_email, FILTER_VALIDATE_EMAIL)) {
|
if (filter_var($request->phoneOrEmail, FILTER_VALIDATE_EMAIL)) {
|
||||||
User::query()->find($user->id)->update([
|
User::query()->find($user->id)->update([
|
||||||
'email' => $request->phone_or_email,
|
'email' => $request->phoneOrEmail,
|
||||||
'otp' => rand(1000, 9999),
|
'otp' => rand(1000, 9999),
|
||||||
'otp_created_at' => now()
|
'otp_created_at' => now()
|
||||||
]);
|
]);
|
||||||
} else {
|
} else {
|
||||||
User::query()->find($user->id)->update([
|
User::query()->find($user->id)->update([
|
||||||
'phone' => $request->phone_or_email,
|
'phone' => $request->phoneOrEmail,
|
||||||
'otp' => rand(1000, 9999),
|
'otp' => rand(1000, 9999),
|
||||||
'otp_created_at' => now()
|
'otp_created_at' => now()
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO Send the OTP
|
// TODO Send the OTP
|
||||||
if (filter_var($request->phone_or_email, FILTER_VALIDATE_EMAIL)) {
|
if (filter_var($request->phoneOrEmail, FILTER_VALIDATE_EMAIL)) {
|
||||||
// Send Email
|
// Send Email
|
||||||
} else {
|
} else {
|
||||||
// Send Whatsapp
|
// Send Whatsapp
|
||||||
@@ -59,15 +59,15 @@ class AuthController extends Controller
|
|||||||
public function validateOtp(Request $request)
|
public function validateOtp(Request $request)
|
||||||
{
|
{
|
||||||
$request->validate([
|
$request->validate([
|
||||||
'phone_or_email' => 'required',
|
'phoneOrEmail' => 'required',
|
||||||
'otp' => 'required'
|
'otp' => 'required'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$user = User::query()
|
$user = User::query()
|
||||||
->when(filter_var($request->phone_or_email, FILTER_VALIDATE_EMAIL), function (Builder $query) use ($request) {
|
->when(filter_var($request->phoneOrEmail, FILTER_VALIDATE_EMAIL), function (Builder $query) use ($request) {
|
||||||
$query->getQuery()->where('email', $request->phone_or_email);
|
$query->getQuery()->where('email', $request->phoneOrEmail);
|
||||||
}, function (Builder $query) use ($request) {
|
}, function (Builder $query) use ($request) {
|
||||||
$query->getQuery()->where('phone', $request->phone_or_email);
|
$query->getQuery()->where('phone', $request->phoneOrEmail);
|
||||||
})
|
})
|
||||||
->first();
|
->first();
|
||||||
|
|
||||||
@@ -86,9 +86,8 @@ class AuthController extends Controller
|
|||||||
|
|
||||||
public function logout(Request $request)
|
public function logout(Request $request)
|
||||||
{
|
{
|
||||||
$token = $request->bearerToken();
|
$request->user()->currentAccessToken()->delete();
|
||||||
Auth::user()->tokens()->where('id', $token)->delete();
|
|
||||||
|
|
||||||
return response(['message' => 'Berhasil Logout.']);
|
return Helper::responseJson(message: 'Berhasil Logout.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,8 +19,8 @@ use Modules\Client\Http\Controllers\Api\UserController;
|
|||||||
Route::prefix('client')->group(function () {
|
Route::prefix('client')->group(function () {
|
||||||
|
|
||||||
Route::controller(AuthController::class)->group(function () {
|
Route::controller(AuthController::class)->group(function () {
|
||||||
Route::post('otp-request', 'requestOtp');
|
Route::post('login', 'login');
|
||||||
Route::post('otp-validation', 'validateOtp');
|
Route::post('verify-code', 'validateOtp');
|
||||||
});
|
});
|
||||||
|
|
||||||
Route::middleware('auth:sanctum')->group(function () {
|
Route::middleware('auth:sanctum')->group(function () {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { UserCredential } from 'firebase/auth';
|
// import { UserCredential } from 'firebase/auth';
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -26,19 +26,20 @@ export type JWTContextType = {
|
|||||||
isInitialized: boolean;
|
isInitialized: boolean;
|
||||||
user: AuthUser;
|
user: AuthUser;
|
||||||
method: 'jwt';
|
method: 'jwt';
|
||||||
// login: (phone_or_email: string) => Promise<void>;
|
login: (phoneOrEmail: string) => Promise<void>;
|
||||||
|
validateOtp: (phoneOrEmail: string, otp: string) => Promise<void>
|
||||||
logout: () => Promise<void>;
|
logout: () => Promise<void>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type FirebaseContextType = {
|
// export type FirebaseContextType = {
|
||||||
isAuthenticated: boolean;
|
// isAuthenticated: boolean;
|
||||||
isInitialized: boolean;
|
// isInitialized: boolean;
|
||||||
user: AuthUser;
|
// user: AuthUser;
|
||||||
method: 'firebase';
|
// method: 'firebase';
|
||||||
login: (email: string, password: string) => Promise<UserCredential>;
|
// login: (email: string, password: string) => Promise<UserCredential>;
|
||||||
register: (email: string, password: string, firstName: string, lastName: string) => Promise<void>;
|
// register: (email: string, password: string, firstName: string, lastName: string) => Promise<void>;
|
||||||
logout: () => Promise<void>;
|
// logout: () => Promise<void>;
|
||||||
};
|
// };
|
||||||
|
|
||||||
export type AWSCognitoContextType = {
|
export type AWSCognitoContextType = {
|
||||||
isAuthenticated: boolean;
|
isAuthenticated: boolean;
|
||||||
|
|||||||
@@ -3,28 +3,33 @@ import Router from './routes';
|
|||||||
// theme
|
// theme
|
||||||
import ThemeProvider from './theme';
|
import ThemeProvider from './theme';
|
||||||
// components
|
// components
|
||||||
import Settings from './components/settings';
|
|
||||||
import RtlLayout from './components/RtlLayout';
|
import RtlLayout from './components/RtlLayout';
|
||||||
import ScrollToTop from './components/ScrollToTop';
|
import ScrollToTop from './components/ScrollToTop';
|
||||||
import { ProgressBarStyle } from './components/ProgressBar';
|
import { ProgressBarStyle } from './components/ProgressBar';
|
||||||
import ThemeColorPresets from './components/ThemeColorPresets';
|
import ThemeColorPresets from './components/ThemeColorPresets';
|
||||||
import MotionLazyContainer from './components/animate/MotionLazyContainer';
|
import MotionLazyContainer from './components/animate/MotionLazyContainer';
|
||||||
|
import { SnackbarProvider } from 'notistack';
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider>
|
<ThemeProvider>
|
||||||
<ThemeColorPresets>
|
<SnackbarProvider
|
||||||
<RtlLayout>
|
autoHideDuration={2000}
|
||||||
<MotionLazyContainer>
|
anchorOrigin={{ vertical: 'top', horizontal: 'right' }}
|
||||||
<ProgressBarStyle />
|
>
|
||||||
{/* <Settings /> */}
|
<ThemeColorPresets>
|
||||||
<ScrollToTop />
|
<RtlLayout>
|
||||||
<Router />
|
<MotionLazyContainer>
|
||||||
</MotionLazyContainer>
|
<ProgressBarStyle />
|
||||||
</RtlLayout>
|
{/* <Settings /> */}
|
||||||
</ThemeColorPresets>
|
<ScrollToTop />
|
||||||
|
<Router />
|
||||||
|
</MotionLazyContainer>
|
||||||
|
</RtlLayout>
|
||||||
|
</ThemeColorPresets>
|
||||||
|
</SnackbarProvider>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
56
frontend/client-portal/src/components/MuiDialog.tsx
Normal file
56
frontend/client-portal/src/components/MuiDialog.tsx
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
import { Dialog, DialogTitle, DialogContent, Stack, Typography, IconButton } from '@mui/material';
|
||||||
|
import CloseIcon from '@mui/icons-material/Close';
|
||||||
|
import { ReactElement } from 'react';
|
||||||
|
import Iconify from './Iconify';
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
type MuiDialogProps = {
|
||||||
|
title?: {
|
||||||
|
name?: string;
|
||||||
|
icon?: string;
|
||||||
|
};
|
||||||
|
openDialog: boolean;
|
||||||
|
setOpenDialog: Function;
|
||||||
|
content?: ReactElement;
|
||||||
|
maxWidth?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const MuiDialog = ({ title, openDialog, setOpenDialog, content, maxWidth }: MuiDialogProps) => {
|
||||||
|
const handleClose = () => {
|
||||||
|
setOpenDialog(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
let maxWidthDialog = 'md';
|
||||||
|
|
||||||
|
if (maxWidth) {
|
||||||
|
maxWidthDialog = maxWidth;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={openDialog} onClose={handleClose} fullWidth={true} maxWidth={maxWidthDialog}>
|
||||||
|
<DialogTitle sx={{ backgroundColor: '#19BBBB', color: '#FFF', padding: 2 }}>
|
||||||
|
<Stack direction="row" alignItems="center" justifyContent="space-between">
|
||||||
|
{title?.icon ? (
|
||||||
|
<Stack direction="row">
|
||||||
|
<Iconify icon={title?.icon} width={25} height={25} sx={{ marginRight: '10px' }} />
|
||||||
|
<Typography variant="h6">{title?.name}</Typography>
|
||||||
|
</Stack>
|
||||||
|
) : (
|
||||||
|
<Typography variant="h6">{title?.name ? title?.name : 'Testing Title'}</Typography>
|
||||||
|
)}
|
||||||
|
<IconButton sx={{ color: '#FFF' }} onClick={handleClose}>
|
||||||
|
<CloseIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Stack>
|
||||||
|
</DialogTitle>
|
||||||
|
<DialogContent sx={{ backgroundColor: '#F9FAFB' }}>
|
||||||
|
{content ? content : 'Testing Content Dialog'}
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default MuiDialog;
|
||||||
@@ -29,7 +29,7 @@ export type NavItemProps = {
|
|||||||
export interface NavSectionProps extends BoxProps {
|
export interface NavSectionProps extends BoxProps {
|
||||||
isCollapse?: boolean;
|
isCollapse?: boolean;
|
||||||
navConfig: {
|
navConfig: {
|
||||||
subheader: string;
|
subheader?: string;
|
||||||
items: NavListProps[];
|
items: NavListProps[];
|
||||||
}[];
|
}[];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,12 +10,18 @@ import { isExternalLink } from '..';
|
|||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
export function NavItemRoot({ item, isCollapse, open = false, active, onOpen }: NavItemProps) {
|
export function NavItemRoot({
|
||||||
const { title, path, icon, info, children } = item;
|
item,
|
||||||
|
isCollapse,
|
||||||
|
open = false,
|
||||||
|
active = false,
|
||||||
|
onOpen,
|
||||||
|
}: NavItemProps) {
|
||||||
|
const { title, path, info, children } = item;
|
||||||
|
|
||||||
const renderContent = (
|
const renderContent = (
|
||||||
<>
|
<>
|
||||||
{icon && <ListItemIconStyle>{icon}</ListItemIconStyle>}
|
<DotIcon active={active} />
|
||||||
<ListItemTextStyle disableTypography primary={title} isCollapse={isCollapse} />
|
<ListItemTextStyle disableTypography primary={title} isCollapse={isCollapse} />
|
||||||
{!isCollapse && (
|
{!isCollapse && (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -1,18 +1,17 @@
|
|||||||
import { createContext, ReactNode, useEffect, useReducer } from 'react';
|
import { createContext, ReactNode, useEffect, useReducer } from 'react';
|
||||||
// utils
|
// utils
|
||||||
import axios from '../utils/axios';
|
import axios from '../utils/axios';
|
||||||
// import { isValidToken, setSession } from '../utils/jwt';
|
import { setSession, getSession } from '../utils/token';
|
||||||
import { setSession, getSession, getUser } from '../utils/token';
|
|
||||||
// @types
|
// @types
|
||||||
import { ActionMap, AuthState, AuthUser, JWTContextType } from '../@types/auth';
|
import { ActionMap, AuthState, AuthUser, JWTContextType } from '../@types/auth';
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// import { Navigate, useLocation } from 'react-router-dom';
|
|
||||||
|
|
||||||
enum Types {
|
enum Types {
|
||||||
Initial = 'INITIALIZE',
|
Initial = 'INITIALIZE',
|
||||||
Login = 'LOGIN',
|
Login = 'LOGIN',
|
||||||
|
ValidateOtp = 'VALIDATE-OTP',
|
||||||
Logout = 'LOGOUT',
|
Logout = 'LOGOUT',
|
||||||
Register = 'REGISTER',
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type JWTAuthPayload = {
|
type JWTAuthPayload = {
|
||||||
@@ -20,13 +19,11 @@ type JWTAuthPayload = {
|
|||||||
isAuthenticated: boolean;
|
isAuthenticated: boolean;
|
||||||
user: AuthUser;
|
user: AuthUser;
|
||||||
};
|
};
|
||||||
[Types.Login]: {
|
[Types.Login]: undefined;
|
||||||
|
[Types.ValidateOtp]: {
|
||||||
user: AuthUser;
|
user: AuthUser;
|
||||||
};
|
};
|
||||||
[Types.Logout]: undefined;
|
[Types.Logout]: undefined;
|
||||||
[Types.Register]: {
|
|
||||||
user: AuthUser;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type JWTActions = ActionMap<JWTAuthPayload>[keyof ActionMap<JWTAuthPayload>];
|
export type JWTActions = ActionMap<JWTAuthPayload>[keyof ActionMap<JWTAuthPayload>];
|
||||||
@@ -46,6 +43,12 @@ const JWTReducer = (state: AuthState, action: JWTActions) => {
|
|||||||
user: action.payload.user,
|
user: action.payload.user,
|
||||||
};
|
};
|
||||||
case 'LOGIN':
|
case 'LOGIN':
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
isAuthenticated: false,
|
||||||
|
user: null,
|
||||||
|
};
|
||||||
|
case 'VALIDATE-OTP':
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
isAuthenticated: true,
|
isAuthenticated: true,
|
||||||
@@ -57,14 +60,6 @@ const JWTReducer = (state: AuthState, action: JWTActions) => {
|
|||||||
isAuthenticated: false,
|
isAuthenticated: false,
|
||||||
user: null,
|
user: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
case 'REGISTER':
|
|
||||||
return {
|
|
||||||
...state,
|
|
||||||
isAuthenticated: true,
|
|
||||||
user: action.payload.user,
|
|
||||||
};
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
@@ -80,11 +75,11 @@ type AuthProviderProps = {
|
|||||||
|
|
||||||
function AuthProvider({ children }: AuthProviderProps) {
|
function AuthProvider({ children }: AuthProviderProps) {
|
||||||
const [state, dispatch] = useReducer(JWTReducer, initialState);
|
const [state, dispatch] = useReducer(JWTReducer, initialState);
|
||||||
// let location = useLocation();
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const initialize = async () => {
|
(async () => {
|
||||||
console.log('initialize', state);
|
console.log('initialize', state);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const accessToken = getSession();
|
const accessToken = getSession();
|
||||||
|
|
||||||
@@ -120,51 +115,43 @@ function AuthProvider({ children }: AuthProviderProps) {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
})();
|
||||||
|
|
||||||
initialize();
|
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// const login = async (phone_or_email: string) => {
|
const login = async (phoneOrEmail: string) =>
|
||||||
// axios
|
axios
|
||||||
// .post('/otp-request', { phone_or_email })
|
.post('/login', { phoneOrEmail })
|
||||||
// .then((response: any) => {
|
.then(() => {
|
||||||
// const { user, token } = response.data;
|
dispatch({
|
||||||
// setSession(token);
|
type: Types.Login,
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
if (error.response.status !== 404) throw error.response;
|
||||||
|
if (error.response.status !== 422) throw error.response;
|
||||||
|
});
|
||||||
|
|
||||||
// dispatch({
|
const validateOtp = async (phoneOrEmail: string, otp: string) =>
|
||||||
// type: Types.Login,
|
axios
|
||||||
// payload: {
|
.post('/verify-code', { phoneOrEmail: phoneOrEmail, otp })
|
||||||
// user,
|
.then((response) => {
|
||||||
// },
|
const { user, token } = response.data.data;
|
||||||
// });
|
setSession(token);
|
||||||
// })
|
|
||||||
// .catch((error) => {
|
|
||||||
// if (error.response.status !== 404) throw error.response;
|
|
||||||
// if (error.response.status !== 422) throw error.response;
|
|
||||||
// });
|
|
||||||
// };
|
|
||||||
|
|
||||||
// const register = async (email: string, password: string, firstName: string, lastName: string) => {
|
dispatch({
|
||||||
// const response = await axios.post('/api/register', {
|
type: Types.ValidateOtp,
|
||||||
// email,
|
payload: {
|
||||||
// password,
|
user,
|
||||||
// firstName,
|
},
|
||||||
// lastName,
|
});
|
||||||
// });
|
})
|
||||||
// const { accessToken, user } = response.data;
|
.catch((error) => {
|
||||||
|
if (error.response.status !== 404) throw error.response;
|
||||||
// window.localStorage.setItem('accessToken', accessToken);
|
if (error.response.status !== 422) throw error.response;
|
||||||
// dispatch({
|
});
|
||||||
// type: Types.Register,
|
|
||||||
// payload: {
|
|
||||||
// user,
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
// };
|
|
||||||
|
|
||||||
const logout = async () => {
|
const logout = async () => {
|
||||||
await axios.post('/logout', { token: getSession() });
|
await axios.post('/logout');
|
||||||
setSession(null);
|
setSession(null);
|
||||||
dispatch({ type: Types.Logout });
|
dispatch({ type: Types.Logout });
|
||||||
};
|
};
|
||||||
@@ -174,6 +161,8 @@ function AuthProvider({ children }: AuthProviderProps) {
|
|||||||
value={{
|
value={{
|
||||||
...state,
|
...state,
|
||||||
method: 'jwt',
|
method: 'jwt',
|
||||||
|
login,
|
||||||
|
validateOtp,
|
||||||
logout,
|
logout,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,56 +1,24 @@
|
|||||||
// components
|
|
||||||
import SvgIconStyle from '../../../components/SvgIconStyle';
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
const getIcon = (name: string) => (
|
|
||||||
<SvgIconStyle src={`/icons/${name}.svg`} sx={{ width: 1, height: 1 }} />
|
|
||||||
);
|
|
||||||
|
|
||||||
const ICONS = {
|
|
||||||
user: getIcon('ic_user'),
|
|
||||||
ecommerce: getIcon('ic_ecommerce'),
|
|
||||||
analytics: getIcon('ic_analytics'),
|
|
||||||
dashboard: getIcon('ic_dashboard'),
|
|
||||||
};
|
|
||||||
|
|
||||||
const navConfig = [
|
const navConfig = [
|
||||||
// GENERAL
|
// GENERAL
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
{
|
{
|
||||||
items: [{ title: 'Dashboard', path: '/dashboard' }],
|
items: [{ title: 'Dashboard', path: '/dashboard' }],
|
||||||
},
|
},
|
||||||
|
// Alarm Center
|
||||||
// Case Management
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
{
|
{
|
||||||
subheader: 'Case Management',
|
subheader: 'Case Management',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
title: 'Alarm Center',
|
title: 'Alarm Center',
|
||||||
path: '/members',
|
path: '/alarm-center',
|
||||||
// icon: ICONS.default,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Claim Report',
|
title: 'Claim Report',
|
||||||
path: '/claim-reports',
|
path: '/claim-report',
|
||||||
// icon: ICONS.default,
|
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// title: 'Member List',
|
|
||||||
// path: '/members',
|
|
||||||
// icon: ICONS.user,
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// title: 'Member Movement',
|
|
||||||
// // path: '/',
|
|
||||||
// icon: ICONS.user,
|
|
||||||
// children: [
|
|
||||||
// { title: '', path: '/medicines' },
|
|
||||||
// { title: 'Obat', path: '/medicines' },
|
|
||||||
// { title: 'Obat', path: '/medicines' },
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
31
frontend/client-portal/src/pages/AlarmCenter/Index.tsx
Executable file
31
frontend/client-portal/src/pages/AlarmCenter/Index.tsx
Executable file
@@ -0,0 +1,31 @@
|
|||||||
|
// mui
|
||||||
|
import { Container, Grid, Card } from '@mui/material';
|
||||||
|
// components
|
||||||
|
import Page from '../../components/Page';
|
||||||
|
// utils
|
||||||
|
import useSettings from '../../hooks/useSettings';
|
||||||
|
// sections
|
||||||
|
// import ListTable from '../../sections/claimreports/ListTable';
|
||||||
|
// import ClaimStatusCard from '../../sections/claimreports/ClaimStatusCard';
|
||||||
|
|
||||||
|
import List from './List';
|
||||||
|
|
||||||
|
export default function Drugs() {
|
||||||
|
const { themeStretch } = useSettings();
|
||||||
|
|
||||||
|
// const { corporate_id } = useParams();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Page title="Alarm Center">
|
||||||
|
<Container maxWidth={themeStretch ? false : 'xl'}>
|
||||||
|
<Grid container>
|
||||||
|
<Grid item xs={12} lg={12} md={12}>
|
||||||
|
<Card>
|
||||||
|
<List />
|
||||||
|
</Card>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Container>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
}
|
||||||
417
frontend/client-portal/src/pages/AlarmCenter/List.tsx
Executable file
417
frontend/client-portal/src/pages/AlarmCenter/List.tsx
Executable file
@@ -0,0 +1,417 @@
|
|||||||
|
// @mui
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Button,
|
||||||
|
Card,
|
||||||
|
Collapse,
|
||||||
|
IconButton,
|
||||||
|
InputLabel,
|
||||||
|
MenuItem,
|
||||||
|
OutlinedInput,
|
||||||
|
Paper,
|
||||||
|
Select,
|
||||||
|
SelectChangeEvent,
|
||||||
|
Table,
|
||||||
|
TableBody,
|
||||||
|
TableCell,
|
||||||
|
TableContainer,
|
||||||
|
TableHead,
|
||||||
|
TableRow,
|
||||||
|
TextField,
|
||||||
|
Typography,
|
||||||
|
Badge,
|
||||||
|
Tab,
|
||||||
|
Tabs,
|
||||||
|
CardHeader,
|
||||||
|
Stack,
|
||||||
|
Menu,
|
||||||
|
ButtonGroup,
|
||||||
|
Pagination,
|
||||||
|
Grid,
|
||||||
|
} from '@mui/material';
|
||||||
|
import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown';
|
||||||
|
import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight';
|
||||||
|
import AddIcon from '@mui/icons-material/Add';
|
||||||
|
import UploadIcon from '@mui/icons-material/Upload';
|
||||||
|
import CancelIcon from '@mui/icons-material/Cancel';
|
||||||
|
// hooks
|
||||||
|
import React, { ChangeEvent, Component, useEffect, useRef, useState } from 'react';
|
||||||
|
import useSettings from '../../hooks/useSettings';
|
||||||
|
import { useNavigate, useParams, useSearchParams } from 'react-router-dom';
|
||||||
|
// components
|
||||||
|
import axios from '../../utils/axios';
|
||||||
|
import { LaravelPaginatedData } from '../../@types/paginated-data';
|
||||||
|
import { Icd } from '../../@types/diagnosis';
|
||||||
|
import BasePagination from '../../components/BasePagination';
|
||||||
|
import { Member } from '../../@types/member';
|
||||||
|
|
||||||
|
export default function List() {
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const { themeStretch } = useSettings();
|
||||||
|
const { corporate_id } = useParams();
|
||||||
|
const [searchParams, setSearchParams] = useSearchParams();
|
||||||
|
const [importResult, setImportResult] = useState(null);
|
||||||
|
|
||||||
|
function SearchInput(props: any) {
|
||||||
|
// SEARCH
|
||||||
|
const searchInput = useRef<HTMLInputElement>(null);
|
||||||
|
const [searchText, setSearchText] = useState('');
|
||||||
|
|
||||||
|
const handleSearchChange = (event: any) => {
|
||||||
|
const newSearchText = event.target.value ?? '';
|
||||||
|
setSearchText(newSearchText);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSearchSubmit = (event: any) => {
|
||||||
|
event.preventDefault();
|
||||||
|
props.onSearch(searchText); // Trigger to Parent
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
// Trigger First Search
|
||||||
|
setSearchText(searchParams.get('search') ?? '');
|
||||||
|
}, [searchParams]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<form onSubmit={handleSearchSubmit} style={{ width: '100%' }}>
|
||||||
|
<TextField
|
||||||
|
id="search-input"
|
||||||
|
ref={searchInput}
|
||||||
|
label="Search"
|
||||||
|
variant="outlined"
|
||||||
|
fullWidth
|
||||||
|
onChange={handleSearchChange}
|
||||||
|
value={searchText}
|
||||||
|
/>
|
||||||
|
</form>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ImportForm(props: any) {
|
||||||
|
// IMPORT
|
||||||
|
// Create Button Menu
|
||||||
|
const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null);
|
||||||
|
const createMenu = Boolean(anchorEl);
|
||||||
|
const importForm = useRef<HTMLInputElement>(null);
|
||||||
|
const [currentImportFileName, setCurrentImportFileName] = useState(null);
|
||||||
|
|
||||||
|
const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
|
||||||
|
setAnchorEl(event.currentTarget);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClose = () => {
|
||||||
|
setAnchorEl(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleImportButton = () => {
|
||||||
|
if (importForm?.current) {
|
||||||
|
handleClose();
|
||||||
|
importForm.current ? importForm.current.click() : console.log('No File selected');
|
||||||
|
} else {
|
||||||
|
alert('No file selected');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCancelImportButton = () => {
|
||||||
|
importForm.current.value = '';
|
||||||
|
importForm.current.dispatchEvent(new Event('change', { bubbles: true }));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleImportChange = (event: any) => {
|
||||||
|
if (event.target.files[0]) {
|
||||||
|
setCurrentImportFileName(event.target.files[0].name);
|
||||||
|
} else {
|
||||||
|
setCurrentImportFileName(null);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleUpload = () => {
|
||||||
|
if (importForm.current?.files.length) {
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append('file', importForm.current?.files[0]);
|
||||||
|
axios
|
||||||
|
.post(`master/formularium/import`, formData)
|
||||||
|
.then((response) => {
|
||||||
|
handleCancelImportButton();
|
||||||
|
loadDataTableData();
|
||||||
|
setImportResult(response.data);
|
||||||
|
// alert('Succesfully read '+ response.data.total_successed_row + ' with ' + response.data.total_failed_row + ' failed rows');
|
||||||
|
})
|
||||||
|
.catch((response) => {
|
||||||
|
alert(
|
||||||
|
'Looks like something went wrong. Please check your data and try again. ' +
|
||||||
|
response.message
|
||||||
|
);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
alert('No File Selected');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<input
|
||||||
|
type="file"
|
||||||
|
id="file"
|
||||||
|
ref={importForm}
|
||||||
|
style={{ display: 'none' }}
|
||||||
|
onChange={handleImportChange}
|
||||||
|
accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel, text/plain"
|
||||||
|
/>
|
||||||
|
{!currentImportFileName && (
|
||||||
|
<Stack direction={'row'} spacing={2} sx={{ p: 2 }}>
|
||||||
|
<SearchInput onSearch={applyFilter} />
|
||||||
|
</Stack>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{currentImportFileName && (
|
||||||
|
<Stack direction={'row'} spacing={2} sx={{ p: 2 }}>
|
||||||
|
<ButtonGroup variant="outlined" aria-label="outlined button group" fullWidth>
|
||||||
|
<Button onClick={handleImportButton} fullWidth>
|
||||||
|
{currentImportFileName ?? 'No File Selected'}
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
onClick={handleCancelImportButton}
|
||||||
|
size="small"
|
||||||
|
fullWidth={false}
|
||||||
|
sx={{ p: 1.8 }}
|
||||||
|
>
|
||||||
|
<CancelIcon color="error" />
|
||||||
|
</Button>
|
||||||
|
</ButtonGroup>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
id="upload-button"
|
||||||
|
variant="outlined"
|
||||||
|
startIcon={<UploadIcon />}
|
||||||
|
sx={{ p: 1.8 }}
|
||||||
|
onClick={handleUpload}
|
||||||
|
>
|
||||||
|
Upload
|
||||||
|
</Button>
|
||||||
|
</Stack>
|
||||||
|
)}
|
||||||
|
{importResult && (
|
||||||
|
<Stack direction={'row'} sx={{ px: 2, pb: 2 }}>
|
||||||
|
<Box sx={{ color: 'text.secondary' }}>
|
||||||
|
Last Import Result Report :{' '}
|
||||||
|
<a href={importResult.result_file?.url ?? '#'}>
|
||||||
|
{importResult.result_file?.name ?? '-'}
|
||||||
|
</a>
|
||||||
|
</Box>
|
||||||
|
</Stack>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Called on every row to map the data to the columns
|
||||||
|
function createData(member: Member): Member {
|
||||||
|
return {
|
||||||
|
...member,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generate the every row of the table
|
||||||
|
function Row(props: { row: ReturnType<typeof createData> }) {
|
||||||
|
const { row } = props;
|
||||||
|
const [open, setOpen] = React.useState(true);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<React.Fragment>
|
||||||
|
<TableRow sx={{ '& > *': { borderBottom: 'unset' } }}>
|
||||||
|
<TableCell>
|
||||||
|
<IconButton aria-label="expand row" size="small" onClick={() => setOpen(!open)}>
|
||||||
|
{open ? <KeyboardArrowDownIcon /> : <KeyboardArrowRightIcon />}
|
||||||
|
</IconButton>
|
||||||
|
</TableCell>
|
||||||
|
<TableCell align="left">{row.member_id}</TableCell>
|
||||||
|
<TableCell align="left">{row.payor_id}</TableCell>
|
||||||
|
<TableCell align="left">{row.name}</TableCell>
|
||||||
|
<TableCell align="left">{row.nik}</TableCell>
|
||||||
|
<TableCell align="left">{row.nric}</TableCell>
|
||||||
|
|
||||||
|
<TableCell align="right">
|
||||||
|
<Button variant="outlined" color="success" size="small">
|
||||||
|
Active
|
||||||
|
</Button>
|
||||||
|
</TableCell>
|
||||||
|
{/* <TableCell align="right"><Button variant="outlined" color="error" size="small">Disable</Button></TableCell> */}
|
||||||
|
</TableRow>
|
||||||
|
{/* COLLAPSIBLE ROW */}
|
||||||
|
<TableRow>
|
||||||
|
<TableCell style={{ paddingBottom: 0, paddingTop: 0 }} colSpan={99}>
|
||||||
|
<Collapse in={open} timeout="auto" unmountOnExit>
|
||||||
|
<Box sx={{ borderBottom: 1 }}>
|
||||||
|
<Typography variant="body2" gutterBottom component="div">
|
||||||
|
<Grid></Grid>
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
</Collapse>
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</React.Fragment>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dummy Default Data
|
||||||
|
const [dataTableIsLoading, setDataTableLoading] = useState(true);
|
||||||
|
const [dataTableLastRequest, setDataTableLastRequest] = useState(0);
|
||||||
|
const [dataTableResponseState, setDataTableResponseState] = useState('idle');
|
||||||
|
const [dataTableData, setDataTableData] = useState<LaravelPaginatedData>({
|
||||||
|
current_page: 1,
|
||||||
|
data: [],
|
||||||
|
path: '',
|
||||||
|
first_page_url: '',
|
||||||
|
last_page: 1,
|
||||||
|
last_page_url: '',
|
||||||
|
next_page_url: '',
|
||||||
|
prev_page_url: '',
|
||||||
|
per_page: 10,
|
||||||
|
from: 0,
|
||||||
|
to: 0,
|
||||||
|
total: 0,
|
||||||
|
});
|
||||||
|
const [dataTablePage, setDataTablePage] = useState(5);
|
||||||
|
|
||||||
|
const loadDataTableData = async (appliedFilter: any | null = null) => {
|
||||||
|
setDataTableLoading(true);
|
||||||
|
const filter = appliedFilter ? appliedFilter : Object.fromEntries([...searchParams.entries()]);
|
||||||
|
const response = await axios.get('/members', { params: filter });
|
||||||
|
|
||||||
|
setDataTableData(response.data.members);
|
||||||
|
setDataTableLoading(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const headStyle = {
|
||||||
|
fontWeight: 'bold',
|
||||||
|
};
|
||||||
|
|
||||||
|
const applyFilter = async (searchFilter: string) => {
|
||||||
|
await loadDataTableData({ search: searchFilter });
|
||||||
|
setSearchParams({ search: searchFilter });
|
||||||
|
};
|
||||||
|
|
||||||
|
const handlePageChange = (event: ChangeEvent, value: number) => {
|
||||||
|
const filter = Object.fromEntries([...searchParams.entries(), ['page', value]]);
|
||||||
|
loadDataTableData(filter);
|
||||||
|
setSearchParams(filter);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
loadDataTableData();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Stack>
|
||||||
|
<Stack
|
||||||
|
direction="row"
|
||||||
|
spacing={5}
|
||||||
|
sx={{ backgroundColor: '#F4F6F8', paddingX: 3, paddingY: '13px' }}
|
||||||
|
>
|
||||||
|
<Button variant="subtitle2" sx={{ position: 'relative' }}>
|
||||||
|
All Data ( Count )
|
||||||
|
<Typography
|
||||||
|
sx={{
|
||||||
|
borderBottom: '2px solid #19BBBB',
|
||||||
|
borderRadius: '1px',
|
||||||
|
position: 'absolute',
|
||||||
|
bottom: '-13px',
|
||||||
|
left: 0,
|
||||||
|
width: '100%',
|
||||||
|
}}
|
||||||
|
component="span"
|
||||||
|
/>
|
||||||
|
</Button>
|
||||||
|
<Button variant="subtitle2" sx={{ position: 'relative' }}>
|
||||||
|
Ongoing ( Count )
|
||||||
|
{/* <Typography
|
||||||
|
sx={{
|
||||||
|
borderBottom: '2px solid #19BBBB',
|
||||||
|
borderRadius: '1px',
|
||||||
|
position: 'absolute',
|
||||||
|
bottom: '-13px',
|
||||||
|
left: 0,
|
||||||
|
width: '100%',
|
||||||
|
}}
|
||||||
|
component="span"
|
||||||
|
/> */}
|
||||||
|
</Button>
|
||||||
|
<Button variant="subtitle2" sx={{ position: 'relative' }}>
|
||||||
|
Done ( Count )
|
||||||
|
{/* <Typography
|
||||||
|
sx={{
|
||||||
|
borderBottom: '2px solid #19BBBB',
|
||||||
|
borderRadius: '1px',
|
||||||
|
position: 'absolute',
|
||||||
|
bottom: '-13px',
|
||||||
|
left: 0,
|
||||||
|
width: '100%',
|
||||||
|
}}
|
||||||
|
component="span"
|
||||||
|
/> */}
|
||||||
|
</Button>
|
||||||
|
</Stack>
|
||||||
|
|
||||||
|
<ImportForm />
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
{/* The Main Table */}
|
||||||
|
<TableContainer component={Paper}>
|
||||||
|
<Table aria-label="collapsible table">
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
No
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Name
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Member ID
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Service
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
Start Date
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="left">
|
||||||
|
End Date
|
||||||
|
</TableCell>
|
||||||
|
<TableCell style={headStyle} align="right" width={100}>
|
||||||
|
Status
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableBody>
|
||||||
|
{dataTableIsLoading ? (
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell colSpan={8} align="center">
|
||||||
|
Loading
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableBody>
|
||||||
|
) : dataTableData.data.length === 0 ? (
|
||||||
|
<TableBody>
|
||||||
|
<TableRow>
|
||||||
|
<TableCell colSpan={8} align="center">
|
||||||
|
No Data
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
</TableBody>
|
||||||
|
) : (
|
||||||
|
<TableBody>
|
||||||
|
{dataTableData.data.map((row) => (
|
||||||
|
<Row key={row.id} row={row} />
|
||||||
|
))}
|
||||||
|
</TableBody>
|
||||||
|
)}
|
||||||
|
</Table>
|
||||||
|
</TableContainer>
|
||||||
|
|
||||||
|
<BasePagination paginationData={dataTableData} onPageChange={handlePageChange} />
|
||||||
|
</Card>
|
||||||
|
</Stack>
|
||||||
|
);
|
||||||
|
}
|
||||||
291
frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx
Executable file
291
frontend/client-portal/src/pages/AlarmCenter/ServiceMonitoring.tsx
Executable file
@@ -0,0 +1,291 @@
|
|||||||
|
// mui
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
Box,
|
||||||
|
Tabs,
|
||||||
|
Tab,
|
||||||
|
IconButton,
|
||||||
|
Container,
|
||||||
|
Grid,
|
||||||
|
Card,
|
||||||
|
Stack,
|
||||||
|
Typography,
|
||||||
|
} from '@mui/material';
|
||||||
|
import { styled } from '@mui/material/styles';
|
||||||
|
import { Favorite } from '@mui/icons-material';
|
||||||
|
// components
|
||||||
|
import Page from '../../components/Page';
|
||||||
|
import Iconify from '../../components/Iconify';
|
||||||
|
// utils
|
||||||
|
import useSettings from '../../hooks/useSettings';
|
||||||
|
import { useRef, useState, SyntheticEvent } from 'react';
|
||||||
|
// sections
|
||||||
|
// import ListTable from '../../sections/claimreports/ListTable';
|
||||||
|
// import ClaimStatusCard from '../../sections/claimreports/ClaimStatusCard';
|
||||||
|
|
||||||
|
interface TabPanelProps {
|
||||||
|
children?: React.ReactNode;
|
||||||
|
index: number;
|
||||||
|
value: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
function TabPanel(props: TabPanelProps) {
|
||||||
|
const { children, value, index, ...other } = props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
role="tabpanel"
|
||||||
|
hidden={value !== index}
|
||||||
|
id={`simple-tabpanel-${index}`}
|
||||||
|
aria-labelledby={`simple-tab-${index}`}
|
||||||
|
style={{ backgroundColor: '#F9FAFB' }}
|
||||||
|
{...other}
|
||||||
|
>
|
||||||
|
{value === index && (
|
||||||
|
<Box sx={{ p: 3 }}>
|
||||||
|
<Typography>{children}</Typography>
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function a11yProps(index: number) {
|
||||||
|
return {
|
||||||
|
id: `simple-tab-${index}`,
|
||||||
|
'aria-controls': `simple-tabpanel-${index}`,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
interface StyledTabsProps {
|
||||||
|
children?: React.ReactNode;
|
||||||
|
value: number;
|
||||||
|
onChange: (event: React.SyntheticEvent, newValue: number) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const StyledTabs = styled((props: StyledTabsProps) => <Tabs {...props} />)({
|
||||||
|
'& .MuiTabs-indicator': {
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'center',
|
||||||
|
backgroundColor: 'transparent',
|
||||||
|
},
|
||||||
|
'& .MuiTabs-indicatorSpan': {
|
||||||
|
maxWidth: 40,
|
||||||
|
width: '100%',
|
||||||
|
backgroundColor: '#635ee7',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
interface StyledTabProps {
|
||||||
|
label: string;
|
||||||
|
icon?: string | React.ReactElement;
|
||||||
|
}
|
||||||
|
|
||||||
|
const StyledTab = styled((props: StyledTabProps) => <Tab disableRipple {...props} />)(
|
||||||
|
({ theme }) => ({
|
||||||
|
textTransform: 'none',
|
||||||
|
fontWeight: 500,
|
||||||
|
fontSize: theme.typography.pxToRem(20),
|
||||||
|
color: theme.palette.primary.main,
|
||||||
|
maxWidth: '100%',
|
||||||
|
flex: 1,
|
||||||
|
margin: '0 !important',
|
||||||
|
'&.Mui-selected': {
|
||||||
|
color: '#FFF',
|
||||||
|
backgroundColor: theme.palette.primary.main,
|
||||||
|
},
|
||||||
|
'&:hover': {
|
||||||
|
backgroundColor: theme.palette.primary.dark,
|
||||||
|
color: '#FFF',
|
||||||
|
opacity: 1,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
export default function Drugs() {
|
||||||
|
const { themeStretch } = useSettings();
|
||||||
|
|
||||||
|
const [value, setValue] = useState(0);
|
||||||
|
const handleChange = (event: SyntheticEvent, newValue: number) => {
|
||||||
|
setValue(newValue);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Page title="Service Monitoring 123456">
|
||||||
|
<Container maxWidth={themeStretch ? false : 'xl'}>
|
||||||
|
<Stack direction="row" alignItems="center" sx={{ marginBottom: 2 }}>
|
||||||
|
<IconButton sx={{ marginRight: '10px', color: '#424242' }}>
|
||||||
|
<Iconify icon="heroicons-outline:arrow-narrow-left" />
|
||||||
|
</IconButton>
|
||||||
|
<Typography variant="h5">Service Monitoring</Typography>
|
||||||
|
<Stack
|
||||||
|
direction="row"
|
||||||
|
alignItems="center"
|
||||||
|
sx={{
|
||||||
|
backgroundColor: '#DFE3E8',
|
||||||
|
color: '#212B36',
|
||||||
|
paddingX: 2,
|
||||||
|
paddingY: 1,
|
||||||
|
marginLeft: 3,
|
||||||
|
borderRadius: 1,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Iconify icon="akar-icons:check" sx={{ marginRight: 1 }} />
|
||||||
|
<Typography variant="caption">Done</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
<Grid container spacing={3} sx={{ marginBottom: 5 }}>
|
||||||
|
{/* Item 1 */}
|
||||||
|
<Grid item xs={4} lg={4} md={6}>
|
||||||
|
<Card sx={{ borderRadius: '6px' }}>
|
||||||
|
<Stack>
|
||||||
|
<Stack
|
||||||
|
direction="row"
|
||||||
|
alignItems="center"
|
||||||
|
sx={{ backgroundColor: '#F5F5F5', paddingY: 1, paddingX: 2, color: '#19BBBB' }}
|
||||||
|
>
|
||||||
|
<Iconify icon="bxs:user" width={22} height={18} sx={{ marginRight: '10px' }} />
|
||||||
|
<Typography>Employee Profiles</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack direction="row" spacing={1} sx={{ paddingY: 1, paddingX: 2 }}>
|
||||||
|
<Stack spacing={2}>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Nama perusahaan</Typography>
|
||||||
|
<Typography variant="body2">PT. Amman Mineral</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Nama Lengkap</Typography>
|
||||||
|
<Typography variant="body2">Stephen kuow</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Tanggal lahir</Typography>
|
||||||
|
<Typography variant="body2">09 Aug 1980</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Email</Typography>
|
||||||
|
<Typography variant="body2">Stephen.uow@gmal.com</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">No telepon</Typography>
|
||||||
|
<Typography variant="body2">+62 821-8123-2323</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">ID Karyawan</Typography>
|
||||||
|
<Typography variant="body2">12345678</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</Card>
|
||||||
|
</Grid>
|
||||||
|
{/* Item 2 */}
|
||||||
|
<Grid item xs={4} lg={4} md={6}>
|
||||||
|
<Card sx={{ borderRadius: '6px', height: '100%' }}>
|
||||||
|
<Stack>
|
||||||
|
<Stack
|
||||||
|
direction="row"
|
||||||
|
alignItems="center"
|
||||||
|
sx={{ backgroundColor: '#F5F5F5', paddingY: 1, paddingX: 2, color: '#19BBBB' }}
|
||||||
|
>
|
||||||
|
<Iconify
|
||||||
|
icon="heroicons-solid:clipboard-list"
|
||||||
|
width={22}
|
||||||
|
height={18}
|
||||||
|
sx={{ marginRight: '10px' }}
|
||||||
|
/>
|
||||||
|
<Typography>Diagnose Summary</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack spacing={2} sx={{ paddingY: 1, paddingX: 2 }}>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Gejala</Typography>
|
||||||
|
<Typography variant="body2">Nyeri dada</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Tanda</Typography>
|
||||||
|
<Typography variant="body2">Sesak Napas</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Main Diagnose</Typography>
|
||||||
|
<Typography variant="body2">
|
||||||
|
J46 Status asthmaticus, Acute severe asthma
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Diagnosis pembanding</Typography>
|
||||||
|
<Typography variant="body2">K21 Gastro-oesophageal reflux disease</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</Card>
|
||||||
|
</Grid>
|
||||||
|
{/* Item 3 */}
|
||||||
|
<Grid item xs={4} lg={4} md={6}>
|
||||||
|
<Card sx={{ borderRadius: '6px', height: '100%' }}>
|
||||||
|
<Stack>
|
||||||
|
<Stack
|
||||||
|
direction="row"
|
||||||
|
alignItems="center"
|
||||||
|
sx={{ backgroundColor: '#F5F5F5', paddingY: 1, paddingX: 2, color: '#19BBBB' }}
|
||||||
|
>
|
||||||
|
<Iconify
|
||||||
|
icon="iconoir:healthcare"
|
||||||
|
width={22}
|
||||||
|
height={18}
|
||||||
|
sx={{ marginRight: '10px' }}
|
||||||
|
/>
|
||||||
|
<Typography>Services</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack direction="row" spacing={1} sx={{ paddingY: 1, paddingX: 2 }}>
|
||||||
|
<Stack spacing={2}>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Evakuasi medis</Typography>
|
||||||
|
<Typography variant="body2">Land Transportation</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Rumah sakit</Typography>
|
||||||
|
<Typography variant="body2">Primaya Hospital</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack direction="row" spacing={16}>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Tanggal mulai</Typography>
|
||||||
|
<Typography variant="body2">17 Aug 2022</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Selesai</Typography>
|
||||||
|
<Typography variant="body2">18 Aug 2022</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Daftar layanan</Typography>
|
||||||
|
<Typography variant="body2">
|
||||||
|
Inpatient, Medivac (Medical Evacuation)
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</Card>
|
||||||
|
</Grid>
|
||||||
|
<Grid item sm>
|
||||||
|
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
|
||||||
|
<StyledTabs value={value} onChange={handleChange} aria-label="basic tabs example">
|
||||||
|
<StyledTab icon={<Favorite />} label="Daily Monitoring" {...a11yProps(0)} />
|
||||||
|
<StyledTab
|
||||||
|
icon={<Iconify icon="heroicons-solid:beaker" />}
|
||||||
|
label="Item Two"
|
||||||
|
{...a11yProps(1)}
|
||||||
|
/>
|
||||||
|
</StyledTabs>
|
||||||
|
</Box>
|
||||||
|
<TabPanel value={value} index={0}>
|
||||||
|
Item One
|
||||||
|
</TabPanel>
|
||||||
|
<TabPanel value={value} index={1}>
|
||||||
|
Item Two
|
||||||
|
</TabPanel>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Container>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
}
|
||||||
46
frontend/client-portal/src/pages/ClaimReport/Index.tsx
Executable file
46
frontend/client-portal/src/pages/ClaimReport/Index.tsx
Executable file
@@ -0,0 +1,46 @@
|
|||||||
|
// @mui
|
||||||
|
import { Card, Container, Grid, TableBody, TableCell, TableRow } from '@mui/material';
|
||||||
|
// components
|
||||||
|
import Page from '../../components/Page';
|
||||||
|
// utils
|
||||||
|
import useSettings from '../../hooks/useSettings';
|
||||||
|
// theme
|
||||||
|
import palette from '../../theme/palette';
|
||||||
|
// section
|
||||||
|
import CardClaimStatus from '../../sections/claim-report/CardClaimStatus';
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const listClaimItems = [
|
||||||
|
{ name: 'Requested', value: 15, color: palette.dark.primary.dark },
|
||||||
|
{ name: 'Approval', value: 20, color: palette.dark.warning.dark },
|
||||||
|
{ name: 'Disbrusment', value: 20, color: palette.dark.success.dark },
|
||||||
|
{ name: 'Rejected', value: 20, color: palette.dark.error.dark },
|
||||||
|
];
|
||||||
|
|
||||||
|
const testingData = [
|
||||||
|
{ label: 'Member ID', value: 'member_id' },
|
||||||
|
{ label: 'Name', value: 'name' },
|
||||||
|
{ label: 'Divisi', value: 'division_id' },
|
||||||
|
];
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
export default function Drugs() {
|
||||||
|
const { themeStretch } = useSettings();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Page title="Claim Reports">
|
||||||
|
<Container maxWidth={themeStretch ? false : 'xl'}>
|
||||||
|
<Grid container spacing={2}>
|
||||||
|
<Grid item xs={12} lg={12} md={12}>
|
||||||
|
<CardClaimStatus data={listClaimItems} />
|
||||||
|
</Grid>
|
||||||
|
<Grid item xs={12} lg={12} md={12}>
|
||||||
|
<Card></Card>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Container>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
import * as Yup from 'yup';
|
|
||||||
import { yupResolver } from "@hookform/resolvers/yup";
|
|
||||||
import { Card, Collapse, Divider, Grid, Stack, Typography } from "@mui/material";
|
|
||||||
import { useForm } from "react-hook-form";
|
|
||||||
import { useParams } from "react-router-dom";
|
|
||||||
import HeaderBreadcrumbs from "../../../components/HeaderBreadcrumbs";
|
|
||||||
import { FormProvider, RHFCheckbox, RHFSelect, RHFTextField } from "../../../components/hook-form";
|
|
||||||
import Page from "../../../components/Page";
|
|
||||||
import useSettings from "../../../hooks/useSettings";
|
|
||||||
import { useMemo, useState } from 'react';
|
|
||||||
import Form from "./Form";
|
|
||||||
|
|
||||||
|
|
||||||
export default function Divisions() {
|
|
||||||
const { themeStretch } = useSettings();
|
|
||||||
|
|
||||||
const [isEdit, setIsEdit] = useState(false);
|
|
||||||
|
|
||||||
const [currentFormularium, setCurrentFormularium] = useState({});
|
|
||||||
|
|
||||||
const NewDivisionSchema = Yup.object().shape({
|
|
||||||
name: Yup.string().required('Name is required'),
|
|
||||||
code: Yup.string().required('Corporate Code is required'),
|
|
||||||
active: Yup.boolean().required('Corporate Status is required'),
|
|
||||||
});
|
|
||||||
|
|
||||||
const defaultValues = useMemo(
|
|
||||||
() => ({
|
|
||||||
code: '',
|
|
||||||
}),
|
|
||||||
[]
|
|
||||||
);
|
|
||||||
|
|
||||||
const methods = useForm({
|
|
||||||
resolver: yupResolver(NewDivisionSchema),
|
|
||||||
defaultValues,
|
|
||||||
});
|
|
||||||
|
|
||||||
const {
|
|
||||||
reset,
|
|
||||||
watch,
|
|
||||||
control,
|
|
||||||
setValue,
|
|
||||||
getValues,
|
|
||||||
setError,
|
|
||||||
handleSubmit,
|
|
||||||
formState: { isSubmitting },
|
|
||||||
} = methods;
|
|
||||||
|
|
||||||
const onSubmit = async (data: any) => {
|
|
||||||
console.log(data)
|
|
||||||
};
|
|
||||||
|
|
||||||
const pageTitle = 'Create Formularium';
|
|
||||||
return (
|
|
||||||
<Page title={pageTitle}>
|
|
||||||
|
|
||||||
<HeaderBreadcrumbs
|
|
||||||
heading={pageTitle}
|
|
||||||
links={[
|
|
||||||
{
|
|
||||||
name: 'Master',
|
|
||||||
href: '/master',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Formularium',
|
|
||||||
href: '/master/formularium/',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Create',
|
|
||||||
href: '/master/formularium/create/',
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
|
|
||||||
|
|
||||||
<Grid container spacing={2}>
|
|
||||||
<Grid item xs={12}>
|
|
||||||
<Card sx={{ p: 2 }}>
|
|
||||||
<Form isSubmitting={isSubmitting} isEdit={isEdit} currentFormularium={currentFormularium} />
|
|
||||||
</Card>
|
|
||||||
</Grid>
|
|
||||||
</Grid>
|
|
||||||
</Page>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,239 +0,0 @@
|
|||||||
import * as Yup from 'yup';
|
|
||||||
import { useSnackbar } from 'notistack';
|
|
||||||
import { useNavigate } from 'react-router-dom';
|
|
||||||
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
||||||
// form
|
|
||||||
import { useForm } from 'react-hook-form';
|
|
||||||
import { yupResolver } from '@hookform/resolvers/yup';
|
|
||||||
// @mui
|
|
||||||
import { styled } from '@mui/material/styles';
|
|
||||||
import { LoadingButton } from '@mui/lab';
|
|
||||||
import {
|
|
||||||
Box,
|
|
||||||
Button,
|
|
||||||
ButtonGroup,
|
|
||||||
Card,
|
|
||||||
FormHelperText,
|
|
||||||
Grid,
|
|
||||||
Stack,
|
|
||||||
Typography,
|
|
||||||
} from '@mui/material';
|
|
||||||
|
|
||||||
import CancelIcon from '@mui/icons-material/Cancel';
|
|
||||||
|
|
||||||
// components
|
|
||||||
import {
|
|
||||||
FormProvider,
|
|
||||||
RHFTextField,
|
|
||||||
RHFRadioGroup,
|
|
||||||
RHFUploadAvatar,
|
|
||||||
RHFSwitch,
|
|
||||||
RHFEditor,
|
|
||||||
RHFDatepicker,
|
|
||||||
RHFMultiCheckbox,
|
|
||||||
RHFCheckbox,
|
|
||||||
RHFCustomMultiCheckbox,
|
|
||||||
} from '../../../components/hook-form';
|
|
||||||
import { Corporate } from '../../../@types/corporates';
|
|
||||||
import axios from '../../../utils/axios';
|
|
||||||
import { fCurrency } from '../../../utils/formatNumber';
|
|
||||||
|
|
||||||
const LabelStyle = styled(Typography)(({ theme }) => ({
|
|
||||||
...theme.typography.subtitle2,
|
|
||||||
color: theme.palette.text.secondary,
|
|
||||||
marginBottom: theme.spacing(1),
|
|
||||||
}));
|
|
||||||
|
|
||||||
interface FormValuesProps extends Partial<Corporate> {
|
|
||||||
taxes: boolean;
|
|
||||||
inStock: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
type Props = {
|
|
||||||
isEdit: boolean;
|
|
||||||
currentFormularium?: Corporate;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function FormulariumForm({ isEdit, currentFormularium }: Props) {
|
|
||||||
const navigate = useNavigate();
|
|
||||||
|
|
||||||
// const [ errors, setErrors ] = useState<{ [key: string]: string }>({});
|
|
||||||
|
|
||||||
const { enqueueSnackbar } = useSnackbar();
|
|
||||||
|
|
||||||
const NewCorporateSchema = Yup.object().shape({
|
|
||||||
name: Yup.string().required('Name is required'),
|
|
||||||
// code: Yup.string().required('Corporate Code is required'),
|
|
||||||
// file: Yup.boolean().required('Corporate Status is required'),
|
|
||||||
});
|
|
||||||
|
|
||||||
const defaultValues = useMemo(
|
|
||||||
() => ({
|
|
||||||
code: currentFormularium?.code || '',
|
|
||||||
name: currentFormularium?.name || '',
|
|
||||||
}),
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
||||||
[currentFormularium]
|
|
||||||
);
|
|
||||||
|
|
||||||
const methods = useForm<FormValuesProps>({
|
|
||||||
resolver: yupResolver(NewCorporateSchema),
|
|
||||||
defaultValues,
|
|
||||||
});
|
|
||||||
|
|
||||||
const {
|
|
||||||
reset,
|
|
||||||
watch,
|
|
||||||
control,
|
|
||||||
setValue,
|
|
||||||
getValues,
|
|
||||||
setError,
|
|
||||||
handleSubmit,
|
|
||||||
formState: { isSubmitting },
|
|
||||||
} = methods;
|
|
||||||
|
|
||||||
const values = watch();
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (isEdit && currentFormularium) {
|
|
||||||
reset(defaultValues);
|
|
||||||
}
|
|
||||||
if (!isEdit) {
|
|
||||||
reset(defaultValues);
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
||||||
}, [isEdit, currentFormularium]);
|
|
||||||
|
|
||||||
const onSubmit = async (data: FormValuesProps) => {
|
|
||||||
try {
|
|
||||||
if (!isEdit) {
|
|
||||||
const response = await axios.post('/master/formulariums', data);
|
|
||||||
} else {
|
|
||||||
const response = await axios.put('/master/formulariums/' + currentFormularium?.id ?? '', data);
|
|
||||||
}
|
|
||||||
reset();
|
|
||||||
enqueueSnackbar(!isEdit ? 'Formularium Created Successfully!' : 'Formularium Udpated Successfully!', { variant: 'success' });
|
|
||||||
navigate('/master/formularium');
|
|
||||||
} catch (error: any) {
|
|
||||||
if (error && error.response.status === 422) {
|
|
||||||
for (const [key, value] of Object.entries(error.response.data.errors)) {
|
|
||||||
setError(key, { message: value[0] });
|
|
||||||
enqueueSnackbar(value[0] ?? 'Failed Processing Request', { variant: 'error' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
enqueueSnackbar(error.message ?? 'Failed Processing Request', { variant: 'error' });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const ascent = document?.querySelector("ascent");
|
|
||||||
if (ascent != null) {
|
|
||||||
ascent.innerHTML = "";
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleDrop = useCallback(
|
|
||||||
(acceptedFiles) => {
|
|
||||||
setValue(
|
|
||||||
'logo',
|
|
||||||
acceptedFiles.map((file: Blob | MediaSource) =>
|
|
||||||
Object.assign(file, {
|
|
||||||
preview: URL.createObjectURL(file),
|
|
||||||
})
|
|
||||||
)
|
|
||||||
);
|
|
||||||
},
|
|
||||||
[setValue]
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleRemove = (file: File | string) => {
|
|
||||||
setValue('logo', null);
|
|
||||||
};
|
|
||||||
|
|
||||||
const linking_rules_checkbox_name = "linking_rules"
|
|
||||||
const linking_tools = [
|
|
||||||
{
|
|
||||||
"value" : "nrik",
|
|
||||||
"label" : "No. KTP"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"value" : "nik",
|
|
||||||
"label" : "Nomor Induk Karyawan (NIK)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"value" : "member_id",
|
|
||||||
"label" : "Member ID"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"value" : "phone",
|
|
||||||
"label" : "Nomor Telepon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"value" : "email",
|
|
||||||
"label" : "E-Mail"
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
const importForm = useRef<HTMLInputElement>(null)
|
|
||||||
const [anchorEl, setAnchorEl] = useState<null | HTMLElement>(null);
|
|
||||||
const [currentImportFileName, setCurrentImportFileName] = useState<string|null>(null);
|
|
||||||
|
|
||||||
const handleClose = () => {
|
|
||||||
setAnchorEl(null);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleImportButton = () => {
|
|
||||||
if (importForm?.current) {
|
|
||||||
handleClose();
|
|
||||||
importForm.current ? importForm.current.click() : console.log('No File selected');
|
|
||||||
} else {
|
|
||||||
alert('No file selected')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleCancelImportButton = () => {
|
|
||||||
importForm.current.value = "";
|
|
||||||
importForm.current.dispatchEvent(new Event("change", { bubbles: true }));
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleImportChange = (event: any) => {
|
|
||||||
if (event.target.files[0]) {
|
|
||||||
setCurrentImportFileName(event.target.files[0].name)
|
|
||||||
} else {
|
|
||||||
setCurrentImportFileName(null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
return (
|
|
||||||
|
|
||||||
<FormProvider methods={methods} onSubmit={handleSubmit(onSubmit)}>
|
|
||||||
<Stack spacing={3}>
|
|
||||||
|
|
||||||
<Typography variant="h6">Formularium Detail</Typography>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<RHFTextField name="code" label="Code" />
|
|
||||||
{(!(currentFormularium?.id) && <Typography variant="caption">Will be generated if empty</Typography>)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<RHFTextField name="name" label="Name" />
|
|
||||||
|
|
||||||
<Typography variant="h6">Formularium Drug List Import</Typography>
|
|
||||||
|
|
||||||
<input type='file' id='file' ref={importForm} style={{ display: 'none' }} onChange={handleImportChange} accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel, text/plain" />
|
|
||||||
<ButtonGroup variant="outlined" aria-label="outlined button group" fullWidth>
|
|
||||||
<Button onClick={handleImportButton} fullWidth>{currentImportFileName ?? "No File Selected"}</Button>
|
|
||||||
{(currentImportFileName && <Button onClick={handleCancelImportButton} size="small" fullWidth={false} sx={{ p: 1.8 }}><CancelIcon color="error"/></Button>)}
|
|
||||||
</ButtonGroup>
|
|
||||||
|
|
||||||
<LoadingButton type="submit" variant="contained" size="large" fullWidth={true} loading={isSubmitting}>
|
|
||||||
{!isEdit ? 'Save New Corporate' : 'Save Update'}
|
|
||||||
</LoadingButton>
|
|
||||||
|
|
||||||
</Stack>
|
|
||||||
</FormProvider>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
@@ -1,25 +1,29 @@
|
|||||||
// @mui
|
// @mui
|
||||||
import { Container, Grid, Typography } from '@mui/material';
|
import { Typography, Container, Grid } from '@mui/material';
|
||||||
// hooks
|
// hooks
|
||||||
import useSettings from '../hooks/useSettings';
|
import useSettings from '../../hooks/useSettings';
|
||||||
// components
|
// components
|
||||||
import Page from '../components/Page';
|
import Page from '../../components/Page';
|
||||||
import Popup from '../components/Popup';
|
// Table
|
||||||
// import axios from '../utils/axios';
|
import List from './List';
|
||||||
// DashboardComponent
|
// theme
|
||||||
import BalanceCard from '../sections/dashboard/BalanceCard';
|
import CardNotification from '../../sections/dashboard/CardNotification';
|
||||||
import NotificationCard from '../sections/dashboard/NotificationCard';
|
import CardBalance from '../../sections/dashboard/CardBalance';
|
||||||
import DashboardTable from '../sections/dashboard/DashboardTable';
|
|
||||||
// React
|
// ----------------------------------------------------------------------
|
||||||
import { useState } from 'react';
|
|
||||||
|
const itemList = [
|
||||||
|
{ info: 'Mohon lengkapi dokumen Mahen sadarsa', date: 'Selasa, 20 April 22', time: '08:00 WIB' },
|
||||||
|
{ info: 'Mohon lengkapi dokumen Mahen sadarsa', date: 'Selasa, 20 April 22', time: '09:00 WIB' },
|
||||||
|
{ info: 'Mohon lengkapi dokumen Mahen sadarsa', date: 'Selasa, 20 April 22', time: '10:00 WIB' },
|
||||||
|
{ info: 'Mohon lengkapi dokumen Mahen sadarsa', date: 'Selasa, 20 April 22', time: '11:00 WIB' },
|
||||||
|
];
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
export default function Dashboard() {
|
export default function Dashboard() {
|
||||||
const { themeStretch } = useSettings();
|
const { themeStretch } = useSettings();
|
||||||
const [openPopup, setOpenPopup] = useState(false);
|
|
||||||
|
|
||||||
// const { logout } = useAuth();
|
|
||||||
// const [corporate, setCorporate] = useState({});
|
// const [corporate, setCorporate] = useState({});
|
||||||
|
|
||||||
// const loadSomething = () => {
|
// const loadSomething = () => {
|
||||||
@@ -46,18 +50,18 @@ export default function Dashboard() {
|
|||||||
|
|
||||||
<Grid container spacing={2}>
|
<Grid container spacing={2}>
|
||||||
<Grid item xs={6} lg={6} md={12}>
|
<Grid item xs={6} lg={6} md={12}>
|
||||||
<NotificationCard />
|
<CardNotification data={itemList} />
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={6} lg={6} md={12}>
|
<Grid item xs={6} lg={6} md={12}>
|
||||||
<BalanceCard setOpenPopup={setOpenPopup} />
|
<CardBalance />
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={12} lg={12} md={12}>
|
<Grid item xs={12} lg={12} md={12}>
|
||||||
<DashboardTable />
|
{/* <List /> */}
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Container>
|
</Container>
|
||||||
|
|
||||||
<Popup openPopup={openPopup} setOpenPopup={setOpenPopup} />
|
{/* <DialogDetailClaim /> */}
|
||||||
</Page>
|
</Page>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
// @mui
|
|
||||||
import { Button, Container, Typography } from '@mui/material';
|
|
||||||
// hooks
|
|
||||||
import useSettings from '../../hooks/useSettings';
|
|
||||||
// components
|
|
||||||
import Page from '../../components/Page';
|
|
||||||
import axios from '../../utils/axios';
|
|
||||||
import useAuth from '../../hooks/useAuth';
|
|
||||||
import { Link } from 'react-router-dom';
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
export default function PageOne() {
|
|
||||||
const { themeStretch } = useSettings();
|
|
||||||
|
|
||||||
const { logout } = useAuth();
|
|
||||||
|
|
||||||
const loadSomething = () => {
|
|
||||||
console.log('Loading Something')
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Page title="Create Obat">
|
|
||||||
<Container maxWidth={themeStretch ? false : 'xl'}>
|
|
||||||
<Typography variant="h3" component="h1" paragraph>
|
|
||||||
Create Obat
|
|
||||||
</Typography>
|
|
||||||
<Typography>qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq</Typography>
|
|
||||||
</Container>
|
|
||||||
</Page>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,9 +1,6 @@
|
|||||||
import { capitalCase } from 'change-case';
|
|
||||||
// @mui
|
// @mui
|
||||||
import { styled } from '@mui/material/styles';
|
import { styled } from '@mui/material/styles';
|
||||||
import { Box, Card, Divider, Grid, Link, Stack, Tooltip, Typography } from '@mui/material';
|
import { Box, Card, Divider, Grid, Link, Stack, Typography } from '@mui/material';
|
||||||
// hooks
|
|
||||||
import useAuth from '../../hooks/useAuth';
|
|
||||||
// components
|
// components
|
||||||
import Page from '../../components/Page';
|
import Page from '../../components/Page';
|
||||||
import Image from '../../components/Image';
|
import Image from '../../components/Image';
|
||||||
@@ -36,10 +33,8 @@ const ContentStyle = styled(Card)(({ theme }) => ({
|
|||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
export default function Login() {
|
export default function Login() {
|
||||||
const { method } = useAuth();
|
const { state } = useLocation();
|
||||||
const location = useLocation();
|
|
||||||
const [formPhone, setFormPhone] = useState(false);
|
const [formPhone, setFormPhone] = useState(false);
|
||||||
// const { setForm } = location.state;
|
|
||||||
|
|
||||||
const handlerChange = (event: any, setForm: boolean) => {
|
const handlerChange = (event: any, setForm: boolean) => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
@@ -47,9 +42,11 @@ export default function Login() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
console.log('setForm');
|
if (state !== null) {
|
||||||
// setFormPhone(setForm ? setForm : true);
|
setFormPhone(state.formPhone);
|
||||||
}, []);
|
}
|
||||||
|
console.log(state);
|
||||||
|
}, [state]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page title="Login">
|
<Page title="Login">
|
||||||
@@ -61,10 +58,7 @@ export default function Login() {
|
|||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={6} sx={{ padding: 3 }}>
|
<Grid item xs={6} sx={{ padding: 3 }}>
|
||||||
<Stack direction="row" alignItems="center" sx={{ mb: 5 }}>
|
<Stack direction="row" alignItems="center" sx={{ mb: 5 }}>
|
||||||
<Tooltip title={capitalCase(method)} placement="left">
|
<Logo sx={{ width: 90, height: 90 }} />
|
||||||
<Logo sx={{ width: 90, height: 90 }} />
|
|
||||||
</Tooltip>
|
|
||||||
|
|
||||||
<Box sx={{ flexGrow: 1 }}>
|
<Box sx={{ flexGrow: 1 }}>
|
||||||
<Typography variant="h4" gutterBottom>
|
<Typography variant="h4" gutterBottom>
|
||||||
Sign in to LinkSehat
|
Sign in to LinkSehat
|
||||||
@@ -75,29 +69,31 @@ export default function Login() {
|
|||||||
</Box>
|
</Box>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|
||||||
{formPhone === false ? <LoginEmailForm /> : <LoginPhoneForm />}
|
{formPhone ? (
|
||||||
|
<LoginPhoneForm formPhone={formPhone} />
|
||||||
|
) : (
|
||||||
|
<LoginEmailForm formPhone={formPhone} />
|
||||||
|
)}
|
||||||
|
|
||||||
<Divider sx={{ marginTop: 5 }}>Atau</Divider>
|
<Divider sx={{ marginTop: 5 }}>Atau</Divider>
|
||||||
|
|
||||||
<Stack sx={{ marginTop: 5 }}>
|
<Stack sx={{ marginTop: 5 }}>
|
||||||
{formPhone === false ? (
|
{formPhone ? (
|
||||||
<Link
|
<Link
|
||||||
href=""
|
|
||||||
align="center"
|
|
||||||
underline="hover"
|
|
||||||
onClick={(event) => handlerChange(event, true)}
|
|
||||||
>
|
|
||||||
Masuk menggunakan nomor handphone
|
|
||||||
</Link>
|
|
||||||
) : (
|
|
||||||
<Link
|
|
||||||
href=""
|
|
||||||
align="center"
|
align="center"
|
||||||
underline="hover"
|
underline="hover"
|
||||||
onClick={(event) => handlerChange(event, false)}
|
onClick={(event) => handlerChange(event, false)}
|
||||||
>
|
>
|
||||||
Masuk menggunakan email
|
Masuk menggunakan email
|
||||||
</Link>
|
</Link>
|
||||||
|
) : (
|
||||||
|
<Link
|
||||||
|
align="center"
|
||||||
|
underline="hover"
|
||||||
|
onClick={(event) => handlerChange(event, true)}
|
||||||
|
>
|
||||||
|
Masuk menggunakan nomor handphone
|
||||||
|
</Link>
|
||||||
)}
|
)}
|
||||||
</Stack>
|
</Stack>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|||||||
@@ -38,25 +38,17 @@ export default function Router() {
|
|||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'otp-validation',
|
path: 'verify-code',
|
||||||
element: (
|
element: (
|
||||||
<AuthProvider>
|
<AuthProvider>
|
||||||
<GuestGuard>
|
<GuestGuard>
|
||||||
<OtpValidation />
|
<VerifyCode />
|
||||||
</GuestGuard>
|
</GuestGuard>
|
||||||
</AuthProvider>
|
</AuthProvider>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
// { path: 'login-unprotected', element: <Login /> },
|
|
||||||
// { path: 'register-unprotected', element: <Register /> },
|
|
||||||
// { path: 'reset-password', element: <ResetPassword /> },
|
|
||||||
// { path: 'verify', element: <VerifyCode /> },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// path: '/',
|
|
||||||
// element: <Navigate to="/dashboard/one" replace />,
|
|
||||||
// },
|
|
||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
element: (
|
element: (
|
||||||
@@ -72,33 +64,44 @@ export default function Router() {
|
|||||||
path: 'dashboard',
|
path: 'dashboard',
|
||||||
element: <Dashboard />,
|
element: <Dashboard />,
|
||||||
},
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/alarm-center',
|
||||||
|
element: (
|
||||||
|
<AuthProvider>
|
||||||
|
<AuthGuard>
|
||||||
|
<DashboardLayout />
|
||||||
|
</AuthGuard>
|
||||||
|
</AuthProvider>
|
||||||
|
),
|
||||||
|
children: [
|
||||||
{
|
{
|
||||||
path: 'claim-reports',
|
element: <AlarmCenter />,
|
||||||
element: <ClaimReports />,
|
index: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'service-monitoring/:id',
|
||||||
|
element: <AlarmCenterServiceMonitoring />,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/claim-report',
|
||||||
|
element: (
|
||||||
|
<AuthProvider>
|
||||||
|
<AuthGuard>
|
||||||
|
<DashboardLayout />
|
||||||
|
</AuthGuard>
|
||||||
|
</AuthProvider>
|
||||||
|
),
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
element: <ClaimReport />,
|
||||||
|
index: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// path: '/dashboard',
|
|
||||||
// element: <DashboardLayout />,
|
|
||||||
// children: [
|
|
||||||
// { element: <Navigate to="/dashboard/one" replace />, index: true },
|
|
||||||
// { path: 'one', element:
|
|
||||||
// <AuthProvider><PageOne /></AuthProvider> },
|
|
||||||
// { path: 'two', element:
|
|
||||||
// <AuthProvider><PageTwo /></AuthProvider> },
|
|
||||||
// { path: 'three', element:
|
|
||||||
// <AuthProvider><PageThree /></AuthProvider> },
|
|
||||||
// {
|
|
||||||
// path: 'user',
|
|
||||||
// children: [
|
|
||||||
// { element: <Navigate to="/dashboard/user/four" replace />, index: true },
|
|
||||||
// { path: 'four', element: <AuthProvider><PageFour /></AuthProvider> },
|
|
||||||
// { path: 'six', element: <AuthProvider><PageSix /> </AuthProvider> },
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
{
|
{
|
||||||
path: '*',
|
path: '*',
|
||||||
element: <LogoOnlyLayout />,
|
element: <LogoOnlyLayout />,
|
||||||
@@ -111,12 +114,19 @@ export default function Router() {
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Auth
|
||||||
const Login = Loadable(lazy(() => import('../pages/auth/Login')));
|
const Login = Loadable(lazy(() => import('../pages/auth/Login')));
|
||||||
const OtpValidation = Loadable(lazy(() => import('../pages/auth/OtpValidation')));
|
const VerifyCode = Loadable(lazy(() => import('../pages/auth/VerifyCode')));
|
||||||
|
|
||||||
// Dashboard
|
// Dashboard
|
||||||
const Dashboard = Loadable(lazy(() => import('../pages/Dashboard')));
|
const Dashboard = Loadable(lazy(() => import('../pages/Dashboard/Dashboard')));
|
||||||
const NotFound = Loadable(lazy(() => import('../pages/Page404')));
|
const NotFound = Loadable(lazy(() => import('../pages/Page404')));
|
||||||
|
|
||||||
// Claim Reports
|
// Alarm Center
|
||||||
const ClaimReports = Loadable(lazy(() => import('../pages/ClaimReports/Index')));
|
const AlarmCenter = Loadable(lazy(() => import('../pages/AlarmCenter/Index')));
|
||||||
|
const AlarmCenterServiceMonitoring = Loadable(
|
||||||
|
lazy(() => import('../pages/AlarmCenter/ServiceMonitoring'))
|
||||||
|
);
|
||||||
|
|
||||||
|
// Claim Report
|
||||||
|
const ClaimReport = Loadable(lazy(() => import('../pages/ClaimReport/Index')));
|
||||||
|
|||||||
@@ -16,9 +16,16 @@ import { FormProvider, RHFTextField } from '../../../components/hook-form';
|
|||||||
|
|
||||||
type FormValuesProps = {
|
type FormValuesProps = {
|
||||||
email: string;
|
email: string;
|
||||||
|
afterSubmit?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function LoginForm() {
|
interface Props {
|
||||||
|
formPhone: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
export default function LoginForm({ formPhone }: Props) {
|
||||||
const { login } = useAuth();
|
const { login } = useAuth();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
@@ -28,8 +35,13 @@ export default function LoginForm() {
|
|||||||
email: Yup.string().email('Email must be a valid email address').required('Email is required'),
|
email: Yup.string().email('Email must be a valid email address').required('Email is required'),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const defaultValues = {
|
||||||
|
email: '',
|
||||||
|
};
|
||||||
|
|
||||||
const methods = useForm<FormValuesProps>({
|
const methods = useForm<FormValuesProps>({
|
||||||
resolver: yupResolver(LoginSchema),
|
resolver: yupResolver(LoginSchema),
|
||||||
|
defaultValues,
|
||||||
});
|
});
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -43,10 +55,8 @@ export default function LoginForm() {
|
|||||||
try {
|
try {
|
||||||
await login(data.email);
|
await login(data.email);
|
||||||
|
|
||||||
navigate('/dashboard');
|
navigate('/auth/verify-code', { state: { phoneOrEmail: data.email, formPhone } });
|
||||||
} catch (error) {
|
} catch (error: any) {
|
||||||
console.error(error);
|
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
|
|
||||||
if (isMountedRef.current) {
|
if (isMountedRef.current) {
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
import * as Yup from 'yup';
|
import * as Yup from 'yup';
|
||||||
import { useState } from 'react';
|
|
||||||
import { useNavigate } from 'react-router-dom';
|
import { useNavigate } from 'react-router-dom';
|
||||||
import axios from '../../../utils/axios';
|
|
||||||
// form
|
// form
|
||||||
import { useForm } from 'react-hook-form';
|
import { useForm } from 'react-hook-form';
|
||||||
import { yupResolver } from '@hookform/resolvers/yup';
|
import { yupResolver } from '@hookform/resolvers/yup';
|
||||||
@@ -10,6 +8,7 @@ import { Stack, Alert, InputAdornment } from '@mui/material';
|
|||||||
import { LoadingButton } from '@mui/lab';
|
import { LoadingButton } from '@mui/lab';
|
||||||
// components
|
// components
|
||||||
import { FormProvider, RHFTextField } from '../../../components/hook-form';
|
import { FormProvider, RHFTextField } from '../../../components/hook-form';
|
||||||
|
import useAuth from '../../../hooks/useAuth';
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -18,7 +17,12 @@ type FormValuesProps = {
|
|||||||
afterSubmit?: string;
|
afterSubmit?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function LoginPhoneForm() {
|
interface Props {
|
||||||
|
formPhone: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function LoginPhoneForm({ formPhone }: Props) {
|
||||||
|
const { login } = useAuth();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const LoginSchema = Yup.object().shape({
|
const LoginSchema = Yup.object().shape({
|
||||||
@@ -43,8 +47,8 @@ export default function LoginPhoneForm() {
|
|||||||
|
|
||||||
const onSubmit = async (data: FormValuesProps) => {
|
const onSubmit = async (data: FormValuesProps) => {
|
||||||
try {
|
try {
|
||||||
await axios.post('/otp-request', { phone_or_email: 0 + data.phone });
|
await login(0 + data.phone);
|
||||||
navigate('/auth/otp-validation', { state: { phone_or_email: 0 + data.phone } });
|
navigate('/auth/verify-code', { state: { phoneOrEmail: 0 + data.phone, formPhone } });
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
reset();
|
reset();
|
||||||
setError('afterSubmit', { ...error, message: error.response.data.message });
|
setError('afterSubmit', { ...error, message: error.response.data.message });
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import { useForm, Controller } from 'react-hook-form';
|
|||||||
import { yupResolver } from '@hookform/resolvers/yup';
|
import { yupResolver } from '@hookform/resolvers/yup';
|
||||||
// @mui
|
// @mui
|
||||||
import { OutlinedInput, Stack } from '@mui/material';
|
import { OutlinedInput, Stack } from '@mui/material';
|
||||||
|
import useAuth from '../../../hooks/useAuth';
|
||||||
// routes
|
// routes
|
||||||
// import { PATH_DASHBOARD } from '../../../routes/paths';
|
// import { PATH_DASHBOARD } from '../../../routes/paths';
|
||||||
|
|
||||||
@@ -19,13 +20,17 @@ type FormValuesProps = {
|
|||||||
code4: string;
|
code4: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
phoneOrEmail: string;
|
||||||
|
};
|
||||||
|
|
||||||
type ValueNames = 'code1' | 'code2' | 'code3' | 'code4';
|
type ValueNames = 'code1' | 'code2' | 'code3' | 'code4';
|
||||||
|
|
||||||
export default function VerifyCodeForm() {
|
export default function VerifyCodeForm({ phoneOrEmail }: Props) {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
const { validateOtp } = useAuth();
|
||||||
const { enqueueSnackbar } = useSnackbar();
|
const { enqueueSnackbar } = useSnackbar();
|
||||||
|
|
||||||
const { phone_or_email } = location.state;
|
const { phone_or_email } = location.state;
|
||||||
|
|
||||||
const VerifyCodeSchema = Yup.object().shape({
|
const VerifyCodeSchema = Yup.object().shape({
|
||||||
@@ -64,12 +69,10 @@ export default function VerifyCodeForm() {
|
|||||||
|
|
||||||
const onSubmit = async (data: FormValuesProps) => {
|
const onSubmit = async (data: FormValuesProps) => {
|
||||||
try {
|
try {
|
||||||
await new Promise((resolve) => setTimeout(resolve, 500));
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
||||||
console.log('code:', Object.values(data).join(''));
|
await validateOtp(phoneOrEmail, Object.values(data).join(''));
|
||||||
|
navigate('/dashboard');
|
||||||
enqueueSnackbar('Verify success!');
|
enqueueSnackbar('Verify success!', { variant: 'success' });
|
||||||
|
|
||||||
// navigate('/dashboard', { replace: true });
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
@@ -111,7 +114,7 @@ export default function VerifyCodeForm() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<form onChange={handleSubmit(onSubmit)}>
|
<form onChange={handleSubmit(onSubmit)}>
|
||||||
<Stack direction="row" spacing={2} justifyContent="center">
|
<Stack direction="row" spacing={2} justifyContent="space-evenly">
|
||||||
{Object.keys(values).map((name, index) => (
|
{Object.keys(values).map((name, index) => (
|
||||||
<Controller
|
<Controller
|
||||||
key={name}
|
key={name}
|
||||||
@@ -122,7 +125,7 @@ export default function VerifyCodeForm() {
|
|||||||
{...field}
|
{...field}
|
||||||
id="field-code"
|
id="field-code"
|
||||||
autoFocus={index === 0}
|
autoFocus={index === 0}
|
||||||
placeholder="-"
|
placeholder=""
|
||||||
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
||||||
handleChangeWithNextField(event, field.onChange)
|
handleChangeWithNextField(event, field.onChange)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,102 @@
|
|||||||
|
// @mui
|
||||||
|
import { Grid, Card, Typography, Stack } from '@mui/material';
|
||||||
|
import { styled } from '@mui/material/styles';
|
||||||
|
// theme
|
||||||
|
import palette from '../../theme/palette';
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
interface ClaimStatusType {
|
||||||
|
name: string;
|
||||||
|
value: number;
|
||||||
|
color: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface PropsCardClaimStatus {
|
||||||
|
data?: ClaimStatusType[];
|
||||||
|
}
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const RootStyle = styled(Card)(({ theme }) => ({
|
||||||
|
boxShadow: 'none',
|
||||||
|
padding: theme.spacing(2),
|
||||||
|
color: 'black',
|
||||||
|
backgroundColor: theme.palette.grey[200],
|
||||||
|
}));
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const defaultData = [
|
||||||
|
{ name: 'Requested', value: 0, color: palette.dark.primary.dark },
|
||||||
|
{ name: 'Approval', value: 0, color: palette.dark.warning.dark },
|
||||||
|
{ name: 'Disbrusment', value: 0, color: palette.dark.success.dark },
|
||||||
|
{ name: 'Rejected', value: 0, color: palette.dark.error.dark },
|
||||||
|
];
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
export default function CardClaimStatus({ data }: PropsCardClaimStatus) {
|
||||||
|
return (
|
||||||
|
<RootStyle>
|
||||||
|
<Stack sx={{ mb: 1 }}>
|
||||||
|
<Typography variant="body2">Claim Status</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Grid container spacing={2}>
|
||||||
|
{data
|
||||||
|
? data.map(({ name, value, color }: ClaimStatusType, key) => (
|
||||||
|
<Grid item key={key} xs={6} sm={3}>
|
||||||
|
<Card
|
||||||
|
sx={{
|
||||||
|
paddingX: 1,
|
||||||
|
borderRadius: 0.75,
|
||||||
|
borderColor: color,
|
||||||
|
borderStyle: 'solid',
|
||||||
|
borderWidth: '1px',
|
||||||
|
padding: 2,
|
||||||
|
flex: 1,
|
||||||
|
textAlign: 'center',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography component="p" variant="body2">
|
||||||
|
{name}
|
||||||
|
</Typography>
|
||||||
|
<Typography component="p" variant="h5" sx={{ marginTop: 2 }}>
|
||||||
|
{value}
|
||||||
|
</Typography>
|
||||||
|
<Typography component="p" variant="body2" sx={{ marginTop: 2 }}>
|
||||||
|
Cases
|
||||||
|
</Typography>
|
||||||
|
</Card>
|
||||||
|
</Grid>
|
||||||
|
))
|
||||||
|
: defaultData.map(({ name, value, color }: ClaimStatusType, key) => (
|
||||||
|
<Grid item key={key} xs={6} sm={3}>
|
||||||
|
<Card
|
||||||
|
sx={{
|
||||||
|
paddingX: 1,
|
||||||
|
borderRadius: 0.75,
|
||||||
|
borderColor: color,
|
||||||
|
borderStyle: 'solid',
|
||||||
|
borderWidth: '1px',
|
||||||
|
padding: 2,
|
||||||
|
flex: 1,
|
||||||
|
textAlign: 'center',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography component="p" variant="body2">
|
||||||
|
{name}
|
||||||
|
</Typography>
|
||||||
|
<Typography component="p" variant="h5" sx={{ marginTop: 2 }}>
|
||||||
|
{value}
|
||||||
|
</Typography>
|
||||||
|
<Typography component="p" variant="body2" sx={{ marginTop: 2 }}>
|
||||||
|
Cases
|
||||||
|
</Typography>
|
||||||
|
</Card>
|
||||||
|
</Grid>
|
||||||
|
))}
|
||||||
|
</Grid>
|
||||||
|
</RootStyle>
|
||||||
|
);
|
||||||
|
}
|
||||||
161
frontend/client-portal/src/sections/dashboard/CardBalance.tsx
Normal file
161
frontend/client-portal/src/sections/dashboard/CardBalance.tsx
Normal file
@@ -0,0 +1,161 @@
|
|||||||
|
// @mui
|
||||||
|
import { styled } from '@mui/material/styles';
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
Card,
|
||||||
|
Typography,
|
||||||
|
LinearProgress,
|
||||||
|
linearProgressClasses,
|
||||||
|
Stack,
|
||||||
|
} from '@mui/material';
|
||||||
|
// components
|
||||||
|
import Iconify from '../../components/Iconify';
|
||||||
|
// React
|
||||||
|
import { useState } from 'react';
|
||||||
|
// utils
|
||||||
|
import { fCurrency } from '../../utils/formatNumber';
|
||||||
|
// <sections></sections>
|
||||||
|
import DialogTopUpLimit from './DialogTopUpLimit';
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
type DataContent = {
|
||||||
|
info: string;
|
||||||
|
date: string;
|
||||||
|
time: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type NotificationProps = {
|
||||||
|
data?: DataContent[];
|
||||||
|
};
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const RootBalanceStyle = styled(Card)(({ theme }) => ({
|
||||||
|
boxShadow: 'none',
|
||||||
|
padding: theme.spacing(3),
|
||||||
|
color: 'black',
|
||||||
|
backgroundColor: theme.palette.grey[200],
|
||||||
|
maxHeight: '240px',
|
||||||
|
}));
|
||||||
|
|
||||||
|
const BorderLinearProgress = styled(LinearProgress)(({ theme }) => ({
|
||||||
|
height: 10,
|
||||||
|
borderRadius: 6,
|
||||||
|
[`&.${linearProgressClasses.colorPrimary}`]: {
|
||||||
|
backgroundColor: theme.palette.grey[theme.palette.mode === 'light' ? 300 : 800],
|
||||||
|
},
|
||||||
|
[`& .${linearProgressClasses.bar}`]: {
|
||||||
|
borderRadius: 6,
|
||||||
|
backgroundColor: theme.palette.primary.main,
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const INITIAL = '500.000.000';
|
||||||
|
const TOTAL = 375000000;
|
||||||
|
const PERCENT = 75;
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
export default function CardBalance({ data }: NotificationProps) {
|
||||||
|
const [openDialog, setOpenDialog] = useState(false);
|
||||||
|
const [dialogTitle, setDialogTitle] = useState('');
|
||||||
|
const [isDialog, setIsDialog] = useState('');
|
||||||
|
|
||||||
|
const clickHandler = (isDialog: string) => {
|
||||||
|
switch (isDialog) {
|
||||||
|
case 'submitClaim':
|
||||||
|
setDialogTitle('Notification');
|
||||||
|
setIsDialog(isDialog);
|
||||||
|
setOpenDialog(true);
|
||||||
|
break;
|
||||||
|
case 'topUpLimit':
|
||||||
|
setDialogTitle('Top Up Limit');
|
||||||
|
setIsDialog(isDialog);
|
||||||
|
setOpenDialog(true);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<RootBalanceStyle>
|
||||||
|
<>
|
||||||
|
<Stack direction="row" justifyContent="space-between" sx={{ mb: 1 }}>
|
||||||
|
<div>
|
||||||
|
<Typography variant="body2" component="span" sx={{ opacity: 0.72 }}>
|
||||||
|
Total Limit
|
||||||
|
</Typography>
|
||||||
|
<Typography sx={{ typography: 'body2' }}>{fCurrency(TOTAL)}</Typography>
|
||||||
|
<Typography sx={{ typography: 'caption', color: '#919EAB' }}>/ {INITIAL}</Typography>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Stack direction="row" alignItems="center" justifyContent="center">
|
||||||
|
<Typography variant="h5" sx={{ ml: 0.5 }}>
|
||||||
|
{PERCENT}%
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
|
||||||
|
<BorderLinearProgress variant="determinate" value={PERCENT} sx={{ mb: 1 }} />
|
||||||
|
|
||||||
|
<Stack sx={{ backgroundColor: '#B2E8E8', paddingY: 1, paddingX: 1.5, mb: 2 }}>
|
||||||
|
<Typography sx={{ typography: 'caption', display: 'flex', alignItems: 'center' }}>
|
||||||
|
<Iconify
|
||||||
|
icon="bxs:lock-alt"
|
||||||
|
width={12}
|
||||||
|
height={13}
|
||||||
|
sx={{ color: '#424242', marginRight: '6px' }}
|
||||||
|
/>
|
||||||
|
<Typography variant="caption" component="span">
|
||||||
|
Lock Fund ( 25% )
|
||||||
|
</Typography>
|
||||||
|
</Typography>
|
||||||
|
<Typography sx={{ typography: 'caption', color: '#637381' }}>
|
||||||
|
125.000.000 / 125.000.000
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
|
||||||
|
<Stack direction="row" spacing={2}>
|
||||||
|
<Button
|
||||||
|
variant="outlined"
|
||||||
|
startIcon={<Iconify icon="bi:clipboard-check-fill" />}
|
||||||
|
fullWidth={true}
|
||||||
|
onClick={() => clickHandler('submitClaim')}
|
||||||
|
>
|
||||||
|
Submit Claim
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
startIcon={<Iconify icon="heroicons-solid:cash" />}
|
||||||
|
fullWidth={true}
|
||||||
|
onClick={() => clickHandler('topUpLimit')}
|
||||||
|
>
|
||||||
|
Top Up
|
||||||
|
</Button>
|
||||||
|
</Stack>
|
||||||
|
</>
|
||||||
|
|
||||||
|
{/* {isDialog === 'submitClaim' && (
|
||||||
|
<DialogNotification
|
||||||
|
openDialog={openDialog}
|
||||||
|
setOpenDialog={setOpenDialog}
|
||||||
|
title={dialogTitle}
|
||||||
|
data={data}
|
||||||
|
/>
|
||||||
|
)} */}
|
||||||
|
|
||||||
|
{isDialog === 'topUpLimit' && (
|
||||||
|
<DialogTopUpLimit
|
||||||
|
openDialog={openDialog}
|
||||||
|
setOpenDialog={setOpenDialog}
|
||||||
|
title={{ name: dialogTitle, icon: 'heroicons-solid:cash' }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</RootBalanceStyle>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,143 @@
|
|||||||
|
// @mui
|
||||||
|
import { styled } from '@mui/material/styles';
|
||||||
|
import { Button, Card, Typography, Link, Divider, Stack } from '@mui/material';
|
||||||
|
import { ChevronRight } from '@mui/icons-material';
|
||||||
|
// components
|
||||||
|
import Iconify from '../../components/Iconify';
|
||||||
|
// Section
|
||||||
|
import DialogNotification from './DialogNotification';
|
||||||
|
import DialogDetailClaim from './DialogDetailClaim';
|
||||||
|
// React
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
type DataContent = {
|
||||||
|
info: string;
|
||||||
|
date: string;
|
||||||
|
time: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type NotificationProps = {
|
||||||
|
data?: DataContent[];
|
||||||
|
};
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const RootNotificationStyle = styled(Card)(({ theme }) => ({
|
||||||
|
boxShadow: 'none',
|
||||||
|
padding: '1rem 0.5rem',
|
||||||
|
color: 'black',
|
||||||
|
backgroundColor: theme.palette.grey[200],
|
||||||
|
maxHeight: '240px',
|
||||||
|
}));
|
||||||
|
|
||||||
|
const ItemNotificationStyle = styled(Card)(({ theme }) => ({
|
||||||
|
boxShadow: 'none',
|
||||||
|
padding: theme.spacing(1),
|
||||||
|
borderRadius: 0.5,
|
||||||
|
color: 'black',
|
||||||
|
}));
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
export default function CardNotification({ data }: NotificationProps) {
|
||||||
|
const [openDialog, setOpenDialog] = useState(false);
|
||||||
|
const [dialogTitle, setDialogTitle] = useState('');
|
||||||
|
const [isDialog, setIsDialog] = useState('');
|
||||||
|
|
||||||
|
const clickHandler = (isDialog: string) => {
|
||||||
|
switch (isDialog) {
|
||||||
|
case 'allNotification':
|
||||||
|
setDialogTitle('Notification');
|
||||||
|
setIsDialog(isDialog);
|
||||||
|
setOpenDialog(true);
|
||||||
|
break;
|
||||||
|
case 'infoDetail':
|
||||||
|
setDialogTitle('Claim Details');
|
||||||
|
setIsDialog(isDialog);
|
||||||
|
setOpenDialog(true);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<RootNotificationStyle>
|
||||||
|
<Stack direction="row" justifyContent="space-between" alignItems="center">
|
||||||
|
<Typography>
|
||||||
|
<Typography
|
||||||
|
variant="body2"
|
||||||
|
component="span"
|
||||||
|
sx={{ display: 'flex', alignItems: 'center' }}
|
||||||
|
>
|
||||||
|
<Iconify icon="eva:bell-fill" marginRight={0.75} />
|
||||||
|
Notification
|
||||||
|
<span
|
||||||
|
style={{
|
||||||
|
width: '12px',
|
||||||
|
height: '12px',
|
||||||
|
backgroundColor: '#19BBBB',
|
||||||
|
marginLeft: '0.5rem',
|
||||||
|
borderRadius: '50%',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Typography>
|
||||||
|
</Typography>
|
||||||
|
<Button
|
||||||
|
sx={{ typography: 'body2' }}
|
||||||
|
endIcon={<ChevronRight />}
|
||||||
|
onClick={() => clickHandler('allNotification')}
|
||||||
|
>
|
||||||
|
View All
|
||||||
|
</Button>
|
||||||
|
</Stack>
|
||||||
|
|
||||||
|
<ItemNotificationStyle sx={{ marginTop: 2, overflowY: 'auto', maxHeight: '154px' }}>
|
||||||
|
{data
|
||||||
|
? data.map(({ info, date, time }, key) => (
|
||||||
|
<div key={key}>
|
||||||
|
{key >= 1 ? <Divider sx={{ marginY: 0.5 }} /> : ''}
|
||||||
|
<Stack direction="row" justifyContent="space-between" alignItems="center">
|
||||||
|
<Stack direction="column" justifyContent="flex-start" alignItems="flex-start">
|
||||||
|
<Typography sx={{ typography: 'caption' }}>{info}</Typography>
|
||||||
|
<Link
|
||||||
|
component="button"
|
||||||
|
variant="caption"
|
||||||
|
underline="always"
|
||||||
|
onClick={() => clickHandler('infoDetail')}
|
||||||
|
>
|
||||||
|
Info Detail
|
||||||
|
</Link>
|
||||||
|
</Stack>
|
||||||
|
<Stack direction="column" justifyContent="flex-start" alignItems="flex-start">
|
||||||
|
<Typography sx={{ typography: 'caption', color: '#656565' }}>{date}</Typography>
|
||||||
|
<Typography sx={{ typography: 'caption', color: '#656565' }}>{time}</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</div>
|
||||||
|
))
|
||||||
|
: ''}
|
||||||
|
</ItemNotificationStyle>
|
||||||
|
|
||||||
|
{isDialog === 'allNotification' && (
|
||||||
|
<DialogNotification
|
||||||
|
openDialog={openDialog}
|
||||||
|
setOpenDialog={setOpenDialog}
|
||||||
|
title={{ name: dialogTitle }}
|
||||||
|
data={data}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{isDialog === 'infoDetail' && (
|
||||||
|
<DialogDetailClaim
|
||||||
|
openDialog={openDialog}
|
||||||
|
setOpenDialog={setOpenDialog}
|
||||||
|
title={{ name: dialogTitle }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</RootNotificationStyle>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,175 @@
|
|||||||
|
// @mui
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
Box,
|
||||||
|
Stepper,
|
||||||
|
Step,
|
||||||
|
StepLabel,
|
||||||
|
Card,
|
||||||
|
Typography,
|
||||||
|
Divider,
|
||||||
|
Stack,
|
||||||
|
} from '@mui/material';
|
||||||
|
import { Add } from '@mui/icons-material';
|
||||||
|
// components
|
||||||
|
import MuiDialog from '../../components/MuiDialog';
|
||||||
|
// theme
|
||||||
|
import palette from '../../theme/palette';
|
||||||
|
// React
|
||||||
|
import { ReactElement } from 'react';
|
||||||
|
|
||||||
|
type DataContent = {
|
||||||
|
info: string;
|
||||||
|
date: string;
|
||||||
|
time: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type MuiDialogProps = {
|
||||||
|
title?: {
|
||||||
|
name?: string;
|
||||||
|
icon?: string;
|
||||||
|
};
|
||||||
|
openDialog: boolean;
|
||||||
|
setOpenDialog: Function;
|
||||||
|
content?: ReactElement;
|
||||||
|
data?: DataContent[];
|
||||||
|
};
|
||||||
|
|
||||||
|
const steps = ['Review', 'Approval', 'Disbursement'];
|
||||||
|
|
||||||
|
const DialogDetailClaim = ({ title, openDialog, setOpenDialog, data }: MuiDialogProps) => {
|
||||||
|
const getContent = () => (
|
||||||
|
<>
|
||||||
|
<Stack
|
||||||
|
alignItems="center"
|
||||||
|
justifyContent="space-between"
|
||||||
|
direction="row"
|
||||||
|
sx={{ marginTop: 1 }}
|
||||||
|
>
|
||||||
|
<Typography variant="subtitle1" sx={{ height: 'max-content' }}>
|
||||||
|
Claim Request
|
||||||
|
</Typography>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption">Submission date</Typography>
|
||||||
|
<Typography variant="caption">15 / 05 / 2022</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
<Box sx={{ width: '100%', marginTop: 2 }}>
|
||||||
|
<Stepper alternativeLabel>
|
||||||
|
{steps.map((label) => (
|
||||||
|
<Step key={label}>
|
||||||
|
<StepLabel>{label}</StepLabel>
|
||||||
|
</Step>
|
||||||
|
))}
|
||||||
|
</Stepper>
|
||||||
|
</Box>
|
||||||
|
<Stack marginTop={2}>
|
||||||
|
<Typography variant="subtitle1" paddingY={2}>
|
||||||
|
17 Mei 2022
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack direction="row" spacing={2}>
|
||||||
|
<Divider orientation="vertical" flexItem sx={{ borderStyle: 'dashed' }} />
|
||||||
|
<Stack spacing={2} sx={{ flex: 1, maxWidth: '100%' }}>
|
||||||
|
{/* Item 1 */}
|
||||||
|
<Card sx={{ paddingY: 2, paddingX: 3 }}>
|
||||||
|
<Stack direction="row" justifyContent="space-between" alignItems="center">
|
||||||
|
<Typography variant="body1">09:10 WIB</Typography>
|
||||||
|
<Typography
|
||||||
|
sx={{
|
||||||
|
backgroundColor: palette.light.warning.lighter,
|
||||||
|
color: palette.light.warning.dark,
|
||||||
|
borderColor: palette.light.warning.dark,
|
||||||
|
border: '1px solid',
|
||||||
|
borderRadius: '6px',
|
||||||
|
padding: 1,
|
||||||
|
}}
|
||||||
|
variant="caption"
|
||||||
|
>
|
||||||
|
Approval
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Divider sx={{ marginY: 2 }} />
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="subtitle2" color="#404040">
|
||||||
|
Details : mohon melengkapi kekurangan dokumen
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="caption" color="#757575" sx={{ marginTop: 2, marginBottom: 1 }}>
|
||||||
|
Lab pemeriksaan darah
|
||||||
|
</Typography>
|
||||||
|
<Button
|
||||||
|
variant="outlined"
|
||||||
|
startIcon={<Add />}
|
||||||
|
fullWidth
|
||||||
|
sx={{ typography: 'subtitle2', borderColor: '#F5F5F5' }}
|
||||||
|
>
|
||||||
|
Hasil Pemeriksaan Laboratorium
|
||||||
|
</Button>
|
||||||
|
</Stack>
|
||||||
|
</Card>
|
||||||
|
{/* Item 2 */}
|
||||||
|
<Card sx={{ flex: 1, maxWidth: '100%', paddingY: 2, paddingX: 3 }}>
|
||||||
|
<Stack direction="row" justifyContent="space-between" alignItems="center">
|
||||||
|
<Typography variant="body1">09:00 WIB</Typography>
|
||||||
|
<Typography
|
||||||
|
sx={{
|
||||||
|
backgroundColor: palette.light.warning.lighter,
|
||||||
|
color: palette.light.warning.dark,
|
||||||
|
borderColor: palette.light.warning.dark,
|
||||||
|
border: '1px solid',
|
||||||
|
borderRadius: '6px',
|
||||||
|
padding: 1,
|
||||||
|
}}
|
||||||
|
variant="caption"
|
||||||
|
>
|
||||||
|
Approval
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Divider sx={{ marginY: 2 }} />
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="subtitle2" color="#404040">
|
||||||
|
Details : Penilaian Dokter
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Card>
|
||||||
|
{/* Item 3 */}
|
||||||
|
<Card sx={{ flex: 1, maxWidth: '100%', paddingY: 2, paddingX: 3 }}>
|
||||||
|
<Stack direction="row" justifyContent="space-between" alignItems="center">
|
||||||
|
<Typography variant="body1">08:00 WIB</Typography>
|
||||||
|
<Typography
|
||||||
|
sx={{
|
||||||
|
backgroundColor: '#F5F5F5',
|
||||||
|
color: '#757575',
|
||||||
|
borderColor: '#757575',
|
||||||
|
border: '1px solid',
|
||||||
|
borderRadius: '6px',
|
||||||
|
padding: 1,
|
||||||
|
}}
|
||||||
|
variant="caption"
|
||||||
|
>
|
||||||
|
Review
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Divider sx={{ marginY: 2 }} />
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="subtitle2" color="#404040">
|
||||||
|
Details : Klaim Diajukan
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Card>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<MuiDialog
|
||||||
|
title={title}
|
||||||
|
openDialog={openDialog}
|
||||||
|
setOpenDialog={setOpenDialog}
|
||||||
|
content={getContent()}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DialogDetailClaim;
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
// react
|
||||||
|
import { ReactElement, useState } from 'react';
|
||||||
|
// mui
|
||||||
|
import { Card, Divider, Link, Stack, Typography } from '@mui/material';
|
||||||
|
import { styled } from '@mui/material/styles';
|
||||||
|
// Component
|
||||||
|
import MuiDialog from '../../components/MuiDialog';
|
||||||
|
// Sections
|
||||||
|
import DialogDetailClaim from './DialogDetailClaim';
|
||||||
|
|
||||||
|
type DataContent = {
|
||||||
|
info: string;
|
||||||
|
date: string;
|
||||||
|
time: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type MuiDialogProps = {
|
||||||
|
title?: {
|
||||||
|
name?: string;
|
||||||
|
icon?: string;
|
||||||
|
};
|
||||||
|
openDialog: boolean;
|
||||||
|
setOpenDialog: Function;
|
||||||
|
content?: ReactElement;
|
||||||
|
data?: DataContent[];
|
||||||
|
};
|
||||||
|
|
||||||
|
const ItemNotificationStyle = styled(Card)(({ theme }) => ({
|
||||||
|
boxShadow: 'none',
|
||||||
|
padding: theme.spacing(1),
|
||||||
|
borderRadius: 0.5,
|
||||||
|
color: 'black',
|
||||||
|
}));
|
||||||
|
|
||||||
|
const DialogNotification = ({ title, openDialog, setOpenDialog, data }: MuiDialogProps) => {
|
||||||
|
const [openDialogClaim, setOpenDialogClaim] = useState(false);
|
||||||
|
const [dialogTitleClaim, setDialogTitleClaim] = useState('');
|
||||||
|
|
||||||
|
const clickHandler = () => {
|
||||||
|
setDialogTitleClaim('Claim Details');
|
||||||
|
setOpenDialogClaim(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getContent = () => (
|
||||||
|
<Stack sx={{ marginTop: 2 }}>
|
||||||
|
<ItemNotificationStyle>
|
||||||
|
{data
|
||||||
|
? data.map(({ info, date, time }: DataContent, key) => (
|
||||||
|
<div key={key}>
|
||||||
|
{key >= 1 ? <Divider sx={{ marginY: 0.5 }} /> : ''}
|
||||||
|
<Stack direction="row" justifyContent="space-between" alignItems="center">
|
||||||
|
<Stack direction="column" justifyContent="flex-start" alignItems="flex-start">
|
||||||
|
<Typography sx={{ typography: 'caption' }}>{info}</Typography>
|
||||||
|
<Link
|
||||||
|
component="button"
|
||||||
|
variant="caption"
|
||||||
|
underline="always"
|
||||||
|
onClick={clickHandler}
|
||||||
|
>
|
||||||
|
Info Detail
|
||||||
|
</Link>
|
||||||
|
</Stack>
|
||||||
|
<Stack direction="column" justifyContent="flex-start" alignItems="flex-start">
|
||||||
|
<Typography sx={{ typography: 'caption', color: '#656565' }}>{date}</Typography>
|
||||||
|
<Typography sx={{ typography: 'caption', color: '#656565' }}>{time}</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
</div>
|
||||||
|
))
|
||||||
|
: ''}
|
||||||
|
</ItemNotificationStyle>
|
||||||
|
</Stack>
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<MuiDialog
|
||||||
|
title={title}
|
||||||
|
openDialog={openDialog}
|
||||||
|
setOpenDialog={setOpenDialog}
|
||||||
|
content={getContent()}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<DialogDetailClaim
|
||||||
|
openDialog={openDialogClaim}
|
||||||
|
setOpenDialog={setOpenDialogClaim}
|
||||||
|
title={{ name: dialogTitleClaim }}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DialogNotification;
|
||||||
@@ -0,0 +1,209 @@
|
|||||||
|
// @mui
|
||||||
|
import { styled } from '@mui/material/styles';
|
||||||
|
import {
|
||||||
|
Typography,
|
||||||
|
LinearProgress,
|
||||||
|
linearProgressClasses,
|
||||||
|
Stack,
|
||||||
|
FormControlLabel,
|
||||||
|
} from '@mui/material';
|
||||||
|
import { LoadingButton } from '@mui/lab';
|
||||||
|
import Checkbox from '@mui/material/Checkbox';
|
||||||
|
// components
|
||||||
|
import MuiDialog from '../../components/MuiDialog';
|
||||||
|
import { FormProvider, RHFTextField } from '../../components/hook-form';
|
||||||
|
// React
|
||||||
|
import { ReactElement, useEffect, useState } from 'react';
|
||||||
|
import { fCurrency } from '../../utils/formatNumber';
|
||||||
|
// yup
|
||||||
|
import * as Yup from 'yup';
|
||||||
|
// form
|
||||||
|
import { useForm } from 'react-hook-form';
|
||||||
|
import { yupResolver } from '@hookform/resolvers/yup';
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
type DataContent = {
|
||||||
|
info: string;
|
||||||
|
date: string;
|
||||||
|
time: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type MuiDialogProps = {
|
||||||
|
title?: {
|
||||||
|
name?: string;
|
||||||
|
icon?: string;
|
||||||
|
};
|
||||||
|
openDialog: boolean;
|
||||||
|
setOpenDialog: Function;
|
||||||
|
content?: ReactElement;
|
||||||
|
data?: DataContent[];
|
||||||
|
};
|
||||||
|
|
||||||
|
type FormValuesProps = {
|
||||||
|
topup: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const testData = {
|
||||||
|
companyName: 'PT. Aman Mineral',
|
||||||
|
policyNumber: 12345678,
|
||||||
|
totalMembers: 50,
|
||||||
|
totalCases: 100,
|
||||||
|
totalPersen: 75,
|
||||||
|
myLimit: '375.000.000',
|
||||||
|
totalLimit: 500000000,
|
||||||
|
};
|
||||||
|
|
||||||
|
const BorderLinearProgress = styled(LinearProgress)(({ theme }) => ({
|
||||||
|
height: 10,
|
||||||
|
borderRadius: 6,
|
||||||
|
[`&.${linearProgressClasses.colorPrimary}`]: {
|
||||||
|
backgroundColor: theme.palette.grey[theme.palette.mode === 'light' ? 300 : 800],
|
||||||
|
},
|
||||||
|
[`& .${linearProgressClasses.bar}`]: {
|
||||||
|
borderRadius: 6,
|
||||||
|
background: 'linear-gradient(270deg, #19BBBB 38.42%, #FF9565 76.21%, #FE7253 104.02%)',
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
const DialogTopUpLimit = ({ title, openDialog, setOpenDialog, data }: MuiDialogProps) => {
|
||||||
|
const [isDisabledCheckbox, setIsDisabledCheckbox] = useState(false);
|
||||||
|
const [isDisabledButton, setIsDisabledButton] = useState(true);
|
||||||
|
|
||||||
|
const TopUpSchema = Yup.object().shape({
|
||||||
|
topup: Yup.string()
|
||||||
|
/*
|
||||||
|
// @ts-ignore */
|
||||||
|
.test('limit', 'Maximum Top Up Rp. 5.000.000', (val) => (val > 5000000 ? false : true)),
|
||||||
|
});
|
||||||
|
|
||||||
|
const defaultValues = {
|
||||||
|
topup: '0',
|
||||||
|
};
|
||||||
|
|
||||||
|
const methods = useForm<FormValuesProps>({
|
||||||
|
resolver: yupResolver(TopUpSchema),
|
||||||
|
defaultValues,
|
||||||
|
});
|
||||||
|
|
||||||
|
const {
|
||||||
|
setValue,
|
||||||
|
reset,
|
||||||
|
handleSubmit,
|
||||||
|
formState: { isSubmitting },
|
||||||
|
} = methods;
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (openDialog === false) {
|
||||||
|
reset();
|
||||||
|
}
|
||||||
|
}, [openDialog, reset]);
|
||||||
|
|
||||||
|
const onSubmit = async (data: FormValuesProps) => {
|
||||||
|
reset();
|
||||||
|
};
|
||||||
|
|
||||||
|
const onCheckHandler = (data: FormValuesProps) => {
|
||||||
|
setIsDisabledCheckbox(!isDisabledCheckbox);
|
||||||
|
setValue('topup', '5000000');
|
||||||
|
};
|
||||||
|
|
||||||
|
const onTopupHandler = (value: string) => {
|
||||||
|
value === '0' || value === '' ? setIsDisabledButton(true) : setIsDisabledButton(false);
|
||||||
|
setValue('topup', value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getContent = () => (
|
||||||
|
<Stack spacing={1} marginTop={2}>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption" color="#637381">
|
||||||
|
Company Name
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="body2">{testData.companyName}</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption" color="#637381">
|
||||||
|
Policy Number
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="body2">{testData.policyNumber}</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack direction="row" spacing={22}>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption" color="#637381">
|
||||||
|
Total Member
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="body2">{testData.totalMembers} Person</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="caption" color="#637381">
|
||||||
|
Total Cases
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="body2">{testData.totalCases} Cases</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
<Stack spacing={1} sx={{ backgroundColor: '#F4F6F8', borderRadius: 1.5, padding: 2 }}>
|
||||||
|
<Stack direction="row" justifyContent="space-between" alignItems="center">
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="body2">Company Pooled Fund</Typography>
|
||||||
|
<Typography variant="body2">{fCurrency(testData.myLimit)}</Typography>
|
||||||
|
<Typography variant="caption" color="#919EAB">
|
||||||
|
/ {testData.totalLimit}
|
||||||
|
</Typography>
|
||||||
|
</Stack>
|
||||||
|
<Stack>
|
||||||
|
<Typography variant="h5">{testData.totalPersen}%</Typography>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
<BorderLinearProgress variant="determinate" value={testData.totalPersen} />
|
||||||
|
</Stack>
|
||||||
|
<Stack spacing={2}>
|
||||||
|
<Typography variant="subtitle1" marginTop={3}>
|
||||||
|
Top Up Limit
|
||||||
|
</Typography>
|
||||||
|
<FormProvider methods={methods} onSubmit={handleSubmit(onSubmit)}>
|
||||||
|
<RHFTextField
|
||||||
|
name="topup"
|
||||||
|
label="Top Up"
|
||||||
|
type="number"
|
||||||
|
disabled={isDisabledCheckbox}
|
||||||
|
onChange={(e) => onTopupHandler(e.target.value)}
|
||||||
|
/>
|
||||||
|
<FormControlLabel
|
||||||
|
sx={{ typography: 'caption' }}
|
||||||
|
control={<Checkbox />}
|
||||||
|
label={'Max ' + fCurrency(5000000)}
|
||||||
|
onChange={handleSubmit(onCheckHandler)}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<LoadingButton
|
||||||
|
fullWidth
|
||||||
|
size="large"
|
||||||
|
type="submit"
|
||||||
|
variant="contained"
|
||||||
|
loading={isSubmitting}
|
||||||
|
sx={{ marginTop: 2 }}
|
||||||
|
disabled={isDisabledButton}
|
||||||
|
>
|
||||||
|
Login
|
||||||
|
</LoadingButton>
|
||||||
|
</FormProvider>
|
||||||
|
</Stack>
|
||||||
|
</Stack>
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<MuiDialog
|
||||||
|
title={title}
|
||||||
|
openDialog={openDialog}
|
||||||
|
setOpenDialog={setOpenDialog}
|
||||||
|
content={getContent()}
|
||||||
|
maxWidth="xs"
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DialogTopUpLimit;
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
import merge from 'lodash/merge';
|
|
||||||
import ReactApexChart from 'react-apexcharts';
|
|
||||||
// @mui
|
|
||||||
import { styled } from '@mui/material/styles';
|
|
||||||
import { Card, Typography, Stack } from '@mui/material';
|
|
||||||
// utils
|
|
||||||
import { fCurrency, fPercent } from '../../utils/formatNumber';
|
|
||||||
// components
|
|
||||||
import Iconify from '../../components/Iconify';
|
|
||||||
import BaseOptionChart from '../../components/chart/BaseOptionChart';
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
const RootStyle = styled(Card)(({ theme }) => ({
|
|
||||||
boxShadow: 'none',
|
|
||||||
padding: theme.spacing(3),
|
|
||||||
color: theme.palette.primary.darker,
|
|
||||||
backgroundColor: theme.palette.primary.lighter,
|
|
||||||
}));
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
const INITIAL = 500000000
|
|
||||||
const TOTAL = 257907000;
|
|
||||||
const PERCENT = -3;
|
|
||||||
const CHART_DATA = [{ data: [100, 99, 99, 85, 74, 57, 54, 51] }];
|
|
||||||
|
|
||||||
export default function SomethingUsage() {
|
|
||||||
const chartOptions = merge(BaseOptionChart(), {
|
|
||||||
chart: { sparkline: { enabled: true } },
|
|
||||||
xaxis: { labels: { show: true } },
|
|
||||||
yaxis: { labels: { show: false } },
|
|
||||||
stroke: { width: 4 },
|
|
||||||
legend: { show: false },
|
|
||||||
grid: { show: false },
|
|
||||||
tooltip: {
|
|
||||||
marker: { show: false },
|
|
||||||
y: {
|
|
||||||
formatter: (seriesName: string) => (seriesName) + "%",
|
|
||||||
title: {
|
|
||||||
formatter: () => '',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
fill: { gradient: { opacityFrom: 0, opacityTo: 0 } },
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<RootStyle>
|
|
||||||
<Stack direction="row" justifyContent="space-between" sx={{ mb: 3 }}>
|
|
||||||
<div>
|
|
||||||
<Typography variant="body2" component="span" sx={{ opacity: 0.72 }}>
|
|
||||||
{fCurrency(INITIAL)}
|
|
||||||
</Typography>
|
|
||||||
<Typography sx={{ typography: 'subtitle2' }}>Remaining Balance</Typography>
|
|
||||||
<Typography sx={{ typography: 'h3' }}>{fCurrency(TOTAL)}</Typography>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<Stack direction="row" alignItems="center" justifyContent="flex-end" sx={{ mb: 0.6 }}>
|
|
||||||
<Iconify
|
|
||||||
width={20}
|
|
||||||
height={20}
|
|
||||||
icon={PERCENT >= 0 ? 'eva:trending-up-fill' : 'eva:trending-down-fill'}
|
|
||||||
/>
|
|
||||||
<Typography variant="subtitle2" component="span" sx={{ ml: 0.5 }}>
|
|
||||||
{PERCENT > 0 && '+'}
|
|
||||||
{fPercent(PERCENT)}
|
|
||||||
</Typography>
|
|
||||||
</Stack>
|
|
||||||
<Typography variant="body2" component="span" sx={{ opacity: 0.72 }}>
|
|
||||||
than last month
|
|
||||||
</Typography>
|
|
||||||
</div>
|
|
||||||
</Stack>
|
|
||||||
|
|
||||||
<ReactApexChart type="area" series={CHART_DATA} options={chartOptions} height={100} />
|
|
||||||
</RootStyle>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,20 +1,15 @@
|
|||||||
import { alpha, Theme } from '@mui/material/styles';
|
import { Theme } from '@mui/material/styles';
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
||||||
export default function Backdrop(theme: Theme) {
|
export default function Backdrop(theme: Theme) {
|
||||||
const varLow = alpha(theme.palette.grey[900], 0.48);
|
|
||||||
const varHigh = alpha(theme.palette.grey[900], 1);
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
MuiBackdrop: {
|
MuiBackdrop: {
|
||||||
styleOverrides: {
|
styleOverrides: {
|
||||||
root: {
|
root: {
|
||||||
background: [
|
background: [
|
||||||
`rgb(22,28,36)`,
|
`rgb(33,43,54, 0.7)`,
|
||||||
`-moz-linear-gradient(75deg, ${varLow} 0%, ${varHigh} 100%)`,
|
|
||||||
`-webkit-linear-gradient(75deg, ${varLow} 0%, ${varHigh} 100%)`,
|
|
||||||
`linear-gradient(75deg, ${varLow} 0%, ${varHigh} 100%)`
|
|
||||||
],
|
],
|
||||||
'&.MuiBackdrop-invisible': {
|
'&.MuiBackdrop-invisible': {
|
||||||
background: 'transparent'
|
background: 'transparent'
|
||||||
|
|||||||
Reference in New Issue
Block a user