mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-22 14:25:47 +00:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ebc960abb5 | |||
| af4926b1d7 | |||
| 3d134d7b8e | |||
| ea5ab83795 | |||
| 132ce52f23 | |||
| b1482fb586 | |||
| 56b75af69f | |||
| e05db3c0c4 | |||
| 695b7d64ec | |||
| f2c581fcc2 | |||
| f761a12137 | |||
| fef1b59138 | |||
| 472ff1d3da | |||
| 90de8f4e4d | |||
| 8912a82dba | |||
| 3ae5a0f9b7 | |||
| 2aaaf9a442 | |||
| caf406a383 | |||
| 10ed17b0ed | |||
| fd47a3b407 | |||
| 5cab1a072d | |||
| 288c675de7 | |||
| d8f16558a3 |
@@ -40,5 +40,8 @@ yarn-error.log*
|
|||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
next-env.d.ts
|
||||||
|
|
||||||
|
# prettier
|
||||||
|
.prettierrc
|
||||||
|
|
||||||
# idea
|
# idea
|
||||||
.idea
|
.idea
|
||||||
|
|||||||
+20
-35
@@ -2,6 +2,7 @@ stages:
|
|||||||
- build
|
- build
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
|
# ====== TEMPLATE: BUILD STATIC NEXT.JS ======
|
||||||
.build_template: &build_template
|
.build_template: &build_template
|
||||||
stage: build
|
stage: build
|
||||||
image: node:20-alpine
|
image: node:20-alpine
|
||||||
@@ -10,31 +11,15 @@ stages:
|
|||||||
paths:
|
paths:
|
||||||
- node_modules/
|
- node_modules/
|
||||||
variables:
|
variables:
|
||||||
NPM_CONFIG_PRODUCTION: 'false'
|
NPM_CONFIG_PRODUCTION: "false"
|
||||||
NODE_ENV: ''
|
NODE_ENV: ""
|
||||||
script:
|
script:
|
||||||
- echo "Installing dependencies..."
|
- echo "Installing dependencies..."
|
||||||
- npm ci --no-audit --no-fund
|
- npm ci --no-audit --no-fund
|
||||||
- echo "Build env used:"
|
|
||||||
- echo "NEXT_PUBLIC_LTI_URL=$NEXT_PUBLIC_LTI_URL"
|
|
||||||
- echo "NEXT_PUBLIC_SSO_LOGIN_URL=$NEXT_PUBLIC_SSO_LOGIN_URL"
|
|
||||||
- echo "NEXT_PUBLIC_API_BASE_URL=$NEXT_PUBLIC_API_BASE_URL"
|
|
||||||
- echo "Building Next.js static export..."
|
- echo "Building Next.js static export..."
|
||||||
- npx next build
|
- npx next build
|
||||||
- |
|
|
||||||
mkdir -p out
|
|
||||||
cat <<EOF > out/build-info.json
|
|
||||||
{
|
|
||||||
"commit": "$CI_COMMIT_SHORT_SHA",
|
|
||||||
"pipeline": "$CI_PIPELINE_ID",
|
|
||||||
"built_at": "$(date -u +"%Y-%m-%dT%H:%M:%SZ")",
|
|
||||||
"NEXT_PUBLIC_LTI_URL": "$NEXT_PUBLIC_LTI_URL",
|
|
||||||
"NEXT_PUBLIC_SSO_LOGIN_URL": "$NEXT_PUBLIC_SSO_LOGIN_URL",
|
|
||||||
"NEXT_PUBLIC_API_BASE_URL": "$NEXT_PUBLIC_API_BASE_URL"
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
artifacts:
|
artifacts:
|
||||||
name: 'out-$CI_COMMIT_SHORT_SHA'
|
name: "out-$CI_COMMIT_SHORT_SHA"
|
||||||
paths:
|
paths:
|
||||||
- out/
|
- out/
|
||||||
expire_in: 1 week
|
expire_in: 1 week
|
||||||
@@ -43,7 +28,7 @@ stages:
|
|||||||
stage: deploy
|
stage: deploy
|
||||||
image:
|
image:
|
||||||
name: amazon/aws-cli:latest
|
name: amazon/aws-cli:latest
|
||||||
entrypoint: ['/bin/sh', '-c']
|
entrypoint: ["/bin/sh", "-c"]
|
||||||
script:
|
script:
|
||||||
- set -e
|
- set -e
|
||||||
- aws --version
|
- aws --version
|
||||||
@@ -71,7 +56,8 @@ stages:
|
|||||||
- |
|
- |
|
||||||
RUN_URL="${CI_PROJECT_URL}/-/pipelines/${CI_PIPELINE_ID}"
|
RUN_URL="${CI_PROJECT_URL}/-/pipelines/${CI_PIPELINE_ID}"
|
||||||
|
|
||||||
if [ "$CI_COMMIT_BRANCH" = "development" ]; then
|
# Tentukan nama environment
|
||||||
|
if [ "$CI_COMMIT_BRANCH" = "devops-s3" ]; then
|
||||||
ENVIRONMENT_NAME="WEB-LTI-DEV"
|
ENVIRONMENT_NAME="WEB-LTI-DEV"
|
||||||
elif [ "$CI_COMMIT_BRANCH" = "master" ]; then
|
elif [ "$CI_COMMIT_BRANCH" = "master" ]; then
|
||||||
ENVIRONMENT_NAME="WEB-LTI-PROD"
|
ENVIRONMENT_NAME="WEB-LTI-PROD"
|
||||||
@@ -114,32 +100,30 @@ stages:
|
|||||||
|
|
||||||
curl -sS -H "Content-Type: application/json" -d @payload.json "$DISCORD_WEBHOOK_URL"
|
curl -sS -H "Content-Type: application/json" -d @payload.json "$DISCORD_WEBHOOK_URL"
|
||||||
|
|
||||||
# ====== DEVELOPMENT (Branch development) ======
|
# ====== DEVELOPMENT (Branch devops-s3) ======
|
||||||
build:dev:
|
build:dev:
|
||||||
<<: *build_template
|
<<: *build_template
|
||||||
rules:
|
rules:
|
||||||
- if: '$CI_COMMIT_BRANCH == "development"'
|
- if: '$CI_COMMIT_BRANCH == "devops-s3"'
|
||||||
environment:
|
environment:
|
||||||
name: development
|
name: devops-s3
|
||||||
variables:
|
variables:
|
||||||
# NEXT_PUBLIC_API_BASE_URL: 'https://dev-api-lti.mbugroup.id'
|
NEXT_PUBLIC_API_BASE_URL: "https://dev-api-lti.mbugroup.id"
|
||||||
# NEXT_PUBLIC_SSO_LOGIN_URL: 'https://dev-api-sso.mbugroup.id'
|
NEXT_PUBLIC_SSO_LOGIN_URL: "https://dev-api-sso.mbugroup.id"
|
||||||
NEXT_PUBLIC_LTI_URL: 'https://dev-lti-erp.mbugroup.id'
|
|
||||||
NEXT_PUBLIC_SSO_LOGIN_URL: 'https://dev-auth-erp.mbugroup.id'
|
|
||||||
NEXT_PUBLIC_API_BASE_URL: 'https://dev-api-lti.mbugroup.id/api'
|
|
||||||
|
|
||||||
deploy:dev:
|
deploy:dev:
|
||||||
<<: *deploy_template
|
<<: *deploy_template
|
||||||
needs: ['build:dev']
|
needs: ["build:dev"]
|
||||||
rules:
|
rules:
|
||||||
- if: '$CI_COMMIT_BRANCH == "development"'
|
- if: '$CI_COMMIT_BRANCH == "devops-s3"'
|
||||||
variables:
|
variables:
|
||||||
S3_BUCKET: 'dev-lti-erp.mbugroup.id'
|
S3_BUCKET: "dev-lti-erp.mbugroup.id"
|
||||||
AWS_REGION: 'ap-southeast-3'
|
AWS_REGION: "ap-southeast-3"
|
||||||
CLOUDFRONT_DISTRIBUTION_ID: 'E1Z8XTA8XF1GIV'
|
CLOUDFRONT_DISTRIBUTION_ID: "E1Z8XTA8XF1GIV"
|
||||||
environment:
|
environment:
|
||||||
name: development
|
name: devops-s3
|
||||||
url: https://dev-lti-erp.mbugroup.id
|
url: https://dev-lti-erp.mbugroup.id
|
||||||
|
|
||||||
# ====== PRODUCTION ======
|
# ====== PRODUCTION ======
|
||||||
# build:production:
|
# build:production:
|
||||||
# <<: *build_template
|
# <<: *build_template
|
||||||
@@ -161,4 +145,5 @@ deploy:dev:
|
|||||||
# CLOUDFRONT_DISTRIBUTION_ID: "ddfd"
|
# CLOUDFRONT_DISTRIBUTION_ID: "ddfd"
|
||||||
# environment:
|
# environment:
|
||||||
# name: production
|
# name: production
|
||||||
|
# url: https://royalgoldcapital.com
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
npm run format
|
|
||||||
npm run lint
|
npm run lint
|
||||||
npm run build
|
npm run build
|
||||||
+5
-5
@@ -1,4 +1,4 @@
|
|||||||
version: '3.9'
|
version: "3.9"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
dev-web-lti:
|
dev-web-lti:
|
||||||
@@ -7,7 +7,7 @@ services:
|
|||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
ports:
|
ports:
|
||||||
- '3002:3000'
|
- "3002:3000"
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
environment:
|
environment:
|
||||||
@@ -19,13 +19,13 @@ services:
|
|||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpus: '3.0'
|
cpus: "3.0"
|
||||||
memory: 3G
|
memory: 3G
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '1.0'
|
cpus: "1.0"
|
||||||
memory: 512M
|
memory: 512M
|
||||||
extra_hosts:
|
extra_hosts:
|
||||||
- 'host.docker.internal:host-gateway'
|
- "host.docker.internal:host-gateway"
|
||||||
# Optional: aktifkan healthcheck jika punya endpoint
|
# Optional: aktifkan healthcheck jika punya endpoint
|
||||||
# healthcheck:
|
# healthcheck:
|
||||||
# test: ["CMD-SHELL", "curl -fsS http://localhost:3000/api/healthz || exit 1"]
|
# test: ["CMD-SHELL", "curl -fsS http://localhost:3000/api/healthz || exit 1"]
|
||||||
|
|||||||
Generated
+71
-654
File diff suppressed because it is too large
Load Diff
+5
-6
@@ -11,18 +11,16 @@
|
|||||||
"format": "prettier --write ."
|
"format": "prettier --write ."
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@react-pdf/renderer": "^4.3.1",
|
|
||||||
"@tanstack/match-sorter-utils": "^8.19.4",
|
"@tanstack/match-sorter-utils": "^8.19.4",
|
||||||
"@tanstack/react-table": "^8.21.3",
|
"@tanstack/react-table": "^8.21.3",
|
||||||
"axios": "^1.12.2",
|
"axios": "^1.12.2",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"formik": "^2.4.6",
|
"formik": "^2.4.6",
|
||||||
|
"inputmask": "^5.0.9",
|
||||||
"moment": "^2.30.1",
|
"moment": "^2.30.1",
|
||||||
"next": "^15.5.7",
|
"next": "15.5.3",
|
||||||
"react": "19.1.0",
|
"react": "19.1.0",
|
||||||
"react-day-picker": "^9.11.1",
|
|
||||||
"react-dom": "19.1.0",
|
"react-dom": "19.1.0",
|
||||||
"react-dropzone": "^14.3.8",
|
|
||||||
"react-hot-toast": "^2.6.0",
|
"react-hot-toast": "^2.6.0",
|
||||||
"react-number-format": "^5.4.4",
|
"react-number-format": "^5.4.4",
|
||||||
"react-select": "^5.10.2",
|
"react-select": "^5.10.2",
|
||||||
@@ -36,12 +34,13 @@
|
|||||||
"@eslint/eslintrc": "^3",
|
"@eslint/eslintrc": "^3",
|
||||||
"@iconify/react": "^6.0.2",
|
"@iconify/react": "^6.0.2",
|
||||||
"@tailwindcss/postcss": "^4",
|
"@tailwindcss/postcss": "^4",
|
||||||
|
"@types/inputmask": "^5.0.7",
|
||||||
"@types/node": "^20",
|
"@types/node": "^20",
|
||||||
"@types/react": "^19",
|
"@types/react": "^19",
|
||||||
"@types/react-dom": "^19",
|
"@types/react-dom": "^19",
|
||||||
"daisyui": "^5.5.5",
|
"daisyui": "^5.1.12",
|
||||||
"eslint": "^9",
|
"eslint": "^9",
|
||||||
"eslint-config-next": "^15.5.7",
|
"eslint-config-next": "15.5.3",
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7",
|
||||||
"prettier": "^3.6.2",
|
"prettier": "^3.6.2",
|
||||||
"tailwindcss": "^4",
|
"tailwindcss": "^4",
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 28 KiB |
@@ -1,11 +0,0 @@
|
|||||||
import ExpenseRequestForm from '@/components/pages/expense/form/ExpenseRequestForm';
|
|
||||||
|
|
||||||
const AddExpense = () => {
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
<ExpenseRequestForm />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default AddExpense;
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
import ExpenseRequestForm from '@/components/pages/expense/form/ExpenseRequestForm';
|
|
||||||
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const ExpenseEditPage = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const expenseId = searchParams.get('expenseId');
|
|
||||||
|
|
||||||
const { data: expense, isLoading: isLoadingExpense } = useSWR(
|
|
||||||
expenseId,
|
|
||||||
(id: number) => ExpenseApi.getSingle(id)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!expenseId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoadingExpense && (!expense || isResponseError(expense))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const isExpenseCanBeEdited =
|
|
||||||
!isLoadingExpense &&
|
|
||||||
isResponseSuccess(expense) &&
|
|
||||||
expense.data.latest_approval.step_number !== 5 &&
|
|
||||||
(expense.data.latest_approval.step_number === 1 ||
|
|
||||||
expense.data.latest_approval.step_number === 2 ||
|
|
||||||
expense.data.latest_approval.step_number === 3);
|
|
||||||
|
|
||||||
if (!isLoadingExpense && !isExpenseCanBeEdited) {
|
|
||||||
router.back();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
{isLoadingExpense && (
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
)}
|
|
||||||
|
|
||||||
{!isLoadingExpense && isResponseSuccess(expense) && (
|
|
||||||
<ExpenseRequestForm type='edit' initialValues={expense.data} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseEditPage;
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
import ExpenseDetail from '@/components/pages/expense/ExpenseDetail';
|
|
||||||
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const ExpenseDetailPage = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const expenseId = searchParams.get('expenseId');
|
|
||||||
|
|
||||||
const { data: expense, isLoading: isLoadingExpense } = useSWR(
|
|
||||||
expenseId,
|
|
||||||
(id: number) => ExpenseApi.getSingle(id)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!expenseId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoadingExpense && (!expense || isResponseError(expense))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
{isLoadingExpense && (
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
)}
|
|
||||||
|
|
||||||
{!isLoadingExpense && isResponseSuccess(expense) && (
|
|
||||||
<ExpenseDetail initialValues={expense.data} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseDetailPage;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import ExpensesTable from '@/components/pages/expense/ExpensesTable';
|
|
||||||
|
|
||||||
const Expense = () => {
|
|
||||||
return (
|
|
||||||
<section className='w-full p-4'>
|
|
||||||
<ExpensesTable />
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Expense;
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
import ExpenseRealizationForm from '@/components/pages/expense/form/ExpenseRealizationForm';
|
|
||||||
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const ExpenseRealizationEditPage = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const expenseId = searchParams.get('expenseId');
|
|
||||||
|
|
||||||
const { data: expense, isLoading: isLoadingExpense } = useSWR(
|
|
||||||
expenseId,
|
|
||||||
(id: number) => ExpenseApi.getSingle(id)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!expenseId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoadingExpense && (!expense || isResponseError(expense))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const isExpenseRealizationCanBeEdited =
|
|
||||||
!isLoadingExpense &&
|
|
||||||
isResponseSuccess(expense) &&
|
|
||||||
expense.data.latest_approval.action !== 'REJECTED' &&
|
|
||||||
(expense.data.latest_approval.step_number === 4 ||
|
|
||||||
expense.data.latest_approval.step_number === 5);
|
|
||||||
|
|
||||||
if (!isLoadingExpense && !isExpenseRealizationCanBeEdited) {
|
|
||||||
router.back();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
{isLoadingExpense && (
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
)}
|
|
||||||
|
|
||||||
{!isLoadingExpense && isResponseSuccess(expense) && (
|
|
||||||
<ExpenseRealizationForm type='edit' initialValues={expense.data} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseRealizationEditPage;
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
import ExpenseRealizationForm from '@/components/pages/expense/form/ExpenseRealizationForm';
|
|
||||||
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const ExpenseRealization = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const expenseId = searchParams.get('expenseId');
|
|
||||||
|
|
||||||
const { data: expense, isLoading: isLoadingExpense } = useSWR(
|
|
||||||
expenseId,
|
|
||||||
(id: number) => ExpenseApi.getSingle(id)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!expenseId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoadingExpense && (!expense || isResponseError(expense))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const isExpenseCanBeRealized =
|
|
||||||
isResponseSuccess(expense) &&
|
|
||||||
expense.data.latest_approval.action !== 'REJECTED' &&
|
|
||||||
expense.data.latest_approval.step_number === 3;
|
|
||||||
|
|
||||||
if (isResponseSuccess(expense) && !isExpenseCanBeRealized) {
|
|
||||||
if (typeof window !== 'undefined') {
|
|
||||||
router.back();
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
{isLoadingExpense && (
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
)}
|
|
||||||
|
|
||||||
{!isLoadingExpense && isResponseSuccess(expense) && (
|
|
||||||
<ExpenseRealizationForm initialValues={expense.data} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseRealization;
|
|
||||||
@@ -48,8 +48,3 @@
|
|||||||
html {
|
html {
|
||||||
scrollbar-gutter: initial;
|
scrollbar-gutter: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-select__menu-portal {
|
|
||||||
position: relative;
|
|
||||||
z-index: 99999 !important;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import MarketingForm from '@/components/pages/marketing/form/MarketingForm';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { MarketingApi } from '@/services/api/marketing/marketing';
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
const EditMarketingDelivery = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const soId = searchParams.get('marketingId');
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: marketing,
|
|
||||||
isLoading: isLoading,
|
|
||||||
mutate: refreshMarketing,
|
|
||||||
} = useSWR(`get-so-${soId}`, () =>
|
|
||||||
MarketingApi.getSingle(soId ? parseInt(soId) : 0)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!soId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoading && (!marketing || isResponseError(marketing))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4'>
|
|
||||||
{isLoading && <span className='loading loading-spinner loading-xl' />}
|
|
||||||
{!isLoading && isResponseSuccess(marketing) && (
|
|
||||||
<MarketingForm
|
|
||||||
formType='add_deliver'
|
|
||||||
initialValues={marketing.data}
|
|
||||||
afterSubmit={() => {
|
|
||||||
refreshMarketing();
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
export default EditMarketingDelivery;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import MarketingForm from '@/components/pages/marketing/form/MarketingForm';
|
|
||||||
|
|
||||||
const AddSalesOrder = () => {
|
|
||||||
return (
|
|
||||||
<div className='size-full p-4'>
|
|
||||||
<MarketingForm formType='add' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default AddSalesOrder;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import MarketingForm from '@/components/pages/marketing/form/MarketingForm';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { MarketingApi } from '@/services/api/marketing/marketing';
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
const EditMarketingDelivery = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const soId = searchParams.get('marketingId');
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: marketing,
|
|
||||||
isLoading: isLoading,
|
|
||||||
mutate: refreshMarketing,
|
|
||||||
} = useSWR(`get-so-${soId}`, () =>
|
|
||||||
MarketingApi.getSingle(soId ? parseInt(soId) : 0)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!soId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoading && (!marketing || isResponseError(marketing))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
isResponseSuccess(marketing) &&
|
|
||||||
marketing.data.latest_approval.step_number != 3
|
|
||||||
) {
|
|
||||||
toast.error('Data Marketing perlu dilakukan approval terlebih dahulu!');
|
|
||||||
router.back();
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4'>
|
|
||||||
{isLoading && <span className='loading loading-spinner loading-xl' />}
|
|
||||||
{!isLoading && isResponseSuccess(marketing) && (
|
|
||||||
<MarketingForm
|
|
||||||
formType='edit_deliver'
|
|
||||||
initialValues={marketing.data}
|
|
||||||
afterSubmit={() => {
|
|
||||||
refreshMarketing();
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
export default EditMarketingDelivery;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import MarketingDetail from '@/components/pages/marketing/detail/MarketingDetail';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { MarketingApi } from '@/services/api/marketing/marketing';
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
const DetailMarketing = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const soId = searchParams.get('marketingId');
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: marketing,
|
|
||||||
isLoading: isLoading,
|
|
||||||
mutate: refreshMarketing,
|
|
||||||
} = useSWR(soId, (id: number) => MarketingApi.getSingle(id));
|
|
||||||
|
|
||||||
if (!soId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoading && (!marketing || isResponseError(marketing))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4'>
|
|
||||||
{isLoading && <span className='loading loading-spinner loading-xl' />}
|
|
||||||
{!isLoading && isResponseSuccess(marketing) && (
|
|
||||||
<MarketingDetail
|
|
||||||
initialValues={marketing.data}
|
|
||||||
refresh={refreshMarketing}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default DetailMarketing;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import MarketingForm from '@/components/pages/marketing/form/MarketingForm';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { MarketingApi } from '@/services/api/marketing/marketing';
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
const EditSalesOrder = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const soId = searchParams.get('marketingId');
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: marketing,
|
|
||||||
isLoading: isLoading,
|
|
||||||
mutate: refreshMarketing,
|
|
||||||
} = useSWR(`get-so-${soId}`, () =>
|
|
||||||
MarketingApi.getSingle(soId ? parseInt(soId) : 0)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!soId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoading && (!marketing || isResponseError(marketing))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4'>
|
|
||||||
{isLoading && <span className='loading loading-spinner loading-xl' />}
|
|
||||||
{!isLoading && isResponseSuccess(marketing) && (
|
|
||||||
<MarketingForm
|
|
||||||
formType='edit'
|
|
||||||
initialValues={marketing.data}
|
|
||||||
afterSubmit={() => {
|
|
||||||
refreshMarketing();
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
export default EditSalesOrder;
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
import MarketingTable from '@/components/pages/marketing/MarketingTable';
|
|
||||||
|
|
||||||
const Marketing = () => {
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4'>
|
|
||||||
<MarketingTable />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
export default Marketing;
|
|
||||||
@@ -0,0 +1,270 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import Button from '@/components/Button';
|
||||||
|
import SelectInput, { OptionType } from '@/components/input/SelectInput';
|
||||||
|
import Modal, { useModal } from '@/components/Modal';
|
||||||
|
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
||||||
|
import ChickinForm from '@/components/pages/production/chickin/form/ChickinForm';
|
||||||
|
import Table from '@/components/Table';
|
||||||
|
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
||||||
|
import { cn } from '@/lib/helper';
|
||||||
|
import { ProjectFlockApi } from '@/services/api/production';
|
||||||
|
import { useTableFilter } from '@/services/hooks/useTableFilter';
|
||||||
|
import { BaseApiResponse } from '@/types/api/api-general';
|
||||||
|
import { Kandang } from '@/types/api/master-data/kandang';
|
||||||
|
import { ProjectFlockKandang } from '@/types/api/production/project-flock-kandang';
|
||||||
|
import { Icon } from '@iconify/react';
|
||||||
|
import { useRouter, useSearchParams } from 'next/navigation';
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
|
import useSWR from 'swr';
|
||||||
|
|
||||||
|
const AddChickin = () => {
|
||||||
|
const router = useRouter();
|
||||||
|
const searchParams = useSearchParams();
|
||||||
|
const projectFlockId = searchParams.get('projectFlockId');
|
||||||
|
|
||||||
|
// Tables Props
|
||||||
|
const { state: tableFilterState } = useTableFilter({
|
||||||
|
initial: { search: '' },
|
||||||
|
paramMap: { page: 'page', pageSize: 'limit' },
|
||||||
|
});
|
||||||
|
|
||||||
|
// States
|
||||||
|
const [selectedKandang, setSelectedKandang] = useState<Kandang | undefined>(
|
||||||
|
undefined
|
||||||
|
);
|
||||||
|
const [projectFlockKandang, setProjectFlockKandang] =
|
||||||
|
useState<BaseApiResponse<ProjectFlockKandang>>();
|
||||||
|
const [isLoadingProjectFlockKandang, setIsLoadingProjectFlockKandang] =
|
||||||
|
useState(false);
|
||||||
|
const [searchProjectFlock, setSearchProjectFlock] = useState('');
|
||||||
|
|
||||||
|
// Fetch Data
|
||||||
|
const { data: projectFlock, isLoading: isLoadingProjectFlock } = useSWR(
|
||||||
|
projectFlockId,
|
||||||
|
(id: number) => ProjectFlockApi.getSingle(id)
|
||||||
|
);
|
||||||
|
const { data: listProjectFlock, isLoading: isLoadingListProjectFlock } =
|
||||||
|
useSWR(
|
||||||
|
`${ProjectFlockApi.basePath}?${new URLSearchParams({
|
||||||
|
search: searchProjectFlock,
|
||||||
|
}).toString()}`,
|
||||||
|
ProjectFlockApi.getAllFetcher
|
||||||
|
);
|
||||||
|
|
||||||
|
const getProjectFlockKandangUrl = `/kandangs/lookup`;
|
||||||
|
// Mapping Options
|
||||||
|
const options = isResponseSuccess(listProjectFlock)
|
||||||
|
? listProjectFlock?.data.map((projectFlock) => {
|
||||||
|
return {
|
||||||
|
value: projectFlock.id,
|
||||||
|
label: `${projectFlock?.flock?.name} - ${projectFlock?.category} - Periode ${projectFlock.period}`,
|
||||||
|
};
|
||||||
|
})
|
||||||
|
: [];
|
||||||
|
|
||||||
|
const chickinModal = useModal();
|
||||||
|
const alertModal = useModal();
|
||||||
|
|
||||||
|
if (!projectFlockId) {
|
||||||
|
router.back();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='w-full flex flex-row justify-center items-center p-4'>
|
||||||
|
<span className='loading loading-spinner loading-xl' />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
!isLoadingProjectFlock &&
|
||||||
|
(!projectFlock || isResponseError(projectFlock))
|
||||||
|
) {
|
||||||
|
router.replace('/404');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle Function
|
||||||
|
const handleChickinClick = async (kandang: Kandang) => {
|
||||||
|
setIsLoadingProjectFlockKandang(true);
|
||||||
|
setSelectedKandang(kandang);
|
||||||
|
const ProjectFlockKandangRes = await ProjectFlockApi.customRequest<
|
||||||
|
BaseApiResponse<ProjectFlockKandang>,
|
||||||
|
'GET'
|
||||||
|
>(getProjectFlockKandangUrl, {
|
||||||
|
method: 'GET',
|
||||||
|
params: {
|
||||||
|
project_flock_id: projectFlockId ?? 0,
|
||||||
|
kandang_id: kandang.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (isResponseSuccess(ProjectFlockKandangRes)) {
|
||||||
|
setProjectFlockKandang(ProjectFlockKandangRes);
|
||||||
|
setIsLoadingProjectFlockKandang(false);
|
||||||
|
if (
|
||||||
|
ProjectFlockKandangRes.data.available_quantity &&
|
||||||
|
ProjectFlockKandangRes.data.available_quantity > 0
|
||||||
|
) {
|
||||||
|
chickinModal.openModal();
|
||||||
|
} else {
|
||||||
|
alertModal.openModal();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const handleAfterSubmit = () => {
|
||||||
|
chickinModal.closeModal();
|
||||||
|
router.push('/production/chickin');
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{isResponseSuccess(projectFlock) && (
|
||||||
|
<>
|
||||||
|
<section className='w-full p-4'>
|
||||||
|
<header className='flex flex-col gap-4'>
|
||||||
|
<Button
|
||||||
|
href='/production/project-flock'
|
||||||
|
variant='link'
|
||||||
|
className='w-fit p-0 text-primary'
|
||||||
|
>
|
||||||
|
<Icon icon='uil:arrow-left' width={24} height={24} />
|
||||||
|
Kembali
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<div className='flex flex-col gap-4 w-full my-4'>
|
||||||
|
<div className='max-w-full sm:max-w-1/2 md:max-w-3/5 lg:max-w-2/5'>
|
||||||
|
<SelectInput
|
||||||
|
required
|
||||||
|
isSearchable
|
||||||
|
label='Project Flock'
|
||||||
|
options={options}
|
||||||
|
isLoading={isLoadingListProjectFlock}
|
||||||
|
value={{
|
||||||
|
label: `${projectFlock.data?.flock?.name} - ${projectFlock.data?.category} - Periode ${projectFlock.data?.period}`,
|
||||||
|
value: projectFlock.data?.id,
|
||||||
|
}}
|
||||||
|
onChange={(val) =>
|
||||||
|
router.push(
|
||||||
|
`/production/chickin/add?projectFlockId=${
|
||||||
|
(val as OptionType | null)?.value
|
||||||
|
}`
|
||||||
|
)
|
||||||
|
}
|
||||||
|
onInputChange={(val) => {
|
||||||
|
setSearchProjectFlock(val);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<Table<Kandang>
|
||||||
|
data={projectFlock.data?.kandangs}
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
header: '#',
|
||||||
|
cell: (props) =>
|
||||||
|
tableFilterState.pageSize * (tableFilterState.page - 1) +
|
||||||
|
props.row.index +
|
||||||
|
1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: 'name',
|
||||||
|
header: 'Nama Kandang',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
header: 'Aksi',
|
||||||
|
cell: (props) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Button
|
||||||
|
color='success'
|
||||||
|
variant='outline'
|
||||||
|
onClick={() => {
|
||||||
|
handleChickinClick(props.row.original);
|
||||||
|
}}
|
||||||
|
disabled={isLoadingProjectFlockKandang}
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
icon='mdi:home-import-outline'
|
||||||
|
width={24}
|
||||||
|
height={24}
|
||||||
|
/>
|
||||||
|
Chickin
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
page={undefined}
|
||||||
|
className={{
|
||||||
|
containerClassName: cn({
|
||||||
|
'mb-20':
|
||||||
|
isResponseSuccess(projectFlock) &&
|
||||||
|
projectFlock.data?.kandangs?.length === 0,
|
||||||
|
}),
|
||||||
|
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
||||||
|
tableClassName: 'font-inter w-full table-auto min-h-full!',
|
||||||
|
headerRowClassName: 'border-b border-b-gray-200',
|
||||||
|
headerColumnClassName:
|
||||||
|
'px-6 py-3 text-xs font-semibold text-gray-500 last:flex last:flex-row last:justify-end',
|
||||||
|
bodyRowClassName: 'border-b border-b-gray-200',
|
||||||
|
bodyColumnClassName:
|
||||||
|
'px-6 py-3 last:flex last:flex-row last:justify-end',
|
||||||
|
paginationClassName: 'hidden',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</section>
|
||||||
|
<Modal ref={chickinModal.ref}>
|
||||||
|
<div className='flex flex-row justify-between items-center'>
|
||||||
|
<h1 className='text-xl font-semibold text-center mb-6'>
|
||||||
|
Chickin Kandang - {selectedKandang?.name}
|
||||||
|
</h1>
|
||||||
|
<Button
|
||||||
|
color='error'
|
||||||
|
variant='link'
|
||||||
|
onClick={chickinModal.closeModal}
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
className='text-black'
|
||||||
|
icon='uil:times'
|
||||||
|
width={24}
|
||||||
|
height={24}
|
||||||
|
/>
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
{isResponseSuccess(projectFlockKandang) &&
|
||||||
|
!isLoadingProjectFlockKandang && (
|
||||||
|
<ChickinForm
|
||||||
|
initialValues={{
|
||||||
|
project_flock_kandang: projectFlockKandang.data,
|
||||||
|
created_user: projectFlock.data?.created_user,
|
||||||
|
created_at: projectFlock.data?.created_at,
|
||||||
|
updated_at: projectFlock.data?.updated_at,
|
||||||
|
approval: projectFlock.data?.approval,
|
||||||
|
}}
|
||||||
|
afterSubmit={handleAfterSubmit}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</Modal>
|
||||||
|
<ConfirmationModal
|
||||||
|
ref={alertModal.ref}
|
||||||
|
type='info'
|
||||||
|
text={`Persediaan Day Old Chick pada kandang (${selectedKandang?.name}) belum ada, mohon isi terlebih dahulu di bagian Persediaan!`}
|
||||||
|
secondaryButton={undefined}
|
||||||
|
primaryButton={{
|
||||||
|
text: 'Ya',
|
||||||
|
color: 'info',
|
||||||
|
onClick: () => {
|
||||||
|
alertModal.closeModal();
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AddChickin;
|
||||||
@@ -0,0 +1,351 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import Button from '@/components/Button';
|
||||||
|
import Card from '@/components/Card';
|
||||||
|
import Modal, { useModal } from '@/components/Modal';
|
||||||
|
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
||||||
|
import ChickinForm from '@/components/pages/production/chickin/form/ChickinForm';
|
||||||
|
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
||||||
|
import { ChickinApi } from '@/services/api/production';
|
||||||
|
import { BaseApiResponse } from '@/types/api/api-general';
|
||||||
|
import {
|
||||||
|
Chickin,
|
||||||
|
ChickinApprovalPayload,
|
||||||
|
} from '@/types/api/production/chickin';
|
||||||
|
import { Icon } from '@iconify/react';
|
||||||
|
import { useRouter, useSearchParams } from 'next/navigation';
|
||||||
|
import { useState } from 'react';
|
||||||
|
import toast from 'react-hot-toast';
|
||||||
|
import useSWR from 'swr';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TODO: Refactor code - pindahin detail ke reuseable component
|
||||||
|
* setelah implement approval and reject
|
||||||
|
*/
|
||||||
|
|
||||||
|
const DetailChickin = () => {
|
||||||
|
const router = useRouter();
|
||||||
|
const searchParams = useSearchParams();
|
||||||
|
const chickinId = searchParams.get('chickinId');
|
||||||
|
const [isApproveLoading, setIsApproveLoading] = useState(false);
|
||||||
|
const [isDeleteLoading, setIsDeleteLoading] = useState(false);
|
||||||
|
|
||||||
|
const confirmModal = useModal();
|
||||||
|
const deleteModal = useModal();
|
||||||
|
const chickinModal = useModal();
|
||||||
|
const {
|
||||||
|
data: chickin,
|
||||||
|
isLoading,
|
||||||
|
mutate: refreshChickin,
|
||||||
|
} = useSWR(chickinId, (id: number) => ChickinApi.getSingle(id));
|
||||||
|
|
||||||
|
const [isApprovedDisabled, setIsApprovedDisabled] = useState(
|
||||||
|
// chickin.data?.approval.step_number == 1 ? false : true
|
||||||
|
true
|
||||||
|
);
|
||||||
|
const [isRejectedDisabled, setIsRejectedDisabled] =
|
||||||
|
useState(!isApprovedDisabled);
|
||||||
|
const [approvalAction, setApprovalAction] = useState<'APPROVED' | 'REJECTED'>(
|
||||||
|
!isApprovedDisabled ? 'APPROVED' : 'REJECTED'
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!chickinId) {
|
||||||
|
router.back();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='w-full flex flex-row justify-center items-center p-4'>
|
||||||
|
<span className='loading loading-spinner loading-xl' />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isLoading && (!chickin || isResponseError(chickin))) {
|
||||||
|
router.replace('/404');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isResponseSuccess(chickin)) {
|
||||||
|
return (
|
||||||
|
<div className='w-full flex flex-row justify-center items-center p-4'>
|
||||||
|
<span className='loading loading-spinner loading-xl' />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const confirmationModalClickHandler = async ({
|
||||||
|
action = 'APPROVED',
|
||||||
|
}: {
|
||||||
|
action: 'APPROVED' | 'REJECTED';
|
||||||
|
}) => {
|
||||||
|
if (chickin?.data.id === undefined) return;
|
||||||
|
setIsApproveLoading(true);
|
||||||
|
const approveChickinRes = await ChickinApi.customRequest<
|
||||||
|
BaseApiResponse<Chickin>,
|
||||||
|
ChickinApprovalPayload
|
||||||
|
>(`/approvals`, {
|
||||||
|
method: 'POST',
|
||||||
|
payload: {
|
||||||
|
action: action,
|
||||||
|
approvable_ids: [chickin.data.id],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (isResponseSuccess(approveChickinRes)) {
|
||||||
|
if (refreshChickin) {
|
||||||
|
await refreshChickin();
|
||||||
|
}
|
||||||
|
toast.success(approveChickinRes.message as string);
|
||||||
|
}
|
||||||
|
if (isResponseError(approveChickinRes)) {
|
||||||
|
toast.error(approveChickinRes?.message as string);
|
||||||
|
}
|
||||||
|
confirmModal.closeModal();
|
||||||
|
setIsApproveLoading(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const confirmationModalDeleteClickHandler = async () => {
|
||||||
|
setIsDeleteLoading(true);
|
||||||
|
const deleteProjectFlockRes = await ChickinApi.delete(
|
||||||
|
chickin.data?.id as number
|
||||||
|
);
|
||||||
|
|
||||||
|
if (isResponseSuccess(deleteProjectFlockRes)) {
|
||||||
|
toast.success(deleteProjectFlockRes?.message as string);
|
||||||
|
router.push('/production/chickin');
|
||||||
|
}
|
||||||
|
if (isResponseError(deleteProjectFlockRes)) {
|
||||||
|
toast.error(deleteProjectFlockRes?.message as string);
|
||||||
|
}
|
||||||
|
deleteModal.closeModal();
|
||||||
|
setIsDeleteLoading(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className='w-full p-4 flex flex-col justify-center gap-4'>
|
||||||
|
{isLoading && <span className='loading loading-spinner loading-xl' />}
|
||||||
|
{!isLoading && isResponseSuccess(chickin) && (
|
||||||
|
<>
|
||||||
|
{/* <div className='w-full flex flex-col sm:flex-row gap-2'>
|
||||||
|
<Button
|
||||||
|
variant='outline'
|
||||||
|
color='success'
|
||||||
|
onClick={(() => {
|
||||||
|
if (chickin?.data.id) {
|
||||||
|
setApprovalAction('APPROVED');
|
||||||
|
confirmModal.openModal();
|
||||||
|
}
|
||||||
|
})}
|
||||||
|
disabled={!chickin?.data.id || isApprovedDisabled}
|
||||||
|
className='w-full sm:w-fit'
|
||||||
|
>
|
||||||
|
<Icon icon='material-symbols:check' width={24} height={24} />
|
||||||
|
Approve
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant='outline'
|
||||||
|
color='error'
|
||||||
|
onClick={() => {
|
||||||
|
if (chickin?.data.id) {
|
||||||
|
setApprovalAction('REJECTED');
|
||||||
|
confirmModal.openModal();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
disabled={!chickin?.data.id || isRejectedDisabled}
|
||||||
|
className='w-full sm:w-fit'
|
||||||
|
>
|
||||||
|
<Icon icon='mdi:times' width={24} height={24} />
|
||||||
|
Reject
|
||||||
|
</Button>
|
||||||
|
</div> */}
|
||||||
|
<Card
|
||||||
|
title='Informasi Umum'
|
||||||
|
variant='bordered'
|
||||||
|
className={{
|
||||||
|
wrapper: 'w-full',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className='grid grid-cols-2 gap-4 mt-4'>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Flock</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{
|
||||||
|
chickin.data.project_flock_kandang?.project_flock.flock
|
||||||
|
.name
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Area</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{
|
||||||
|
chickin.data.project_flock_kandang?.project_flock.area
|
||||||
|
.name
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Kategori</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{chickin.data.project_flock_kandang?.project_flock.category}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Lokasi</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{
|
||||||
|
chickin.data.project_flock_kandang?.project_flock.location
|
||||||
|
.name
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Periode</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{chickin.data.project_flock_kandang?.project_flock.period}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Kandang</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{chickin.data.project_flock_kandang?.kandang.name}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Card>
|
||||||
|
<Card
|
||||||
|
title='Detail Chickin'
|
||||||
|
variant='bordered'
|
||||||
|
className={{
|
||||||
|
wrapper: 'w-full',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className='grid grid-cols-2 gap-4 mt-4'>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Flock Kandang</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{
|
||||||
|
chickin.data.project_flock_kandang?.project_flock.flock
|
||||||
|
.name
|
||||||
|
}{' '}
|
||||||
|
- {chickin.data.project_flock_kandang?.kandang.name}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Tanggal Chickin</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{chickin.data.chick_in_date
|
||||||
|
? new Date(chickin.data.chick_in_date).toLocaleDateString(
|
||||||
|
'id-ID'
|
||||||
|
)
|
||||||
|
: '-'}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Jumlah (Ekor)</div>
|
||||||
|
<div className='text-sm'>
|
||||||
|
{chickin.data.quantity?.toLocaleString('id-ID')}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className='flex flex-col gap-2'>
|
||||||
|
<div className='font-semibold text-sm'>Catatan</div>
|
||||||
|
<div className='text-sm'>{chickin.data.note}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Card>
|
||||||
|
<div className='w-full flex flex-col sm:flex-row gap-2'>
|
||||||
|
<Button
|
||||||
|
color='error'
|
||||||
|
onClick={() => {
|
||||||
|
deleteModal.openModal();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Icon icon='mdi:times' width={24} height={24} />
|
||||||
|
Delete
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
color='warning'
|
||||||
|
onClick={() => {
|
||||||
|
chickinModal.openModal();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Icon icon='mdi:pencil-outline' width={24} height={24} />
|
||||||
|
Edit
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ConfirmationModal
|
||||||
|
ref={deleteModal.ref}
|
||||||
|
type='error'
|
||||||
|
text={`Apakah anda yakin ingin menghapus data Project Flock ini (${chickin?.data.project_flock_kandang?.project_flock.flock.name} - ${chickin?.data.project_flock_kandang?.kandang.name})?`}
|
||||||
|
secondaryButton={{
|
||||||
|
text: 'Tidak',
|
||||||
|
}}
|
||||||
|
primaryButton={{
|
||||||
|
text: 'Ya',
|
||||||
|
color: 'error',
|
||||||
|
isLoading: isDeleteLoading,
|
||||||
|
onClick: confirmationModalDeleteClickHandler,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Modal ref={chickinModal.ref}>
|
||||||
|
<div className='flex flex-row justify-between items-center'>
|
||||||
|
<h1 className='text-xl font-semibold text-center mb-6'>
|
||||||
|
Chickin Kandang -{' '}
|
||||||
|
{chickin?.data?.project_flock_kandang &&
|
||||||
|
chickin?.data?.project_flock_kandang.kandang?.name}
|
||||||
|
</h1>
|
||||||
|
<Button
|
||||||
|
color='error'
|
||||||
|
variant='link'
|
||||||
|
onClick={chickinModal.closeModal}
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
className='text-black'
|
||||||
|
icon='uil:times'
|
||||||
|
width={24}
|
||||||
|
height={24}
|
||||||
|
/>
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
<ChickinForm
|
||||||
|
initialValues={chickin?.data}
|
||||||
|
formType='edit'
|
||||||
|
afterSubmit={() => {
|
||||||
|
refreshChickin();
|
||||||
|
chickinModal.closeModal();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Modal>
|
||||||
|
|
||||||
|
<ConfirmationModal
|
||||||
|
ref={confirmModal.ref}
|
||||||
|
type={approvalAction == 'APPROVED' ? 'success' : 'error'}
|
||||||
|
text={`Apakah anda yakin ingin ${
|
||||||
|
approvalAction == 'APPROVED' ? 'approve' : 'reject'
|
||||||
|
} chickin berikut? (${
|
||||||
|
chickin?.data.project_flock_kandang?.project_flock.flock.name
|
||||||
|
} - ${chickin?.data.project_flock_kandang?.kandang.name})?`}
|
||||||
|
secondaryButton={{
|
||||||
|
text: 'Tidak',
|
||||||
|
}}
|
||||||
|
primaryButton={{
|
||||||
|
text: 'Ya',
|
||||||
|
color: approvalAction == 'APPROVED' ? 'success' : 'error',
|
||||||
|
isLoading: isApproveLoading,
|
||||||
|
onClick: () => {
|
||||||
|
confirmationModalClickHandler({
|
||||||
|
action: approvalAction,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DetailChickin;
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import ChickinForm from '@/components/pages/production/chickin/form/ChickinForm';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { ProjectFlockKandangApi } from '@/services/api/production';
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
export default function AddChickinKandang() {
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
const projectFlockKandangId = searchParams.get('projectFlockKandangId');
|
|
||||||
const projectFlockId = searchParams.get('projectFlockId');
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: projectFlockKandang,
|
|
||||||
isLoading: isLoading,
|
|
||||||
mutate: refreshProjectFlockKandang,
|
|
||||||
} = useSWR(
|
|
||||||
`get-single-project-flock-kandang/${projectFlockKandangId}`,
|
|
||||||
async () =>
|
|
||||||
ProjectFlockKandangApi.getSingle(
|
|
||||||
parseInt(projectFlockKandangId as string)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!projectFlockKandangId) {
|
|
||||||
router.push(`/production/chickin/add?projectFlockId=${projectFlockId}`);
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoading && !projectFlockKandang) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleAfterSubmit = () => {
|
|
||||||
refreshProjectFlockKandang();
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<section className='w-full p-4'>
|
|
||||||
{isLoading && <span className='loading loading-spinner loading-xl' />}
|
|
||||||
{!isLoading &&
|
|
||||||
isResponseSuccess(projectFlockKandang) &&
|
|
||||||
projectFlockId && (
|
|
||||||
<ChickinForm
|
|
||||||
initialValues={projectFlockKandang.data}
|
|
||||||
afterSubmit={handleAfterSubmit}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</section>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { FormHeader } from '@/components/helper/form/FormHeader';
|
|
||||||
import ProjectFlockChickinDetail from '@/components/pages/production/project-flock/chickin/ProjectFlockChickinDetail';
|
|
||||||
import { useSearchParams } from 'next/navigation';
|
|
||||||
|
|
||||||
const AddChickin = () => {
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
const projectFlockId = searchParams.get('projectFlockId');
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<section className='w-full p-4'>
|
|
||||||
<ProjectFlockChickinDetail projectFlockId={Number(projectFlockId)} />
|
|
||||||
</section>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default AddChickin;
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import ProjectFlockForm from '@/components/pages/production/project-flock/form/ProjectFlockForm';
|
import ProjectFlockForm from '@/components/pages/production/project-flock/form/ProjectFlockForm';
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
||||||
import { ProjectFlockApi } from '@/services/api/production/project-flock';
|
import { ProjectFlockApi } from '@/services/api/production';
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
import { useRouter, useSearchParams } from 'next/navigation';
|
||||||
import useSWR from 'swr';
|
import useSWR from 'swr';
|
||||||
|
|
||||||
@@ -12,11 +12,10 @@ const ProjectFlockEdit = () => {
|
|||||||
|
|
||||||
const projectFlockId = searchParams.get('projectFlockId');
|
const projectFlockId = searchParams.get('projectFlockId');
|
||||||
|
|
||||||
const {
|
const { data: projectFlock, isLoading: isLoadingCostumer } = useSWR(
|
||||||
data: projectFlock,
|
projectFlockId,
|
||||||
isLoading: isLoadingProjectFlock,
|
(id: number) => ProjectFlockApi.getSingle(id)
|
||||||
mutate: refreshProjectFlocks,
|
);
|
||||||
} = useSWR(projectFlockId, (id: number) => ProjectFlockApi.getSingle(id));
|
|
||||||
|
|
||||||
if (!projectFlockId) {
|
if (!projectFlockId) {
|
||||||
router.back();
|
router.back();
|
||||||
@@ -28,20 +27,17 @@ const ProjectFlockEdit = () => {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (!isLoadingCostumer && (!projectFlock || isResponseError(projectFlock))) {
|
||||||
!isLoadingProjectFlock &&
|
|
||||||
(!projectFlock || isResponseError(projectFlock))
|
|
||||||
) {
|
|
||||||
router.replace('/404');
|
router.replace('/404');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='w-full p-4 flex flex-col justify-center'>
|
<div className='w-full p-4 flex flex-row justify-center'>
|
||||||
{isLoadingProjectFlock && (
|
{isLoadingCostumer && (
|
||||||
<span className='loading loading-spinner loading-xl' />
|
<span className='loading loading-spinner loading-xl' />
|
||||||
)}
|
)}
|
||||||
{!isLoadingProjectFlock && isResponseSuccess(projectFlock) && (
|
{!isLoadingCostumer && isResponseSuccess(projectFlock) && (
|
||||||
<ProjectFlockForm formType='edit' initialValues={projectFlock.data} />
|
<ProjectFlockForm formType='edit' initialValues={projectFlock.data} />
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import ProjectFlockForm from '@/components/pages/production/project-flock/form/ProjectFlockForm';
|
import ProjectFlockForm from '@/components/pages/production/project-flock/form/ProjectFlockForm';
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
||||||
import { ProjectFlockApi } from '@/services/api/production/project-flock';
|
import { ProjectFlockApi } from '@/services/api/production';
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
import { useRouter, useSearchParams } from 'next/navigation';
|
||||||
import useSWR from 'swr';
|
import useSWR from 'swr';
|
||||||
|
|
||||||
@@ -37,11 +37,11 @@ const ProjectFlockDetail = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='w-full p-4 flex flex-col justify-center'>
|
<div className='w-full p-4 flex flex-row justify-center'>
|
||||||
{isLoadingProjectFlock && (
|
{isLoadingProjectFlock && (
|
||||||
<span className='loading loading-spinner loading-xl' />
|
<span className='loading loading-spinner loading-xl' />
|
||||||
)}
|
)}
|
||||||
{isResponseSuccess(projectFlock) && (
|
{!isLoadingProjectFlock && isResponseSuccess(projectFlock) && (
|
||||||
<ProjectFlockForm
|
<ProjectFlockForm
|
||||||
formType='detail'
|
formType='detail'
|
||||||
initialValues={projectFlock.data}
|
initialValues={projectFlock.data}
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
import GradingForm from '@/components/pages/production/recording/grading/form/GradingForm';
|
|
||||||
import { RecordingApi } from '@/services/api/production';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const AddGrading = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const recordingId = searchParams.get('recording_id');
|
|
||||||
|
|
||||||
const { data: recording, isLoading: isLoadingRecording } = useSWR(
|
|
||||||
recordingId && recordingId !== 'new' ? [recordingId] : null,
|
|
||||||
([id]) => RecordingApi.getSingle(parseInt(id))
|
|
||||||
);
|
|
||||||
|
|
||||||
if (
|
|
||||||
recordingId &&
|
|
||||||
recordingId !== 'new' &&
|
|
||||||
!isLoadingRecording &&
|
|
||||||
(!recording || !isResponseSuccess(recording))
|
|
||||||
) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
{recordingId && recordingId !== 'new' && isLoadingRecording && (
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
)}
|
|
||||||
{(!recordingId ||
|
|
||||||
recordingId === 'new' ||
|
|
||||||
(!isLoadingRecording && recording && isResponseSuccess(recording))) && (
|
|
||||||
<GradingForm
|
|
||||||
type='add'
|
|
||||||
initialValues={
|
|
||||||
isResponseSuccess(recording) ? recording.data?.eggs?.[0] : undefined
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default AddGrading;
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
import GradingForm from '@/components/pages/production/recording/grading/form/GradingForm';
|
|
||||||
import { RecordingApi } from '@/services/api/production';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const EditGrading = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const recordingId = searchParams.get('recordingId');
|
|
||||||
const gradingId = searchParams.get('gradingId');
|
|
||||||
|
|
||||||
const { data: recording, isLoading: isLoadingRecording } = useSWR(
|
|
||||||
recordingId ? [recordingId] : null,
|
|
||||||
([id]) => RecordingApi.getSingle(parseInt(id))
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!recordingId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoadingRecording && (!recording || !isResponseSuccess(recording))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
{isLoadingRecording && (
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
)}
|
|
||||||
{!isLoadingRecording && recording && isResponseSuccess(recording) && (
|
|
||||||
<GradingForm
|
|
||||||
type='edit'
|
|
||||||
initialValues={recording.data.eggs?.find(
|
|
||||||
(egg) => egg.id === parseInt(gradingId || '0')
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default EditGrading;
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
import GradingForm from '@/components/pages/production/recording/grading/form/GradingForm';
|
|
||||||
import { RecordingApi } from '@/services/api/production';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const DetailGrading = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const gradingId = searchParams.get('gradingId');
|
|
||||||
|
|
||||||
const { data: grading, isLoading: isLoadingGrading } = useSWR(
|
|
||||||
gradingId ? [gradingId] : null,
|
|
||||||
([id]) => RecordingApi.getSingle(parseInt(id))
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!gradingId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoadingGrading && (!grading || !isResponseSuccess(grading))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
{isLoadingGrading && (
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
)}
|
|
||||||
{!isLoadingGrading && grading && isResponseSuccess(grading) && (
|
|
||||||
<GradingForm
|
|
||||||
type='detail'
|
|
||||||
initialValues={grading.data.eggs?.find(
|
|
||||||
(egg) => egg.id === parseInt(gradingId)
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default DetailGrading;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -8,6 +8,91 @@ import TransferToLayingForm from '@/components/pages/production/transfer-to-layi
|
|||||||
import { TransferToLayingApi } from '@/services/api/production/transfer-to-laying';
|
import { TransferToLayingApi } from '@/services/api/production/transfer-to-laying';
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
||||||
|
|
||||||
|
import { TransferToLaying } from '@/types/api/production/transfer-to-laying';
|
||||||
|
|
||||||
|
// TODO: delete dummy data
|
||||||
|
const DUMMY_TRANSFER_TO_LAYING_EDIT: TransferToLaying = {
|
||||||
|
id: 1,
|
||||||
|
transfer_date: '2025-10-14',
|
||||||
|
flock_source: {
|
||||||
|
id: 1,
|
||||||
|
name: 'Flock asal test',
|
||||||
|
},
|
||||||
|
flock_destination: {
|
||||||
|
id: 2,
|
||||||
|
name: 'Flock tujuan destination',
|
||||||
|
},
|
||||||
|
quantity: 10,
|
||||||
|
kandangs: [
|
||||||
|
{
|
||||||
|
kandang: {
|
||||||
|
id: 1,
|
||||||
|
name: 'Kandang test',
|
||||||
|
status: 'ACTIVE',
|
||||||
|
location: {
|
||||||
|
id: 1,
|
||||||
|
name: 'test location',
|
||||||
|
address: 'test address 1',
|
||||||
|
area: { id: 1, name: 'test area 1' },
|
||||||
|
},
|
||||||
|
pic: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_user: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_at: '14-10-2025',
|
||||||
|
updated_at: '14-10-2025',
|
||||||
|
},
|
||||||
|
quantity: 8,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kandang: {
|
||||||
|
id: 1,
|
||||||
|
name: 'Kandang test 2',
|
||||||
|
status: 'ACTIVE',
|
||||||
|
location: {
|
||||||
|
id: 1,
|
||||||
|
name: 'test location',
|
||||||
|
address: 'test address 1',
|
||||||
|
area: { id: 1, name: 'test area 1' },
|
||||||
|
},
|
||||||
|
pic: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_user: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_at: '14-10-2025',
|
||||||
|
updated_at: '14-10-2025',
|
||||||
|
},
|
||||||
|
quantity: 2,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
reason: 'Test alasan',
|
||||||
|
|
||||||
|
created_user: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_at: '14-10-2025',
|
||||||
|
updated_at: '14-10-2025',
|
||||||
|
};
|
||||||
|
|
||||||
const TransferToLayingEdit = () => {
|
const TransferToLayingEdit = () => {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const searchParams = useSearchParams();
|
const searchParams = useSearchParams();
|
||||||
@@ -29,33 +114,33 @@ const TransferToLayingEdit = () => {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: remove dummy data and integrate with real API
|
||||||
if (
|
if (
|
||||||
!isLoadingTransferToLaying &&
|
!isLoadingTransferToLaying &&
|
||||||
(!transferToLaying || isResponseError(transferToLaying))
|
(!transferToLaying ||
|
||||||
|
(isResponseError(transferToLaying) && !DUMMY_TRANSFER_TO_LAYING_EDIT))
|
||||||
) {
|
) {
|
||||||
router.replace('/404');
|
router.replace('/404');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
|
||||||
isResponseSuccess(transferToLaying) &&
|
|
||||||
transferToLaying.data.approval.step_number === 2
|
|
||||||
) {
|
|
||||||
router.replace('/production/transfer-to-laying');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
<div className='w-full p-4 flex flex-row justify-center'>
|
||||||
{isLoadingTransferToLaying && (
|
{isLoadingTransferToLaying && (
|
||||||
<span className='loading loading-spinner loading-xl' />
|
<span className='loading loading-spinner loading-xl' />
|
||||||
)}
|
)}
|
||||||
{!isLoadingTransferToLaying && isResponseSuccess(transferToLaying) && (
|
{/* {!isLoadingTransferToLaying && isResponseSuccess(transferToLaying) && (
|
||||||
<TransferToLayingForm
|
<TransferToLayingForm
|
||||||
type='edit'
|
type='detail'
|
||||||
initialValues={transferToLaying.data}
|
initialValues={transferToLaying.data}
|
||||||
/>
|
/>
|
||||||
)}
|
)} */}
|
||||||
|
|
||||||
|
{/* TODO: remove this dummy data and integrate to real API */}
|
||||||
|
<TransferToLayingForm
|
||||||
|
type='edit'
|
||||||
|
initialValues={DUMMY_TRANSFER_TO_LAYING_EDIT}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -8,6 +8,91 @@ import TransferToLayingForm from '@/components/pages/production/transfer-to-layi
|
|||||||
import { TransferToLayingApi } from '@/services/api/production/transfer-to-laying';
|
import { TransferToLayingApi } from '@/services/api/production/transfer-to-laying';
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
||||||
|
|
||||||
|
import { TransferToLaying } from '@/types/api/production/transfer-to-laying';
|
||||||
|
|
||||||
|
// TODO: delete dummy data
|
||||||
|
const DUMMY_TRANSFER_TO_LAYING_DETAIL: TransferToLaying = {
|
||||||
|
id: 1,
|
||||||
|
transfer_date: '2025-10-14',
|
||||||
|
flock_source: {
|
||||||
|
id: 1,
|
||||||
|
name: 'Flock asal test',
|
||||||
|
},
|
||||||
|
flock_destination: {
|
||||||
|
id: 2,
|
||||||
|
name: 'Flock tujuan destination',
|
||||||
|
},
|
||||||
|
quantity: 10,
|
||||||
|
kandangs: [
|
||||||
|
{
|
||||||
|
kandang: {
|
||||||
|
id: 1,
|
||||||
|
name: 'Kandang test',
|
||||||
|
status: 'ACTIVE',
|
||||||
|
location: {
|
||||||
|
id: 1,
|
||||||
|
name: 'test location',
|
||||||
|
address: 'test address 1',
|
||||||
|
area: { id: 1, name: 'test area 1' },
|
||||||
|
},
|
||||||
|
pic: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_user: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_at: '14-10-2025',
|
||||||
|
updated_at: '14-10-2025',
|
||||||
|
},
|
||||||
|
quantity: 8,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kandang: {
|
||||||
|
id: 1,
|
||||||
|
name: 'Kandang test 2',
|
||||||
|
status: 'ACTIVE',
|
||||||
|
location: {
|
||||||
|
id: 1,
|
||||||
|
name: 'test location',
|
||||||
|
address: 'test address 1',
|
||||||
|
area: { id: 1, name: 'test area 1' },
|
||||||
|
},
|
||||||
|
pic: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_user: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_at: '14-10-2025',
|
||||||
|
updated_at: '14-10-2025',
|
||||||
|
},
|
||||||
|
quantity: 2,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
reason: 'Test alasan',
|
||||||
|
|
||||||
|
created_user: {
|
||||||
|
id: 1,
|
||||||
|
id_user: 2,
|
||||||
|
email: 'test@gmail.com',
|
||||||
|
name: 'test',
|
||||||
|
},
|
||||||
|
created_at: '14-10-2025',
|
||||||
|
updated_at: '14-10-2025',
|
||||||
|
};
|
||||||
|
|
||||||
const TransferToLayingDetail = () => {
|
const TransferToLayingDetail = () => {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const searchParams = useSearchParams();
|
const searchParams = useSearchParams();
|
||||||
@@ -29,9 +114,11 @@ const TransferToLayingDetail = () => {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: remove dummy data and integrate with real API
|
||||||
if (
|
if (
|
||||||
!isLoadingTransferToLaying &&
|
!isLoadingTransferToLaying &&
|
||||||
(!transferToLaying || isResponseError(transferToLaying))
|
(!transferToLaying ||
|
||||||
|
(isResponseError(transferToLaying) && !DUMMY_TRANSFER_TO_LAYING_DETAIL))
|
||||||
) {
|
) {
|
||||||
router.replace('/404');
|
router.replace('/404');
|
||||||
return;
|
return;
|
||||||
@@ -42,13 +129,18 @@ const TransferToLayingDetail = () => {
|
|||||||
{isLoadingTransferToLaying && (
|
{isLoadingTransferToLaying && (
|
||||||
<span className='loading loading-spinner loading-xl' />
|
<span className='loading loading-spinner loading-xl' />
|
||||||
)}
|
)}
|
||||||
|
{/* {!isLoadingTransferToLaying && isResponseSuccess(transferToLaying) && (
|
||||||
{!isLoadingTransferToLaying && isResponseSuccess(transferToLaying) && (
|
|
||||||
<TransferToLayingForm
|
<TransferToLayingForm
|
||||||
type='detail'
|
type='detail'
|
||||||
initialValues={transferToLaying.data}
|
initialValues={transferToLaying.data}
|
||||||
/>
|
/>
|
||||||
)}
|
)} */}
|
||||||
|
|
||||||
|
{/* TODO: remove this dummy data and integrate to real API */}
|
||||||
|
<TransferToLayingForm
|
||||||
|
type='detail'
|
||||||
|
initialValues={DUMMY_TRANSFER_TO_LAYING_DETAIL}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
import PurchaseRequestForm from '@/components/pages/purchase/form/request/PurchaseRequestForm';
|
|
||||||
|
|
||||||
const AddPurchaseRequest = () => {
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
<PurchaseRequestForm />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default AddPurchaseRequest;
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
import PurchaseRequestForm from '@/components/pages/purchase/form/request/PurchaseRequestForm';
|
|
||||||
import { PurchaseApi } from '@/services/api/purchase';
|
|
||||||
import { isResponseSuccess, isResponseError } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const PurchaseEdit = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const purchaseId = searchParams.get('purchaseId');
|
|
||||||
|
|
||||||
const { data: purchase, isLoading: isLoadingPurchase } = useSWR(
|
|
||||||
purchaseId,
|
|
||||||
(id: number) => PurchaseApi.getSingle(id)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!purchaseId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoadingPurchase && (!purchase || isResponseError(purchase))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4 flex flex-row justify-center'>
|
|
||||||
{isLoadingPurchase && (
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
)}
|
|
||||||
{!isLoadingPurchase && isResponseSuccess(purchase) && (
|
|
||||||
<PurchaseRequestForm type='edit' initialValues={purchase.data} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default PurchaseEdit;
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
import PurchaseOrderDetail from '@/components/pages/purchase/order/PurchaseOrderDetail';
|
|
||||||
import { PurchaseApi } from '@/services/api/purchase';
|
|
||||||
import { isResponseSuccess, isResponseError } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
const PurchaseDetail = () => {
|
|
||||||
const router = useRouter();
|
|
||||||
const searchParams = useSearchParams();
|
|
||||||
|
|
||||||
const purchaseId = searchParams.get('purchaseId');
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: purchase,
|
|
||||||
isLoading: isLoadingPurchase,
|
|
||||||
mutate: mutatePurchase,
|
|
||||||
} = useSWR(purchaseId, (id: number) => PurchaseApi.getSingle(id));
|
|
||||||
|
|
||||||
if (!purchaseId) {
|
|
||||||
router.back();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isLoadingPurchase && (!purchase || isResponseError(purchase))) {
|
|
||||||
router.replace('/404');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full p-4'>
|
|
||||||
{isLoadingPurchase && (
|
|
||||||
<div className='w-full flex flex-row justify-center items-center'>
|
|
||||||
<span className='loading loading-spinner loading-xl' />
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{!isLoadingPurchase && isResponseSuccess(purchase) && (
|
|
||||||
<PurchaseOrderDetail
|
|
||||||
type='detail'
|
|
||||||
initialValues={purchase.data}
|
|
||||||
refetchData={mutatePurchase}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default PurchaseDetail;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import SuspenseHelper from '@/components/helper/SuspenseHelper';
|
|
||||||
|
|
||||||
const Layout = ({
|
|
||||||
children,
|
|
||||||
}: Readonly<{
|
|
||||||
children: React.ReactNode;
|
|
||||||
}>) => {
|
|
||||||
return <SuspenseHelper>{children}</SuspenseHelper>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Layout;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import PurchaseTable from '@/components/pages/purchase/PurchaseTable';
|
|
||||||
|
|
||||||
const Purchase = () => {
|
|
||||||
return (
|
|
||||||
<section className='w-full p-4'>
|
|
||||||
<PurchaseTable />
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Purchase;
|
|
||||||
@@ -3,7 +3,7 @@ import Link from 'next/link';
|
|||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
import { Color } from '@/types/theme';
|
import { Color } from '@/types/theme';
|
||||||
|
|
||||||
export interface ButtonProps extends react.ComponentProps<'button'> {
|
interface ButtonProps extends react.ComponentProps<'button'> {
|
||||||
variant?: 'soft' | 'outline' | 'dash' | 'ghost' | 'link' | 'active';
|
variant?: 'soft' | 'outline' | 'dash' | 'ghost' | 'link' | 'active';
|
||||||
color?: Color;
|
color?: Color;
|
||||||
href?: string;
|
href?: string;
|
||||||
|
|||||||
+33
-128
@@ -1,11 +1,8 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { HTMLAttributes, ReactNode, useState } from 'react';
|
import { HTMLAttributes, ReactNode } from 'react';
|
||||||
|
|
||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
import Image from 'next/image';
|
|
||||||
import Collapse from './Collapse';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
|
|
||||||
export interface CardProps
|
export interface CardProps
|
||||||
extends Omit<HTMLAttributes<HTMLDivElement>, 'className'> {
|
extends Omit<HTMLAttributes<HTMLDivElement>, 'className'> {
|
||||||
@@ -13,13 +10,8 @@ export interface CardProps
|
|||||||
subtitle?: string;
|
subtitle?: string;
|
||||||
image?: string;
|
image?: string;
|
||||||
imageAlt?: string;
|
imageAlt?: string;
|
||||||
imageWidth?: number;
|
|
||||||
imageHeight?: number;
|
|
||||||
actions?: ReactNode;
|
actions?: ReactNode;
|
||||||
footer?: ReactNode;
|
footer?: ReactNode;
|
||||||
collapsible?: boolean;
|
|
||||||
defaultCollapsed?: boolean;
|
|
||||||
onCollapsedChange?: (collapsed: boolean) => void;
|
|
||||||
className?: {
|
className?: {
|
||||||
wrapper?: string;
|
wrapper?: string;
|
||||||
image?: string;
|
image?: string;
|
||||||
@@ -28,7 +20,6 @@ export interface CardProps
|
|||||||
subtitle?: string;
|
subtitle?: string;
|
||||||
actions?: string;
|
actions?: string;
|
||||||
footer?: string;
|
footer?: string;
|
||||||
collapsible?: string;
|
|
||||||
};
|
};
|
||||||
variant?: 'default' | 'compact' | 'bordered' | 'shadow' | 'image-full';
|
variant?: 'default' | 'compact' | 'bordered' | 'shadow' | 'image-full';
|
||||||
size?: 'sm' | 'md' | 'lg';
|
size?: 'sm' | 'md' | 'lg';
|
||||||
@@ -39,27 +30,14 @@ const Card = ({
|
|||||||
subtitle,
|
subtitle,
|
||||||
image,
|
image,
|
||||||
imageAlt,
|
imageAlt,
|
||||||
imageWidth,
|
|
||||||
imageHeight,
|
|
||||||
actions,
|
actions,
|
||||||
footer,
|
footer,
|
||||||
collapsible,
|
|
||||||
defaultCollapsed = false,
|
|
||||||
onCollapsedChange,
|
|
||||||
className,
|
className,
|
||||||
variant = 'default',
|
variant = 'default',
|
||||||
size = 'md',
|
size = 'md',
|
||||||
children,
|
children,
|
||||||
...props
|
...props
|
||||||
}: CardProps) => {
|
}: CardProps) => {
|
||||||
const [isCollapsed, setIsCollapsed] = useState(defaultCollapsed);
|
|
||||||
|
|
||||||
const handleCollapsedChange = (open: boolean) => {
|
|
||||||
const collapsed = !open;
|
|
||||||
setIsCollapsed(collapsed);
|
|
||||||
onCollapsedChange?.(collapsed);
|
|
||||||
};
|
|
||||||
|
|
||||||
const getCardClasses = () => {
|
const getCardClasses = () => {
|
||||||
const baseClasses = 'card bg-base-100';
|
const baseClasses = 'card bg-base-100';
|
||||||
|
|
||||||
@@ -85,31 +63,11 @@ const Card = ({
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const getImageDimensions = () => {
|
|
||||||
if (variant === 'image-full') {
|
|
||||||
return {
|
|
||||||
width: imageWidth || 128,
|
|
||||||
height: imageHeight || 128,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const cardWidths = {
|
|
||||||
sm: 256, // w-64
|
|
||||||
md: 384, // w-96
|
|
||||||
lg: 448, // w-[28rem]
|
|
||||||
};
|
|
||||||
|
|
||||||
return {
|
|
||||||
width: imageWidth || cardWidths[size],
|
|
||||||
height: imageHeight || 192,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
const getImageClasses = () => {
|
const getImageClasses = () => {
|
||||||
if (variant === 'image-full') {
|
if (variant === 'image-full') {
|
||||||
return cn('object-cover', className?.image);
|
return cn('w-32 h-32 object-cover', className?.image);
|
||||||
}
|
}
|
||||||
return cn('w-full object-cover', className?.image);
|
return cn('h-48 object-cover', className?.image);
|
||||||
};
|
};
|
||||||
|
|
||||||
const getBodyClasses = () => {
|
const getBodyClasses = () => {
|
||||||
@@ -144,98 +102,45 @@ const Card = ({
|
|||||||
return cn('border-t border-base-300 mt-4 pt-4', className?.footer);
|
return cn('border-t border-base-300 mt-4 pt-4', className?.footer);
|
||||||
};
|
};
|
||||||
|
|
||||||
const renderCardContent = () => {
|
|
||||||
const hasContent = children || actions || footer;
|
|
||||||
|
|
||||||
const titleContent = (
|
|
||||||
<div className='group flex items-center !justify-between w-full'>
|
|
||||||
<div className='flex-1'>
|
|
||||||
{title && <h2 className={getTitleClasses()}>{title}</h2>}
|
|
||||||
{subtitle && <p className={getSubtitleClasses()}>{subtitle}</p>}
|
|
||||||
</div>
|
|
||||||
{collapsible && (
|
|
||||||
<button
|
|
||||||
onClick={() => handleCollapsedChange(!isCollapsed)}
|
|
||||||
className='btn btn-ghost btn-sm btn-circle'
|
|
||||||
aria-label={isCollapsed ? 'Expand content' : 'Collapse content'}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon={
|
|
||||||
isCollapsed
|
|
||||||
? 'material-symbols:expand-more'
|
|
||||||
: 'material-symbols:expand-less'
|
|
||||||
}
|
|
||||||
width={20}
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
|
|
||||||
const cardContent = (
|
|
||||||
<div className='space-y-4'>
|
|
||||||
{children}
|
|
||||||
{actions && <div className={getActionsClasses()}>{actions}</div>}
|
|
||||||
{footer && <div className={getFooterClasses()}>{footer}</div>}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{image && (
|
|
||||||
<figure>
|
|
||||||
<Image
|
|
||||||
src={image}
|
|
||||||
alt={imageAlt || title || 'Card image'}
|
|
||||||
width={getImageDimensions().width}
|
|
||||||
height={getImageDimensions().height}
|
|
||||||
className={getImageClasses()}
|
|
||||||
/>
|
|
||||||
</figure>
|
|
||||||
)}
|
|
||||||
<div className={getBodyClasses()}>
|
|
||||||
{collapsible && hasContent ? (
|
|
||||||
<Collapse
|
|
||||||
variant='default'
|
|
||||||
bordered={false}
|
|
||||||
open={!isCollapsed}
|
|
||||||
onOpenChange={handleCollapsedChange}
|
|
||||||
title={titleContent}
|
|
||||||
titleClassName='w-full cursor-pointer'
|
|
||||||
contentClassName='p-0'
|
|
||||||
fullWidth={true}
|
|
||||||
>
|
|
||||||
{cardContent}
|
|
||||||
</Collapse>
|
|
||||||
) : (
|
|
||||||
<>
|
|
||||||
{(title || subtitle) && (
|
|
||||||
<div className='mb-4'>
|
|
||||||
{title && <h2 className={getTitleClasses()}>{title}</h2>}
|
|
||||||
{subtitle && (
|
|
||||||
<p className={getSubtitleClasses()}>{subtitle}</p>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{hasContent && cardContent}
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
if (variant === 'image-full' && image) {
|
if (variant === 'image-full' && image) {
|
||||||
return (
|
return (
|
||||||
<div className={getCardClasses()} {...props}>
|
<div className={getCardClasses()} {...props}>
|
||||||
{renderCardContent()}
|
<figure>
|
||||||
|
<img
|
||||||
|
src={image}
|
||||||
|
alt={imageAlt || title || 'Card image'}
|
||||||
|
className={getImageClasses()}
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
<div className={getBodyClasses()}>
|
||||||
|
{title && <h2 className={getTitleClasses()}>{title}</h2>}
|
||||||
|
{subtitle && <p className={getSubtitleClasses()}>{subtitle}</p>}
|
||||||
|
{children}
|
||||||
|
{actions && <div className={getActionsClasses()}>{actions}</div>}
|
||||||
|
</div>
|
||||||
|
{footer && <div className={getFooterClasses()}>{footer}</div>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={getCardClasses()} {...props}>
|
<div className={getCardClasses()} {...props}>
|
||||||
{renderCardContent()}
|
{image && (
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src={image}
|
||||||
|
alt={imageAlt || title || 'Card image'}
|
||||||
|
className={getImageClasses()}
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
)}
|
||||||
|
<div className={getBodyClasses()}>
|
||||||
|
{title && <h2 className={getTitleClasses()}>{title}</h2>}
|
||||||
|
{subtitle && <p className={getSubtitleClasses()}>{subtitle}</p>}
|
||||||
|
{children}
|
||||||
|
{actions && <div className={getActionsClasses()}>{actions}</div>}
|
||||||
|
</div>
|
||||||
|
{footer && <div className={getFooterClasses()}>{footer}</div>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -26,9 +26,6 @@ export type CollapseProps = {
|
|||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
/** Allow only one open at a time by switching to radio input */
|
/** Allow only one open at a time by switching to radio input */
|
||||||
asRadio?: boolean;
|
asRadio?: boolean;
|
||||||
/** Force full width instead of auto-fit when collapsed
|
|
||||||
* (Khusus justify-between dan justify-end) */
|
|
||||||
fullWidth?: boolean;
|
|
||||||
/** Extra classnames */
|
/** Extra classnames */
|
||||||
className?: string;
|
className?: string;
|
||||||
titleClassName?: string;
|
titleClassName?: string;
|
||||||
@@ -47,7 +44,6 @@ export const Collapse = ({
|
|||||||
bordered,
|
bordered,
|
||||||
disabled,
|
disabled,
|
||||||
asRadio = false,
|
asRadio = false,
|
||||||
fullWidth,
|
|
||||||
className,
|
className,
|
||||||
titleClassName,
|
titleClassName,
|
||||||
contentClassName,
|
contentClassName,
|
||||||
@@ -72,9 +68,9 @@ export const Collapse = ({
|
|||||||
'collapse',
|
'collapse',
|
||||||
variant === 'arrow' && 'collapse-arrow',
|
variant === 'arrow' && 'collapse-arrow',
|
||||||
variant === 'plus' && 'collapse-plus',
|
variant === 'plus' && 'collapse-plus',
|
||||||
bordered && 'border base-content/20 border-opacity-20 rounded-box',
|
bordered && 'border base-content/20 border-opacity-20 rounded',
|
||||||
disabled && 'opacity-60 pointer-events-none',
|
disabled && 'opacity-60 pointer-events-none',
|
||||||
!fullWidth && !open && 'w-fit',
|
!open && 'w-fit',
|
||||||
className
|
className
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -1,21 +1,161 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { useCallback } from 'react';
|
import { useCallback, useState } from 'react';
|
||||||
import { usePathname } from 'next/navigation';
|
import { usePathname } from 'next/navigation';
|
||||||
|
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import { Icon } from '@iconify/react';
|
import { Icon } from '@iconify/react';
|
||||||
import Drawer from '@/components/Drawer';
|
import Drawer from '@/components/Drawer';
|
||||||
|
import Menu from '@/components/menu/Menu';
|
||||||
|
import MenuItem from '@/components/menu/MenuItem';
|
||||||
import Navbar from '@/components/Navbar';
|
import Navbar from '@/components/Navbar';
|
||||||
|
import Collapse from '@/components/Collapse';
|
||||||
import Button from '@/components/Button';
|
import Button from '@/components/Button';
|
||||||
import SidebarMenu from '@/components/molecules/SidebarMenu';
|
|
||||||
|
|
||||||
import { useUiStore } from '@/stores/ui/ui.store';
|
import { useUiStore } from '@/stores/ui/ui.store';
|
||||||
import { MAIN_DRAWER_LINKS } from '@/config/constant';
|
import { MAIN_DRAWER_LINKS } from '@/config/constant';
|
||||||
import { isPathActive } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
|
|
||||||
|
type CollapseMenuProps = {
|
||||||
|
title: string;
|
||||||
|
link: string;
|
||||||
|
icon: string;
|
||||||
|
submenu?: CollapseMenuProps[];
|
||||||
|
depth?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
const isPathActive = (pathname: string, link?: string) => {
|
||||||
|
if (!link) return false;
|
||||||
|
|
||||||
|
const splittedPathname = pathname.split('/');
|
||||||
|
const splittedLink = link.split('/');
|
||||||
|
|
||||||
|
const isActiveLinkValid = splittedLink.every((linkChunk, idx) => {
|
||||||
|
return linkChunk === splittedPathname[idx];
|
||||||
|
});
|
||||||
|
|
||||||
|
return pathname.startsWith(link) && isActiveLinkValid;
|
||||||
|
};
|
||||||
|
|
||||||
|
const CollapseMenu = ({
|
||||||
|
title,
|
||||||
|
link,
|
||||||
|
icon,
|
||||||
|
submenu,
|
||||||
|
depth = 0,
|
||||||
|
}: CollapseMenuProps) => {
|
||||||
|
const pathname = usePathname();
|
||||||
|
const isActive = isPathActive(pathname, link);
|
||||||
|
const [open, setOpen] = useState(isActive);
|
||||||
|
|
||||||
|
const menuCollapseTitle = (
|
||||||
|
<div
|
||||||
|
className={cn(
|
||||||
|
'w-full px-3 py-2 rounded-md text-base font-semibold transition-colors flex flex-row justify-between items-center gap-2 hover:bg-primary/10 opacity-40',
|
||||||
|
{
|
||||||
|
'bg-primary/10 opacity-100': open || isActive,
|
||||||
|
}
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<div className='flex flex-row items-center gap-2'>
|
||||||
|
<Icon icon={icon} width={20} height={20} />
|
||||||
|
<span>{title}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Icon
|
||||||
|
icon='cuida:caret-up-outline'
|
||||||
|
width={20}
|
||||||
|
height={20}
|
||||||
|
className={cn('transition-transform', {
|
||||||
|
'rotate-90': !open,
|
||||||
|
'rotate-180': open,
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Collapse
|
||||||
|
open={open}
|
||||||
|
title={menuCollapseTitle}
|
||||||
|
onOpenChange={setOpen}
|
||||||
|
className='w-full'
|
||||||
|
titleClassName='w-full p-0!'
|
||||||
|
>
|
||||||
|
<Menu>
|
||||||
|
<div
|
||||||
|
className='w-full py-0.5 flex flex-col gap-0.5'
|
||||||
|
style={{
|
||||||
|
paddingLeft: `${0.5 * (depth + 1)}rem`,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{submenu?.map((item, idx) => {
|
||||||
|
const hasSubmenu = item.submenu && item.submenu.length > 0;
|
||||||
|
|
||||||
|
if (!hasSubmenu) {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
key={idx}
|
||||||
|
title={item.title}
|
||||||
|
href={item.link}
|
||||||
|
icon={item.icon}
|
||||||
|
active={isPathActive(pathname, item.link)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<CollapseMenu
|
||||||
|
key={idx}
|
||||||
|
title={item.title}
|
||||||
|
link={item.link}
|
||||||
|
icon={item.icon}
|
||||||
|
submenu={item.submenu}
|
||||||
|
depth={depth + 1}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</Menu>
|
||||||
|
</Collapse>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const MainDrawerMenu = () => {
|
||||||
|
const pathname = usePathname();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Menu>
|
||||||
|
{MAIN_DRAWER_LINKS.map((item, idx) => {
|
||||||
|
const hasSubmenu = item.submenu && item.submenu.length > 0;
|
||||||
|
|
||||||
|
if (!hasSubmenu) {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
key={idx}
|
||||||
|
title={item.title}
|
||||||
|
href={item.link}
|
||||||
|
icon={item.icon}
|
||||||
|
active={pathname.startsWith(item.link)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<CollapseMenu
|
||||||
|
key={idx}
|
||||||
|
title={item.title}
|
||||||
|
link={item.link}
|
||||||
|
icon={item.icon}
|
||||||
|
submenu={item.submenu}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Menu>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const MainDrawerContent = () => {
|
const MainDrawerContent = () => {
|
||||||
const pathname = usePathname();
|
|
||||||
const { setMainDrawerOpen } = useUiStore();
|
const { setMainDrawerOpen } = useUiStore();
|
||||||
|
|
||||||
const closeMainDrawerHandler = () => {
|
const closeMainDrawerHandler = () => {
|
||||||
@@ -51,7 +191,7 @@ const MainDrawerContent = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<SidebarMenu menu={MAIN_DRAWER_LINKS} activeLink={pathname} />
|
<MainDrawerMenu />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@@ -76,9 +216,9 @@ const MainDrawer = ({
|
|||||||
const hasSubmenu = menu?.submenu && menu?.submenu.length > 0;
|
const hasSubmenu = menu?.submenu && menu?.submenu.length > 0;
|
||||||
|
|
||||||
if (!title) {
|
if (!title) {
|
||||||
title += menu?.text;
|
title += menu?.title;
|
||||||
} else {
|
} else {
|
||||||
title += ' - ' + menu?.text;
|
title += ' - ' + menu?.title;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hasSubmenu || !menu.submenu) return;
|
if (!hasSubmenu || !menu.submenu) return;
|
||||||
|
|||||||
+24
-42
@@ -1,52 +1,38 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import {
|
import { ReactNode, RefObject, useCallback, useRef, useState } from 'react';
|
||||||
ReactNode,
|
|
||||||
RefObject,
|
|
||||||
useCallback,
|
|
||||||
useEffect,
|
|
||||||
useRef,
|
|
||||||
useState,
|
|
||||||
} from 'react';
|
|
||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
|
|
||||||
export const useModal = (isNestingModal = false) => {
|
export const useModal = () => {
|
||||||
const ref = useRef<HTMLDialogElement>(null);
|
const ref = useRef<HTMLDialogElement>(null);
|
||||||
const [open, setOpen] = useState(false);
|
const [open, setOpen] = useState(false);
|
||||||
|
|
||||||
const openModal = useCallback(() => {
|
const openModal = useCallback(() => {
|
||||||
if (!ref.current) return;
|
|
||||||
if (isNestingModal) {
|
|
||||||
ref.current.showModal();
|
|
||||||
} else {
|
|
||||||
ref.current.show();
|
|
||||||
}
|
|
||||||
setOpen(true);
|
setOpen(true);
|
||||||
}, [isNestingModal]);
|
|
||||||
|
ref.current?.showModal();
|
||||||
|
}, []);
|
||||||
|
|
||||||
const closeModal = useCallback(() => {
|
const closeModal = useCallback(() => {
|
||||||
if (!ref.current) return;
|
|
||||||
ref.current.close();
|
|
||||||
setOpen(false);
|
setOpen(false);
|
||||||
|
ref.current?.close();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const toggle = useCallback(() => {
|
const toggle = useCallback(() => {
|
||||||
open ? closeModal() : openModal();
|
if (open) {
|
||||||
|
closeModal();
|
||||||
|
} else {
|
||||||
|
openModal();
|
||||||
|
}
|
||||||
}, [open, closeModal, openModal]);
|
}, [open, closeModal, openModal]);
|
||||||
|
|
||||||
useEffect(() => {
|
if (ref.current) {
|
||||||
const dialog = ref.current;
|
ref.current.addEventListener('close', () => {
|
||||||
if (!dialog) return;
|
closeModal();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const handleClose = () => setOpen(false);
|
return { ref, open, setOpen, openModal, closeModal, toggle } as const;
|
||||||
dialog.addEventListener('close', handleClose);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
dialog.removeEventListener('close', handleClose);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return { ref, open, openModal, closeModal, toggle } as const;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
interface ModalProps {
|
interface ModalProps {
|
||||||
@@ -60,19 +46,15 @@ interface ModalProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const Modal = ({ ref, children, closeOnBackdrop, className }: ModalProps) => {
|
const Modal = ({ ref, children, closeOnBackdrop, className }: ModalProps) => {
|
||||||
const handleBackdropClick = (e: React.MouseEvent<HTMLDialogElement>) => {
|
|
||||||
if (closeOnBackdrop && e.target === ref.current) {
|
|
||||||
ref.current?.close();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<dialog
|
<dialog ref={ref} className={cn('modal', className?.modal)}>
|
||||||
ref={ref}
|
|
||||||
className={cn('modal', className?.modal)}
|
|
||||||
onClick={handleBackdropClick}
|
|
||||||
>
|
|
||||||
<div className={cn('modal-box', className?.modalBox)}>{children}</div>
|
<div className={cn('modal-box', className?.modalBox)}>{children}</div>
|
||||||
|
|
||||||
|
{closeOnBackdrop && (
|
||||||
|
<form method='dialog' className='modal-backdrop'>
|
||||||
|
<button>close</button>
|
||||||
|
</form>
|
||||||
|
)}
|
||||||
</dialog>
|
</dialog>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,38 +1,16 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
import { useRouter } from 'next/navigation';
|
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
import { Icon } from '@iconify/react';
|
||||||
import Menu from '@/components/menu/Menu';
|
import Menu from '@/components/menu/Menu';
|
||||||
import MenuItem from '@/components/menu/MenuItem';
|
import MenuItem from '@/components/menu/MenuItem';
|
||||||
import Button from '@/components/Button';
|
import Button from '@/components/Button';
|
||||||
|
|
||||||
import { useAuth } from '@/services/hooks/useAuth';
|
|
||||||
import { AuthApi } from '@/services/api/auth';
|
|
||||||
import { isResponseError } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
interface NavbarProps {
|
interface NavbarProps {
|
||||||
title: string;
|
title: string;
|
||||||
toggleSidebar?: () => void;
|
toggleSidebar?: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Navbar = ({ title, toggleSidebar }: NavbarProps) => {
|
const Navbar = ({ title, toggleSidebar }: NavbarProps) => {
|
||||||
const { setUser } = useAuth();
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const logoutClickHandler = async () => {
|
|
||||||
const logoutRes = await AuthApi.logout();
|
|
||||||
|
|
||||||
if (isResponseError(logoutRes)) {
|
|
||||||
toast.error('Gagal logout! Coba lagi!');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setUser(undefined);
|
|
||||||
router.replace(process.env.NEXT_PUBLIC_SSO_LOGIN_URL as string);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='navbar px-4 bg-base-100 shadow-sm'>
|
<div className='navbar px-4 bg-base-100 shadow-sm'>
|
||||||
<div className='flex-1'>
|
<div className='flex-1'>
|
||||||
@@ -64,7 +42,8 @@ const Navbar = ({ title, toggleSidebar }: NavbarProps) => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Menu className='dropdown-content w-52 mt-3 p-2 bg-base-100 shadow rounded-box menu-sm'>
|
<Menu className='dropdown-content w-52 mt-3 p-2 bg-base-100 shadow rounded-box menu-sm'>
|
||||||
<MenuItem title='Logout' onClick={logoutClickHandler} />
|
<MenuItem title='Settings' href='#' />
|
||||||
|
<MenuItem title='Logout' href='#' />
|
||||||
</Menu>
|
</Menu>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+208
-298
@@ -1,9 +1,7 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { ChangeEventHandler, ReactNode } from 'react';
|
import { ReactNode } from 'react';
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
import { Icon } from '@iconify/react';
|
||||||
import Button from '@/components/Button';
|
|
||||||
|
|
||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
|
|
||||||
@@ -19,18 +17,16 @@ const PaginationButton = ({
|
|||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
onClick?: () => void;
|
onClick?: () => void;
|
||||||
}) => (
|
}) => (
|
||||||
<Button
|
<button
|
||||||
variant='ghost'
|
className={cn(
|
||||||
color='none'
|
'join-item btn btn-ghost p-2.5 rounded-lg text-sm font-medium text-gray-500 aspect-square',
|
||||||
|
'disabled:text-gray-700 disabled:pointer-events-auto! disabled:cursor-not-allowed! disabled:bg-gray-50 disabled:active:translate-y-0'
|
||||||
|
)}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
className={cn(
|
|
||||||
'join-item w-10 h-10 grid place-items-center p-2.5 rounded-lg text-sm font-semibold text-base-content/50 aspect-square',
|
|
||||||
'disabled:text-primary disabled:pointer-events-auto! disabled:cursor-not-allowed! disabled:bg-primary/10 disabled:active:translate-y-0'
|
|
||||||
)}
|
|
||||||
>
|
>
|
||||||
{content}
|
{content}
|
||||||
</Button>
|
</button>
|
||||||
);
|
);
|
||||||
|
|
||||||
const EtcPaginationButton = ({
|
const EtcPaginationButton = ({
|
||||||
@@ -94,20 +90,16 @@ const Pagination = ({
|
|||||||
currentPage = 1,
|
currentPage = 1,
|
||||||
totalItems = 0,
|
totalItems = 0,
|
||||||
itemsPerPage = 10,
|
itemsPerPage = 10,
|
||||||
rowOptions = [10, 20, 50, 100],
|
|
||||||
onPageChange,
|
onPageChange,
|
||||||
onPrevPage = () => {},
|
onPrevPage = () => {},
|
||||||
onNextPage = () => {},
|
onNextPage = () => {},
|
||||||
onRowChange,
|
|
||||||
}: {
|
}: {
|
||||||
currentPage: number;
|
currentPage: number;
|
||||||
totalItems: number;
|
totalItems: number;
|
||||||
itemsPerPage: number;
|
itemsPerPage: number;
|
||||||
rowOptions?: number[];
|
|
||||||
onPageChange: (pageNumber: number) => void;
|
onPageChange: (pageNumber: number) => void;
|
||||||
onPrevPage: () => void;
|
onPrevPage: () => void;
|
||||||
onNextPage: () => void;
|
onNextPage: () => void;
|
||||||
onRowChange?: (row: number) => void;
|
|
||||||
}) => {
|
}) => {
|
||||||
const totalPages =
|
const totalPages =
|
||||||
Math.ceil(totalItems / itemsPerPage) === 0
|
Math.ceil(totalItems / itemsPerPage) === 0
|
||||||
@@ -115,139 +107,30 @@ const Pagination = ({
|
|||||||
: Math.ceil(totalItems / itemsPerPage);
|
: Math.ceil(totalItems / itemsPerPage);
|
||||||
|
|
||||||
const pageChangeHandler = (pageNumber: number) => onPageChange(pageNumber);
|
const pageChangeHandler = (pageNumber: number) => onPageChange(pageNumber);
|
||||||
const firstPageClickHandler = () => onPageChange(1);
|
|
||||||
const lastPageClickHandler = () => onPageChange(totalPages);
|
|
||||||
|
|
||||||
const rowChangeHandler: ChangeEventHandler<HTMLSelectElement> = (e) => {
|
|
||||||
onRowChange?.(Number(e.target.value));
|
|
||||||
};
|
|
||||||
|
|
||||||
const DisplayedRowCountSelect = () => (
|
|
||||||
<div className='flex flex-row items-center gap-4'>
|
|
||||||
<span className='text-sm font-medium text-base-content/50'>Showing</span>
|
|
||||||
|
|
||||||
<select
|
|
||||||
defaultValue={itemsPerPage}
|
|
||||||
onChange={rowChangeHandler}
|
|
||||||
className='select select-xs w-fit text-base-content/50'
|
|
||||||
>
|
|
||||||
{rowOptions.map((rowOption, rowOptionIdx) => (
|
|
||||||
<option
|
|
||||||
key={rowOptionIdx}
|
|
||||||
value={rowOption}
|
|
||||||
className='text-base-content active:text-neutral-content'
|
|
||||||
>
|
|
||||||
{rowOption} Per page
|
|
||||||
</option>
|
|
||||||
))}
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
|
|
||||||
const GoToFirstPageButton = () => (
|
|
||||||
<Button
|
|
||||||
disabled={currentPage === 1}
|
|
||||||
onClick={firstPageClickHandler}
|
|
||||||
variant='ghost'
|
|
||||||
color='none'
|
|
||||||
className={cn(
|
|
||||||
'join-item w-10 h-10 grid place-items-center p-2.5 rounded-lg text-sm font-semibold text-base-content/50 aspect-square',
|
|
||||||
'disabled:bg-[initial]! disabled:text-base-content disabled:pointer-events-auto! disabled:cursor-not-allowed disabled:active:translate-y-0'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='heroicons:chevron-double-left'
|
|
||||||
width={20}
|
|
||||||
height={20}
|
|
||||||
className='text-gray-400 group-disabled:text-gray-300'
|
|
||||||
/>
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
|
|
||||||
const PrevPageButton = () => (
|
|
||||||
<Button
|
|
||||||
disabled={currentPage === 1}
|
|
||||||
onClick={onPrevPage}
|
|
||||||
variant='ghost'
|
|
||||||
color='none'
|
|
||||||
className={cn(
|
|
||||||
'join-item w-10 h-10 grid place-items-center p-2.5 rounded-lg text-sm font-semibold text-base-content/50 aspect-square',
|
|
||||||
'disabled:bg-[initial]! disabled:text-base-content disabled:pointer-events-auto! disabled:cursor-not-allowed disabled:active:translate-y-0'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='heroicons:chevron-left'
|
|
||||||
width={20}
|
|
||||||
height={20}
|
|
||||||
className='text-gray-400 group-disabled:text-gray-300'
|
|
||||||
/>
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
|
|
||||||
const GoToLastPageButton = () => (
|
|
||||||
<Button
|
|
||||||
variant='ghost'
|
|
||||||
color='none'
|
|
||||||
disabled={currentPage === totalPages}
|
|
||||||
onClick={lastPageClickHandler}
|
|
||||||
className={cn(
|
|
||||||
'join-item w-10 h-10 grid place-items-center p-2.5 rounded-lg text-sm font-semibold text-base-content/50 aspect-square',
|
|
||||||
'disabled:bg-[initial]! disabled:text-base-content disabled:pointer-events-auto! disabled:cursor-not-allowed disabled:active:translate-y-0'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='heroicons:chevron-double-right'
|
|
||||||
width={20}
|
|
||||||
height={20}
|
|
||||||
className='text-gray-400 group-disabled:text-gray-300'
|
|
||||||
/>
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
|
|
||||||
const NextPageButton = () => (
|
|
||||||
<Button
|
|
||||||
variant='ghost'
|
|
||||||
color='none'
|
|
||||||
disabled={currentPage === totalPages}
|
|
||||||
onClick={onNextPage}
|
|
||||||
className={cn(
|
|
||||||
'join-item w-10 h-10 grid place-items-center p-2.5 rounded-lg text-sm font-semibold text-base-content/50 aspect-square',
|
|
||||||
'disabled:bg-[initial]! disabled:text-base-content disabled:pointer-events-auto! disabled:cursor-not-allowed disabled:active:translate-y-0'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='heroicons:chevron-right'
|
|
||||||
width={20}
|
|
||||||
height={20}
|
|
||||||
className='text-gray-400 group-disabled:text-gray-300'
|
|
||||||
/>
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
|
|
||||||
const PageInfo = () => (
|
|
||||||
<span className='text-nowrap text-sm font-medium text-base-content/50'>
|
|
||||||
Page {currentPage} of {totalPages}
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='@container'>
|
<div>
|
||||||
<div className='flex flex-row justify-center items-center'>
|
<div className='join w-full justify-between items-center gap-3'>
|
||||||
<div className='hidden @lg:block'>
|
<button
|
||||||
<DisplayedRowCountSelect />
|
disabled={currentPage === 1}
|
||||||
</div>
|
onClick={onPrevPage}
|
||||||
|
className={cn(
|
||||||
|
'join-item btn btn-outline group px-3 py-2 text-sm font-semibold rounded-lg border border-gray-300 shadow-xs hidden sm:flex justify-center items-center gap-1.5',
|
||||||
|
'disabled:bg-[initial]! disabled:text-gray-400 disabled:pointer-events-auto! disabled:cursor-not-allowed disabled:active:translate-y-0'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
icon='uil:arrow-left'
|
||||||
|
width={20}
|
||||||
|
height={20}
|
||||||
|
className='text-gray-400 group-disabled:text-gray-300'
|
||||||
|
/>{' '}
|
||||||
|
Previous
|
||||||
|
</button>
|
||||||
|
|
||||||
<div className='join w-full justify-end @lg:justify-center items-center gap-0.5'>
|
{totalPages <= 7 && (
|
||||||
<div className='hidden @lg:block'>
|
<div className='join-item join gap-0.5'>
|
||||||
<GoToFirstPageButton />
|
{range(1, totalPages).map((pageNumber) => (
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='hidden @lg:block'>
|
|
||||||
<PrevPageButton />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{totalPages <= 7 &&
|
|
||||||
range(1, totalPages).map((pageNumber) => (
|
|
||||||
<PaginationButton
|
<PaginationButton
|
||||||
key={pageNumber}
|
key={pageNumber}
|
||||||
content={pageNumber}
|
content={pageNumber}
|
||||||
@@ -255,168 +138,195 @@ const Pagination = ({
|
|||||||
onClick={() => pageChangeHandler(pageNumber)}
|
onClick={() => pageChangeHandler(pageNumber)}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
{totalPages > 7 && (
|
{totalPages > 7 && (
|
||||||
<>
|
<div className='join-item join gap-0.5'>
|
||||||
<PaginationButton
|
<PaginationButton
|
||||||
content={1}
|
content={1}
|
||||||
disabled={currentPage === 1}
|
disabled={currentPage === 1}
|
||||||
onClick={() => pageChangeHandler(1)}
|
onClick={() => pageChangeHandler(1)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{totalPages >= 2 &&
|
{totalPages >= 2 &&
|
||||||
(currentPage <= 3 || currentPage >= totalPages - 2) && (
|
(currentPage <= 3 || currentPage >= totalPages - 2) && (
|
||||||
<PaginationButton
|
|
||||||
content={2}
|
|
||||||
disabled={currentPage === 2}
|
|
||||||
onClick={() => pageChangeHandler(2)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 2 &&
|
|
||||||
currentPage > 3 &&
|
|
||||||
currentPage < totalPages - 2 && (
|
|
||||||
<EtcPaginationButton
|
|
||||||
startPage={2}
|
|
||||||
endPage={currentPage - 2}
|
|
||||||
onPageItemClick={pageChangeHandler}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 3 &&
|
|
||||||
(currentPage <= 4 || currentPage >= totalPages - 2) &&
|
|
||||||
currentPage !== totalPages - 2 && (
|
|
||||||
<PaginationButton
|
|
||||||
content={3}
|
|
||||||
disabled={currentPage === 3}
|
|
||||||
onClick={() => pageChangeHandler(3)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 7 &&
|
|
||||||
(currentPage <= 2 || currentPage >= totalPages - 2) && (
|
|
||||||
<EtcPaginationButton
|
|
||||||
startPage={
|
|
||||||
currentPage <= 2
|
|
||||||
? currentPage + 2
|
|
||||||
: currentPage === totalPages - 2
|
|
||||||
? 3
|
|
||||||
: currentPage >= totalPages - 1
|
|
||||||
? 4
|
|
||||||
: 1
|
|
||||||
}
|
|
||||||
endPage={
|
|
||||||
currentPage <= 2 || currentPage >= totalPages - 1
|
|
||||||
? totalPages - 3
|
|
||||||
: currentPage === totalPages - 2
|
|
||||||
? totalPages - 4
|
|
||||||
: 2
|
|
||||||
}
|
|
||||||
onPageItemClick={pageChangeHandler}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 3 &&
|
|
||||||
currentPage > 4 &&
|
|
||||||
currentPage < totalPages - 1 && (
|
|
||||||
<PaginationButton
|
|
||||||
content={currentPage - 1}
|
|
||||||
onClick={() => pageChangeHandler(currentPage - 1)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 7 &&
|
|
||||||
currentPage > 3 &&
|
|
||||||
currentPage < totalPages - 2 && (
|
|
||||||
<PaginationButton content={currentPage} disabled />
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 5 &&
|
|
||||||
currentPage > 2 &&
|
|
||||||
currentPage < totalPages - 2 && (
|
|
||||||
<PaginationButton
|
|
||||||
content={currentPage + 1}
|
|
||||||
onClick={() => pageChangeHandler(currentPage + 1)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 5 &&
|
|
||||||
(currentPage <= 2 || currentPage >= totalPages - 2) && (
|
|
||||||
<PaginationButton
|
|
||||||
content={totalPages - 2}
|
|
||||||
disabled={currentPage === totalPages - 2}
|
|
||||||
onClick={() => pageChangeHandler(totalPages - 2)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 6 &&
|
|
||||||
currentPage > 2 &&
|
|
||||||
currentPage < totalPages - 3 && (
|
|
||||||
<EtcPaginationButton
|
|
||||||
startPage={
|
|
||||||
currentPage <= 3
|
|
||||||
? currentPage + 2
|
|
||||||
: currentPage >= 4
|
|
||||||
? currentPage + 2
|
|
||||||
: 1
|
|
||||||
}
|
|
||||||
endPage={
|
|
||||||
currentPage <= 3
|
|
||||||
? totalPages - 2
|
|
||||||
: currentPage >= 4
|
|
||||||
? totalPages - 1
|
|
||||||
: 0
|
|
||||||
}
|
|
||||||
onPageItemClick={pageChangeHandler}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 6 &&
|
|
||||||
(currentPage <= 3 || currentPage >= totalPages - 3) && (
|
|
||||||
<PaginationButton
|
|
||||||
content={totalPages - 1}
|
|
||||||
disabled={currentPage === totalPages - 1}
|
|
||||||
onClick={() => pageChangeHandler(totalPages - 1)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{totalPages >= 7 && (
|
|
||||||
<PaginationButton
|
<PaginationButton
|
||||||
content={totalPages}
|
content={2}
|
||||||
disabled={currentPage === totalPages}
|
disabled={currentPage === 2}
|
||||||
onClick={() => pageChangeHandler(totalPages)}
|
onClick={() => pageChangeHandler(2)}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</>
|
|
||||||
|
{totalPages >= 2 &&
|
||||||
|
currentPage > 3 &&
|
||||||
|
currentPage < totalPages - 2 && (
|
||||||
|
<EtcPaginationButton
|
||||||
|
startPage={2}
|
||||||
|
endPage={currentPage - 2}
|
||||||
|
onPageItemClick={pageChangeHandler}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 3 &&
|
||||||
|
(currentPage <= 4 || currentPage >= totalPages - 2) &&
|
||||||
|
currentPage !== totalPages - 2 && (
|
||||||
|
<PaginationButton
|
||||||
|
content={3}
|
||||||
|
disabled={currentPage === 3}
|
||||||
|
onClick={() => pageChangeHandler(3)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 7 &&
|
||||||
|
(currentPage <= 2 || currentPage >= totalPages - 2) && (
|
||||||
|
<EtcPaginationButton
|
||||||
|
startPage={
|
||||||
|
currentPage <= 2
|
||||||
|
? currentPage + 2
|
||||||
|
: currentPage === totalPages - 2
|
||||||
|
? 3
|
||||||
|
: currentPage >= totalPages - 1
|
||||||
|
? 4
|
||||||
|
: 1
|
||||||
|
}
|
||||||
|
endPage={
|
||||||
|
currentPage <= 2 || currentPage >= totalPages - 1
|
||||||
|
? totalPages - 3
|
||||||
|
: currentPage === totalPages - 2
|
||||||
|
? totalPages - 4
|
||||||
|
: 2
|
||||||
|
}
|
||||||
|
onPageItemClick={pageChangeHandler}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 3 &&
|
||||||
|
currentPage > 4 &&
|
||||||
|
currentPage < totalPages - 1 && (
|
||||||
|
<PaginationButton
|
||||||
|
content={currentPage - 1}
|
||||||
|
onClick={() => pageChangeHandler(currentPage - 1)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 7 &&
|
||||||
|
currentPage > 3 &&
|
||||||
|
currentPage < totalPages - 2 && (
|
||||||
|
<PaginationButton content={currentPage} disabled />
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 5 &&
|
||||||
|
currentPage > 2 &&
|
||||||
|
currentPage < totalPages - 2 && (
|
||||||
|
<PaginationButton
|
||||||
|
content={currentPage + 1}
|
||||||
|
onClick={() => pageChangeHandler(currentPage + 1)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 5 &&
|
||||||
|
(currentPage <= 2 || currentPage >= totalPages - 2) && (
|
||||||
|
<PaginationButton
|
||||||
|
content={totalPages - 2}
|
||||||
|
disabled={currentPage === totalPages - 2}
|
||||||
|
onClick={() => pageChangeHandler(totalPages - 2)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 6 &&
|
||||||
|
currentPage > 2 &&
|
||||||
|
currentPage < totalPages - 3 && (
|
||||||
|
<EtcPaginationButton
|
||||||
|
startPage={
|
||||||
|
currentPage <= 3
|
||||||
|
? currentPage + 2
|
||||||
|
: currentPage >= 4
|
||||||
|
? currentPage + 2
|
||||||
|
: 1
|
||||||
|
}
|
||||||
|
endPage={
|
||||||
|
currentPage <= 3
|
||||||
|
? totalPages - 2
|
||||||
|
: currentPage >= 4
|
||||||
|
? totalPages - 1
|
||||||
|
: 0
|
||||||
|
}
|
||||||
|
onPageItemClick={pageChangeHandler}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 6 &&
|
||||||
|
(currentPage <= 3 || currentPage >= totalPages - 3) && (
|
||||||
|
<PaginationButton
|
||||||
|
content={totalPages - 1}
|
||||||
|
disabled={currentPage === totalPages - 1}
|
||||||
|
onClick={() => pageChangeHandler(totalPages - 1)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{totalPages >= 7 && (
|
||||||
|
<PaginationButton
|
||||||
|
content={totalPages}
|
||||||
|
disabled={currentPage === totalPages}
|
||||||
|
onClick={() => pageChangeHandler(totalPages)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<button
|
||||||
|
disabled={currentPage === totalPages}
|
||||||
|
onClick={onNextPage}
|
||||||
|
className={cn(
|
||||||
|
'join-item btn btn-outline group px-3 py-2 text-sm font-semibold rounded-lg border border-gray-300 shadow-xs hidden sm:flex justify-center items-center gap-1.5',
|
||||||
|
'disabled:bg-[initial]! disabled:text-gray-400 disabled:pointer-events-auto! disabled:cursor-not-allowed disabled:active:translate-y-0'
|
||||||
)}
|
)}
|
||||||
|
>
|
||||||
<div className='hidden @lg:block'>
|
Next{' '}
|
||||||
<NextPageButton />
|
<Icon
|
||||||
</div>
|
icon='uil:arrow-right'
|
||||||
|
width={20}
|
||||||
<div className='hidden @lg:block'>
|
height={20}
|
||||||
<GoToLastPageButton />
|
className='text-gray-400 group-disabled:text-gray-300'
|
||||||
</div>
|
/>
|
||||||
</div>
|
</button>
|
||||||
|
|
||||||
<div className='hidden @lg:block'>
|
|
||||||
<PageInfo />
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className='flex @lg:hidden flex-col justify-center items-end gap-2'>
|
<div className='flex gap-2 mt-2 sm:hidden'>
|
||||||
<div className='flex flex-row items-center gap-0.5'>
|
<button
|
||||||
<GoToFirstPageButton />
|
disabled={currentPage === 1}
|
||||||
<PrevPageButton />
|
onClick={onPrevPage}
|
||||||
<NextPageButton />
|
className={cn(
|
||||||
<GoToLastPageButton />
|
'join-item btn btn-outline group px-3 py-2 text-sm font-semibold rounded-lg border border-gray-300 shadow-xs flex justify-center items-center gap-1.5',
|
||||||
</div>
|
'disabled:bg-[initial]! disabled:text-gray-400 disabled:pointer-events-auto! disabled:cursor-not-allowed disabled:active:translate-y-0'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
icon='uil:arrow-left'
|
||||||
|
width={20}
|
||||||
|
height={20}
|
||||||
|
className='text-gray-400 group-disabled:text-gray-300'
|
||||||
|
/>{' '}
|
||||||
|
Previous
|
||||||
|
</button>
|
||||||
|
|
||||||
<div className='flex flex-row items-center gap-4'>
|
<button
|
||||||
<DisplayedRowCountSelect />
|
disabled={currentPage === totalPages}
|
||||||
|
onClick={onNextPage}
|
||||||
<PageInfo />
|
className={cn(
|
||||||
</div>
|
'join-item btn btn-outline group px-3 py-2 text-sm font-semibold rounded-lg border border-gray-300 shadow-xs flex justify-center items-center gap-1.5',
|
||||||
|
'disabled:bg-[initial]! disabled:text-gray-400 disabled:pointer-events-auto! disabled:cursor-not-allowed disabled:active:translate-y-0'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
Next{' '}
|
||||||
|
<Icon
|
||||||
|
icon='uil:arrow-right'
|
||||||
|
width={20}
|
||||||
|
height={20}
|
||||||
|
className='text-gray-400 group-disabled:text-gray-300'
|
||||||
|
/>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
+29
-66
@@ -13,7 +13,6 @@ import {
|
|||||||
FilterFn,
|
FilterFn,
|
||||||
SortingState,
|
SortingState,
|
||||||
OnChangeFn,
|
OnChangeFn,
|
||||||
Row,
|
|
||||||
} from '@tanstack/react-table';
|
} from '@tanstack/react-table';
|
||||||
import { rankItem } from '@tanstack/match-sorter-utils';
|
import { rankItem } from '@tanstack/match-sorter-utils';
|
||||||
import { Icon } from '@iconify/react';
|
import { Icon } from '@iconify/react';
|
||||||
@@ -38,7 +37,6 @@ export interface TableProps<TData extends object> {
|
|||||||
data: TData[];
|
data: TData[];
|
||||||
columns: ColumnDef<TData, unknown>[];
|
columns: ColumnDef<TData, unknown>[];
|
||||||
pageSize?: number;
|
pageSize?: number;
|
||||||
onPageSizeChange?: (pageSize: number) => void;
|
|
||||||
totalItems?: number;
|
totalItems?: number;
|
||||||
page?: number;
|
page?: number;
|
||||||
onPageChange?: (page: number) => void;
|
onPageChange?: (page: number) => void;
|
||||||
@@ -52,9 +50,6 @@ export interface TableProps<TData extends object> {
|
|||||||
manualSorting?: boolean;
|
manualSorting?: boolean;
|
||||||
rowSelection?: Record<string, boolean>;
|
rowSelection?: Record<string, boolean>;
|
||||||
setRowSelection?: OnChangeFn<Record<string, boolean>>;
|
setRowSelection?: OnChangeFn<Record<string, boolean>>;
|
||||||
enableRowSelection?: boolean | ((row: Row<TData>) => boolean);
|
|
||||||
withCheckbox?: boolean;
|
|
||||||
rowOptions?: number[];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const DUMMY_SKELETON_DATA = [{}, {}, {}, {}, {}];
|
const DUMMY_SKELETON_DATA = [{}, {}, {}, {}, {}];
|
||||||
@@ -67,52 +62,40 @@ const emptyContentDefaultValue = (
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
const TABLE_DEFAULT_STYLING = {
|
|
||||||
containerClassName: 'w-full mb-20',
|
|
||||||
tableWrapperClassName:
|
|
||||||
'overflow-x-auto border border-solid border-base-content/10 rounded-lg',
|
|
||||||
tableClassName: 'font-inter w-full table-auto text-sm font-medium',
|
|
||||||
tableHeaderClassName: '',
|
|
||||||
headerRowClassName: '',
|
|
||||||
headerColumnClassName: 'px-4 py-3 text-base-content/50',
|
|
||||||
tableBodyClassName: '',
|
|
||||||
bodyRowClassName: 'border-t border-t-base-content/10',
|
|
||||||
bodyColumnClassName: 'px-4 py-3 text-base-content',
|
|
||||||
paginationClassName: '',
|
|
||||||
};
|
|
||||||
|
|
||||||
const Table = <TData extends object>({
|
const Table = <TData extends object>({
|
||||||
data = [],
|
data = [],
|
||||||
columns = [],
|
columns = [],
|
||||||
pageSize = 10,
|
pageSize = 10,
|
||||||
onPageSizeChange,
|
|
||||||
totalItems,
|
totalItems,
|
||||||
page,
|
page,
|
||||||
onPageChange,
|
onPageChange,
|
||||||
isLoading = false,
|
isLoading = false,
|
||||||
fuzzySearchValue,
|
fuzzySearchValue,
|
||||||
onFuzzySearchValueChange,
|
onFuzzySearchValueChange,
|
||||||
className = TABLE_DEFAULT_STYLING,
|
className = {
|
||||||
|
containerClassName: '',
|
||||||
|
tableWrapperClassName: '',
|
||||||
|
tableClassName: '',
|
||||||
|
tableHeaderClassName: '',
|
||||||
|
headerRowClassName: '',
|
||||||
|
headerColumnClassName: '',
|
||||||
|
tableBodyClassName: '',
|
||||||
|
bodyRowClassName: '',
|
||||||
|
bodyColumnClassName: '',
|
||||||
|
paginationClassName: '',
|
||||||
|
},
|
||||||
emptyContent = emptyContentDefaultValue,
|
emptyContent = emptyContentDefaultValue,
|
||||||
sorting,
|
sorting,
|
||||||
setSorting,
|
setSorting,
|
||||||
manualSorting = false,
|
manualSorting = false,
|
||||||
rowSelection,
|
rowSelection,
|
||||||
setRowSelection,
|
setRowSelection,
|
||||||
enableRowSelection,
|
|
||||||
withCheckbox = false,
|
|
||||||
rowOptions = [10, 20, 50, 100],
|
|
||||||
}: TableProps<TData>) => {
|
}: TableProps<TData>) => {
|
||||||
const isServerSideTable =
|
const isServerSideTable =
|
||||||
totalItems !== undefined &&
|
totalItems !== undefined &&
|
||||||
page !== undefined &&
|
page !== undefined &&
|
||||||
onPageChange !== undefined;
|
onPageChange !== undefined;
|
||||||
|
|
||||||
const tableClassNames = {
|
|
||||||
...TABLE_DEFAULT_STYLING,
|
|
||||||
...className,
|
|
||||||
};
|
|
||||||
|
|
||||||
const [pagination, setPagination] = useState({
|
const [pagination, setPagination] = useState({
|
||||||
pageIndex: 0,
|
pageIndex: 0,
|
||||||
pageSize: pageSize,
|
pageSize: pageSize,
|
||||||
@@ -167,10 +150,6 @@ const Table = <TData extends object>({
|
|||||||
tableOptions.getRowId = (row) => (row as { id: string }).id;
|
tableOptions.getRowId = (row) => (row as { id: string }).id;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (enableRowSelection !== undefined) {
|
|
||||||
tableOptions.enableRowSelection = enableRowSelection;
|
|
||||||
}
|
|
||||||
|
|
||||||
const table = useReactTable(tableOptions);
|
const table = useReactTable(tableOptions);
|
||||||
const { setPageSize } = table;
|
const { setPageSize } = table;
|
||||||
|
|
||||||
@@ -205,15 +184,12 @@ const Table = <TData extends object>({
|
|||||||
}, [pageSize, setPageSize]);
|
}, [pageSize, setPageSize]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={tableClassNames.containerClassName}>
|
<div className={className.containerClassName}>
|
||||||
<div className={tableClassNames.tableWrapperClassName}>
|
<div className={className.tableWrapperClassName}>
|
||||||
<table className={tableClassNames.tableClassName}>
|
<table className={className.tableClassName}>
|
||||||
<thead className={tableClassNames.tableHeaderClassName}>
|
<thead className={className.tableHeaderClassName}>
|
||||||
{table.getHeaderGroups().map((headerGroup) => (
|
{table.getHeaderGroups().map((headerGroup) => (
|
||||||
<tr
|
<tr key={headerGroup.id} className={className.headerRowClassName}>
|
||||||
key={headerGroup.id}
|
|
||||||
className={tableClassNames.headerRowClassName}
|
|
||||||
>
|
|
||||||
{headerGroup.headers.map((header) => (
|
{headerGroup.headers.map((header) => (
|
||||||
<th
|
<th
|
||||||
key={header.id}
|
key={header.id}
|
||||||
@@ -223,10 +199,7 @@ const Table = <TData extends object>({
|
|||||||
header.column.getCanSort()
|
header.column.getCanSort()
|
||||||
? 'cursor-pointer select-none'
|
? 'cursor-pointer select-none'
|
||||||
: '',
|
: '',
|
||||||
{
|
className.headerColumnClassName
|
||||||
'first:w-9 first:pr-0': withCheckbox,
|
|
||||||
},
|
|
||||||
tableClassNames.headerColumnClassName
|
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div className='flex items-center gap-1'>
|
<div className='flex items-center gap-1'>
|
||||||
@@ -236,13 +209,12 @@ const Table = <TData extends object>({
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{header.column.getCanSort() && (
|
{header.column.getCanSort() && (
|
||||||
<div className='w-4 h-4 relative flex flex-col items-center'>
|
<div className='flex items-center'>
|
||||||
<Icon
|
<Icon
|
||||||
icon='heroicons:chevron-up-16-solid'
|
icon='lucide:arrow-up'
|
||||||
width={18}
|
width={12}
|
||||||
height={18}
|
height={12}
|
||||||
className={cn(
|
className={cn(
|
||||||
'absolute -top-1',
|
|
||||||
'transition-all ease-in-out duration-200',
|
'transition-all ease-in-out duration-200',
|
||||||
header.column.getIsSorted() === 'asc'
|
header.column.getIsSorted() === 'asc'
|
||||||
? 'text-black'
|
? 'text-black'
|
||||||
@@ -250,11 +222,10 @@ const Table = <TData extends object>({
|
|||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
<Icon
|
<Icon
|
||||||
icon='heroicons:chevron-down-16-solid'
|
icon='lucide:arrow-down'
|
||||||
width={18}
|
width={12}
|
||||||
height={18}
|
height={12}
|
||||||
className={cn(
|
className={cn(
|
||||||
'absolute -bottom-1.5',
|
|
||||||
'transition-all ease-in-out duration-200',
|
'transition-all ease-in-out duration-200',
|
||||||
header.column.getIsSorted() === 'desc'
|
header.column.getIsSorted() === 'desc'
|
||||||
? 'text-black'
|
? 'text-black'
|
||||||
@@ -270,17 +241,11 @@ const Table = <TData extends object>({
|
|||||||
))}
|
))}
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
<tbody className={tableClassNames.tableBodyClassName}>
|
<tbody className={className.tableBodyClassName}>
|
||||||
{table.getRowModel().rows.map((row) => (
|
{table.getRowModel().rows.map((row) => (
|
||||||
<tr key={row.id} className={tableClassNames.bodyRowClassName}>
|
<tr key={row.id} className={className.bodyRowClassName}>
|
||||||
{row.getVisibleCells().map((cell) => (
|
{row.getVisibleCells().map((cell) => (
|
||||||
<td
|
<td key={cell.id} className={className.bodyColumnClassName}>
|
||||||
key={cell.id}
|
|
||||||
className={cn(
|
|
||||||
{ 'first:w-9 first:pr-0': withCheckbox },
|
|
||||||
tableClassNames.bodyColumnClassName
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{!isLoading &&
|
{!isLoading &&
|
||||||
flexRender(cell.column.columnDef.cell, cell.getContext())}
|
flexRender(cell.column.columnDef.cell, cell.getContext())}
|
||||||
|
|
||||||
@@ -298,7 +263,7 @@ const Table = <TData extends object>({
|
|||||||
emptyContent}
|
emptyContent}
|
||||||
|
|
||||||
{data.length > 0 && table.getRowModel().rows.length > 0 && !isLoading && (
|
{data.length > 0 && table.getRowModel().rows.length > 0 && !isLoading && (
|
||||||
<div className={cn('mt-5', tableClassNames.paginationClassName)}>
|
<div className={cn('mt-5', className.paginationClassName)}>
|
||||||
<Pagination
|
<Pagination
|
||||||
totalItems={isServerSideTable ? totalItems : table.getRowCount()}
|
totalItems={isServerSideTable ? totalItems : table.getRowCount()}
|
||||||
itemsPerPage={table.getState().pagination.pageSize}
|
itemsPerPage={table.getState().pagination.pageSize}
|
||||||
@@ -310,8 +275,6 @@ const Table = <TData extends object>({
|
|||||||
onPrevPage={prevPageClickHandler}
|
onPrevPage={prevPageClickHandler}
|
||||||
onNextPage={nextPageClickHandler}
|
onNextPage={nextPageClickHandler}
|
||||||
onPageChange={pageChangeHandler}
|
onPageChange={pageChangeHandler}
|
||||||
rowOptions={rowOptions}
|
|
||||||
onRowChange={onPageSizeChange}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -1,129 +0,0 @@
|
|||||||
import { HTMLAttributes, ReactNode, useEffect, useState } from 'react';
|
|
||||||
import { cn } from '@/lib/helper';
|
|
||||||
|
|
||||||
export interface TabItem {
|
|
||||||
id: string;
|
|
||||||
label: ReactNode;
|
|
||||||
content?: ReactNode;
|
|
||||||
disabled?: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TabsProps
|
|
||||||
extends Omit<HTMLAttributes<HTMLDivElement>, 'className'> {
|
|
||||||
tabs: TabItem[];
|
|
||||||
variant?: 'bordered' | 'lifted' | 'boxed';
|
|
||||||
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
||||||
placement?: 'top' | 'bottom';
|
|
||||||
/** Tab yang aktif secara default (uncontrolled mode) */
|
|
||||||
defaultActiveId?: string;
|
|
||||||
/** Tab yang aktif (controlled mode, dikontrol parent) */
|
|
||||||
activeTabId?: string;
|
|
||||||
className?:
|
|
||||||
| string
|
|
||||||
| {
|
|
||||||
wrapper?: string;
|
|
||||||
tab?: string;
|
|
||||||
content?: string;
|
|
||||||
};
|
|
||||||
onTabChange?: (tabId: string) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
const Tabs = ({
|
|
||||||
tabs,
|
|
||||||
variant,
|
|
||||||
size = 'md',
|
|
||||||
placement = 'top',
|
|
||||||
defaultActiveId,
|
|
||||||
activeTabId: controlledActiveId,
|
|
||||||
className,
|
|
||||||
onTabChange,
|
|
||||||
...props
|
|
||||||
}: TabsProps) => {
|
|
||||||
// State internal hanya dipakai kalau `activeTabId` (controlled) tidak diset
|
|
||||||
const [uncontrolledActiveId, setUncontrolledActiveId] = useState(
|
|
||||||
defaultActiveId || tabs[0]?.id || ''
|
|
||||||
);
|
|
||||||
|
|
||||||
const isControlled = controlledActiveId !== undefined;
|
|
||||||
const activeTabId = isControlled ? controlledActiveId : uncontrolledActiveId;
|
|
||||||
|
|
||||||
const handleTabChange = (tabId: string) => {
|
|
||||||
if (tabId === activeTabId) return;
|
|
||||||
if (!isControlled) setUncontrolledActiveId(tabId);
|
|
||||||
onTabChange?.(tabId);
|
|
||||||
};
|
|
||||||
|
|
||||||
const { wrapper: wrapperClassName, tab: tabClassName } =
|
|
||||||
typeof className === 'object'
|
|
||||||
? className
|
|
||||||
: { wrapper: className, tab: undefined };
|
|
||||||
|
|
||||||
const getTabsClasses = () => {
|
|
||||||
const variantClasses: Record<string, string> = {
|
|
||||||
bordered: 'tabs-bordered',
|
|
||||||
lifted: 'tabs-lift',
|
|
||||||
boxed: 'tabs-box',
|
|
||||||
};
|
|
||||||
|
|
||||||
const sizeClasses: Record<string, string> = {
|
|
||||||
xs: 'tabs-xs',
|
|
||||||
sm: 'tabs-sm',
|
|
||||||
md: '',
|
|
||||||
lg: 'tabs-lg',
|
|
||||||
xl: 'tabs-xl',
|
|
||||||
};
|
|
||||||
|
|
||||||
const placementClasses: Record<string, string> = {
|
|
||||||
top: '',
|
|
||||||
bottom: 'tabs-bottom',
|
|
||||||
};
|
|
||||||
|
|
||||||
return cn(
|
|
||||||
'tabs',
|
|
||||||
variant && variantClasses[variant],
|
|
||||||
sizeClasses[size],
|
|
||||||
placementClasses[placement],
|
|
||||||
wrapperClassName
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const getTabClasses = (isActive: boolean, isDisabled?: boolean) =>
|
|
||||||
cn(
|
|
||||||
'tab',
|
|
||||||
{
|
|
||||||
'tab-active': isActive,
|
|
||||||
'tab-disabled': isDisabled,
|
|
||||||
},
|
|
||||||
tabClassName
|
|
||||||
);
|
|
||||||
|
|
||||||
const activeContent = tabs.find((tab) => tab.id === activeTabId)?.content;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
{...props}
|
|
||||||
className={cn(
|
|
||||||
'w-full',
|
|
||||||
typeof className === 'string' ? className : undefined
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<div role='tablist' className={getTabsClasses()}>
|
|
||||||
{tabs.map(({ id, label, disabled }) => (
|
|
||||||
<button
|
|
||||||
key={id}
|
|
||||||
role='tab'
|
|
||||||
className={getTabClasses(id === activeTabId, disabled)}
|
|
||||||
onClick={() => !disabled && handleTabChange(id)}
|
|
||||||
disabled={disabled}
|
|
||||||
>
|
|
||||||
{label}
|
|
||||||
</button>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{activeContent && <div className='mt-4'>{activeContent}</div>}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Tabs;
|
|
||||||
@@ -6,9 +6,147 @@ import useSWRImmutable from 'swr/immutable';
|
|||||||
|
|
||||||
import { useAuth } from '@/services/hooks/useAuth';
|
import { useAuth } from '@/services/hooks/useAuth';
|
||||||
import { httpClientFetcher, SWRHttpKey } from '@/services/http/client';
|
import { httpClientFetcher, SWRHttpKey } from '@/services/http/client';
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
import { isResponseSuccess } from '@/lib/api-helper';
|
||||||
import { BaseApiResponse, GetMeResponse } from '@/types/api/api-general';
|
import { GetMeResponse } from '@/types/api/api-general';
|
||||||
import { AxiosError } from 'axios';
|
|
||||||
|
// TODO: delete this later, DONT HARDCODE USER DATA
|
||||||
|
const DUMMY_USER = {
|
||||||
|
id: 1,
|
||||||
|
email: 'admin@mbugroup.id',
|
||||||
|
npk: '0001',
|
||||||
|
name: 'Super Admin',
|
||||||
|
image: null,
|
||||||
|
created_at: '2025-09-30T03:24:20.899229Z',
|
||||||
|
updated_at: '2025-09-30T03:24:20.899229Z',
|
||||||
|
roles: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
key: 'mbu.super_admin',
|
||||||
|
name: 'MBU Administrator',
|
||||||
|
client: {
|
||||||
|
id: 1,
|
||||||
|
name: 'PT Mitra Berlian Unggas',
|
||||||
|
alias: 'MBU',
|
||||||
|
},
|
||||||
|
permissions: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: 'mbu:purchase:read',
|
||||||
|
action: 'read',
|
||||||
|
client: {
|
||||||
|
id: 1,
|
||||||
|
name: 'PT Mitra Berlian Unggas',
|
||||||
|
alias: 'MBU',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: 'mbu:purchase:create',
|
||||||
|
action: 'create',
|
||||||
|
client: {
|
||||||
|
id: 1,
|
||||||
|
name: 'PT Mitra Berlian Unggas',
|
||||||
|
alias: 'MBU',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
name: 'mbu:purchase:approve',
|
||||||
|
action: 'approve',
|
||||||
|
client: {
|
||||||
|
id: 1,
|
||||||
|
name: 'PT Mitra Berlian Unggas',
|
||||||
|
alias: 'MBU',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
key: 'lti.super_admin',
|
||||||
|
name: 'LTI Administrator',
|
||||||
|
client: {
|
||||||
|
id: 2,
|
||||||
|
name: 'PT Lumbung Telur Indonesia',
|
||||||
|
alias: 'LTI',
|
||||||
|
},
|
||||||
|
permissions: [
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
name: 'lti:purchase:read',
|
||||||
|
action: 'read',
|
||||||
|
client: {
|
||||||
|
id: 2,
|
||||||
|
name: 'PT Lumbung Telur Indonesia',
|
||||||
|
alias: 'LTI',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
name: 'lti:purchase:create',
|
||||||
|
action: 'create',
|
||||||
|
client: {
|
||||||
|
id: 2,
|
||||||
|
name: 'PT Lumbung Telur Indonesia',
|
||||||
|
alias: 'LTI',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
name: 'lti:purchase:approve',
|
||||||
|
action: 'approve',
|
||||||
|
client: {
|
||||||
|
id: 2,
|
||||||
|
name: 'PT Lumbung Telur Indonesia',
|
||||||
|
alias: 'LTI',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
key: 'manbu.super_admin',
|
||||||
|
name: 'MANBU Administrator',
|
||||||
|
client: {
|
||||||
|
id: 3,
|
||||||
|
name: 'PT Mandiri Berlian Unggas',
|
||||||
|
alias: 'MANBU',
|
||||||
|
},
|
||||||
|
permissions: [
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
name: 'manbu:purchase:read',
|
||||||
|
action: 'read',
|
||||||
|
client: {
|
||||||
|
id: 3,
|
||||||
|
name: 'PT Mandiri Berlian Unggas',
|
||||||
|
alias: 'MANBU',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
name: 'manbu:purchase:create',
|
||||||
|
action: 'create',
|
||||||
|
client: {
|
||||||
|
id: 3,
|
||||||
|
name: 'PT Mandiri Berlian Unggas',
|
||||||
|
alias: 'MANBU',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 9,
|
||||||
|
name: 'manbu:purchase:approve',
|
||||||
|
action: 'approve',
|
||||||
|
client: {
|
||||||
|
id: 3,
|
||||||
|
name: 'PT Mandiri Berlian Unggas',
|
||||||
|
alias: 'MANBU',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
interface RequireAuthProps {
|
interface RequireAuthProps {
|
||||||
children?: ReactNode;
|
children?: ReactNode;
|
||||||
@@ -18,20 +156,17 @@ const RequireAuth = ({ children }: RequireAuthProps) => {
|
|||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { setUser, setIsLoadingUser } = useAuth();
|
const { setUser, setIsLoadingUser } = useAuth();
|
||||||
|
|
||||||
const {
|
const { data: userResponse, isLoading: isLoadingUserResponse } =
|
||||||
data: userResponse,
|
useSWRImmutable<GetMeResponse & { ok?: boolean }, unknown, SWRHttpKey>(
|
||||||
isLoading: isLoadingUserResponse,
|
'/auth/sso/userinfo',
|
||||||
error: userErrorResponse,
|
httpClientFetcher,
|
||||||
} = useSWRImmutable<
|
{
|
||||||
GetMeResponse & { ok?: boolean },
|
shouldRetryOnError: false,
|
||||||
AxiosError<BaseApiResponse>,
|
revalidateOnFocus: false,
|
||||||
SWRHttpKey
|
revalidateOnReconnect: false,
|
||||||
>('/sso/userinfo', httpClientFetcher, {
|
refreshInterval: 0,
|
||||||
shouldRetryOnError: false,
|
}
|
||||||
revalidateOnFocus: false,
|
);
|
||||||
revalidateOnReconnect: false,
|
|
||||||
refreshInterval: 0,
|
|
||||||
});
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setIsLoadingUser(isLoadingUserResponse);
|
setIsLoadingUser(isLoadingUserResponse);
|
||||||
@@ -40,25 +175,23 @@ const RequireAuth = ({ children }: RequireAuthProps) => {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isResponseSuccess(userResponse)) {
|
if (isResponseSuccess(userResponse)) {
|
||||||
setUser(userResponse.data);
|
setUser(userResponse.data);
|
||||||
} else if (
|
} else {
|
||||||
isResponseError(userErrorResponse?.response?.data) &&
|
// router.replace(process.env.NEXT_PUBLIC_SSO_LOGIN_URL as string);
|
||||||
typeof window !== 'undefined'
|
// TODO: remove this later, DONT HARDCODE USER DATA
|
||||||
) {
|
setUser(DUMMY_USER);
|
||||||
router.replace(
|
|
||||||
`${process.env.NEXT_PUBLIC_SSO_LOGIN_URL as string}?redirect_url=${window.location.href}`
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}, [userResponse, userErrorResponse, setIsLoadingUser, setUser]);
|
}, [userResponse, setIsLoadingUser, setUser]);
|
||||||
|
|
||||||
if (isLoadingUserResponse && !userResponse && !userErrorResponse) {
|
// TODO: uncomment this later
|
||||||
return (
|
// if (isLoadingUserResponse && !userResponse) {
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
// return (
|
||||||
<span className='loading loading-spinner loading-xl' />
|
// <div className='w-full flex flex-row justify-center items-center p-4'>
|
||||||
</div>
|
// <span className='loading loading-spinner loading-xl' />
|
||||||
);
|
// </div>
|
||||||
}
|
// );
|
||||||
|
// }
|
||||||
|
|
||||||
return <>{isResponseSuccess(userResponse) && children}</>;
|
return <>{children}</>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default RequireAuth;
|
export default RequireAuth;
|
||||||
|
|||||||
@@ -9,11 +9,6 @@ interface FormActionsProps<T> {
|
|||||||
editUrl?: string;
|
editUrl?: string;
|
||||||
onDelete?: () => void;
|
onDelete?: () => void;
|
||||||
disableSubmit?: boolean;
|
disableSubmit?: boolean;
|
||||||
onApprove?: () => void;
|
|
||||||
onReject?: () => void;
|
|
||||||
isApproveLoading?: boolean;
|
|
||||||
isRejectLoading?: boolean;
|
|
||||||
showApproveReject?: boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const FormActions = <T,>({
|
export const FormActions = <T,>({
|
||||||
@@ -22,32 +17,25 @@ export const FormActions = <T,>({
|
|||||||
editUrl,
|
editUrl,
|
||||||
onDelete,
|
onDelete,
|
||||||
disableSubmit = false,
|
disableSubmit = false,
|
||||||
onApprove,
|
|
||||||
onReject,
|
|
||||||
isApproveLoading = false,
|
|
||||||
isRejectLoading = false,
|
|
||||||
showApproveReject = false,
|
|
||||||
}: FormActionsProps<T>) => {
|
}: FormActionsProps<T>) => {
|
||||||
return (
|
return (
|
||||||
<div className='flex flex-row justify-between gap-2 flex-wrap'>
|
<div className='flex flex-row justify-between gap-2 flex-wrap'>
|
||||||
{type !== 'add' && (
|
{type !== 'add' && onDelete && (
|
||||||
<div className='flex flex-row justify-start gap-2'>
|
<div className='flex flex-row justify-start gap-2'>
|
||||||
{onDelete && (
|
<Button
|
||||||
<Button
|
type='button'
|
||||||
type='button'
|
color='error'
|
||||||
color='error'
|
onClick={onDelete}
|
||||||
onClick={onDelete}
|
className='px-4'
|
||||||
className='px-4'
|
>
|
||||||
>
|
<Icon
|
||||||
<Icon
|
icon='material-symbols:delete-outline-rounded'
|
||||||
icon='material-symbols:delete-outline-rounded'
|
width={24}
|
||||||
width={24}
|
height={24}
|
||||||
height={24}
|
className='justify-start text-sm'
|
||||||
className='justify-start text-sm'
|
/>
|
||||||
/>
|
Delete
|
||||||
Delete
|
</Button>
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
{type !== 'edit' && editUrl && (
|
{type !== 'edit' && editUrl && (
|
||||||
<Button
|
<Button
|
||||||
type='button'
|
type='button'
|
||||||
@@ -64,46 +52,6 @@ export const FormActions = <T,>({
|
|||||||
Edit
|
Edit
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
{type === 'detail' &&
|
|
||||||
showApproveReject &&
|
|
||||||
(onApprove || onReject) && (
|
|
||||||
<>
|
|
||||||
{onApprove && (
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='success'
|
|
||||||
onClick={onApprove}
|
|
||||||
className='px-4'
|
|
||||||
isLoading={isApproveLoading}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:check-circle-outline'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
/>
|
|
||||||
Approve
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
{onReject && (
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='error'
|
|
||||||
onClick={onReject}
|
|
||||||
className='px-4'
|
|
||||||
isLoading={isRejectLoading}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:cancel-outline'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
/>
|
|
||||||
Reject
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{type !== 'detail' && (
|
{type !== 'detail' && (
|
||||||
|
|||||||
@@ -2,27 +2,15 @@ import Button from '@/components/Button';
|
|||||||
import { Icon } from '@iconify/react';
|
import { Icon } from '@iconify/react';
|
||||||
|
|
||||||
interface FormHeaderProps {
|
interface FormHeaderProps {
|
||||||
type?: 'add' | 'edit' | 'detail';
|
type: 'add' | 'edit' | 'detail';
|
||||||
title: string;
|
title: string;
|
||||||
backUrl?: string;
|
backUrl: string;
|
||||||
onBackClick?: () => void;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const FormHeader = ({
|
export const FormHeader = ({ type, title, backUrl }: FormHeaderProps) => {
|
||||||
type,
|
|
||||||
title,
|
|
||||||
backUrl,
|
|
||||||
onBackClick,
|
|
||||||
}: FormHeaderProps) => {
|
|
||||||
return (
|
return (
|
||||||
<header className='flex flex-col gap-4'>
|
<header className='flex flex-col gap-4'>
|
||||||
<Button
|
<Button href={backUrl} variant='link' className='w-fit p-0 text-primary'>
|
||||||
type='button'
|
|
||||||
href={!onBackClick ? backUrl : undefined}
|
|
||||||
onClick={onBackClick}
|
|
||||||
variant='link'
|
|
||||||
className='w-fit p-0 text-primary'
|
|
||||||
>
|
|
||||||
<Icon icon='uil:arrow-left' width={24} height={24} />
|
<Icon icon='uil:arrow-left' width={24} height={24} />
|
||||||
Kembali
|
Kembali
|
||||||
</Button>
|
</Button>
|
||||||
@@ -30,7 +18,6 @@ export const FormHeader = ({
|
|||||||
{type === 'add' && `Tambah ${title}`}
|
{type === 'add' && `Tambah ${title}`}
|
||||||
{type === 'edit' && `Edit ${title}`}
|
{type === 'edit' && `Edit ${title}`}
|
||||||
{type === 'detail' && `Detail ${title}`}
|
{type === 'detail' && `Detail ${title}`}
|
||||||
{!type && title}
|
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -2,9 +2,8 @@
|
|||||||
|
|
||||||
import { HTMLProps, useEffect, useRef } from 'react';
|
import { HTMLProps, useEffect, useRef } from 'react';
|
||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
import { Size } from '@/types/theme';
|
|
||||||
|
|
||||||
interface CheckboxInputProps extends Omit<HTMLProps<HTMLInputElement>, 'size'> {
|
interface CheckboxInputProps extends HTMLProps<HTMLInputElement> {
|
||||||
name: string;
|
name: string;
|
||||||
label?: string;
|
label?: string;
|
||||||
indeterminate?: boolean;
|
indeterminate?: boolean;
|
||||||
@@ -17,7 +16,6 @@ interface CheckboxInputProps extends Omit<HTMLProps<HTMLInputElement>, 'size'> {
|
|||||||
isError?: boolean;
|
isError?: boolean;
|
||||||
isValid?: boolean;
|
isValid?: boolean;
|
||||||
errorMessage?: string;
|
errorMessage?: string;
|
||||||
size?: Size;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const CheckboxInput = ({
|
const CheckboxInput = ({
|
||||||
@@ -29,19 +27,10 @@ const CheckboxInput = ({
|
|||||||
isValid,
|
isValid,
|
||||||
isError,
|
isError,
|
||||||
errorMessage,
|
errorMessage,
|
||||||
size = 'sm',
|
|
||||||
...rest
|
...rest
|
||||||
}: CheckboxInputProps) => {
|
}: CheckboxInputProps) => {
|
||||||
const ref = useRef<HTMLInputElement>(null!);
|
const ref = useRef<HTMLInputElement>(null!);
|
||||||
|
|
||||||
const checkboxBaseClassName = cn('checkbox cursor-pointer rounded-md', {
|
|
||||||
'checkbox-xs': size === 'xs',
|
|
||||||
'checkbox-sm': size === 'sm',
|
|
||||||
'checkbox-md': size === 'md',
|
|
||||||
'checkbox-lg': size === 'lg',
|
|
||||||
'checkbox-xl': size === 'xl',
|
|
||||||
});
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (typeof indeterminate === 'boolean') {
|
if (typeof indeterminate === 'boolean') {
|
||||||
ref.current.indeterminate = !rest.checked && indeterminate;
|
ref.current.indeterminate = !rest.checked && indeterminate;
|
||||||
@@ -64,7 +53,7 @@ const CheckboxInput = ({
|
|||||||
id={name}
|
id={name}
|
||||||
name={name}
|
name={name}
|
||||||
className={cn(
|
className={cn(
|
||||||
checkboxBaseClassName,
|
'checkbox cursor-pointer',
|
||||||
{
|
{
|
||||||
'border-error': isError,
|
'border-error': isError,
|
||||||
'border-success': isValid,
|
'border-success': isValid,
|
||||||
|
|||||||
@@ -1,23 +1,14 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import {
|
import { ChangeEventHandler, FocusEventHandler, ReactNode } from 'react';
|
||||||
ChangeEventHandler,
|
|
||||||
FocusEventHandler,
|
import { cn } from '@/lib/helper';
|
||||||
useEffect,
|
|
||||||
useState,
|
|
||||||
} from 'react';
|
|
||||||
import { cn, formatDate } from '@/lib/helper';
|
|
||||||
import Modal, { useModal } from '../Modal';
|
|
||||||
import { DateRange, DayPicker, Matcher } from 'react-day-picker';
|
|
||||||
import 'react-day-picker/dist/style.css';
|
|
||||||
import Button from '../Button';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
|
|
||||||
export interface DateInputProps {
|
export interface DateInputProps {
|
||||||
label?: string;
|
label?: string;
|
||||||
bottomLabel?: string;
|
bottomLabel?: string;
|
||||||
name: string;
|
name: string;
|
||||||
value?: string | { from?: string; to?: string };
|
value?: string;
|
||||||
placeholder?: string;
|
placeholder?: string;
|
||||||
min?: string;
|
min?: string;
|
||||||
max?: string;
|
max?: string;
|
||||||
@@ -33,9 +24,9 @@ export interface DateInputProps {
|
|||||||
readOnly?: boolean;
|
readOnly?: boolean;
|
||||||
required?: boolean;
|
required?: boolean;
|
||||||
isLoading?: boolean;
|
isLoading?: boolean;
|
||||||
isRange?: boolean;
|
|
||||||
isNestedModal?: boolean; // New prop to indicate if used inside another modal
|
|
||||||
errorMessage?: string;
|
errorMessage?: string;
|
||||||
|
startAdornment?: ReactNode;
|
||||||
|
endAdornment?: ReactNode;
|
||||||
onChange?: ChangeEventHandler<HTMLInputElement>;
|
onChange?: ChangeEventHandler<HTMLInputElement>;
|
||||||
onBlur?: FocusEventHandler<HTMLInputElement>;
|
onBlur?: FocusEventHandler<HTMLInputElement>;
|
||||||
}
|
}
|
||||||
@@ -45,148 +36,22 @@ const DateInput = ({
|
|||||||
bottomLabel,
|
bottomLabel,
|
||||||
name,
|
name,
|
||||||
value,
|
value,
|
||||||
placeholder = 'dd/mm/yyyy',
|
placeholder,
|
||||||
min,
|
min,
|
||||||
max,
|
max,
|
||||||
className,
|
className,
|
||||||
isError: externalError,
|
isError,
|
||||||
isValid: externalValid,
|
isValid,
|
||||||
errorMessage: externalErrorMessage,
|
errorMessage,
|
||||||
|
startAdornment,
|
||||||
|
endAdornment,
|
||||||
disabled = false,
|
disabled = false,
|
||||||
required = false,
|
required = false,
|
||||||
onChange,
|
onChange,
|
||||||
onBlur,
|
onBlur,
|
||||||
readOnly = false,
|
readOnly = false,
|
||||||
isLoading = false,
|
isLoading = false,
|
||||||
isRange = false,
|
|
||||||
isNestedModal = false,
|
|
||||||
}: DateInputProps) => {
|
}: DateInputProps) => {
|
||||||
const [internalError, setInternalError] = useState<string | null>(null);
|
|
||||||
const [selected, setSelected] = useState<Date | undefined>();
|
|
||||||
const [selectedRange, setSelectedRange] = useState<{
|
|
||||||
from?: Date;
|
|
||||||
to?: Date;
|
|
||||||
}>({});
|
|
||||||
const [displayValue, setDisplayValue] = useState<string>('');
|
|
||||||
|
|
||||||
const minDate = min
|
|
||||||
? new Date(min.split('/').reverse().join('-'))
|
|
||||||
: undefined;
|
|
||||||
const maxDate = max
|
|
||||||
? new Date(max.split('/').reverse().join('-'))
|
|
||||||
: undefined;
|
|
||||||
|
|
||||||
const calendarModal = useModal(isNestedModal);
|
|
||||||
|
|
||||||
// --- Sync value props ---
|
|
||||||
useEffect(() => {
|
|
||||||
if (!value) {
|
|
||||||
setDisplayValue('');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (isRange && typeof value === 'object') {
|
|
||||||
const from = value.from ? new Date(value.from) : undefined;
|
|
||||||
const to = value.to ? new Date(value.to) : undefined;
|
|
||||||
setSelectedRange({ from, to });
|
|
||||||
setDisplayValue(
|
|
||||||
`${from ? formatDate(from, 'DD/MM/YYYY') : ''} ${
|
|
||||||
to ? '- ' + formatDate(to, 'DD/MM/YYYY') : ''
|
|
||||||
}`
|
|
||||||
);
|
|
||||||
} else if (typeof value === 'string') {
|
|
||||||
const iso = value.includes('/')
|
|
||||||
? value.split('/').reverse().join('-')
|
|
||||||
: value;
|
|
||||||
const date = new Date(iso);
|
|
||||||
setSelected(date);
|
|
||||||
setDisplayValue(formatDate(iso, 'DD/MM/YYYY'));
|
|
||||||
}
|
|
||||||
}, [value, isRange]);
|
|
||||||
|
|
||||||
const handleClick = (e: React.MouseEvent<HTMLInputElement>) => {
|
|
||||||
e.preventDefault();
|
|
||||||
if (!disabled && !readOnly) calendarModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleBlur: FocusEventHandler<HTMLInputElement> = (e) => {
|
|
||||||
onBlur?.(e);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleSelectSingle = (selectedDate?: Date) => {
|
|
||||||
if (!selectedDate) return;
|
|
||||||
if (minDate && selectedDate < minDate) {
|
|
||||||
setInternalError(`Tanggal tidak boleh sebelum ${min}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (maxDate && selectedDate > maxDate) {
|
|
||||||
setInternalError(`Tanggal tidak boleh setelah ${max}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
setInternalError(null);
|
|
||||||
setSelected(selectedDate);
|
|
||||||
const formattedDisplay = formatDate(selectedDate, 'DD/MM/YYYY');
|
|
||||||
const formattedISO = formatDate(selectedDate, 'YYYY-MM-DD');
|
|
||||||
setDisplayValue(formattedDisplay);
|
|
||||||
|
|
||||||
const syntheticEvent = {
|
|
||||||
target: { name, value: formattedISO },
|
|
||||||
} as unknown as React.ChangeEvent<HTMLInputElement>;
|
|
||||||
onChange?.(syntheticEvent);
|
|
||||||
calendarModal.closeModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleSelectRange = (range?: { from?: Date; to?: Date }) => {
|
|
||||||
if (!range) return;
|
|
||||||
setSelectedRange(range);
|
|
||||||
|
|
||||||
const fromStr = range.from ? formatDate(range.from, 'DD/MM/YYYY') : '';
|
|
||||||
const toStr = range.to ? formatDate(range.to, 'DD/MM/YYYY') : '';
|
|
||||||
setDisplayValue(`${fromStr}${toStr ? ' - ' + toStr : ''}`);
|
|
||||||
|
|
||||||
// Jika kedua tanggal sudah terpilih
|
|
||||||
if (range.from && range.to) {
|
|
||||||
if (minDate && range.from < minDate) {
|
|
||||||
setInternalError(`Tanggal mulai tidak boleh sebelum ${min}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (maxDate && range.to > maxDate) {
|
|
||||||
setInternalError(`Tanggal akhir tidak boleh setelah ${max}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setInternalError(null);
|
|
||||||
const syntheticEvent = {
|
|
||||||
target: {
|
|
||||||
name,
|
|
||||||
value: {
|
|
||||||
from: formatDate(range.from, 'YYYY-MM-DD'),
|
|
||||||
to: formatDate(range.to, 'YYYY-MM-DD'),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
} as unknown as React.ChangeEvent<HTMLInputElement>;
|
|
||||||
onChange?.(syntheticEvent);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleResetDate = () => {
|
|
||||||
setSelected(undefined);
|
|
||||||
setSelectedRange({});
|
|
||||||
setDisplayValue('');
|
|
||||||
const syntheticEvent = {
|
|
||||||
target: { name, value: isRange ? { from: '', to: '' } : '' },
|
|
||||||
} as unknown as React.ChangeEvent<HTMLInputElement>;
|
|
||||||
onChange?.(syntheticEvent);
|
|
||||||
calendarModal.closeModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleSaveDate = () => {
|
|
||||||
if (internalError) return;
|
|
||||||
calendarModal.closeModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const finalIsError = externalError || !!internalError;
|
|
||||||
const finalErrorMessage = internalError || externalErrorMessage;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
@@ -199,136 +64,65 @@ const DateInput = ({
|
|||||||
htmlFor={name}
|
htmlFor={name}
|
||||||
className={cn(
|
className={cn(
|
||||||
'w-full text-sm font-normal leading-5',
|
'w-full text-sm font-normal leading-5',
|
||||||
{ 'text-error': finalIsError },
|
{
|
||||||
|
'text-error': isError,
|
||||||
|
},
|
||||||
className?.label
|
className?.label
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{label}
|
{label}
|
||||||
{required && (
|
{required && (
|
||||||
<span className='text-error' title='required'>
|
<>
|
||||||
{' '}
|
{' '}
|
||||||
*
|
<span className='tooltip tooltip-error' data-tip='required'>
|
||||||
</span>
|
<span className='text-error'>*</span>
|
||||||
|
</span>
|
||||||
|
</>
|
||||||
)}
|
)}
|
||||||
</label>
|
</label>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
'input h-12 bg-inherit px-4 py-2 text-base font-normal leading-6 w-full rounded transition-all duration-200 flex items-center border',
|
'input h-12 px-4 py-2 text-base font-normal leading-6 w-full rounded outline-none! transition-all duration-200 flex items-center',
|
||||||
{
|
{
|
||||||
'border-error': finalIsError,
|
'border-error': isError,
|
||||||
'border-success': externalValid && !finalIsError,
|
'border-success!': isValid,
|
||||||
},
|
},
|
||||||
className?.inputWrapper
|
className?.inputWrapper
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
{startAdornment && startAdornment}
|
||||||
|
|
||||||
<input
|
<input
|
||||||
type='text'
|
type='date'
|
||||||
id={name}
|
id={name}
|
||||||
name={name}
|
name={name}
|
||||||
placeholder={isRange ? 'dd/mm/yyyy - dd/mm/yyyy' : placeholder}
|
placeholder={placeholder}
|
||||||
value={displayValue}
|
value={value}
|
||||||
onBlur={handleBlur}
|
onChange={onChange}
|
||||||
onClick={handleClick}
|
onBlur={onBlur}
|
||||||
|
min={min}
|
||||||
|
max={max}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
readOnly // ✅ tidak bisa diketik manual
|
className={cn('grow bg-transparent cursor-pointer', className?.input)}
|
||||||
className={cn(
|
readOnly={readOnly}
|
||||||
'grow bg-transparent cursor-pointer focus:outline-none',
|
|
||||||
className?.input
|
|
||||||
)}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{isLoading && (
|
{(isLoading || endAdornment) && (
|
||||||
<div className='flex flex-row gap-2'>
|
<div className='flex flex-row gap-2'>
|
||||||
<span className='loading loading-spinner' />
|
{isLoading && <span className='loading loading-spinner' />}
|
||||||
|
{endAdornment && endAdornment}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<Icon
|
|
||||||
icon='uil:calendar'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className='cursor-pointer text-dark'
|
|
||||||
onClick={(e) =>
|
|
||||||
handleClick(e as unknown as React.MouseEvent<HTMLInputElement>)
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{!finalIsError && bottomLabel && (
|
{!isError && bottomLabel && (
|
||||||
<p className='w-full text-sm opacity-60'>{bottomLabel}</p>
|
<p className='w-full text-sm opacity-60'>{bottomLabel}</p>
|
||||||
)}
|
)}
|
||||||
{finalIsError && finalErrorMessage && (
|
{isError && errorMessage && (
|
||||||
<p className='w-full text-sm text-error'>{finalErrorMessage}</p>
|
<p className='w-full text-sm text-error'>{errorMessage}</p>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Modal
|
|
||||||
ref={calendarModal.ref}
|
|
||||||
className={{
|
|
||||||
modal: 'rounded',
|
|
||||||
modalBox: `!max-w-max min-h-${isRange ? '124' : '110'} flex flex-col`,
|
|
||||||
}}
|
|
||||||
closeOnBackdrop
|
|
||||||
>
|
|
||||||
{isRange ? (
|
|
||||||
<DayPicker
|
|
||||||
required={required}
|
|
||||||
mode='range'
|
|
||||||
captionLayout='dropdown-years'
|
|
||||||
navLayout='around'
|
|
||||||
reverseYears
|
|
||||||
defaultMonth={selectedRange.from ?? new Date()}
|
|
||||||
startMonth={minDate ?? new Date(1999, 1)}
|
|
||||||
endMonth={maxDate ?? new Date(new Date().getFullYear() + 5, 11)}
|
|
||||||
selected={selectedRange as DateRange}
|
|
||||||
onSelect={handleSelectRange}
|
|
||||||
footer={<div className='text-center mt-3'>{displayValue}</div>}
|
|
||||||
disabled={
|
|
||||||
[
|
|
||||||
minDate ? { before: minDate } : undefined,
|
|
||||||
maxDate ? { after: maxDate } : undefined,
|
|
||||||
].filter(Boolean) as Matcher[]
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
|
||||||
<DayPicker
|
|
||||||
required={required}
|
|
||||||
mode='single'
|
|
||||||
captionLayout='dropdown-years'
|
|
||||||
navLayout='around'
|
|
||||||
reverseYears
|
|
||||||
defaultMonth={selected ?? new Date()}
|
|
||||||
startMonth={minDate ?? new Date(1999, 1)}
|
|
||||||
endMonth={maxDate ?? new Date(new Date().getFullYear() + 5, 11)}
|
|
||||||
selected={selected}
|
|
||||||
onSelect={handleSelectSingle}
|
|
||||||
disabled={
|
|
||||||
[
|
|
||||||
minDate ? { before: minDate } : undefined,
|
|
||||||
maxDate ? { after: maxDate } : undefined,
|
|
||||||
].filter(Boolean) as Matcher[]
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
<div className='mt-auto flex flex-col gap-2'>
|
|
||||||
{isRange && (
|
|
||||||
<small className='text-secondary'>
|
|
||||||
Tekan dua kali untuk memilih tanggal awal
|
|
||||||
</small>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div className='flex h-full justify-end items-end gap-2'>
|
|
||||||
<Button type='button' color='warning' onClick={handleResetDate}>
|
|
||||||
Reset
|
|
||||||
</Button>
|
|
||||||
{isRange && (
|
|
||||||
<Button type='button' onClick={handleSaveDate}>
|
|
||||||
Simpan
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Modal>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { ChangeEvent, ChangeEventHandler, useEffect, useState } from 'react';
|
|
||||||
import { useDebounce } from 'use-debounce';
|
|
||||||
|
|
||||||
import TextArea, { TextAreaProps } from '@/components/input/TextArea';
|
|
||||||
|
|
||||||
interface DebouncedTextAreaProps extends TextAreaProps {
|
|
||||||
delay?: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
const DebouncedTextArea = (props: DebouncedTextAreaProps) => {
|
|
||||||
const { delay, onChange } = props;
|
|
||||||
|
|
||||||
const [internalChangeEvent, setInternalChangeEvent] =
|
|
||||||
useState<ChangeEvent<HTMLTextAreaElement>>();
|
|
||||||
const [internalValue, setInternalValue] = useState(props.value);
|
|
||||||
|
|
||||||
const [debouncedChangeEvent] = useDebounce(internalChangeEvent, delay ?? 300);
|
|
||||||
const [debouncedValue] = useDebounce(internalValue, delay ?? 300);
|
|
||||||
|
|
||||||
const internalChangeHandler: ChangeEventHandler<HTMLTextAreaElement> = (
|
|
||||||
e
|
|
||||||
) => {
|
|
||||||
setInternalValue(e.target.value);
|
|
||||||
setInternalChangeEvent(e);
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (debouncedChangeEvent) {
|
|
||||||
onChange?.(debouncedChangeEvent);
|
|
||||||
}
|
|
||||||
}, [debouncedValue]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<TextArea
|
|
||||||
{...props}
|
|
||||||
value={internalValue}
|
|
||||||
onChange={internalChangeHandler}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default DebouncedTextArea;
|
|
||||||
@@ -1,194 +0,0 @@
|
|||||||
import { useEffect } from 'react';
|
|
||||||
import { useDropzone, type Accept } from 'react-dropzone';
|
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
|
|
||||||
import { cn } from '@/lib/helper';
|
|
||||||
|
|
||||||
interface DropFileInputProps {
|
|
||||||
name: string;
|
|
||||||
label?: string;
|
|
||||||
bottomLabel?: string;
|
|
||||||
caption?: string;
|
|
||||||
values?: File[];
|
|
||||||
accept?: Accept;
|
|
||||||
required?: boolean;
|
|
||||||
maxFiles?: number; // defaults to 1
|
|
||||||
maxSize?: number; // defaults to 2097152 (2 MB)
|
|
||||||
isError?: boolean;
|
|
||||||
errorMessage?: string;
|
|
||||||
disabled?: boolean;
|
|
||||||
onChange?: (files: File[]) => void;
|
|
||||||
onDelete?: (index: number) => void;
|
|
||||||
className?: {
|
|
||||||
wrapper?: string;
|
|
||||||
inputContainer?: string;
|
|
||||||
label?: string;
|
|
||||||
inputWrapper?: string;
|
|
||||||
caption?: string;
|
|
||||||
bottomLabel?: string;
|
|
||||||
errorMessage?: string;
|
|
||||||
fileItemContainer?: string;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const DropFileInput: React.FC<DropFileInputProps> = ({
|
|
||||||
name,
|
|
||||||
label,
|
|
||||||
bottomLabel,
|
|
||||||
caption = 'Seret atau Pilih Dokumen',
|
|
||||||
values,
|
|
||||||
accept,
|
|
||||||
required,
|
|
||||||
maxFiles = Infinity,
|
|
||||||
maxSize,
|
|
||||||
isError,
|
|
||||||
errorMessage,
|
|
||||||
disabled,
|
|
||||||
onChange,
|
|
||||||
onDelete,
|
|
||||||
className,
|
|
||||||
}) => {
|
|
||||||
const isDisabled =
|
|
||||||
Boolean(values && maxFiles && values.length >= maxFiles) || disabled;
|
|
||||||
|
|
||||||
const {
|
|
||||||
acceptedFiles,
|
|
||||||
getRootProps,
|
|
||||||
getInputProps,
|
|
||||||
isFocused,
|
|
||||||
isDragAccept,
|
|
||||||
isDragReject,
|
|
||||||
} = useDropzone({
|
|
||||||
maxSize,
|
|
||||||
maxFiles,
|
|
||||||
accept: accept,
|
|
||||||
disabled: isDisabled,
|
|
||||||
});
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (values && maxFiles && values.length <= maxFiles) {
|
|
||||||
onChange?.([...values, ...acceptedFiles]);
|
|
||||||
}
|
|
||||||
}, [acceptedFiles]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className={cn('w-full', className?.wrapper)}>
|
|
||||||
<div
|
|
||||||
className={cn(
|
|
||||||
'w-full flex flex-col gap-2 text-start',
|
|
||||||
className?.inputContainer
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{label && (
|
|
||||||
<label
|
|
||||||
htmlFor={name}
|
|
||||||
className={cn(
|
|
||||||
'w-full text-sm font-normal leading-5',
|
|
||||||
className?.label
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{label}
|
|
||||||
{required && (
|
|
||||||
<>
|
|
||||||
{' '}
|
|
||||||
<span className='tooltip tooltip-error' data-tip='required'>
|
|
||||||
<span className='text-error'>*</span>
|
|
||||||
</span>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</label>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div
|
|
||||||
{...getRootProps({
|
|
||||||
'aria-disabled': isDisabled,
|
|
||||||
className: cn(
|
|
||||||
'dropzone w-full px-4 py-2 border border-dashed border-gray-300 rounded cursor-pointer transition-all',
|
|
||||||
'hover:border-primary hover:bg-primary/10',
|
|
||||||
{
|
|
||||||
'border-success bg-success/10': isDragAccept,
|
|
||||||
'border-error bg-error/10': isDragReject || isError,
|
|
||||||
'border-primary bg-primary/10': isFocused,
|
|
||||||
'bg-gray-200/20 cursor-not-allowed': isDisabled,
|
|
||||||
},
|
|
||||||
className?.inputWrapper
|
|
||||||
),
|
|
||||||
})}
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
{...getInputProps({
|
|
||||||
id: name,
|
|
||||||
name,
|
|
||||||
disabled: isDisabled,
|
|
||||||
'aria-disabled': isDisabled,
|
|
||||||
})}
|
|
||||||
/>
|
|
||||||
{caption && (
|
|
||||||
<p className={cn('text-gray-500 text-sm', className?.caption)}>
|
|
||||||
{caption}
|
|
||||||
</p>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{!isError && bottomLabel && (
|
|
||||||
<p
|
|
||||||
className={cn('w-full text-sm opacity-60', className?.bottomLabel)}
|
|
||||||
>
|
|
||||||
{bottomLabel}
|
|
||||||
</p>
|
|
||||||
)}
|
|
||||||
{isError && (
|
|
||||||
<p
|
|
||||||
className={cn('w-full text-sm text-error', className?.errorMessage)}
|
|
||||||
>
|
|
||||||
{errorMessage}
|
|
||||||
</p>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{values && values.length > 0 && (
|
|
||||||
<div
|
|
||||||
className={cn(
|
|
||||||
'w-full mt-1.5 flex flex-col gap-1.5',
|
|
||||||
className?.fileItemContainer
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{values.map((file, idx) => (
|
|
||||||
<div
|
|
||||||
key={idx}
|
|
||||||
className={cn('w-full flex flex-row items-center gap-2')}
|
|
||||||
>
|
|
||||||
<div className='p-2 rounded-full bg-primary/10'>
|
|
||||||
<Icon
|
|
||||||
icon='basil:file-solid'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className='text-blue-500'
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='w-full text-sm'>
|
|
||||||
<p>{file.name}</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
variant='ghost'
|
|
||||||
color='error'
|
|
||||||
onClick={() => {
|
|
||||||
onDelete?.(idx);
|
|
||||||
}}
|
|
||||||
className='rounded-full text-error focus-visible:text-error-content hover:text-error-content'
|
|
||||||
>
|
|
||||||
<Icon icon='fluent:delete-12-regular' width={24} height={24} />
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default DropFileInput;
|
|
||||||
@@ -49,8 +49,8 @@ const NumberInput = ({
|
|||||||
onValueChange={valueChangeHandler}
|
onValueChange={valueChangeHandler}
|
||||||
decimalScale={decimalScale}
|
decimalScale={decimalScale}
|
||||||
allowNegative={allowNegative}
|
allowNegative={allowNegative}
|
||||||
inputPrefix={inputPrefix}
|
startAdornment={inputPrefix}
|
||||||
inputSuffix={inputSuffix}
|
endAdornment={inputSuffix}
|
||||||
{...restProps}
|
{...restProps}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,90 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { ChangeEvent } from 'react';
|
|
||||||
import {
|
|
||||||
PatternFormat,
|
|
||||||
NumberFormatBase,
|
|
||||||
NumberFormatBaseProps,
|
|
||||||
OnValueChange,
|
|
||||||
} from 'react-number-format';
|
|
||||||
import TextInput, { TextInputProps } from '@/components/input/TextInput';
|
|
||||||
|
|
||||||
interface PatternInputProps extends Omit<TextInputProps, 'type'> {
|
|
||||||
/**
|
|
||||||
* Format pattern, contoh: "##/##/####", "(###) ###-####", "####-####-####"
|
|
||||||
*/
|
|
||||||
format: string;
|
|
||||||
/** Mask karakter kosong, misal "_" */
|
|
||||||
mask?: string;
|
|
||||||
/** Menampilkan mask walau value kosong */
|
|
||||||
allowEmptyFormatting?: boolean;
|
|
||||||
/** Placeholder karakter format, default: "#" */
|
|
||||||
patternChar?: string;
|
|
||||||
/** Jika true, izinkan huruf (A-Z) selain angka */
|
|
||||||
inputVehicleNumber?: boolean;
|
|
||||||
type?: 'text' | 'password' | 'tel';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* PatternInput – tetap backward-compatible dengan Storybook
|
|
||||||
* tapi bisa menerima huruf jika `allowCharacters={true}`
|
|
||||||
*/
|
|
||||||
const PatternInput = ({
|
|
||||||
type = 'text',
|
|
||||||
format,
|
|
||||||
mask = '_',
|
|
||||||
allowEmptyFormatting = false,
|
|
||||||
patternChar = '#',
|
|
||||||
inputVehicleNumber = false,
|
|
||||||
onChange,
|
|
||||||
...restProps
|
|
||||||
}: PatternInputProps) => {
|
|
||||||
const handleValueChange: OnValueChange = (values, { event }) => {
|
|
||||||
const newEvent = event as ChangeEvent<HTMLInputElement> | undefined;
|
|
||||||
if (newEvent) {
|
|
||||||
newEvent.target.value = values.value.toUpperCase();
|
|
||||||
onChange?.(newEvent);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (inputVehicleNumber) {
|
|
||||||
return (
|
|
||||||
<NumberFormatBase
|
|
||||||
{...restProps}
|
|
||||||
type={type}
|
|
||||||
customInput={TextInput}
|
|
||||||
format={(value) => {
|
|
||||||
const clean = value.replace(/[^a-z0-9]/gi, '').toUpperCase();
|
|
||||||
|
|
||||||
const match = clean.match(/^([A-Z]{0,2})(\d{0,4})([A-Z]{0,3})$/);
|
|
||||||
if (!match) return clean;
|
|
||||||
const [, prefix, number, suffix] = match;
|
|
||||||
return [prefix, number, suffix].filter(Boolean).join(' ');
|
|
||||||
}}
|
|
||||||
removeFormatting={(val) => val.replace(/\s+/g, '')}
|
|
||||||
isValidInputCharacter={(char) => /^[a-z0-9]$/i.test(char)}
|
|
||||||
getCaretBoundary={(val) =>
|
|
||||||
Array(val.length + 1)
|
|
||||||
.fill(true)
|
|
||||||
.map(Boolean)
|
|
||||||
}
|
|
||||||
onValueChange={handleValueChange}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<PatternFormat
|
|
||||||
{...restProps}
|
|
||||||
type={type}
|
|
||||||
format={format}
|
|
||||||
mask={mask}
|
|
||||||
allowEmptyFormatting={allowEmptyFormatting}
|
|
||||||
patternChar={patternChar}
|
|
||||||
customInput={TextInput}
|
|
||||||
onValueChange={handleValueChange}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default PatternInput;
|
|
||||||
@@ -1,23 +1,22 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { ComponentType, ReactNode, useEffect, useMemo, useState } from 'react';
|
import { ComponentType, ReactNode, useEffect, useMemo, useState } from 'react';
|
||||||
|
import useSWR from 'swr';
|
||||||
|
|
||||||
import Select, {
|
import Select, {
|
||||||
OptionProps,
|
OptionProps,
|
||||||
GroupBase,
|
GroupBase,
|
||||||
InputActionMeta,
|
InputActionMeta,
|
||||||
MultiValue,
|
MultiValue,
|
||||||
SingleValue,
|
SingleValue,
|
||||||
components as ReactSelectComponents,
|
|
||||||
ControlProps,
|
|
||||||
} from 'react-select';
|
} from 'react-select';
|
||||||
import CreatableSelect from 'react-select/creatable';
|
import CreatableSelect from 'react-select/creatable';
|
||||||
import makeAnimated from 'react-select/animated';
|
import makeAnimated from 'react-select/animated';
|
||||||
import { useDebounce } from 'use-debounce';
|
import { useDebounce } from 'use-debounce';
|
||||||
import { cn, getByPath } from '@/lib/helper';
|
import { cn, getByPath } from '@/lib/helper';
|
||||||
import useSWR from 'swr';
|
|
||||||
import { httpClientFetcher } from '@/services/http/client';
|
import { httpClientFetcher } from '@/services/http/client';
|
||||||
import { BaseApiResponse } from '@/types/api/api-general';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
import { isResponseSuccess } from '@/lib/api-helper';
|
||||||
|
import { BaseApiResponse } from '@/types/api/api-general';
|
||||||
|
|
||||||
export interface OptionType {
|
export interface OptionType {
|
||||||
value: string | number;
|
value: string | number;
|
||||||
@@ -54,8 +53,6 @@ interface SelectInputBaseProps<T = OptionType> {
|
|||||||
openMenu?: boolean;
|
openMenu?: boolean;
|
||||||
delay?: number;
|
delay?: number;
|
||||||
onInputChange?: (search: string) => void;
|
onInputChange?: (search: string) => void;
|
||||||
startAdornment?: ReactNode;
|
|
||||||
menuPortalTarget?: HTMLElement | null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SelectInputProps<T = OptionType> extends SelectInputBaseProps<T> {
|
interface SelectInputProps<T = OptionType> extends SelectInputBaseProps<T> {
|
||||||
@@ -66,33 +63,6 @@ interface SelectInputProps<T = OptionType> extends SelectInputBaseProps<T> {
|
|||||||
|
|
||||||
const animatedComponents = makeAnimated();
|
const animatedComponents = makeAnimated();
|
||||||
|
|
||||||
const CustomControl = <
|
|
||||||
Option,
|
|
||||||
IsMulti extends boolean,
|
|
||||||
Group extends GroupBase<Option>,
|
|
||||||
>(
|
|
||||||
props: ControlProps<Option, IsMulti, Group>
|
|
||||||
) => {
|
|
||||||
const { children } = props;
|
|
||||||
|
|
||||||
const customProps = props.selectProps as unknown as {
|
|
||||||
shouldShowAdornment?: boolean;
|
|
||||||
startAdornment?: ReactNode;
|
|
||||||
};
|
|
||||||
|
|
||||||
const shouldShowAdornment = customProps.shouldShowAdornment ?? false;
|
|
||||||
const startAdornment = customProps.startAdornment;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ReactSelectComponents.Control {...props}>
|
|
||||||
<div className='flex-1 px-4! py-1.5 gap-1 flex items-center'>
|
|
||||||
{shouldShowAdornment && startAdornment}
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
</ReactSelectComponents.Control>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
||||||
const {
|
const {
|
||||||
label,
|
label,
|
||||||
@@ -117,25 +87,15 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
|||||||
delay = 300,
|
delay = 300,
|
||||||
createables = false,
|
createables = false,
|
||||||
onInputChange,
|
onInputChange,
|
||||||
startAdornment,
|
|
||||||
menuPortalTarget,
|
|
||||||
} = props;
|
} = props;
|
||||||
|
|
||||||
const [internalInputValue, setInternalInputValue] = useState('');
|
const [internalInputValue, setInternalInputValue] = useState('');
|
||||||
const [debouncedInputValue] = useDebounce(internalInputValue, delay);
|
const [debouncedInputValue] = useDebounce(internalInputValue, delay);
|
||||||
|
|
||||||
const shouldShowAdornment = startAdornment && !internalInputValue;
|
|
||||||
|
|
||||||
const components = useMemo(() => {
|
const components = useMemo(() => {
|
||||||
const base = isAnimated ? animatedComponents : {};
|
const base = isAnimated ? animatedComponents : {};
|
||||||
const customComponents = { ...base, IndicatorSeparator: () => null };
|
return { ...base, IndicatorSeparator: () => null };
|
||||||
|
}, [isAnimated]);
|
||||||
if (startAdornment) {
|
|
||||||
customComponents.Control = CustomControl;
|
|
||||||
}
|
|
||||||
|
|
||||||
return customComponents;
|
|
||||||
}, [isAnimated, startAdornment]);
|
|
||||||
|
|
||||||
const internalInputChangeHandler = (val: string, meta: InputActionMeta) => {
|
const internalInputChangeHandler = (val: string, meta: InputActionMeta) => {
|
||||||
if (meta.action === 'input-change') setInternalInputValue(val);
|
if (meta.action === 'input-change') setInternalInputValue(val);
|
||||||
@@ -179,12 +139,9 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
|||||||
>
|
>
|
||||||
{label}
|
{label}
|
||||||
{required && (
|
{required && (
|
||||||
<>
|
<span className='tooltip tooltip-error' data-tip='required'>
|
||||||
{' '}
|
<span className='text-error'> *</span>
|
||||||
<span className='tooltip tooltip-error' data-tip='required'>
|
</span>
|
||||||
<span className='text-error'>*</span>
|
|
||||||
</span>
|
|
||||||
</>
|
|
||||||
)}
|
)}
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
@@ -192,12 +149,11 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
|||||||
<SelectComponent<T, boolean, GroupBase<T>>
|
<SelectComponent<T, boolean, GroupBase<T>>
|
||||||
instanceId='select'
|
instanceId='select'
|
||||||
value={value ?? (isMulti ? [] : null)}
|
value={value ?? (isMulti ? [] : null)}
|
||||||
onChange={onChange ? handleChange : undefined}
|
onChange={handleChange}
|
||||||
options={options}
|
options={options}
|
||||||
menuIsOpen={openMenu}
|
menuIsOpen={openMenu}
|
||||||
inputValue={internalInputValue}
|
inputValue={internalInputValue}
|
||||||
onInputChange={internalInputChangeHandler}
|
onInputChange={internalInputChangeHandler}
|
||||||
onMenuClose={() => setInternalInputValue('')}
|
|
||||||
isMulti={isMulti}
|
isMulti={isMulti}
|
||||||
isDisabled={isDisabled}
|
isDisabled={isDisabled}
|
||||||
isLoading={isLoading}
|
isLoading={isLoading}
|
||||||
@@ -207,19 +163,17 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
|||||||
placeholder={placeholder}
|
placeholder={placeholder}
|
||||||
className={cn('w-full', className?.select)}
|
className={cn('w-full', className?.select)}
|
||||||
classNames={{
|
classNames={{
|
||||||
...(!startAdornment && {
|
control: ({ isFocused, isDisabled }) =>
|
||||||
control: ({ isFocused, isDisabled }) =>
|
cn(
|
||||||
cn(
|
'w-full min-h-12! rounded border bg-white transition-shadow cursor-pointer!',
|
||||||
'w-full min-h-12! rounded border bg-white transition-shadow cursor-pointer!',
|
{
|
||||||
{
|
'border-red-500! ring-2 ring-red-200': isError,
|
||||||
'border-red-500! ring-2 ring-red-200': isError,
|
'border-indigo-500 ring-2 ring-indigo-200': isFocused,
|
||||||
'border-indigo-500 ring-2 ring-indigo-200': isFocused,
|
'border-gray-300': !isError && !isFocused,
|
||||||
'border-gray-300': !isError && !isFocused,
|
'bg-gray-100 text-gray-400 cursor-not-allowed': isDisabled,
|
||||||
'bg-gray-100 text-gray-400 cursor-not-allowed': isDisabled,
|
}
|
||||||
}
|
),
|
||||||
),
|
valueContainer: () => cn('flex-1 px-4! py-2! gap-1'),
|
||||||
valueContainer: () => cn('flex-1 px-4! py-2! gap-1'),
|
|
||||||
}),
|
|
||||||
placeholder: () =>
|
placeholder: () =>
|
||||||
cn({ 'text-gray-400': !isError, 'text-red-300!': isError }),
|
cn({ 'text-gray-400': !isError, 'text-red-300!': isError }),
|
||||||
singleValue: () =>
|
singleValue: () =>
|
||||||
@@ -236,7 +190,7 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
|||||||
cn('border border-gray-200 rounded! bg-base-100 shadow-lg!'),
|
cn('border border-gray-200 rounded! bg-base-100 shadow-lg!'),
|
||||||
menuList: () => cn('p-2! max-h-60 overflow-auto'),
|
menuList: () => cn('p-2! max-h-60 overflow-auto'),
|
||||||
option: ({ isFocused, isSelected }) =>
|
option: ({ isFocused, isSelected }) =>
|
||||||
cn('mt-1 px-3 py-2 rounded-md cursor-pointer!', {
|
cn('mt-1 px-3 py-2 rounded cursor-pointer!', {
|
||||||
'bg-indigo-600 text-white': isFocused,
|
'bg-indigo-600 text-white': isFocused,
|
||||||
'bg-blue-500!': isSelected,
|
'bg-blue-500!': isSelected,
|
||||||
'text-gray-700': !isFocused && !isSelected,
|
'text-gray-700': !isFocused && !isSelected,
|
||||||
@@ -257,14 +211,8 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
|||||||
...components,
|
...components,
|
||||||
...(optionComponent ? { Option: optionComponent } : {}),
|
...(optionComponent ? { Option: optionComponent } : {}),
|
||||||
}}
|
}}
|
||||||
{...(startAdornment && {
|
|
||||||
shouldShowAdornment,
|
|
||||||
startAdornment,
|
|
||||||
})}
|
|
||||||
menuPortalTarget={
|
menuPortalTarget={
|
||||||
typeof document !== 'undefined'
|
typeof document !== 'undefined' ? document.body : undefined
|
||||||
? (menuPortalTarget ?? document.body)
|
|
||||||
: undefined
|
|
||||||
}
|
}
|
||||||
styles={{
|
styles={{
|
||||||
menuPortal: (base) => ({ ...base, zIndex: 9999 }),
|
menuPortal: (base) => ({ ...base, zIndex: 9999 }),
|
||||||
@@ -281,8 +229,8 @@ const SelectInput = <T extends OptionType>(props: SelectInputProps<T>) => {
|
|||||||
|
|
||||||
const useSelect = <T,>(
|
const useSelect = <T,>(
|
||||||
basePath: string,
|
basePath: string,
|
||||||
valueKey: keyof T | string,
|
valueKey: keyof T,
|
||||||
labelKey: keyof T | string,
|
labelKey: keyof T,
|
||||||
searchKey: string = 'search',
|
searchKey: string = 'search',
|
||||||
params?: { [key: string]: string }
|
params?: { [key: string]: string }
|
||||||
) => {
|
) => {
|
||||||
@@ -293,7 +241,7 @@ const useSelect = <T,>(
|
|||||||
[searchKey]: inputValue ?? '',
|
[searchKey]: inputValue ?? '',
|
||||||
...params,
|
...params,
|
||||||
}).toString();
|
}).toString();
|
||||||
}, [inputValue, searchKey, params]);
|
}, [inputValue, searchKey]);
|
||||||
|
|
||||||
const optionsUrl = `${basePath}?${optionsUrlParams}`;
|
const optionsUrl = `${basePath}?${optionsUrlParams}`;
|
||||||
|
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ const TextArea = ({
|
|||||||
|
|
||||||
<textarea
|
<textarea
|
||||||
className={cn(
|
className={cn(
|
||||||
'textarea h-auto px-4 py-2 text-base font-normal leading-6 w-full rounded outline-none! transition-all bg-white',
|
'input h-auto px-4 py-2 text-base font-normal leading-6 w-full rounded outline-none! transition-all bg-white',
|
||||||
{
|
{
|
||||||
'border-error': isError,
|
'border-error': isError,
|
||||||
'border-success!': isValid,
|
'border-success!': isValid,
|
||||||
|
|||||||
@@ -31,8 +31,6 @@ export interface TextInputProps {
|
|||||||
errorMessage?: string;
|
errorMessage?: string;
|
||||||
startAdornment?: ReactNode;
|
startAdornment?: ReactNode;
|
||||||
endAdornment?: ReactNode;
|
endAdornment?: ReactNode;
|
||||||
inputPrefix?: ReactNode;
|
|
||||||
inputSuffix?: ReactNode;
|
|
||||||
onChange?: ChangeEventHandler<HTMLInputElement>;
|
onChange?: ChangeEventHandler<HTMLInputElement>;
|
||||||
onBlur?: FocusEventHandler<HTMLInputElement>;
|
onBlur?: FocusEventHandler<HTMLInputElement>;
|
||||||
}
|
}
|
||||||
@@ -50,8 +48,6 @@ const TextInput = ({
|
|||||||
errorMessage,
|
errorMessage,
|
||||||
startAdornment,
|
startAdornment,
|
||||||
endAdornment,
|
endAdornment,
|
||||||
inputPrefix,
|
|
||||||
inputSuffix,
|
|
||||||
disabled = false,
|
disabled = false,
|
||||||
required = false,
|
required = false,
|
||||||
onChange,
|
onChange,
|
||||||
@@ -89,117 +85,39 @@ const TextInput = ({
|
|||||||
</label>
|
</label>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{inputPrefix || inputSuffix ? (
|
<div
|
||||||
<div className='relative flex'>
|
className={cn(
|
||||||
{inputPrefix && (
|
'input h-12 px-4 py-2 text-base font-normal leading-6 w-full rounded outline-none! transition-all duration-200',
|
||||||
<div
|
{
|
||||||
className={cn(
|
'border-error': isError,
|
||||||
'inline-flex items-center px-4 py-2 border border-r-0 rounded-l-md transition-all duration-200',
|
'border-success!': isValid,
|
||||||
{
|
},
|
||||||
'bg-gray-100 border-gray-300': !disabled,
|
className?.inputWrapper
|
||||||
'bg-gray-50 border-gray-200': disabled,
|
)}
|
||||||
}
|
>
|
||||||
)}
|
{startAdornment && startAdornment}
|
||||||
>
|
|
||||||
{inputPrefix}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div
|
<input
|
||||||
className={cn(
|
type={type}
|
||||||
'input h-12 text-base font-normal leading-6 flex-1 rounded-lg! outline-none! transition-all duration-200 flex items-center bg-white',
|
id={name}
|
||||||
{
|
name={name}
|
||||||
'border-error': isError,
|
placeholder={placeholder}
|
||||||
'border-success!': isValid,
|
value={value}
|
||||||
'rounded-l-none!': inputPrefix,
|
onChange={onChange}
|
||||||
'rounded-r-none!': inputSuffix,
|
onBlur={onBlur}
|
||||||
'input-disabled': disabled,
|
disabled={disabled}
|
||||||
'cursor-not-allowed': disabled,
|
className={cn('grow', className?.input)}
|
||||||
'bg-gray-50': disabled,
|
readOnly={readOnly}
|
||||||
},
|
/>
|
||||||
className?.inputWrapper
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{startAdornment && startAdornment}
|
|
||||||
|
|
||||||
<input
|
{(isLoading || endAdornment) && (
|
||||||
type={type}
|
<div className='flex flex-row gap-2'>
|
||||||
id={name}
|
{isLoading && <span className='loading loading-spinner' />}
|
||||||
name={name}
|
|
||||||
placeholder={placeholder}
|
|
||||||
value={value}
|
|
||||||
onChange={onChange}
|
|
||||||
onBlur={onBlur}
|
|
||||||
disabled={disabled}
|
|
||||||
className={cn(
|
|
||||||
'grow bg-transparent outline-none',
|
|
||||||
{
|
|
||||||
'cursor-not-allowed': disabled,
|
|
||||||
'text-gray-500': disabled,
|
|
||||||
},
|
|
||||||
className?.input
|
|
||||||
)}
|
|
||||||
readOnly={readOnly}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{(isLoading || endAdornment) && (
|
{endAdornment && endAdornment}
|
||||||
<div className='flex flex-row gap-2'>
|
|
||||||
{isLoading && <span className='loading loading-spinner' />}
|
|
||||||
|
|
||||||
{endAdornment && endAdornment}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
{inputSuffix && (
|
</div>
|
||||||
<div
|
|
||||||
className={cn(
|
|
||||||
'inline-flex items-center px-4 py-2 border border-l-0 rounded-r-md transition-all duration-200',
|
|
||||||
{
|
|
||||||
'bg-gray-100 border-gray-300': !disabled,
|
|
||||||
'bg-gray-50 border-gray-200': disabled,
|
|
||||||
}
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{inputSuffix}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
) : (
|
|
||||||
<div
|
|
||||||
className={cn(
|
|
||||||
'input h-12 px-4 py-2 text-base font-normal leading-6 w-full rounded-lg! outline-none! transition-all duration-200 bg-white',
|
|
||||||
{
|
|
||||||
'border-error': isError,
|
|
||||||
'border-success!': isValid,
|
|
||||||
},
|
|
||||||
className?.inputWrapper
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{startAdornment && startAdornment}
|
|
||||||
|
|
||||||
<input
|
|
||||||
type={type}
|
|
||||||
id={name}
|
|
||||||
name={name}
|
|
||||||
placeholder={placeholder}
|
|
||||||
value={value}
|
|
||||||
onChange={onChange}
|
|
||||||
onBlur={onBlur}
|
|
||||||
disabled={disabled}
|
|
||||||
className={cn('grow', className?.input)}
|
|
||||||
readOnly={readOnly}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{(isLoading || endAdornment) && (
|
|
||||||
<div className='flex flex-row gap-2'>
|
|
||||||
{isLoading && <span className='loading loading-spinner' />}
|
|
||||||
|
|
||||||
{endAdornment && endAdornment}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{!isError && bottomLabel && (
|
{!isError && bottomLabel && (
|
||||||
<p className='w-full text-sm opacity-60'>{bottomLabel}</p>
|
<p className='w-full text-sm opacity-60'>{bottomLabel}</p>
|
||||||
|
|||||||
@@ -1,32 +1,16 @@
|
|||||||
import { ReactNode } from 'react';
|
import { ReactNode } from 'react';
|
||||||
|
|
||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
import { Size } from '@/types/theme';
|
|
||||||
|
|
||||||
interface MenuProps {
|
interface MenuProps {
|
||||||
children?: ReactNode;
|
children?: ReactNode;
|
||||||
size?: Size;
|
|
||||||
direction?: 'vertical' | 'horizontal';
|
|
||||||
className?: string;
|
className?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Menu = ({
|
const Menu = ({ children, className }: MenuProps) => {
|
||||||
children,
|
return (
|
||||||
size = 'md',
|
<ul className={cn('menu w-full p-0 gap-0.5', className)}>{children}</ul>
|
||||||
direction = 'vertical',
|
);
|
||||||
className,
|
|
||||||
}: MenuProps) => {
|
|
||||||
const menuBaseClassName = cn('menu w-full', {
|
|
||||||
'menu-xs': size === 'xs',
|
|
||||||
'menu-sm': size === 'sm',
|
|
||||||
'menu-md': size === 'md',
|
|
||||||
'menu-lg': size === 'lg',
|
|
||||||
'menu-xl': size === 'xl',
|
|
||||||
'menu-vertical': direction === 'vertical',
|
|
||||||
'menu-horizontal': direction === 'horizontal',
|
|
||||||
});
|
|
||||||
|
|
||||||
return <ul className={cn(menuBaseClassName, className)}>{children}</ul>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Menu;
|
export default Menu;
|
||||||
|
|||||||
@@ -1,29 +1,35 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { MouseEventHandler, RefObject, useState } from 'react';
|
import { RefObject } from 'react';
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
import { Icon } from '@iconify/react';
|
||||||
import Modal from '@/components/Modal';
|
import Modal from '@/components/Modal';
|
||||||
import Button, { ButtonProps } from '@/components/Button';
|
import Button from '@/components/Button';
|
||||||
|
|
||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
|
import { Color } from '@/types/theme';
|
||||||
|
|
||||||
export interface ConfirmationModalProps {
|
interface ConfirmationModalProps {
|
||||||
ref: RefObject<HTMLDialogElement | null>;
|
ref: RefObject<HTMLDialogElement | null>;
|
||||||
type?: 'info' | 'success' | 'error';
|
type?: 'info' | 'success' | 'error';
|
||||||
text?: string;
|
text?: string;
|
||||||
closeOnBackdrop?: boolean;
|
closeOnBackdrop?: boolean;
|
||||||
primaryButton?: ButtonProps & {
|
primaryButton?: {
|
||||||
text?: string;
|
text?: string;
|
||||||
|
color?: Color;
|
||||||
|
isLoading?: boolean;
|
||||||
|
onClick?: () => void;
|
||||||
};
|
};
|
||||||
secondaryButton?: ButtonProps & {
|
secondaryButton?: {
|
||||||
text?: string;
|
text?: string;
|
||||||
|
color?: Color;
|
||||||
|
isLoading?: boolean;
|
||||||
|
onClick?: () => void;
|
||||||
};
|
};
|
||||||
className?: {
|
className?: {
|
||||||
modal?: string;
|
modal?: string;
|
||||||
modalBox?: string;
|
modalBox?: string;
|
||||||
};
|
};
|
||||||
children?: React.ReactNode;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const ConfirmationModal = ({
|
const ConfirmationModal = ({
|
||||||
@@ -34,24 +40,11 @@ const ConfirmationModal = ({
|
|||||||
primaryButton,
|
primaryButton,
|
||||||
secondaryButton,
|
secondaryButton,
|
||||||
className,
|
className,
|
||||||
children,
|
|
||||||
}: ConfirmationModalProps) => {
|
}: ConfirmationModalProps) => {
|
||||||
const [isPrimaryButtonLoading, setIsPrimaryButtonLoading] = useState(false);
|
|
||||||
|
|
||||||
const closeModalHandler = () => {
|
const closeModalHandler = () => {
|
||||||
ref.current?.close();
|
ref.current?.close();
|
||||||
};
|
};
|
||||||
|
|
||||||
const primaryButtonClickHandler: MouseEventHandler<
|
|
||||||
HTMLButtonElement
|
|
||||||
> = async (event) => {
|
|
||||||
setIsPrimaryButtonLoading(true);
|
|
||||||
|
|
||||||
await primaryButton?.onClick?.(event);
|
|
||||||
|
|
||||||
setIsPrimaryButtonLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal ref={ref} closeOnBackdrop={closeOnBackdrop} className={className}>
|
<Modal ref={ref} closeOnBackdrop={closeOnBackdrop} className={className}>
|
||||||
<div className='w-full flex flex-col gap-4'>
|
<div className='w-full flex flex-col gap-4'>
|
||||||
@@ -97,20 +90,13 @@ const ConfirmationModal = ({
|
|||||||
{text ?? 'Apakah anda yakin ingin melakukan hal ini?'}
|
{text ?? 'Apakah anda yakin ingin melakukan hal ini?'}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{children && <div className='w-full'>{children}</div>}
|
|
||||||
|
|
||||||
<div className='w-full flex flex-row gap-2'>
|
<div className='w-full flex flex-row gap-2'>
|
||||||
{secondaryButton && secondaryButton.text && (
|
{secondaryButton && secondaryButton.text && (
|
||||||
<Button
|
<Button
|
||||||
{...secondaryButton}
|
|
||||||
variant='ghost'
|
variant='ghost'
|
||||||
color={secondaryButton?.color}
|
color={secondaryButton?.color ?? 'none'}
|
||||||
isLoading={secondaryButton?.isLoading}
|
isLoading={secondaryButton?.isLoading}
|
||||||
disabled={
|
disabled={secondaryButton?.isLoading}
|
||||||
secondaryButton?.isLoading !== undefined
|
|
||||||
? secondaryButton?.isLoading
|
|
||||||
: isPrimaryButtonLoading
|
|
||||||
}
|
|
||||||
onClick={closeModalHandler}
|
onClick={closeModalHandler}
|
||||||
className='grow'
|
className='grow'
|
||||||
>
|
>
|
||||||
@@ -120,19 +106,10 @@ const ConfirmationModal = ({
|
|||||||
|
|
||||||
{primaryButton && primaryButton.text && (
|
{primaryButton && primaryButton.text && (
|
||||||
<Button
|
<Button
|
||||||
{...primaryButton}
|
|
||||||
color={primaryButton?.color ?? 'info'}
|
color={primaryButton?.color ?? 'info'}
|
||||||
onClick={primaryButtonClickHandler}
|
onClick={primaryButton?.onClick}
|
||||||
isLoading={
|
isLoading={primaryButton?.isLoading}
|
||||||
primaryButton?.isLoading !== undefined
|
disabled={primaryButton?.isLoading}
|
||||||
? primaryButton?.isLoading
|
|
||||||
: isPrimaryButtonLoading
|
|
||||||
}
|
|
||||||
disabled={
|
|
||||||
primaryButton?.isLoading !== undefined
|
|
||||||
? primaryButton?.isLoading
|
|
||||||
: isPrimaryButtonLoading
|
|
||||||
}
|
|
||||||
className='grow'
|
className='grow'
|
||||||
>
|
>
|
||||||
{primaryButton?.text ?? 'Ya'}
|
{primaryButton?.text ?? 'Ya'}
|
||||||
|
|||||||
@@ -1,70 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { ChangeEventHandler, useId, useState } from 'react';
|
|
||||||
|
|
||||||
import ConfirmationModal, {
|
|
||||||
ConfirmationModalProps,
|
|
||||||
} from '@/components/modal/ConfirmationModal';
|
|
||||||
import TextArea from '@/components/input/TextArea';
|
|
||||||
|
|
||||||
import { Color } from '@/types/theme';
|
|
||||||
|
|
||||||
interface ConfirmationModalWithNotesProps
|
|
||||||
extends Omit<ConfirmationModalProps, 'children' | 'primaryButton'> {
|
|
||||||
rows?: number;
|
|
||||||
placeholder?: string;
|
|
||||||
|
|
||||||
primaryButton?: {
|
|
||||||
text?: string;
|
|
||||||
color?: Color;
|
|
||||||
isLoading?: boolean;
|
|
||||||
onClick?: (notes: string) => void;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const ConfirmationModalWithNotes: React.FC<ConfirmationModalWithNotesProps> = ({
|
|
||||||
ref,
|
|
||||||
type = 'info',
|
|
||||||
text,
|
|
||||||
closeOnBackdrop,
|
|
||||||
primaryButton,
|
|
||||||
secondaryButton,
|
|
||||||
className,
|
|
||||||
rows = 3,
|
|
||||||
placeholder = 'Catatan...',
|
|
||||||
}) => {
|
|
||||||
const randomId = useId();
|
|
||||||
const [notes, setNotes] = useState('');
|
|
||||||
|
|
||||||
const notesChangeHandler: ChangeEventHandler<HTMLTextAreaElement> = (e) => {
|
|
||||||
setNotes(e.target.value);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={ref}
|
|
||||||
type={type}
|
|
||||||
text={text}
|
|
||||||
closeOnBackdrop={closeOnBackdrop}
|
|
||||||
primaryButton={{
|
|
||||||
...primaryButton,
|
|
||||||
onClick: () => {
|
|
||||||
primaryButton?.onClick?.(notes);
|
|
||||||
setNotes('');
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
secondaryButton={secondaryButton}
|
|
||||||
className={className}
|
|
||||||
>
|
|
||||||
<TextArea
|
|
||||||
name={randomId}
|
|
||||||
placeholder={placeholder}
|
|
||||||
value={notes}
|
|
||||||
onChange={notesChangeHandler}
|
|
||||||
rows={rows}
|
|
||||||
/>
|
|
||||||
</ConfirmationModal>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ConfirmationModalWithNotes;
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
import Link from 'next/link';
|
|
||||||
import Menu from '@/components/menu/Menu';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import { cn, isPathActive } from '@/lib/helper';
|
|
||||||
|
|
||||||
export interface SidebarMenuItem {
|
|
||||||
type?: 'item' | 'title';
|
|
||||||
text: string;
|
|
||||||
link: string;
|
|
||||||
icon?: string;
|
|
||||||
submenu?: SidebarMenuItem[];
|
|
||||||
}
|
|
||||||
|
|
||||||
interface SidebarMenuItemProps {
|
|
||||||
item: SidebarMenuItem;
|
|
||||||
activeLink: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface SidebarMenuProps {
|
|
||||||
menu: SidebarMenuItem[];
|
|
||||||
activeLink: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
const SidebarMenuItem = ({ item, activeLink }: SidebarMenuItemProps) => {
|
|
||||||
const isItemActive = isPathActive(activeLink, item.link);
|
|
||||||
|
|
||||||
const menuItemWithoutSubmenu = (
|
|
||||||
<li>
|
|
||||||
<Link
|
|
||||||
href={item.link}
|
|
||||||
className={cn(
|
|
||||||
{
|
|
||||||
'menu-active border-2 border-solid border-base-300': isItemActive,
|
|
||||||
},
|
|
||||||
'px-3 py-1.5'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{item.icon && <Icon icon={item.icon} width={20} height={20} />}
|
|
||||||
|
|
||||||
<span className='text-base'>{item.text}</span>
|
|
||||||
</Link>
|
|
||||||
</li>
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!item.submenu || item.submenu.length === 0) {
|
|
||||||
return menuItemWithoutSubmenu;
|
|
||||||
}
|
|
||||||
|
|
||||||
const menuItemWithSubmenu = (
|
|
||||||
<li>
|
|
||||||
<details open={isItemActive}>
|
|
||||||
<summary
|
|
||||||
className={cn({
|
|
||||||
'text-primary': isItemActive,
|
|
||||||
})}
|
|
||||||
>
|
|
||||||
{item.icon && <Icon icon={item.icon} width={20} height={20} />}
|
|
||||||
|
|
||||||
<span className='text-base'>{item.text}</span>
|
|
||||||
</summary>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
{item.submenu.map((submenuItem, submenuIdx) => (
|
|
||||||
<SidebarMenuItem
|
|
||||||
key={`submenu#${submenuIdx}`}
|
|
||||||
item={submenuItem}
|
|
||||||
activeLink={activeLink}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</details>
|
|
||||||
</li>
|
|
||||||
);
|
|
||||||
|
|
||||||
return menuItemWithSubmenu;
|
|
||||||
};
|
|
||||||
|
|
||||||
const SidebarMenu = ({ menu, activeLink }: SidebarMenuProps) => {
|
|
||||||
return (
|
|
||||||
<Menu>
|
|
||||||
{menu.map((menuItem, menuIdx) => (
|
|
||||||
<SidebarMenuItem
|
|
||||||
key={menuIdx}
|
|
||||||
item={menuItem}
|
|
||||||
activeLink={activeLink}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
</Menu>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default SidebarMenu;
|
|
||||||
@@ -4,21 +4,12 @@ import StepItem from '@/components/steps/StepItem';
|
|||||||
import Tooltip from '@/components/Tooltip';
|
import Tooltip from '@/components/Tooltip';
|
||||||
|
|
||||||
import { cn, formatDate } from '@/lib/helper';
|
import { cn, formatDate } from '@/lib/helper';
|
||||||
import {
|
import { BaseApproval, BaseGroupedApproval } from '@/types/api/api-general';
|
||||||
BaseApiResponse,
|
|
||||||
BaseApproval,
|
|
||||||
BaseGroupedApproval,
|
|
||||||
} from '@/types/api/api-general';
|
|
||||||
import { ApprovalLine } from '@/types/config/constant';
|
import { ApprovalLine } from '@/types/config/constant';
|
||||||
import useSWR from 'swr';
|
|
||||||
import { httpClientFetcher } from '@/services/http/client';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { useCallback, useMemo } from 'react';
|
|
||||||
|
|
||||||
export type ApprovalStepStatus = 'APPROVED' | 'REJECTED' | 'WAITING' | 'IDLE';
|
export type ApprovalStepStatus = 'APPROVED' | 'REJECTED' | 'WAITING' | 'IDLE';
|
||||||
|
|
||||||
export type ApprovalStepLog = {
|
export type ApprovalStepLog = {
|
||||||
action: string;
|
|
||||||
action_by?: string;
|
action_by?: string;
|
||||||
date?: string;
|
date?: string;
|
||||||
notes?: string | null;
|
notes?: string | null;
|
||||||
@@ -66,55 +57,28 @@ const ApprovalSteps = ({ approvals }: ApprovalStepsProps) => {
|
|||||||
position='right'
|
position='right'
|
||||||
className={{
|
className={{
|
||||||
wrapper: 'md:tooltip-bottom',
|
wrapper: 'md:tooltip-bottom',
|
||||||
content: 'p-0 rounded overflow-hidden',
|
|
||||||
}}
|
}}
|
||||||
content={
|
content={
|
||||||
<>
|
<>
|
||||||
{approval.logs && approval.logs.length > 0 && (
|
{approval.logs && approval.logs.length > 0 && (
|
||||||
<div className='flex flex-col gap-0'>
|
<div className='flex flex-col gap-2'>
|
||||||
{approval.logs?.map((approvalLog, logIdx) => {
|
{approval.logs?.map((approvalLog, logIdx) => (
|
||||||
const action =
|
<div
|
||||||
approvalLog.action === 'CREATED'
|
key={logIdx}
|
||||||
? 'Dibuat'
|
className='flex flex-col text-base text-start'
|
||||||
: approvalLog.action === 'UPDATED'
|
>
|
||||||
? 'Diperbarui'
|
{approvalLog.date && (
|
||||||
: approvalLog.action === 'APPROVED'
|
<span>
|
||||||
? 'Disetujui'
|
{formatDate(
|
||||||
: approvalLog.action === 'REJECTED'
|
approvalLog.date,
|
||||||
? 'Ditolak'
|
'YYYY-MM-DD, HH:mm:ss'
|
||||||
: '-';
|
)}
|
||||||
|
</span>
|
||||||
return (
|
)}
|
||||||
<div
|
<span>Oleh: {approvalLog.action_by ?? '-'}</span>
|
||||||
key={logIdx}
|
<span>Catatan: {approvalLog.notes ?? '-'}</span>
|
||||||
className={cn(
|
</div>
|
||||||
'p-2 flex flex-col text-base text-start',
|
))}
|
||||||
{
|
|
||||||
'bg-success text-success-content':
|
|
||||||
approvalLog.action === 'APPROVED',
|
|
||||||
'bg-error text-error-content':
|
|
||||||
approvalLog.action === 'REJECTED',
|
|
||||||
'bg-info text-info-content':
|
|
||||||
approvalLog.action === 'CREATED',
|
|
||||||
'bg-warning text-warning-content':
|
|
||||||
approvalLog.action === 'UPDATED',
|
|
||||||
}
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{approvalLog.date && (
|
|
||||||
<span>
|
|
||||||
{formatDate(
|
|
||||||
approvalLog.date,
|
|
||||||
'YYYY-MM-DD, HH:mm:ss'
|
|
||||||
)}
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
<span>Aksi: {action}</span>
|
|
||||||
<span>Oleh: {approvalLog.action_by ?? '-'}</span>
|
|
||||||
<span>Catatan: {approvalLog.notes ?? '-'}</span>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
@@ -156,9 +120,7 @@ export const formatGroupedApprovalsToApprovalSteps = (
|
|||||||
|
|
||||||
const currentStepNumber = approvalLineItem.step_number;
|
const currentStepNumber = approvalLineItem.step_number;
|
||||||
const lastStepNumber =
|
const lastStepNumber =
|
||||||
groupedApprovals[groupedApprovals.length - 1]?.step_number;
|
groupedApprovals[groupedApprovals.length - 1].step_number;
|
||||||
|
|
||||||
const isLatestApprovalRejected = latestApproval.action === 'REJECTED';
|
|
||||||
|
|
||||||
if (!approvalGroup && currentStepNumber <= lastStepNumber) {
|
if (!approvalGroup && currentStepNumber <= lastStepNumber) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
@@ -168,57 +130,43 @@ export const formatGroupedApprovalsToApprovalSteps = (
|
|||||||
|
|
||||||
if (!approvalGroup) {
|
if (!approvalGroup) {
|
||||||
const isWaiting = currentStepNumber === latestApproval.step_number + 1;
|
const isWaiting = currentStepNumber === latestApproval.step_number + 1;
|
||||||
const isPreviousApprovalRejected =
|
|
||||||
groupedApprovals[groupedApprovals.length - 1].approvals[0].action ===
|
|
||||||
'REJECTED';
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
name: approvalLineItem.step_name,
|
name: approvalLineItem.step_name,
|
||||||
status: isPreviousApprovalRejected
|
status: isWaiting ? 'WAITING' : 'IDLE',
|
||||||
? 'IDLE'
|
|
||||||
: isWaiting
|
|
||||||
? 'WAITING'
|
|
||||||
: 'IDLE',
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
let approvalStatus: ApprovalStepStatus = 'IDLE';
|
let approvalStatus: ApprovalStepStatus;
|
||||||
|
|
||||||
if (approvalGroup.step_number <= latestApproval.step_number) {
|
if (approvalGroup.step_number <= latestApproval.step_number) {
|
||||||
if (approvalGroup.approvals) {
|
switch (approvalGroup.approvals[0].action) {
|
||||||
switch (approvalGroup?.approvals[0]?.action) {
|
case 'CREATED':
|
||||||
case 'CREATED':
|
case 'APPROVED':
|
||||||
case 'UPDATED':
|
approvalStatus = 'APPROVED';
|
||||||
case 'APPROVED':
|
break;
|
||||||
approvalStatus = 'APPROVED';
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'REJECTED':
|
case 'REJECTED':
|
||||||
approvalStatus = 'REJECTED';
|
approvalStatus = 'REJECTED';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
approvalStatus = 'IDLE';
|
approvalStatus = 'IDLE';
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else if (
|
} else if (approvalGroup.step_number === latestApproval.step_number + 1) {
|
||||||
approvalGroup.step_number === latestApproval.step_number + 1 &&
|
|
||||||
!isLatestApprovalRejected
|
|
||||||
) {
|
|
||||||
approvalStatus = 'WAITING';
|
approvalStatus = 'WAITING';
|
||||||
} else {
|
} else {
|
||||||
approvalStatus = 'IDLE';
|
approvalStatus = 'IDLE';
|
||||||
}
|
}
|
||||||
|
|
||||||
const approvalLogs: ApprovalStepLog[] = approvalGroup.approvals
|
const approvalLogs: ApprovalStepLog[] = approvalGroup.approvals.map(
|
||||||
? approvalGroup.approvals.map((approval) => ({
|
(approval) => ({
|
||||||
action_by: approval.action_by.name,
|
action_by: approval.action_by.name,
|
||||||
date: approval.action_at,
|
date: approval.action_at,
|
||||||
notes: approval.notes,
|
notes: approval.notes,
|
||||||
action: approval.action,
|
})
|
||||||
}))
|
);
|
||||||
: [];
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
name: approvalGroup.step_name,
|
name: approvalGroup.step_name,
|
||||||
@@ -231,178 +179,3 @@ export const formatGroupedApprovalsToApprovalSteps = (
|
|||||||
};
|
};
|
||||||
|
|
||||||
export default ApprovalSteps;
|
export default ApprovalSteps;
|
||||||
|
|
||||||
/**
|
|
||||||
* Mengubah array BaseApproval (datar) menjadi BaseGroupedApproval (berkelompok).
|
|
||||||
*/
|
|
||||||
const groupApprovalsByStep = (
|
|
||||||
approvals: BaseApproval[]
|
|
||||||
): BaseGroupedApproval[] => {
|
|
||||||
const groups: Record<number, BaseGroupedApproval> = {};
|
|
||||||
for (const approval of approvals) {
|
|
||||||
if (!groups[approval.step_number]) {
|
|
||||||
groups[approval.step_number] = {
|
|
||||||
step_number: approval.step_number,
|
|
||||||
step_name: approval.step_name,
|
|
||||||
approvals: [],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
groups[approval.step_number].approvals.push(approval);
|
|
||||||
}
|
|
||||||
return Object.values(groups);
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Mengubah array BaseGroupedApproval (berkelompok) kembali menjadi BaseApproval[] (datar).
|
|
||||||
*/
|
|
||||||
const flattenGroupedApprovals = (
|
|
||||||
groupedApprovals: BaseGroupedApproval[]
|
|
||||||
): BaseApproval[] => {
|
|
||||||
return groupedApprovals.flatMap((group) => group.approvals);
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Type guard untuk memeriksa apakah data adalah BaseGroupedApproval[].
|
|
||||||
*/
|
|
||||||
const isGroupedApprovalData = (
|
|
||||||
data: BaseApproval[] | BaseGroupedApproval[]
|
|
||||||
): data is BaseGroupedApproval[] => {
|
|
||||||
if (!data || data.length === 0) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
const firstElement = data[0];
|
|
||||||
return (
|
|
||||||
typeof firstElement === 'object' &&
|
|
||||||
firstElement !== null &&
|
|
||||||
'approvals' in firstElement &&
|
|
||||||
Array.isArray(firstElement.approvals)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const useApprovalSteps = ({
|
|
||||||
latestApproval,
|
|
||||||
approvalLines,
|
|
||||||
moduleName,
|
|
||||||
moduleId,
|
|
||||||
params,
|
|
||||||
}: {
|
|
||||||
latestApproval: BaseApproval | undefined;
|
|
||||||
approvalLines: ApprovalLine;
|
|
||||||
moduleName: string;
|
|
||||||
moduleId: string;
|
|
||||||
params?: {
|
|
||||||
page?: number;
|
|
||||||
limit: number;
|
|
||||||
search?: string;
|
|
||||||
group_step_number?: boolean;
|
|
||||||
};
|
|
||||||
}) => {
|
|
||||||
// Membuat URL Parameters
|
|
||||||
const paramString = new URLSearchParams({
|
|
||||||
page: params?.page?.toString() || '',
|
|
||||||
limit: params?.limit?.toString() || '',
|
|
||||||
search: params?.search || '',
|
|
||||||
}).toString();
|
|
||||||
|
|
||||||
// fetching data approvals
|
|
||||||
const SWR_KEY_APPROVALS =
|
|
||||||
moduleName && moduleId
|
|
||||||
? `/approvals?module_name=${moduleName}&module_id=${moduleId}${
|
|
||||||
params ? `&${paramString}` : ''
|
|
||||||
}`
|
|
||||||
: null;
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: approvalData,
|
|
||||||
isLoading: approvalIsLoading,
|
|
||||||
mutate: mutateApprovals,
|
|
||||||
} = useSWR(SWR_KEY_APPROVALS, async (url) => {
|
|
||||||
return await httpClientFetcher<
|
|
||||||
BaseApiResponse<BaseApproval[] | BaseGroupedApproval[]>
|
|
||||||
>(url);
|
|
||||||
});
|
|
||||||
|
|
||||||
// Fungsi Refresh
|
|
||||||
const refresh = useCallback(async () => {
|
|
||||||
await mutateApprovals();
|
|
||||||
}, [mutateApprovals]);
|
|
||||||
|
|
||||||
const { groupedApprovals } = useMemo(() => {
|
|
||||||
const rawData = isResponseSuccess(approvalData)
|
|
||||||
? approvalData.data
|
|
||||||
: undefined;
|
|
||||||
|
|
||||||
let processedGroupedApprovals: BaseGroupedApproval[] = [];
|
|
||||||
|
|
||||||
if (rawData) {
|
|
||||||
if (isGroupedApprovalData(rawData)) {
|
|
||||||
processedGroupedApprovals = rawData;
|
|
||||||
} else {
|
|
||||||
processedGroupedApprovals = groupApprovalsByStep(
|
|
||||||
rawData as BaseApproval[]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
groupedApprovals: processedGroupedApprovals,
|
|
||||||
};
|
|
||||||
}, [approvalData]);
|
|
||||||
|
|
||||||
const isLoading = approvalIsLoading;
|
|
||||||
|
|
||||||
// Formatting Akhir
|
|
||||||
const approvals = useMemo(() => {
|
|
||||||
if (isLoading || !approvalLines.length || !latestApproval) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
return formatGroupedApprovalsToApprovalSteps(
|
|
||||||
approvalLines,
|
|
||||||
groupedApprovals,
|
|
||||||
latestApproval
|
|
||||||
);
|
|
||||||
} catch (error) {
|
|
||||||
console.warn('Gagal memformat approval steps:', error);
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
}, [isLoading, approvalLines, groupedApprovals, latestApproval]);
|
|
||||||
|
|
||||||
// Raw Data Approvals
|
|
||||||
const rawDataApprovals = useMemo(() => {
|
|
||||||
const rawData = isResponseSuccess(approvalData)
|
|
||||||
? approvalData.data
|
|
||||||
: undefined;
|
|
||||||
|
|
||||||
if (!rawData) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
const isDataCurrentlyGrouped = isGroupedApprovalData(rawData);
|
|
||||||
const wantsGrouped = params?.group_step_number !== false;
|
|
||||||
|
|
||||||
if (wantsGrouped) {
|
|
||||||
if (isDataCurrentlyGrouped) {
|
|
||||||
return rawData as BaseGroupedApproval[];
|
|
||||||
} else {
|
|
||||||
return groupApprovalsByStep(rawData as BaseApproval[]);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (isDataCurrentlyGrouped) {
|
|
||||||
return flattenGroupedApprovals(rawData as BaseGroupedApproval[]);
|
|
||||||
} else {
|
|
||||||
return rawData as BaseApproval[];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, [approvalData, params?.group_step_number]);
|
|
||||||
|
|
||||||
// Return Hook
|
|
||||||
return {
|
|
||||||
approvals,
|
|
||||||
isLoading,
|
|
||||||
rawDataApprovals: rawDataApprovals,
|
|
||||||
refresh,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
export { useApprovalSteps };
|
|
||||||
|
|||||||
@@ -1,76 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useMemo, useState } from 'react';
|
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import Tabs from '@/components/Tabs';
|
|
||||||
import ExpenseRequestContent from '@/components/pages/expense/ExpenseRequestContent';
|
|
||||||
import ExpenseRealizationContent from '@/components/pages/expense/ExpenseRealizationContent';
|
|
||||||
|
|
||||||
import { Expense } from '@/types/api/expense';
|
|
||||||
|
|
||||||
interface ExpenseDetailProps {
|
|
||||||
initialValues?: Expense;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseDetail: React.FC<ExpenseDetailProps> = ({ initialValues }) => {
|
|
||||||
const [activeTab, setActiveTab] = useState<string>('request');
|
|
||||||
|
|
||||||
const expenseDetailTabs = useMemo(() => {
|
|
||||||
const validTabs = [
|
|
||||||
{
|
|
||||||
id: 'request',
|
|
||||||
label: 'Pengajuan',
|
|
||||||
content: <ExpenseRequestContent initialValues={initialValues} />,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
if (
|
|
||||||
initialValues?.latest_approval &&
|
|
||||||
initialValues?.latest_approval.step_number >= 4 &&
|
|
||||||
initialValues.latest_approval.action !== 'REJECTED'
|
|
||||||
) {
|
|
||||||
validTabs.push({
|
|
||||||
id: 'realization',
|
|
||||||
label: 'Realisasi',
|
|
||||||
content: <ExpenseRealizationContent initialValues={initialValues} />,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return validTabs;
|
|
||||||
}, [initialValues]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<section className='w-full max-w-7xl pb-16'>
|
|
||||||
<header className='flex flex-col gap-4'>
|
|
||||||
<Button
|
|
||||||
href='/expense'
|
|
||||||
variant='link'
|
|
||||||
className='w-fit p-0 text-primary'
|
|
||||||
>
|
|
||||||
<Icon icon='uil:arrow-left' width={24} height={24} />
|
|
||||||
Kembali
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<h1 className='text-2xl font-bold text-center'>
|
|
||||||
Detail Biaya Operasional
|
|
||||||
</h1>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<Tabs
|
|
||||||
activeTabId={activeTab}
|
|
||||||
onTabChange={setActiveTab}
|
|
||||||
tabs={expenseDetailTabs}
|
|
||||||
variant='lifted'
|
|
||||||
className={{
|
|
||||||
wrapper: 'max-w-5xl mx-auto mt-4',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</section>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseDetail;
|
|
||||||
@@ -1,327 +0,0 @@
|
|||||||
import { useFormik } from 'formik';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
|
|
||||||
import Link from 'next/link';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import Card from '@/components/Card';
|
|
||||||
import DropFileInput from '@/components/input/DropFileInput';
|
|
||||||
|
|
||||||
import { Expense } from '@/types/api/expense';
|
|
||||||
import { formatCurrency, formatDate } from '@/lib/helper';
|
|
||||||
import {
|
|
||||||
UploadRequestDocumentsFormSchema,
|
|
||||||
UploadRequestDocumentsFormValues,
|
|
||||||
} from '@/components/pages/expense/form/ExpenseRequestForm.schema';
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { ACCEPTED_FILE_TYPE } from '@/config/constant';
|
|
||||||
|
|
||||||
interface ExpenseRealizationContentProps {
|
|
||||||
initialValues?: Expense;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseRealizationContent = ({
|
|
||||||
initialValues,
|
|
||||||
}: ExpenseRealizationContentProps) => {
|
|
||||||
const formik = useFormik<UploadRequestDocumentsFormValues>({
|
|
||||||
initialValues: {
|
|
||||||
documents: [],
|
|
||||||
},
|
|
||||||
validationSchema: UploadRequestDocumentsFormSchema,
|
|
||||||
onSubmit: async (values) => {
|
|
||||||
const addRealizationDocumentsRes =
|
|
||||||
await ExpenseApi.uploadRealizationDocuments(
|
|
||||||
initialValues?.id as number,
|
|
||||||
values.documents
|
|
||||||
);
|
|
||||||
|
|
||||||
if (isResponseSuccess(addRealizationDocumentsRes)) {
|
|
||||||
toast.success(addRealizationDocumentsRes.message);
|
|
||||||
window.location.reload();
|
|
||||||
} else {
|
|
||||||
toast.error(String(addRealizationDocumentsRes?.message));
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const realizationDocumentsChangeHandler = (val: File[]) => {
|
|
||||||
formik.setFieldTouched('documents', true);
|
|
||||||
formik.setFieldValue('documents', val);
|
|
||||||
};
|
|
||||||
|
|
||||||
const realizationDocumentsDeleteHandler = (deletedFileIdx: number) => {
|
|
||||||
const newRealizationDocuments = formik.values.documents;
|
|
||||||
|
|
||||||
newRealizationDocuments?.splice(deletedFileIdx, 1);
|
|
||||||
|
|
||||||
formik.setFieldValue('documents', newRealizationDocuments);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<div className='w-full max-w-5xl mx-auto flex flex-col sm:flex-row justify-end gap-2'>
|
|
||||||
<div className='w-full sm:w-fit sm:ml-2 flex flex-row gap-2 items-center'>
|
|
||||||
{/* TODO: apply RBAC */}
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='warning'
|
|
||||||
href={`/expense/realization/edit/?expenseId=${initialValues?.id}`}
|
|
||||||
className='px-4 grow sm:grow-0'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:pencil-outline' width={24} height={24} />
|
|
||||||
Edit Realisasi
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='overflow-x-auto w-full max-w-5xl mx-auto'>
|
|
||||||
<table className='table table-sm table-zebra'>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<th>Tanggal Realisasi</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
{initialValues?.realization_date
|
|
||||||
? formatDate(initialValues?.realization_date, 'DD MMMM YYYY')
|
|
||||||
: '-'}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Dokumen Realisasi</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
<div>
|
|
||||||
{!initialValues?.realization_docs ||
|
|
||||||
(initialValues?.realization_docs &&
|
|
||||||
initialValues?.realization_docs.length === 0 &&
|
|
||||||
'-')}
|
|
||||||
|
|
||||||
{initialValues?.realization_docs &&
|
|
||||||
initialValues?.realization_docs.length > 0 && (
|
|
||||||
<ul className='list-disc'>
|
|
||||||
{initialValues?.realization_docs.map(
|
|
||||||
(realizationDocument, realizationDocumentIdx) => (
|
|
||||||
<li key={realizationDocumentIdx}>
|
|
||||||
<Link
|
|
||||||
href={realizationDocument.path}
|
|
||||||
target='_blank'
|
|
||||||
rel='noopener noreferrer'
|
|
||||||
className='text-blue-500 underline'
|
|
||||||
>
|
|
||||||
{realizationDocument.path}{' '}
|
|
||||||
<Icon
|
|
||||||
icon='cuida:open-in-new-tab-outline'
|
|
||||||
width={12}
|
|
||||||
height={12}
|
|
||||||
className='inline'
|
|
||||||
/>
|
|
||||||
</Link>
|
|
||||||
</li>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</ul>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='flex flex-col gap-2'>
|
|
||||||
<DropFileInput
|
|
||||||
name='documents'
|
|
||||||
values={formik.values.documents}
|
|
||||||
onChange={realizationDocumentsChangeHandler}
|
|
||||||
onDelete={realizationDocumentsDeleteHandler}
|
|
||||||
accept={{
|
|
||||||
...ACCEPTED_FILE_TYPE.PDF,
|
|
||||||
...ACCEPTED_FILE_TYPE.IMAGE,
|
|
||||||
}}
|
|
||||||
maxFiles={10}
|
|
||||||
className={{
|
|
||||||
wrapper: 'mt-2',
|
|
||||||
inputWrapper: 'flex items-center',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{formik.values.documents &&
|
|
||||||
formik.values.documents.length > 0 && (
|
|
||||||
<Button
|
|
||||||
onClick={formik.submitForm}
|
|
||||||
disabled={formik.isSubmitting}
|
|
||||||
isLoading={formik.isSubmitting}
|
|
||||||
className='w-fit self-end'
|
|
||||||
>
|
|
||||||
<Icon icon='ic:round-plus' width={24} height={24} />
|
|
||||||
Tambah
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='w-full max-w-5xl mt-8 mx-auto'>
|
|
||||||
<div className='flex flex-row gap-4'>
|
|
||||||
<Card variant='bordered' size='sm' className={{ wrapper: 'grow' }}>
|
|
||||||
<div className='w-full flex flex-col gap-2'>
|
|
||||||
<h3 className='text-sm'>Nominal Pengajuan</h3>
|
|
||||||
|
|
||||||
<span className='text-xl'>
|
|
||||||
{formatCurrency(initialValues?.total_pengajuan as number)}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span className='text-sm'>
|
|
||||||
Terbayar{' '}
|
|
||||||
{formatCurrency(initialValues?.total_realisasi as number)}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
|
|
||||||
<Card variant='bordered' size='sm' className={{ wrapper: 'grow' }}>
|
|
||||||
<div className='w-full flex flex-col gap-2'>
|
|
||||||
<h3 className='text-sm'>Nominal Realisasi</h3>
|
|
||||||
|
|
||||||
<span className='text-xl'>
|
|
||||||
{formatCurrency(initialValues?.total_realisasi as number)}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span className='text-sm'>
|
|
||||||
Selisih{' '}
|
|
||||||
{formatCurrency(
|
|
||||||
(initialValues?.total_realisasi as number) -
|
|
||||||
(initialValues?.total_pengajuan as number)
|
|
||||||
)}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='w-full max-w-5xl mt-8 mx-auto'>
|
|
||||||
<h2 className='font-bold text-xl text-center'>
|
|
||||||
Rincian Pengajuan Biaya Operasional
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<div className='w-full mt-2 flex flex-col gap-4'>
|
|
||||||
{initialValues?.kandangs.map((kandangExpense, kandangExpenseIdx) => {
|
|
||||||
let expenseGrandTotal = 0;
|
|
||||||
|
|
||||||
kandangExpense.pengajuans?.forEach(
|
|
||||||
(item) => (expenseGrandTotal += item.total_price)
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
key={kandangExpenseIdx}
|
|
||||||
className='overflow-x-auto w-full mx-auto'
|
|
||||||
>
|
|
||||||
<table className='table table-sm table-zebra'>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th
|
|
||||||
colSpan={5}
|
|
||||||
className='font-bold text-center text-base-content text-lg'
|
|
||||||
>
|
|
||||||
Biaya {kandangExpense.name}
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Nonstock</th>
|
|
||||||
<th>Total Kuantitas</th>
|
|
||||||
<th>Total Biaya</th>
|
|
||||||
<th>Catatan</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{kandangExpense.pengajuans?.map(
|
|
||||||
(pengajuanItem, pengajuanIdx) => (
|
|
||||||
<tr key={pengajuanIdx}>
|
|
||||||
<td>{pengajuanItem.nonstock.name}</td>
|
|
||||||
<td>{pengajuanItem.qty}</td>
|
|
||||||
<td>{formatCurrency(pengajuanItem.total_price)}</td>
|
|
||||||
<td className='w-xs'>{pengajuanItem.note ?? '-'}</td>
|
|
||||||
</tr>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</tbody>
|
|
||||||
<tfoot>
|
|
||||||
<tr className='border-y'>
|
|
||||||
<th colSpan={2} className='text-right'>
|
|
||||||
Total Biaya Keseluruhan:
|
|
||||||
</th>
|
|
||||||
<th colSpan={2}>{formatCurrency(expenseGrandTotal)}</th>
|
|
||||||
</tr>
|
|
||||||
</tfoot>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='w-full max-w-5xl mt-8 mx-auto'>
|
|
||||||
<h2 className='font-bold text-xl text-center'>
|
|
||||||
Rincian Realisasi Biaya Operasional
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<div className='w-full mt-2 flex flex-col gap-4'>
|
|
||||||
{initialValues?.kandangs.map((kandangExpense, kandangExpenseIdx) => {
|
|
||||||
let expenseGrandTotal = 0;
|
|
||||||
|
|
||||||
kandangExpense.realisasi?.forEach(
|
|
||||||
(item) => (expenseGrandTotal += item.total_price)
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
key={kandangExpenseIdx}
|
|
||||||
className='overflow-x-auto w-full mx-auto'
|
|
||||||
>
|
|
||||||
<table className='table table-sm table-zebra'>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th
|
|
||||||
colSpan={5}
|
|
||||||
className='font-bold text-center text-base-content text-lg'
|
|
||||||
>
|
|
||||||
Biaya {kandangExpense.name}
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Nonstock</th>
|
|
||||||
<th>Total Kuantitas</th>
|
|
||||||
<th>Total Biaya</th>
|
|
||||||
<th>Catatan</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{kandangExpense.realisasi?.map(
|
|
||||||
(realisasiItem, realisasiIdx) => (
|
|
||||||
<tr key={realisasiIdx}>
|
|
||||||
<td>{realisasiItem.nonstock.name}</td>
|
|
||||||
<td>{realisasiItem.qty}</td>
|
|
||||||
<td>{formatCurrency(realisasiItem.total_price)}</td>
|
|
||||||
<td className='w-xs'>{realisasiItem.note ?? '-'}</td>
|
|
||||||
</tr>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</tbody>
|
|
||||||
<tfoot>
|
|
||||||
<tr className='border-y'>
|
|
||||||
<th colSpan={2} className='text-right'>
|
|
||||||
Total Biaya Keseluruhan:
|
|
||||||
</th>
|
|
||||||
<th colSpan={2}>{formatCurrency(expenseGrandTotal)}</th>
|
|
||||||
</tr>
|
|
||||||
</tfoot>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseRealizationContent;
|
|
||||||
@@ -1,655 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useEffect, useState } from 'react';
|
|
||||||
import { useRouter } from 'next/navigation';
|
|
||||||
import { useFormik } from 'formik';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Link from 'next/link';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import RealizationStatusBadge from '@/components/pages/expense/RealizationStatusBadge';
|
|
||||||
import ExpenseStatusBadge from '@/components/pages/expense/ExpenseStatusBadge';
|
|
||||||
import DropFileInput from '@/components/input/DropFileInput';
|
|
||||||
import ApprovalSteps, {
|
|
||||||
useApprovalSteps,
|
|
||||||
} from '@/components/pages/ApprovalSteps';
|
|
||||||
import { useModal } from '@/components/Modal';
|
|
||||||
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
|
||||||
import ConfirmationModalWithNotes from '@/components/modal/ConfirmationModalWithNotes';
|
|
||||||
import ExpensePDFPreviewButton from '@/components/pages/expense//pdf/ExpensePDFButton';
|
|
||||||
|
|
||||||
import { Expense } from '@/types/api/expense';
|
|
||||||
import { formatCurrency, formatDate } from '@/lib/helper';
|
|
||||||
import {
|
|
||||||
UploadRequestDocumentsFormSchema,
|
|
||||||
UploadRequestDocumentsFormValues,
|
|
||||||
} from '@/components/pages/expense/form/ExpenseRequestForm.schema';
|
|
||||||
import { ACCEPTED_FILE_TYPE } from '@/config/constant';
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { EXPENSE_REQUEST_APPROVAL_LINE } from '@/config/approval-line';
|
|
||||||
import { BaseApiResponse } from '@/types/api/api-general';
|
|
||||||
|
|
||||||
interface ExpenseRequestContentProps {
|
|
||||||
initialValues?: Expense;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseRequestContent = ({
|
|
||||||
initialValues,
|
|
||||||
}: ExpenseRequestContentProps) => {
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const { approvals: approvalHistory, isLoading: isLoadingApprovalHistory } =
|
|
||||||
useApprovalSteps({
|
|
||||||
latestApproval: initialValues?.latest_approval,
|
|
||||||
approvalLines: EXPENSE_REQUEST_APPROVAL_LINE,
|
|
||||||
moduleName: 'EXPENSES',
|
|
||||||
moduleId: initialValues?.id.toString() ?? '',
|
|
||||||
params: {
|
|
||||||
page: 1,
|
|
||||||
limit: 100,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const isLatestApprovalRejected =
|
|
||||||
initialValues?.latest_approval.action === 'REJECTED';
|
|
||||||
|
|
||||||
const isLatestApprovalRejectedOrDone =
|
|
||||||
isLatestApprovalRejected ||
|
|
||||||
initialValues?.latest_approval.step_number === 5;
|
|
||||||
|
|
||||||
const isCurrentApprovalOnManager =
|
|
||||||
!isLatestApprovalRejected &&
|
|
||||||
initialValues?.latest_approval.step_number === 1;
|
|
||||||
|
|
||||||
const isCurrentApprovalOnFinance =
|
|
||||||
!isLatestApprovalRejected &&
|
|
||||||
initialValues?.latest_approval.step_number === 2;
|
|
||||||
|
|
||||||
const isCurrentApprovalOnRealization =
|
|
||||||
!isLatestApprovalRejected &&
|
|
||||||
initialValues?.latest_approval.step_number === 4;
|
|
||||||
|
|
||||||
const showEditButton =
|
|
||||||
initialValues?.latest_approval.step_number !== 5 &&
|
|
||||||
(initialValues?.latest_approval.step_number === 1 ||
|
|
||||||
initialValues?.latest_approval.step_number === 2 ||
|
|
||||||
initialValues?.latest_approval.step_number === 3);
|
|
||||||
|
|
||||||
const showRejectButton =
|
|
||||||
!isLatestApprovalRejected &&
|
|
||||||
(initialValues?.latest_approval.step_number === 1 ||
|
|
||||||
initialValues?.latest_approval.step_number === 2);
|
|
||||||
|
|
||||||
const isExpenseCanBeRealized =
|
|
||||||
!isLatestApprovalRejected &&
|
|
||||||
initialValues?.latest_approval.step_number === 3;
|
|
||||||
|
|
||||||
// Modal hooks
|
|
||||||
const deleteModal = useModal();
|
|
||||||
const completeModal = useModal();
|
|
||||||
const approveModal = useModal();
|
|
||||||
const rejectModal = useModal();
|
|
||||||
|
|
||||||
// Modal loading state
|
|
||||||
const [isDeleteLoading, setIsDeleteLoading] = useState(false);
|
|
||||||
const [isCompleteLoading, setIsCompleteLoading] = useState(false);
|
|
||||||
const [isApproveLoading, setIsApproveLoading] = useState(false);
|
|
||||||
const [isRejectLoading, setIsRejectLoading] = useState(false);
|
|
||||||
|
|
||||||
const formik = useFormik<UploadRequestDocumentsFormValues>({
|
|
||||||
initialValues: {
|
|
||||||
documents: [],
|
|
||||||
},
|
|
||||||
validationSchema: UploadRequestDocumentsFormSchema,
|
|
||||||
onSubmit: async (values) => {
|
|
||||||
const addRequestDocumentsRes = await ExpenseApi.uploadRequestDocuments(
|
|
||||||
initialValues?.id as number,
|
|
||||||
values.documents
|
|
||||||
);
|
|
||||||
|
|
||||||
if (isResponseSuccess(addRequestDocumentsRes)) {
|
|
||||||
toast.success(addRequestDocumentsRes.message);
|
|
||||||
window.location.reload();
|
|
||||||
} else {
|
|
||||||
toast.error(String(addRequestDocumentsRes?.message));
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const deleteExpenseClickHandler = () => {
|
|
||||||
deleteModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const completeExpenseClickHandler = () => {
|
|
||||||
completeModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const approveClickHandler = () => {
|
|
||||||
approveModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const rejectClickHandler = () => {
|
|
||||||
rejectModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
// Modal confirm click handler
|
|
||||||
const confirmationModalDeleteClickHandler = async () => {
|
|
||||||
setIsDeleteLoading(true);
|
|
||||||
|
|
||||||
try {
|
|
||||||
await ExpenseApi.delete(initialValues?.id as number);
|
|
||||||
|
|
||||||
toast.success('Berhasil menghapus data biaya operasional!');
|
|
||||||
router.push('/expense');
|
|
||||||
} catch (error) {
|
|
||||||
toast.error('Gagal menghapus data biaya operasional!');
|
|
||||||
} finally {
|
|
||||||
deleteModal.closeModal();
|
|
||||||
setIsDeleteLoading(false);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalCompleteClickHandler = async () => {
|
|
||||||
setIsCompleteLoading(true);
|
|
||||||
|
|
||||||
const completeRes = await ExpenseApi.complete(initialValues?.id as number);
|
|
||||||
|
|
||||||
if (isResponseSuccess(completeRes)) {
|
|
||||||
toast.success(completeRes.message);
|
|
||||||
router.push('/expense');
|
|
||||||
} else {
|
|
||||||
toast.error(completeRes?.message as string);
|
|
||||||
}
|
|
||||||
|
|
||||||
completeModal.closeModal();
|
|
||||||
setIsCompleteLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalApproveClickHandler = async (notes: string) => {
|
|
||||||
setIsApproveLoading(true);
|
|
||||||
|
|
||||||
let approveResponse: BaseApiResponse<Expense> | undefined = undefined;
|
|
||||||
|
|
||||||
if (isCurrentApprovalOnManager) {
|
|
||||||
approveResponse = await ExpenseApi.approveManager(
|
|
||||||
initialValues.id,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isCurrentApprovalOnFinance) {
|
|
||||||
approveResponse = await ExpenseApi.approveFinance(
|
|
||||||
initialValues.id,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isResponseSuccess(approveResponse)) {
|
|
||||||
approveModal.closeModal();
|
|
||||||
|
|
||||||
toast.success(approveResponse?.message);
|
|
||||||
router.push('/expense');
|
|
||||||
} else {
|
|
||||||
approveModal.closeModal();
|
|
||||||
|
|
||||||
toast.error(approveResponse?.message as string);
|
|
||||||
}
|
|
||||||
|
|
||||||
setIsApproveLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalRejectClickHandler = async (notes: string) => {
|
|
||||||
setIsRejectLoading(true);
|
|
||||||
|
|
||||||
let rejectResponse: BaseApiResponse<Expense> | undefined = undefined;
|
|
||||||
|
|
||||||
if (isCurrentApprovalOnManager) {
|
|
||||||
rejectResponse = await ExpenseApi.rejectManager(initialValues.id, notes);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isCurrentApprovalOnFinance) {
|
|
||||||
rejectResponse = await ExpenseApi.rejectFinance(initialValues.id, notes);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isResponseSuccess(rejectResponse)) {
|
|
||||||
rejectModal.closeModal();
|
|
||||||
|
|
||||||
toast.success(rejectResponse.message);
|
|
||||||
router.push('/expense');
|
|
||||||
} else {
|
|
||||||
rejectModal.closeModal();
|
|
||||||
|
|
||||||
toast.error(rejectResponse?.message as string);
|
|
||||||
}
|
|
||||||
|
|
||||||
setIsRejectLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const requestDocumentsChangeHandler = (val: File[]) => {
|
|
||||||
formik.setFieldTouched('documents', true);
|
|
||||||
formik.setFieldValue('documents', val);
|
|
||||||
};
|
|
||||||
|
|
||||||
const requestDocumentsDeleteHandler = (deletedFileIdx: number) => {
|
|
||||||
const newRequestDocuments = formik.values.documents;
|
|
||||||
|
|
||||||
newRequestDocuments?.splice(deletedFileIdx, 1);
|
|
||||||
|
|
||||||
formik.setFieldValue('documents', newRequestDocuments);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div>
|
|
||||||
{initialValues && !isLoadingApprovalHistory && approvalHistory && (
|
|
||||||
<div className='w-full max-w-5xl my-4 mx-auto'>
|
|
||||||
<ApprovalSteps approvals={approvalHistory} />
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div className='w-full mt-4 flex flex-col gap-4'>
|
|
||||||
{/* TODO: apply RBAC */}
|
|
||||||
|
|
||||||
<div className='w-full max-w-5xl mx-auto flex flex-col sm:flex-row justify-end gap-2'>
|
|
||||||
{isCurrentApprovalOnManager && (
|
|
||||||
<Button
|
|
||||||
variant='outline'
|
|
||||||
color='info'
|
|
||||||
onClick={approveClickHandler}
|
|
||||||
className='w-full sm:w-fit'
|
|
||||||
>
|
|
||||||
<Icon icon='lucide-lab:farm' width={24} height={24} />
|
|
||||||
Approve Manager
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{isCurrentApprovalOnFinance && (
|
|
||||||
<Button
|
|
||||||
variant='outline'
|
|
||||||
color='success'
|
|
||||||
onClick={approveClickHandler}
|
|
||||||
className='w-full sm:w-fit'
|
|
||||||
>
|
|
||||||
<Icon icon='tdesign:money' width={24} height={24} />
|
|
||||||
Approve Finance
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{isCurrentApprovalOnRealization && (
|
|
||||||
<Button
|
|
||||||
variant='outline'
|
|
||||||
color='success'
|
|
||||||
onClick={completeExpenseClickHandler}
|
|
||||||
className='w-full sm:w-fit'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:done-all-rounded'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
/>
|
|
||||||
Selesai
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{showRejectButton && (
|
|
||||||
<Button
|
|
||||||
variant='outline'
|
|
||||||
color='error'
|
|
||||||
onClick={rejectClickHandler}
|
|
||||||
className='w-full:w-fit'
|
|
||||||
>
|
|
||||||
<Icon icon='material-symbols:close' width={24} height={24} />
|
|
||||||
Reject
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{isExpenseCanBeRealized && (
|
|
||||||
<Button
|
|
||||||
variant='outline'
|
|
||||||
color='info'
|
|
||||||
href={`/expense/realization/?expenseId=${initialValues?.id}`}
|
|
||||||
className='w-full sm:w-fit'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:money-bag-rounded'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
/>
|
|
||||||
Realisasi
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div className='w-full sm:w-fit sm:ml-2 flex flex-row gap-2 items-center'>
|
|
||||||
{showEditButton && (
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='warning'
|
|
||||||
href={`/expense/detail/edit/?expenseId=${initialValues?.id}`}
|
|
||||||
className='px-4 grow sm:grow-0'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:pencil-outline' width={24} height={24} />
|
|
||||||
Edit
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='error'
|
|
||||||
onClick={deleteExpenseClickHandler}
|
|
||||||
className='px-4 grow sm:grow-0'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:delete-outline-rounded'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
/>
|
|
||||||
Delete
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='overflow-x-auto w-full max-w-5xl mx-auto'>
|
|
||||||
<table className='table table-sm table-zebra'>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<th>Nomor PO</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
{!initialValues?.po_number && '-'}
|
|
||||||
{initialValues?.po_number && (
|
|
||||||
<ExpensePDFPreviewButton expense={initialValues} />
|
|
||||||
)}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Nomor Referensi</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>{initialValues?.reference_number}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Kategori</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
{initialValues?.category === 'BOP'
|
|
||||||
? 'Biaya Operasional'
|
|
||||||
: 'Non Biaya Operasional'}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Lokasi</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>{initialValues?.location.name}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Kandang</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
{initialValues?.kandangs
|
|
||||||
.map((item) => item.name)
|
|
||||||
.join(', ')}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Vendor</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>{initialValues?.supplier.name}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Tanggal Transaksi</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
{formatDate(initialValues?.expense_date, 'DD MMMM YYYY')}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Tanggal Realisasi</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
{initialValues?.realization_date
|
|
||||||
? formatDate(
|
|
||||||
initialValues?.realization_date,
|
|
||||||
'DD MMMM YYYY'
|
|
||||||
)
|
|
||||||
: '-'}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Nama Pengaju</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>{initialValues?.created_user.name}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Nominal Biaya</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>{formatCurrency(initialValues?.grand_total ?? 0)}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Status Pencairan</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
<RealizationStatusBadge
|
|
||||||
approval={initialValues?.latest_approval}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Status Biaya</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
<ExpenseStatusBadge
|
|
||||||
approval={initialValues?.latest_approval}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Dokumen Pengajuan</th>
|
|
||||||
<th>:</th>
|
|
||||||
<td>
|
|
||||||
<div>
|
|
||||||
{!initialValues?.documents ||
|
|
||||||
(initialValues?.documents &&
|
|
||||||
initialValues?.documents.length === 0 &&
|
|
||||||
'-')}
|
|
||||||
|
|
||||||
{initialValues?.documents &&
|
|
||||||
initialValues?.documents.length > 0 && (
|
|
||||||
<ul className='list-disc'>
|
|
||||||
{initialValues?.documents.map(
|
|
||||||
(requestDocument, requestDocumentIdx) => (
|
|
||||||
<li key={requestDocumentIdx}>
|
|
||||||
<Link
|
|
||||||
href={requestDocument.path}
|
|
||||||
target='_blank'
|
|
||||||
rel='noopener noreferrer'
|
|
||||||
className='text-blue-500 underline'
|
|
||||||
>
|
|
||||||
{requestDocument.path}{' '}
|
|
||||||
<Icon
|
|
||||||
icon='cuida:open-in-new-tab-outline'
|
|
||||||
width={12}
|
|
||||||
height={12}
|
|
||||||
className='inline'
|
|
||||||
/>
|
|
||||||
</Link>
|
|
||||||
</li>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</ul>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='flex flex-col gap-2'>
|
|
||||||
<DropFileInput
|
|
||||||
name='documents'
|
|
||||||
values={formik.values.documents}
|
|
||||||
onChange={requestDocumentsChangeHandler}
|
|
||||||
onDelete={requestDocumentsDeleteHandler}
|
|
||||||
accept={{
|
|
||||||
...ACCEPTED_FILE_TYPE.PDF,
|
|
||||||
...ACCEPTED_FILE_TYPE.IMAGE,
|
|
||||||
}}
|
|
||||||
maxFiles={10}
|
|
||||||
className={{
|
|
||||||
wrapper: 'mt-2',
|
|
||||||
inputWrapper: 'flex items-center',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{formik.values.documents &&
|
|
||||||
formik.values.documents.length > 0 && (
|
|
||||||
<Button
|
|
||||||
onClick={formik.submitForm}
|
|
||||||
disabled={formik.isSubmitting}
|
|
||||||
isLoading={formik.isSubmitting}
|
|
||||||
className='w-fit self-end'
|
|
||||||
>
|
|
||||||
<Icon icon='ic:round-plus' width={24} height={24} />
|
|
||||||
Tambah
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className='w-full max-w-5xl mt-8 mx-auto'>
|
|
||||||
<h2 className='font-bold text-xl text-center'>
|
|
||||||
Rincian Pengajuan Biaya Operasional
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<div className='w-full mt-2 flex flex-col gap-4'>
|
|
||||||
{initialValues?.kandangs.map(
|
|
||||||
(kandangExpense, kandangExpenseIdx) => {
|
|
||||||
let expenseGrandTotal = 0;
|
|
||||||
|
|
||||||
kandangExpense.pengajuans?.forEach(
|
|
||||||
(item) => (expenseGrandTotal += item.total_price)
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
key={kandangExpenseIdx}
|
|
||||||
className='overflow-x-auto w-full mx-auto'
|
|
||||||
>
|
|
||||||
<table className='table table-sm table-zebra'>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th
|
|
||||||
colSpan={5}
|
|
||||||
className='font-bold text-center text-base-content text-lg'
|
|
||||||
>
|
|
||||||
Biaya {kandangExpense.name}
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Nonstock</th>
|
|
||||||
<th>Total Kuantitas</th>
|
|
||||||
<th>Total Biaya</th>
|
|
||||||
<th>Catatan</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{kandangExpense.pengajuans?.map(
|
|
||||||
(pengajuanItem, pengajuanIdx) => (
|
|
||||||
<tr key={pengajuanIdx}>
|
|
||||||
<td>{pengajuanItem.nonstock.name}</td>
|
|
||||||
<td>{pengajuanItem.qty}</td>
|
|
||||||
<td>
|
|
||||||
{formatCurrency(pengajuanItem.total_price)}
|
|
||||||
</td>
|
|
||||||
<td className='w-xs'>
|
|
||||||
{pengajuanItem.note ?? '-'}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</tbody>
|
|
||||||
<tfoot>
|
|
||||||
<tr className='border-y'>
|
|
||||||
<th colSpan={2} className='text-right'>
|
|
||||||
Total Biaya Keseluruhan:
|
|
||||||
</th>
|
|
||||||
<th colSpan={2}>
|
|
||||||
{formatCurrency(expenseGrandTotal)}
|
|
||||||
</th>
|
|
||||||
</tr>
|
|
||||||
</tfoot>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={deleteModal.ref}
|
|
||||||
type='error'
|
|
||||||
text='Apakah anda yakin ingin menghapus data biaya operasional ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
isLoading: isDeleteLoading,
|
|
||||||
onClick: confirmationModalDeleteClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={completeModal.ref}
|
|
||||||
type='success'
|
|
||||||
text='Apakah anda yakin ingin menyelesaikan biaya operasional ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'success',
|
|
||||||
isLoading: isCompleteLoading,
|
|
||||||
onClick: confirmationModalCompleteClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ConfirmationModalWithNotes
|
|
||||||
ref={approveModal.ref}
|
|
||||||
type='success'
|
|
||||||
text='Apakah anda yakin ingin approve data biaya operasional ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'success',
|
|
||||||
isLoading: isApproveLoading,
|
|
||||||
onClick: confirmationModalApproveClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ConfirmationModalWithNotes
|
|
||||||
ref={rejectModal.ref}
|
|
||||||
type='error'
|
|
||||||
text='Apakah anda yakin ingin reject data biaya operasional ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
isLoading: isRejectLoading,
|
|
||||||
onClick: confirmationModalRejectClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseRequestContent;
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
import PillBadge from '@/components/PillBadge';
|
|
||||||
|
|
||||||
import { BaseApproval } from '@/types/api/api-general';
|
|
||||||
|
|
||||||
interface ExpenseStatusBadgeProps {
|
|
||||||
approval?: BaseApproval;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseStatusBadge = ({ approval }: ExpenseStatusBadgeProps) => {
|
|
||||||
const isLatestApprovalRejected = approval?.action === 'REJECTED';
|
|
||||||
|
|
||||||
const latestApprovalStepNumber = approval?.step_number;
|
|
||||||
|
|
||||||
let expenseStatusPillBadgeColor:
|
|
||||||
| 'yellow'
|
|
||||||
| 'green'
|
|
||||||
| 'gray'
|
|
||||||
| 'red'
|
|
||||||
| 'purple'
|
|
||||||
| 'blue' = 'gray';
|
|
||||||
|
|
||||||
switch (latestApprovalStepNumber) {
|
|
||||||
case 1:
|
|
||||||
expenseStatusPillBadgeColor = 'yellow';
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 2:
|
|
||||||
expenseStatusPillBadgeColor = 'purple';
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 3:
|
|
||||||
expenseStatusPillBadgeColor = 'blue';
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 4:
|
|
||||||
expenseStatusPillBadgeColor = 'red';
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 5:
|
|
||||||
expenseStatusPillBadgeColor = 'green';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isLatestApprovalRejected) {
|
|
||||||
expenseStatusPillBadgeColor = 'red';
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<PillBadge
|
|
||||||
content={isLatestApprovalRejected ? 'Ditolak' : approval?.step_name}
|
|
||||||
color={expenseStatusPillBadgeColor}
|
|
||||||
className='text-xs'
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseStatusBadge;
|
|
||||||
@@ -1,773 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { ChangeEventHandler, useEffect, useMemo, useState } from 'react';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
import {
|
|
||||||
CellContext,
|
|
||||||
ColumnDef,
|
|
||||||
Row,
|
|
||||||
SortingState,
|
|
||||||
} from '@tanstack/react-table';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Table from '@/components/Table';
|
|
||||||
import DebouncedTextInput from '@/components/input/DebouncedTextInput';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import { useModal } from '@/components/Modal';
|
|
||||||
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
|
||||||
import SelectInput, {
|
|
||||||
OptionType,
|
|
||||||
useSelect,
|
|
||||||
} from '@/components/input/SelectInput';
|
|
||||||
import RowDropdownOptions from '@/components/table/RowDropdownOptions';
|
|
||||||
import RowCollapseOptions from '@/components/table/RowCollapseOptions';
|
|
||||||
import RowOptionsMenuWrapper from '@/components/table/RowOptionsMenuWrapper';
|
|
||||||
import RealizationStatusBadge from '@/components/pages/expense/RealizationStatusBadge';
|
|
||||||
import ExpenseStatusBadge from '@/components/pages/expense/ExpenseStatusBadge';
|
|
||||||
import CheckboxInput from '@/components/input/CheckboxInput';
|
|
||||||
import ConfirmationModalWithNotes from '@/components/modal/ConfirmationModalWithNotes';
|
|
||||||
import DateInput from '@/components/input/DateInput';
|
|
||||||
|
|
||||||
import { Expense } from '@/types/api/expense';
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { cn, formatCurrency, formatDate } from '@/lib/helper';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { useTableFilter } from '@/services/hooks/useTableFilter';
|
|
||||||
import { ROWS_OPTIONS } from '@/config/constant';
|
|
||||||
import { LocationApi, SupplierApi } from '@/services/api/master-data';
|
|
||||||
import { Location } from '@/types/api/master-data/location';
|
|
||||||
import { Supplier } from '@/types/api/master-data/supplier';
|
|
||||||
import { BaseApiResponse } from '@/types/api/api-general';
|
|
||||||
|
|
||||||
const RowOptionsMenu = ({
|
|
||||||
type = 'dropdown',
|
|
||||||
props,
|
|
||||||
approveClickHandler,
|
|
||||||
rejectClickHandler,
|
|
||||||
deleteClickHandler,
|
|
||||||
}: {
|
|
||||||
type: 'dropdown' | 'collapse';
|
|
||||||
props: CellContext<Expense, unknown>;
|
|
||||||
approveClickHandler: () => void;
|
|
||||||
rejectClickHandler: () => void;
|
|
||||||
deleteClickHandler: () => void;
|
|
||||||
}) => {
|
|
||||||
const showEditButton =
|
|
||||||
props.row.original.latest_approval.step_number !== 5 &&
|
|
||||||
(props.row.original.latest_approval.step_number === 1 ||
|
|
||||||
props.row.original.latest_approval.step_number === 2 ||
|
|
||||||
props.row.original.latest_approval.step_number === 3);
|
|
||||||
|
|
||||||
// TODO: apply RBAC
|
|
||||||
const showRealizationButton =
|
|
||||||
props.row.original.latest_approval.action !== 'REJECTED' &&
|
|
||||||
props.row.original.latest_approval.step_number === 3;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<RowOptionsMenuWrapper type={type}>
|
|
||||||
<div className='w-full max-h-40 overflow-auto flex flex-col gap-1'>
|
|
||||||
<Button
|
|
||||||
href={`/expense/detail/?expenseId=${props.row.original.id}`}
|
|
||||||
variant='ghost'
|
|
||||||
color='primary'
|
|
||||||
className='justify-start text-sm'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:eye-outline' width={16} height={16} />
|
|
||||||
Detail
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
{showEditButton && (
|
|
||||||
<Button
|
|
||||||
href={`/expense/detail/edit/?expenseId=${props.row.original.id}`}
|
|
||||||
variant='ghost'
|
|
||||||
color='warning'
|
|
||||||
className='justify-start text-sm'
|
|
||||||
>
|
|
||||||
<Icon icon='material-symbols:edit-outline' width={16} height={16} />
|
|
||||||
Edit
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{showRealizationButton && (
|
|
||||||
<Button
|
|
||||||
href={`/expense/realization/?expenseId=${props.row.original.id}`}
|
|
||||||
variant='ghost'
|
|
||||||
color='info'
|
|
||||||
className='justify-start text-sm text-info focus-visible:text-info-content hover:text-info-content'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:money-bag-rounded'
|
|
||||||
width={16}
|
|
||||||
height={16}
|
|
||||||
/>
|
|
||||||
Realisasi
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<Button
|
|
||||||
onClick={deleteClickHandler}
|
|
||||||
variant='ghost'
|
|
||||||
color='error'
|
|
||||||
className='justify-start text-sm text-error focus-visible:text-error-content hover:text-error-content'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:delete-outline-rounded'
|
|
||||||
width={16}
|
|
||||||
height={16}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
/>
|
|
||||||
Delete
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</RowOptionsMenuWrapper>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const ExpensesTable = () => {
|
|
||||||
const {
|
|
||||||
state: tableFilterState,
|
|
||||||
updateFilter,
|
|
||||||
setPage,
|
|
||||||
setPageSize,
|
|
||||||
toQueryString: getTableFilterQueryString,
|
|
||||||
} = useTableFilter({
|
|
||||||
initial: {
|
|
||||||
search: '',
|
|
||||||
nameSort: '',
|
|
||||||
transactionDate: '',
|
|
||||||
realizationDate: '',
|
|
||||||
locationId: '',
|
|
||||||
vendorId: '',
|
|
||||||
userId: '',
|
|
||||||
},
|
|
||||||
paramMap: {
|
|
||||||
page: 'page',
|
|
||||||
pageSize: 'limit',
|
|
||||||
nameSort: 'sort_name',
|
|
||||||
transactionDate: 'transaction_date',
|
|
||||||
realizationDate: 'realization_date',
|
|
||||||
locationId: 'location_id',
|
|
||||||
vendorId: 'vendor_id',
|
|
||||||
userId: 'user_id',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: expenses,
|
|
||||||
isLoading,
|
|
||||||
mutate: refreshExpenses,
|
|
||||||
} = useSWR(
|
|
||||||
`${ExpenseApi.basePath}${getTableFilterQueryString()}`,
|
|
||||||
ExpenseApi.getAllFetcher
|
|
||||||
);
|
|
||||||
|
|
||||||
const deleteModal = useModal();
|
|
||||||
const approveModal = useModal();
|
|
||||||
const rejectModal = useModal();
|
|
||||||
|
|
||||||
const [selectedExpense, setSelectedExpense] = useState<Expense | undefined>(
|
|
||||||
undefined
|
|
||||||
);
|
|
||||||
const [isDeleteLoading, setIsDeleteLoading] = useState(false);
|
|
||||||
const [isCompleteLoading, setIsCompleteLoading] = useState(false);
|
|
||||||
const [isApproveLoading, setIsApproveLoading] = useState(false);
|
|
||||||
const [isRejectLoading, setIsRejectLoading] = useState(false);
|
|
||||||
|
|
||||||
const [sorting, setSorting] = useState<SortingState>([]);
|
|
||||||
const [rowSelection, setRowSelection] = useState<Record<string, boolean>>({});
|
|
||||||
const selectedRowIds = Object.keys(rowSelection).map((item) =>
|
|
||||||
parseInt(item)
|
|
||||||
);
|
|
||||||
|
|
||||||
const isAllSelectedRowLatestApprovalOnManager = useMemo(() => {
|
|
||||||
return selectedRowIds.every((rowId) => {
|
|
||||||
if (!isResponseSuccess(expenses)) return false;
|
|
||||||
|
|
||||||
const expenseItem = expenses.data.find((item) => item.id === rowId);
|
|
||||||
|
|
||||||
const isLatestApprovalRejected =
|
|
||||||
expenseItem?.latest_approval.action === 'REJECTED';
|
|
||||||
|
|
||||||
const isCurrentApprovalOnManager =
|
|
||||||
!isLatestApprovalRejected &&
|
|
||||||
expenseItem?.latest_approval.step_number === 1;
|
|
||||||
|
|
||||||
return isCurrentApprovalOnManager;
|
|
||||||
});
|
|
||||||
}, [expenses, selectedRowIds]);
|
|
||||||
|
|
||||||
const isAllSelectedRowLatestApprovalOnFinance = useMemo(() => {
|
|
||||||
return selectedRowIds.every((rowId) => {
|
|
||||||
if (!isResponseSuccess(expenses)) return false;
|
|
||||||
|
|
||||||
const expenseItem = expenses.data.find((item) => item.id === rowId);
|
|
||||||
|
|
||||||
const isLatestApprovalRejected =
|
|
||||||
expenseItem?.latest_approval.action === 'REJECTED';
|
|
||||||
|
|
||||||
const isCurrentApprovalOnFinance =
|
|
||||||
!isLatestApprovalRejected &&
|
|
||||||
expenseItem?.latest_approval.step_number === 2;
|
|
||||||
|
|
||||||
return isCurrentApprovalOnFinance;
|
|
||||||
});
|
|
||||||
}, [expenses, selectedRowIds]);
|
|
||||||
|
|
||||||
const isAllSelectedRowLatestApprovalOnRealization = useMemo(() => {
|
|
||||||
return selectedRowIds.every((rowId) => {
|
|
||||||
if (!isResponseSuccess(expenses)) return false;
|
|
||||||
|
|
||||||
const expenseItem = expenses.data.find((item) => item.id === rowId);
|
|
||||||
|
|
||||||
const isLatestApprovalRejected =
|
|
||||||
expenseItem?.latest_approval.action === 'REJECTED';
|
|
||||||
|
|
||||||
const isCurrentApprovalOnRealization =
|
|
||||||
!isLatestApprovalRejected &&
|
|
||||||
expenseItem?.latest_approval.step_number === 4;
|
|
||||||
|
|
||||||
return isCurrentApprovalOnRealization;
|
|
||||||
});
|
|
||||||
}, [expenses, selectedRowIds]);
|
|
||||||
|
|
||||||
const expensesColumns: ColumnDef<Expense>[] = [
|
|
||||||
{
|
|
||||||
id: 'select',
|
|
||||||
header: ({ table }) => (
|
|
||||||
<div className='w-full flex flex-row justify-center'>
|
|
||||||
<CheckboxInput
|
|
||||||
name='allRow'
|
|
||||||
checked={table.getIsAllRowsSelected()}
|
|
||||||
indeterminate={table.getIsSomeRowsSelected()}
|
|
||||||
onChange={table.getToggleAllRowsSelectedHandler()}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
cell: ({ row }) => {
|
|
||||||
const isCheckboxDisabled =
|
|
||||||
!row.getCanSelect() ||
|
|
||||||
row.original.latest_approval.action === 'REJECTED';
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<CheckboxInput
|
|
||||||
name='row'
|
|
||||||
checked={row.getIsSelected()}
|
|
||||||
disabled={isCheckboxDisabled}
|
|
||||||
indeterminate={row.getIsSomeSelected()}
|
|
||||||
onChange={row.getToggleSelectedHandler()}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'expense_date',
|
|
||||||
header: 'Tanggal Pengajuan',
|
|
||||||
cell: (props) =>
|
|
||||||
props.row.original.expense_date
|
|
||||||
? formatDate(props.row.original.expense_date, 'DD MMM YYYY')
|
|
||||||
: '-',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'realization_date',
|
|
||||||
header: 'Tanggal Realisasi',
|
|
||||||
cell: (props) =>
|
|
||||||
props.row.original.realization_date
|
|
||||||
? formatDate(props.row.original.realization_date, 'DD MMM YYYY')
|
|
||||||
: '-',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'location',
|
|
||||||
header: 'Lokasi',
|
|
||||||
cell: (props) => props.row.original.location?.name ?? '-',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorFn: (row) => row.created_user.name ?? '-',
|
|
||||||
header: 'Nama Pengaju',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorFn: (row) => row.supplier.name ?? '-',
|
|
||||||
header: 'Vendor',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'grand_total',
|
|
||||||
header: 'Nominal',
|
|
||||||
cell: (props) =>
|
|
||||||
props.row.original.grand_total
|
|
||||||
? formatCurrency(props.row.original.grand_total)
|
|
||||||
: '-',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Status Pencairan',
|
|
||||||
cell: (props) => (
|
|
||||||
<RealizationStatusBadge approval={props.row.original.latest_approval} />
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Status BOP',
|
|
||||||
cell: (props) => (
|
|
||||||
<ExpenseStatusBadge approval={props.row.original.latest_approval} />
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Aksi',
|
|
||||||
cell: (props) => {
|
|
||||||
const currentPageSize = props.table.getPaginationRowModel().rows.length;
|
|
||||||
const currentPageRows = props.table.getPaginationRowModel().flatRows;
|
|
||||||
const currentRowRelativeIndex =
|
|
||||||
currentPageRows.findIndex((r) => r.id === props.row.id) + 1;
|
|
||||||
|
|
||||||
const isLast2Rows = currentRowRelativeIndex > currentPageSize - 3;
|
|
||||||
|
|
||||||
const approveClickHandler = () => {
|
|
||||||
setSelectedExpense(props.row.original);
|
|
||||||
|
|
||||||
// Set row selection
|
|
||||||
setRowSelection({
|
|
||||||
[String(props.row.original.id)]: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
approveModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const rejectClickHandler = () => {
|
|
||||||
setSelectedExpense(props.row.original);
|
|
||||||
|
|
||||||
// Set row selection
|
|
||||||
setRowSelection({
|
|
||||||
[String(props.row.original.id)]: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
rejectModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const deleteClickHandler = () => {
|
|
||||||
setSelectedExpense(props.row.original);
|
|
||||||
deleteModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{currentPageSize > 3 && (
|
|
||||||
<RowDropdownOptions isLast2Rows={isLast2Rows}>
|
|
||||||
<RowOptionsMenu
|
|
||||||
type='dropdown'
|
|
||||||
props={props}
|
|
||||||
approveClickHandler={approveClickHandler}
|
|
||||||
rejectClickHandler={rejectClickHandler}
|
|
||||||
deleteClickHandler={deleteClickHandler}
|
|
||||||
/>
|
|
||||||
</RowDropdownOptions>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{currentPageSize <= 3 && (
|
|
||||||
<RowCollapseOptions>
|
|
||||||
<RowOptionsMenu
|
|
||||||
type='collapse'
|
|
||||||
props={props}
|
|
||||||
approveClickHandler={approveClickHandler}
|
|
||||||
rejectClickHandler={rejectClickHandler}
|
|
||||||
deleteClickHandler={deleteClickHandler}
|
|
||||||
/>
|
|
||||||
</RowCollapseOptions>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tableEnableRowSelectionHandler: (row: Row<Expense>) => boolean = (
|
|
||||||
row
|
|
||||||
) => {
|
|
||||||
return (
|
|
||||||
row.original.latest_approval.action !== 'REJECTED' &&
|
|
||||||
row.original.latest_approval.step_number !== 5
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
// const bulkApproveClickHandler = () => {
|
|
||||||
// approveModal.openModal();
|
|
||||||
// };
|
|
||||||
|
|
||||||
// const bulkRejectClickHandler = () => {
|
|
||||||
// rejectModal.openModal();
|
|
||||||
// };
|
|
||||||
|
|
||||||
const bulkApproveClickHandler = () => {
|
|
||||||
approveModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const bulkRejectClickHandler = () => {
|
|
||||||
rejectModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalDeleteClickHandler = async () => {
|
|
||||||
setIsDeleteLoading(true);
|
|
||||||
|
|
||||||
await ExpenseApi.delete(selectedExpense?.id as number);
|
|
||||||
refreshExpenses();
|
|
||||||
|
|
||||||
deleteModal.closeModal();
|
|
||||||
toast.success('Berhasil menghapus biaya operasional!');
|
|
||||||
setIsDeleteLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalApproveClickHandler = async (notes: string) => {
|
|
||||||
setIsApproveLoading(true);
|
|
||||||
|
|
||||||
let bulkApproveResponse: BaseApiResponse<Expense> | undefined = undefined;
|
|
||||||
|
|
||||||
if (isAllSelectedRowLatestApprovalOnManager) {
|
|
||||||
bulkApproveResponse = await ExpenseApi.bulkApproveManager(
|
|
||||||
selectedRowIds,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
} else if (isAllSelectedRowLatestApprovalOnFinance) {
|
|
||||||
bulkApproveResponse = await ExpenseApi.bulkApproveFinance(
|
|
||||||
selectedRowIds,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isResponseSuccess(bulkApproveResponse)) {
|
|
||||||
refreshExpenses();
|
|
||||||
approveModal.closeModal();
|
|
||||||
|
|
||||||
toast.success(
|
|
||||||
`Berhasil approve ${selectedRowIds.length} data biaya operasional!`
|
|
||||||
);
|
|
||||||
|
|
||||||
setRowSelection({});
|
|
||||||
} else {
|
|
||||||
approveModal.closeModal();
|
|
||||||
|
|
||||||
toast.error(
|
|
||||||
`Gagal approve ${selectedRowIds.length} data biaya operasional!`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
setIsApproveLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalRejectClickHandler = async (notes: string) => {
|
|
||||||
setIsRejectLoading(true);
|
|
||||||
|
|
||||||
let bulkRejectResponse: BaseApiResponse<Expense> | undefined = undefined;
|
|
||||||
|
|
||||||
if (isAllSelectedRowLatestApprovalOnManager) {
|
|
||||||
bulkRejectResponse = await ExpenseApi.bulkRejectManager(
|
|
||||||
selectedRowIds,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
} else if (isAllSelectedRowLatestApprovalOnFinance) {
|
|
||||||
bulkRejectResponse = await ExpenseApi.bulkRejectFinance(
|
|
||||||
selectedRowIds,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isResponseSuccess(bulkRejectResponse)) {
|
|
||||||
refreshExpenses();
|
|
||||||
rejectModal.closeModal();
|
|
||||||
|
|
||||||
toast.success(
|
|
||||||
`Berhasil reject ${selectedRowIds.length} data biaya operasional!`
|
|
||||||
);
|
|
||||||
setRowSelection({});
|
|
||||||
} else {
|
|
||||||
rejectModal.closeModal();
|
|
||||||
|
|
||||||
toast.error(
|
|
||||||
`Gagal reject ${selectedRowIds.length} data biaya operasional!`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
setIsRejectLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const {
|
|
||||||
setInputValue: setLocationInputValue,
|
|
||||||
options: locationOptions,
|
|
||||||
isLoadingOptions: isLoadingLocationOptions,
|
|
||||||
} = useSelect<Location>(LocationApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
const [selectedLocation, setSelectedLocation] = useState<OptionType | null>(
|
|
||||||
null
|
|
||||||
);
|
|
||||||
|
|
||||||
const locationChangeHandler = (val: OptionType | OptionType[] | null) => {
|
|
||||||
setSelectedLocation(val as OptionType);
|
|
||||||
updateFilter(
|
|
||||||
'locationId',
|
|
||||||
val ? ((val as OptionType).value as string) : ''
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const {
|
|
||||||
setInputValue: setVendorInputValue,
|
|
||||||
options: vendorOptions,
|
|
||||||
isLoadingOptions: isLoadingVendorOptions,
|
|
||||||
} = useSelect<Supplier>(SupplierApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
const [selectedVendor, setSelectedVendor] = useState<OptionType | null>(null);
|
|
||||||
|
|
||||||
const vendorChangeHandler = (val: OptionType | OptionType[] | null) => {
|
|
||||||
setSelectedVendor(val as OptionType);
|
|
||||||
updateFilter('vendorId', val ? ((val as OptionType).value as string) : '');
|
|
||||||
};
|
|
||||||
|
|
||||||
const searchChangeHandler: ChangeEventHandler<HTMLInputElement> = (e) => {
|
|
||||||
updateFilter('search', e.target.value);
|
|
||||||
};
|
|
||||||
|
|
||||||
const transactionDateChangeHandler: ChangeEventHandler<HTMLInputElement> = (
|
|
||||||
e
|
|
||||||
) => {
|
|
||||||
updateFilter('transactionDate', e.target.value);
|
|
||||||
};
|
|
||||||
|
|
||||||
const realizationDateChangeHandler: ChangeEventHandler<HTMLInputElement> = (
|
|
||||||
e
|
|
||||||
) => {
|
|
||||||
updateFilter('realizationDate', e.target.value);
|
|
||||||
};
|
|
||||||
|
|
||||||
const pageSizeChangeHandler = (val: OptionType | OptionType[] | null) => {
|
|
||||||
const newVal = val as OptionType;
|
|
||||||
|
|
||||||
setPageSize(newVal.value as number);
|
|
||||||
};
|
|
||||||
|
|
||||||
// track sorting
|
|
||||||
useEffect(() => {
|
|
||||||
const isNameSorted = sorting.find((sortItem) => sortItem.id === 'name');
|
|
||||||
|
|
||||||
if (!isNameSorted) {
|
|
||||||
updateFilter('nameSort', '');
|
|
||||||
} else {
|
|
||||||
updateFilter('nameSort', isNameSorted.desc ? 'desc' : 'asc');
|
|
||||||
}
|
|
||||||
}, [sorting, updateFilter]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div className='w-full p-0 sm:p-4'>
|
|
||||||
<div className='flex flex-col gap-2 mb-4'>
|
|
||||||
<div className='flex flex-col gap-2 mb-4'>
|
|
||||||
<div className='w-full flex flex-col sm:flex-row justify-between items-end sm:items-center gap-4'>
|
|
||||||
<div className='w-full sm:w-fit flex flex-col sm:flex-row self-start gap-2'>
|
|
||||||
<Button
|
|
||||||
href='/expense/add'
|
|
||||||
variant='outline'
|
|
||||||
color='primary'
|
|
||||||
className='w-full sm:w-fit'
|
|
||||||
>
|
|
||||||
<Icon icon='ic:round-plus' width={24} height={24} />
|
|
||||||
Tambah
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
{selectedRowIds.length > 0 && (
|
|
||||||
<>
|
|
||||||
<Button
|
|
||||||
variant='outline'
|
|
||||||
color='info'
|
|
||||||
onClick={bulkApproveClickHandler}
|
|
||||||
disabled={!isAllSelectedRowLatestApprovalOnManager}
|
|
||||||
className='w-full sm:w-fit'
|
|
||||||
>
|
|
||||||
<Icon icon='lucide-lab:farm' width={24} height={24} />
|
|
||||||
Approve Manager
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
variant='outline'
|
|
||||||
color='success'
|
|
||||||
onClick={bulkApproveClickHandler}
|
|
||||||
disabled={!isAllSelectedRowLatestApprovalOnFinance}
|
|
||||||
className='w-full sm:w-fit'
|
|
||||||
>
|
|
||||||
<Icon icon='tdesign:money' width={24} height={24} />
|
|
||||||
Approve Finance
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
variant='outline'
|
|
||||||
color='error'
|
|
||||||
onClick={bulkRejectClickHandler}
|
|
||||||
disabled={
|
|
||||||
!isAllSelectedRowLatestApprovalOnManager &&
|
|
||||||
!isAllSelectedRowLatestApprovalOnFinance
|
|
||||||
}
|
|
||||||
className='w-full sm:w-fit'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:close'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
/>
|
|
||||||
Reject
|
|
||||||
</Button>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<DebouncedTextInput
|
|
||||||
name='search'
|
|
||||||
placeholder='Cari Biaya Operasional'
|
|
||||||
value={tableFilterState.search}
|
|
||||||
onChange={searchChangeHandler}
|
|
||||||
className={{ wrapper: 'sm:max-w-3xs' }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='grid grid-cols-12 justify-end gap-2'>
|
|
||||||
<DateInput
|
|
||||||
required
|
|
||||||
label='Tanggal Transaksi'
|
|
||||||
name='transaction_date'
|
|
||||||
placeholder='Masukkan tanggal transaksi'
|
|
||||||
value={tableFilterState.transactionDate}
|
|
||||||
onChange={transactionDateChangeHandler}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12 sm:col-span-3',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DateInput
|
|
||||||
required
|
|
||||||
label='Tanggal Realisasi'
|
|
||||||
name='realization_date'
|
|
||||||
placeholder='Masukkan tanggal realisasi'
|
|
||||||
value={tableFilterState.realizationDate}
|
|
||||||
onChange={realizationDateChangeHandler}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12 sm:col-span-3',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<SelectInput
|
|
||||||
label='Lokasi'
|
|
||||||
options={locationOptions}
|
|
||||||
isLoading={isLoadingLocationOptions}
|
|
||||||
value={selectedLocation}
|
|
||||||
onChange={locationChangeHandler}
|
|
||||||
onInputChange={setLocationInputValue}
|
|
||||||
isClearable
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12 sm:col-span-3',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<SelectInput
|
|
||||||
label='Vendor'
|
|
||||||
options={vendorOptions}
|
|
||||||
isLoading={isLoadingVendorOptions}
|
|
||||||
value={selectedVendor}
|
|
||||||
onChange={vendorChangeHandler}
|
|
||||||
onInputChange={setVendorInputValue}
|
|
||||||
isClearable
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12 sm:col-span-3',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<SelectInput
|
|
||||||
label='Baris'
|
|
||||||
options={ROWS_OPTIONS}
|
|
||||||
value={{
|
|
||||||
label: String(tableFilterState.pageSize),
|
|
||||||
value: tableFilterState.pageSize,
|
|
||||||
}}
|
|
||||||
onChange={pageSizeChangeHandler}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12 max-w-28 justify-self-end',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Table<Expense>
|
|
||||||
data={isResponseSuccess(expenses) ? expenses?.data : []}
|
|
||||||
columns={expensesColumns}
|
|
||||||
pageSize={tableFilterState.pageSize}
|
|
||||||
page={isResponseSuccess(expenses) ? expenses?.meta?.page : 0}
|
|
||||||
totalItems={
|
|
||||||
isResponseSuccess(expenses) ? expenses?.meta?.total_results : 0
|
|
||||||
}
|
|
||||||
onPageChange={setPage}
|
|
||||||
isLoading={isLoading}
|
|
||||||
sorting={sorting}
|
|
||||||
setSorting={setSorting}
|
|
||||||
rowSelection={rowSelection}
|
|
||||||
setRowSelection={setRowSelection}
|
|
||||||
enableRowSelection={tableEnableRowSelectionHandler}
|
|
||||||
className={{
|
|
||||||
containerClassName: cn({
|
|
||||||
'mb-20':
|
|
||||||
isResponseSuccess(expenses) && expenses?.data?.length === 0,
|
|
||||||
}),
|
|
||||||
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
|
||||||
tableClassName: 'font-inter w-full table-auto min-h-full!',
|
|
||||||
headerRowClassName: 'border-b border-b-gray-200',
|
|
||||||
headerColumnClassName:
|
|
||||||
'px-6 py-3 text-xs font-semibold text-gray-500 last:flex last:flex-row last:justify-end',
|
|
||||||
bodyRowClassName: 'border-b border-b-gray-200',
|
|
||||||
bodyColumnClassName:
|
|
||||||
'px-6 py-3 last:flex last:flex-row last:justify-end',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={deleteModal.ref}
|
|
||||||
type='error'
|
|
||||||
text='Apakah anda yakin ingin menghapus data biaya operasional ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
isLoading: isDeleteLoading,
|
|
||||||
onClick: confirmationModalDeleteClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ConfirmationModalWithNotes
|
|
||||||
ref={approveModal.ref}
|
|
||||||
type='success'
|
|
||||||
text='Apakah anda yakin ingin approve data biaya operasional ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'success',
|
|
||||||
isLoading: isApproveLoading,
|
|
||||||
onClick: confirmationModalApproveClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ConfirmationModalWithNotes
|
|
||||||
ref={rejectModal.ref}
|
|
||||||
type='error'
|
|
||||||
text='Apakah anda yakin ingin reject data biaya operasional ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
isLoading: isRejectLoading,
|
|
||||||
onClick: confirmationModalRejectClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpensesTable;
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
import PillBadge from '@/components/PillBadge';
|
|
||||||
|
|
||||||
import { BaseApproval } from '@/types/api/api-general';
|
|
||||||
|
|
||||||
interface RealizationStatusBadgeProps {
|
|
||||||
approval?: BaseApproval;
|
|
||||||
}
|
|
||||||
|
|
||||||
const RealizationStatusBadge = ({ approval }: RealizationStatusBadgeProps) => {
|
|
||||||
const isLatestApprovalRejected = approval?.action === 'REJECTED';
|
|
||||||
|
|
||||||
const isExpenseRealized = approval?.step_number && approval.step_number >= 4;
|
|
||||||
|
|
||||||
const realizationStatus = isExpenseRealized
|
|
||||||
? 'Sudah Realisasi'
|
|
||||||
: 'Belum Realisasi';
|
|
||||||
|
|
||||||
let realizationStatusPillBadgeColor:
|
|
||||||
| 'yellow'
|
|
||||||
| 'green'
|
|
||||||
| 'gray'
|
|
||||||
| 'red'
|
|
||||||
| 'purple'
|
|
||||||
| 'blue' = isExpenseRealized ? 'green' : 'yellow';
|
|
||||||
|
|
||||||
if (isLatestApprovalRejected) {
|
|
||||||
realizationStatusPillBadgeColor = 'red';
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<PillBadge
|
|
||||||
content={isLatestApprovalRejected ? 'Ditolak' : realizationStatus}
|
|
||||||
color={realizationStatusPillBadgeColor}
|
|
||||||
className='text-xs'
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default RealizationStatusBadge;
|
|
||||||
@@ -1,237 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useCallback, useEffect, useState } from 'react';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Collapse from '@/components/Collapse';
|
|
||||||
import Card from '@/components/Card';
|
|
||||||
import Table from '@/components/Table';
|
|
||||||
import CheckboxInput from '@/components/input/CheckboxInput';
|
|
||||||
|
|
||||||
import { ColumnDef, ColumnSort, SortingState } from '@tanstack/react-table';
|
|
||||||
import { cn, convertRowSelectionArrToObj } from '@/lib/helper';
|
|
||||||
import { Kandang } from '@/types/api/master-data/kandang';
|
|
||||||
import { useTableFilter } from '@/services/hooks/useTableFilter';
|
|
||||||
import { KandangApi } from '@/services/api/master-data';
|
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
|
|
||||||
interface ExpenseKandangsTableProps {
|
|
||||||
locationId?: number;
|
|
||||||
type: 'add' | 'edit' | 'detail';
|
|
||||||
selectedKandangs: {
|
|
||||||
id: number;
|
|
||||||
name: string;
|
|
||||||
}[];
|
|
||||||
onChange: (kandangs: { id: number; name: string }[]) => void;
|
|
||||||
className?: {
|
|
||||||
wrapper?: string;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseKandangsTable = ({
|
|
||||||
type,
|
|
||||||
locationId,
|
|
||||||
selectedKandangs,
|
|
||||||
onChange,
|
|
||||||
className,
|
|
||||||
}: ExpenseKandangsTableProps) => {
|
|
||||||
const {
|
|
||||||
state: tableFilterState,
|
|
||||||
updateFilter,
|
|
||||||
setPage,
|
|
||||||
toQueryString: getTableFilterQueryString,
|
|
||||||
} = useTableFilter({
|
|
||||||
initial: {
|
|
||||||
search: '',
|
|
||||||
nameSort: '',
|
|
||||||
picSort: '',
|
|
||||||
locationId,
|
|
||||||
},
|
|
||||||
paramMap: {
|
|
||||||
page: 'page',
|
|
||||||
pageSize: 'limit',
|
|
||||||
nameSort: 'sort_name',
|
|
||||||
picSort: 'sort_pic',
|
|
||||||
locationId: 'location_id',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const { data: kandangs, isLoading } = useSWR(
|
|
||||||
locationId ? `${KandangApi.basePath}${getTableFilterQueryString()}` : null,
|
|
||||||
KandangApi.getAllFetcher
|
|
||||||
);
|
|
||||||
|
|
||||||
const [open, setOpen] = useState(
|
|
||||||
isResponseSuccess(kandangs) ? kandangs.data.length > 0 : false
|
|
||||||
);
|
|
||||||
const [sorting, setSorting] = useState<SortingState>([]);
|
|
||||||
const [rowSelection, setRowSelection] = useState<Record<string, boolean>>(
|
|
||||||
convertRowSelectionArrToObj(selectedKandangs.map((item) => item.id))
|
|
||||||
);
|
|
||||||
|
|
||||||
const kandangsColumns: ColumnDef<Kandang>[] = [
|
|
||||||
{
|
|
||||||
id: 'select',
|
|
||||||
header: ({ table }) => (
|
|
||||||
<div className='w-full flex flex-row justify-center'>
|
|
||||||
<CheckboxInput
|
|
||||||
name='allRow'
|
|
||||||
checked={table.getIsAllPageRowsSelected()}
|
|
||||||
indeterminate={table.getIsSomePageRowsSelected()}
|
|
||||||
onChange={table.getToggleAllPageRowsSelectedHandler()}
|
|
||||||
disabled={type === 'detail'}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
cell: ({ row }) => (
|
|
||||||
<div>
|
|
||||||
<CheckboxInput
|
|
||||||
name='row'
|
|
||||||
checked={row.getIsSelected()}
|
|
||||||
disabled={!row.getCanSelect() || type === 'detail'}
|
|
||||||
indeterminate={row.getIsSomeSelected()}
|
|
||||||
onChange={row.getToggleSelectedHandler()}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'name',
|
|
||||||
header: 'Nama',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'pic',
|
|
||||||
header: 'PIC',
|
|
||||||
cell: (props) => props.row.original.pic.name,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const updateSortingFilter = useCallback(
|
|
||||||
(
|
|
||||||
sortName: Exclude<keyof typeof tableFilterState, 'page' | 'pageSize'>,
|
|
||||||
sortFilter: ColumnSort | undefined
|
|
||||||
) => {
|
|
||||||
if (!sortFilter) {
|
|
||||||
updateFilter(sortName, '');
|
|
||||||
} else {
|
|
||||||
updateFilter(sortName, sortFilter.desc ? 'desc' : 'asc');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[updateFilter]
|
|
||||||
);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (locationId) updateFilter('locationId', locationId);
|
|
||||||
}, [locationId, updateFilter]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
setOpen(isResponseSuccess(kandangs) ? kandangs.data.length > 0 : false);
|
|
||||||
}, [kandangs, isResponseSuccess]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (Object.keys(rowSelection).length !== 0 && isResponseSuccess(kandangs)) {
|
|
||||||
const formattedSelectedKandangs = Object.keys(rowSelection).map(
|
|
||||||
(item) => {
|
|
||||||
const selectedKandang = kandangs.data.find(
|
|
||||||
(kandang) => kandang.id === parseInt(item)
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
|
||||||
id: parseInt(item),
|
|
||||||
name: selectedKandang?.name ?? 'Kandang tidak ditemukan!',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
onChange(formattedSelectedKandangs);
|
|
||||||
} else {
|
|
||||||
onChange([]);
|
|
||||||
}
|
|
||||||
}, [rowSelection]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (
|
|
||||||
selectedKandangs.length === 0 &&
|
|
||||||
Object.keys(rowSelection).length !== 0
|
|
||||||
) {
|
|
||||||
setRowSelection({});
|
|
||||||
}
|
|
||||||
}, [selectedKandangs]);
|
|
||||||
|
|
||||||
// track sorting
|
|
||||||
useEffect(() => {
|
|
||||||
const nameSortFilter = sorting.find((sortItem) => sortItem.id === 'name');
|
|
||||||
const picSortFilter = sorting.find((sortItem) => sortItem.id === 'pic');
|
|
||||||
|
|
||||||
updateSortingFilter('nameSort', nameSortFilter);
|
|
||||||
updateSortingFilter('picSort', picSortFilter);
|
|
||||||
}, [sorting, updateSortingFilter]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card
|
|
||||||
className={{
|
|
||||||
wrapper: className?.wrapper,
|
|
||||||
body: 'p-4 shadow',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Collapse
|
|
||||||
open={open}
|
|
||||||
onOpenChange={setOpen}
|
|
||||||
title={
|
|
||||||
<div className='card-actions p-4 justify-between items-center w-full'>
|
|
||||||
<div className='card-title'>Pilih Kandang</div>
|
|
||||||
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:keyboard-arrow-down'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className={cn('text-primary transition-transform', {
|
|
||||||
'-rotate-180': open,
|
|
||||||
})}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
className='w-full!'
|
|
||||||
titleClassName='w-full p-0!'
|
|
||||||
>
|
|
||||||
<Table<Kandang>
|
|
||||||
data={isResponseSuccess(kandangs) ? kandangs?.data : []}
|
|
||||||
columns={kandangsColumns}
|
|
||||||
pageSize={tableFilterState.pageSize}
|
|
||||||
page={isResponseSuccess(kandangs) ? kandangs?.meta?.page : 0}
|
|
||||||
totalItems={
|
|
||||||
isResponseSuccess(kandangs) ? kandangs?.meta?.total_results : 0
|
|
||||||
}
|
|
||||||
onPageChange={setPage}
|
|
||||||
isLoading={isLoading}
|
|
||||||
sorting={sorting}
|
|
||||||
setSorting={setSorting}
|
|
||||||
rowSelection={rowSelection}
|
|
||||||
setRowSelection={setRowSelection}
|
|
||||||
className={{
|
|
||||||
containerClassName: cn({
|
|
||||||
'mb-20':
|
|
||||||
isResponseSuccess(kandangs) && kandangs?.data?.length === 0,
|
|
||||||
}),
|
|
||||||
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
|
||||||
tableClassName: 'font-inter w-full table-auto min-h-full!',
|
|
||||||
headerRowClassName: 'border-b border-b-gray-200',
|
|
||||||
headerColumnClassName:
|
|
||||||
'px-6 py-3 text-xs font-semibold text-gray-500 first:flex first:flex-row first:justify-start',
|
|
||||||
bodyRowClassName: 'border-b border-b-gray-200',
|
|
||||||
bodyColumnClassName:
|
|
||||||
'px-6 py-3 first:flex first:flex-row first:justify-start',
|
|
||||||
paginationClassName: cn({
|
|
||||||
hidden:
|
|
||||||
isResponseSuccess(kandangs) &&
|
|
||||||
kandangs?.meta?.total_pages === 1,
|
|
||||||
}),
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Collapse>
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseKandangsTable;
|
|
||||||
@@ -1,181 +0,0 @@
|
|||||||
import * as Yup from 'yup';
|
|
||||||
import { Expense } from '@/types/api/expense';
|
|
||||||
import { formatDate } from '@/lib/helper';
|
|
||||||
|
|
||||||
type ExpenseRealizationFormSchemaType = {
|
|
||||||
category?: {
|
|
||||||
value: 'BOP' | 'NON-BOP';
|
|
||||||
label: 'BOP' | 'NON-BOP';
|
|
||||||
};
|
|
||||||
location?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
};
|
|
||||||
realization_date?: string;
|
|
||||||
kandangs?: { id: number; name: string }[];
|
|
||||||
supplier?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
};
|
|
||||||
existing_documents?: { name: string; url: string }[];
|
|
||||||
documents?: File[];
|
|
||||||
realizations: {
|
|
||||||
kandang_id: number;
|
|
||||||
cost_items: {
|
|
||||||
nonstock?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
};
|
|
||||||
quantity?: number;
|
|
||||||
total_cost?: number;
|
|
||||||
notes?: string;
|
|
||||||
}[];
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
|
|
||||||
export const ExpenseRealizationFormSchema: Yup.ObjectSchema<ExpenseRealizationFormSchemaType> =
|
|
||||||
Yup.object({
|
|
||||||
category: Yup.object({
|
|
||||||
value: Yup.string().oneOf(['BOP', 'NON-BOP']).required(),
|
|
||||||
label: Yup.string().oneOf(['BOP', 'NON-BOP']).required(),
|
|
||||||
}).required('Kategori wajib diisi!'),
|
|
||||||
|
|
||||||
location: Yup.object({
|
|
||||||
value: Yup.number().min(1).required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).required('Lokasi wajib diisi!'),
|
|
||||||
|
|
||||||
realization_date: Yup.string().required('Tanggal transaksi wajib diisi!'),
|
|
||||||
kandangs: Yup.array()
|
|
||||||
.of(
|
|
||||||
Yup.object({
|
|
||||||
id: Yup.number().required('Kandang wajib dipilih!'),
|
|
||||||
name: Yup.string().required('Kandang wajib dipilih!'),
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.min(1, 'Kandang wajib dipilih!')
|
|
||||||
.required('Kandang wajib dipilih!'),
|
|
||||||
|
|
||||||
supplier: Yup.object({
|
|
||||||
value: Yup.number().min(1).required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).required('Vendor wajib diisi!'),
|
|
||||||
|
|
||||||
existing_documents: Yup.array().of(
|
|
||||||
Yup.object({
|
|
||||||
name: Yup.string().required(),
|
|
||||||
url: Yup.string().required(),
|
|
||||||
})
|
|
||||||
),
|
|
||||||
|
|
||||||
documents: Yup.array().of(Yup.mixed<File>().required()).optional(),
|
|
||||||
|
|
||||||
realizations: Yup.array()
|
|
||||||
.of(
|
|
||||||
Yup.object({
|
|
||||||
kandang_id: Yup.number().min(1, 'Wajib memilih kandang!').required(),
|
|
||||||
cost_items: Yup.array()
|
|
||||||
.of(
|
|
||||||
Yup.object({
|
|
||||||
nonstock: Yup.object({
|
|
||||||
value: Yup.number().min(1).required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).required('Nonstock wajib diisi!'),
|
|
||||||
quantity: Yup.number().required('Total kuantitas wajib diisi!'),
|
|
||||||
total_cost: Yup.number().required('Total biaya wajib diisi!'),
|
|
||||||
notes: Yup.string(),
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.min(1, 'Kandang harus memiliki setidaknya 1 biaya!')
|
|
||||||
.required('Biaya kandang wajib diisi!'),
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.min(1, 'Biaya kandang wajib diisi!')
|
|
||||||
.required('Biaya kandang wajib diisi!'),
|
|
||||||
});
|
|
||||||
|
|
||||||
export const UpdateExpenseRealizationFormSchema = ExpenseRealizationFormSchema;
|
|
||||||
|
|
||||||
export const UploadRealizationDocumentsFormSchema = Yup.object({
|
|
||||||
realization_documents: Yup.array()
|
|
||||||
.of(Yup.mixed<File>().required())
|
|
||||||
.required(),
|
|
||||||
});
|
|
||||||
|
|
||||||
export type ExpenseRealizationFormValues = Yup.InferType<
|
|
||||||
typeof ExpenseRealizationFormSchema
|
|
||||||
>;
|
|
||||||
|
|
||||||
export type UploadRealizationDocumentsFormValues = Yup.InferType<
|
|
||||||
typeof UploadRealizationDocumentsFormSchema
|
|
||||||
>;
|
|
||||||
|
|
||||||
export const getExpenseRealizationFormInitialValues = (
|
|
||||||
initialValues?: Expense
|
|
||||||
): ExpenseRealizationFormValues => {
|
|
||||||
return {
|
|
||||||
category: initialValues?.category
|
|
||||||
? {
|
|
||||||
value: initialValues.category,
|
|
||||||
label: initialValues.category,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
location: initialValues?.location
|
|
||||||
? {
|
|
||||||
value: initialValues.location.id,
|
|
||||||
label: initialValues.location.name,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
realization_date: initialValues?.realization_date
|
|
||||||
? formatDate(initialValues?.realization_date, 'YYYY-MM-DD')
|
|
||||||
: undefined,
|
|
||||||
kandangs: initialValues?.kandangs.map((kandang) => ({
|
|
||||||
id: kandang.kandang_id,
|
|
||||||
name: kandang.name,
|
|
||||||
})),
|
|
||||||
supplier: initialValues?.supplier
|
|
||||||
? {
|
|
||||||
value: initialValues.supplier.id,
|
|
||||||
label: initialValues.supplier.name,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
existing_documents: initialValues?.realization_docs?.map((doc) => ({
|
|
||||||
name: doc.path,
|
|
||||||
url: doc.path,
|
|
||||||
})),
|
|
||||||
documents: [],
|
|
||||||
realizations: initialValues?.kandangs
|
|
||||||
? initialValues.kandangs.map((kandangExpense) => {
|
|
||||||
const costItemsInitialValue = kandangExpense.realisasi
|
|
||||||
? kandangExpense.realisasi.map((realisasiItem, realisasiIdx) => {
|
|
||||||
return {
|
|
||||||
nonstock: {
|
|
||||||
value: kandangExpense.pengajuans?.[realisasiIdx]
|
|
||||||
.id as number,
|
|
||||||
label: realisasiItem.nonstock.name,
|
|
||||||
},
|
|
||||||
quantity: realisasiItem.qty,
|
|
||||||
total_cost: realisasiItem.total_price,
|
|
||||||
notes: realisasiItem.note,
|
|
||||||
};
|
|
||||||
})
|
|
||||||
: kandangExpense.pengajuans
|
|
||||||
? kandangExpense.pengajuans.map((expenseItem) => ({
|
|
||||||
nonstock: {
|
|
||||||
value: expenseItem.id,
|
|
||||||
label: expenseItem.nonstock.name,
|
|
||||||
},
|
|
||||||
quantity: expenseItem.qty,
|
|
||||||
total_cost: expenseItem.total_price,
|
|
||||||
notes: expenseItem.note,
|
|
||||||
}))
|
|
||||||
: [];
|
|
||||||
|
|
||||||
return {
|
|
||||||
kandang_id: kandangExpense.kandang_id,
|
|
||||||
cost_items: costItemsInitialValue,
|
|
||||||
};
|
|
||||||
})
|
|
||||||
: [],
|
|
||||||
};
|
|
||||||
};
|
|
||||||
@@ -1,410 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useCallback, useEffect, useState } from 'react';
|
|
||||||
import { useRouter } from 'next/navigation';
|
|
||||||
import { useFormik } from 'formik';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
|
|
||||||
import Link from 'next/link';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import SelectInput, {
|
|
||||||
OptionType,
|
|
||||||
useSelect,
|
|
||||||
} from '@/components/input/SelectInput';
|
|
||||||
import DateInput from '@/components/input/DateInput';
|
|
||||||
import DropFileInput from '@/components/input/DropFileInput';
|
|
||||||
import ExpenseKandangsTable from '@/components/pages/expense/form/ExpenseKandangsTable';
|
|
||||||
import ExpenseRealizationKandangDetailExpense from '@/components/pages/expense/form/ExpenseRealizationKandangDetailExpense';
|
|
||||||
|
|
||||||
import {
|
|
||||||
CreateExpenseRealizationPayload,
|
|
||||||
Expense,
|
|
||||||
UpdateExpenseRealizationPayload,
|
|
||||||
} from '@/types/api/expense';
|
|
||||||
import {
|
|
||||||
ExpenseRealizationFormSchema,
|
|
||||||
ExpenseRealizationFormValues,
|
|
||||||
getExpenseRealizationFormInitialValues,
|
|
||||||
UpdateExpenseRealizationFormSchema,
|
|
||||||
} from '@/components/pages/expense/form/ExpenseRealizationForm.schema';
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { isResponseError } from '@/lib/api-helper';
|
|
||||||
import { LocationApi, SupplierApi } from '@/services/api/master-data';
|
|
||||||
import { Supplier } from '@/types/api/master-data/supplier';
|
|
||||||
import { ACCEPTED_FILE_TYPE } from '@/config/constant';
|
|
||||||
import { cn } from '@/lib/helper';
|
|
||||||
|
|
||||||
interface ExpenseRealizationFormProps {
|
|
||||||
type?: 'add' | 'edit' | 'detail';
|
|
||||||
initialValues?: Expense;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseRealizationForm = ({
|
|
||||||
type = 'add',
|
|
||||||
initialValues,
|
|
||||||
}: ExpenseRealizationFormProps) => {
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const [expenseFormErrorMessage, setExpenseFormErrorMessage] = useState('');
|
|
||||||
|
|
||||||
const createExpenseHandler = useCallback(
|
|
||||||
async (payload: CreateExpenseRealizationPayload) => {
|
|
||||||
const createExpenseRes = await ExpenseApi.createRealization(
|
|
||||||
initialValues?.id as number,
|
|
||||||
ExpenseApi.convertExpenseRealizationPayloadToFormData(payload)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (isResponseError(createExpenseRes)) {
|
|
||||||
setExpenseFormErrorMessage(createExpenseRes.message);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast.success(createExpenseRes?.message as string);
|
|
||||||
router.push('/expense');
|
|
||||||
},
|
|
||||||
[router]
|
|
||||||
);
|
|
||||||
|
|
||||||
const updateExpenseHandler = useCallback(
|
|
||||||
async (expenseId: number, payload: UpdateExpenseRealizationPayload) => {
|
|
||||||
const updateExpenseRes = await ExpenseApi.updateRealization(
|
|
||||||
expenseId,
|
|
||||||
ExpenseApi.convertExpenseRealizationPayloadToFormData(payload)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (updateExpenseRes?.status === 'error') {
|
|
||||||
setExpenseFormErrorMessage(updateExpenseRes.message);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast.success(updateExpenseRes?.message as string);
|
|
||||||
router.refresh();
|
|
||||||
router.push('/expense');
|
|
||||||
},
|
|
||||||
[router]
|
|
||||||
);
|
|
||||||
|
|
||||||
const formik = useFormik<ExpenseRealizationFormValues>({
|
|
||||||
initialValues: getExpenseRealizationFormInitialValues(initialValues),
|
|
||||||
validationSchema:
|
|
||||||
type === 'edit'
|
|
||||||
? UpdateExpenseRealizationFormSchema
|
|
||||||
: ExpenseRealizationFormSchema,
|
|
||||||
onSubmit: async (values) => {
|
|
||||||
setExpenseFormErrorMessage('');
|
|
||||||
|
|
||||||
const realizations: CreateExpenseRealizationPayload['realizations'] = [];
|
|
||||||
|
|
||||||
values.realizations.forEach((realization) => {
|
|
||||||
realization.cost_items.forEach((costItem) => {
|
|
||||||
const unitPrice =
|
|
||||||
parseFloat(String(costItem.total_cost)) /
|
|
||||||
parseFloat(String(costItem.quantity));
|
|
||||||
|
|
||||||
const realizationItem = {
|
|
||||||
expense_nonstock_id: costItem.nonstock?.value as number,
|
|
||||||
qty: parseFloat(String(costItem.quantity)) as number,
|
|
||||||
unit_price: unitPrice,
|
|
||||||
total_price: parseFloat(String(costItem.total_cost)) as number,
|
|
||||||
notes: costItem.notes ?? '',
|
|
||||||
};
|
|
||||||
|
|
||||||
realizations.push(realizationItem);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
const expensePayload: CreateExpenseRealizationPayload = {
|
|
||||||
realization_date: values.realization_date as string,
|
|
||||||
documents: values.documents as File[],
|
|
||||||
realizations,
|
|
||||||
};
|
|
||||||
|
|
||||||
switch (type) {
|
|
||||||
case 'add':
|
|
||||||
await createExpenseHandler(expensePayload);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'edit':
|
|
||||||
await updateExpenseHandler(
|
|
||||||
initialValues?.id as number,
|
|
||||||
expensePayload
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const { setValues: formikSetValues } = formik;
|
|
||||||
|
|
||||||
const {
|
|
||||||
setInputValue: setLocationInputValue,
|
|
||||||
options: locationOptions,
|
|
||||||
isLoadingOptions: isLoadingLocationOptions,
|
|
||||||
} = useSelect<Location>(LocationApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
const {
|
|
||||||
setInputValue: setVendorInputValue,
|
|
||||||
options: vendorOptions,
|
|
||||||
isLoadingOptions: isLoadingVendorOptions,
|
|
||||||
} = useSelect<Supplier>(SupplierApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
const locationChangeHandler = (val: OptionType | OptionType[] | null) => {
|
|
||||||
formik.setFieldTouched('location', true);
|
|
||||||
formik.setFieldValue('location', val);
|
|
||||||
|
|
||||||
formik.setFieldValue('kandangs', []);
|
|
||||||
formik.setFieldValue('realizations', []);
|
|
||||||
};
|
|
||||||
|
|
||||||
const kandangsChangeHandler = (kandangs: { id: number; name: string }[]) => {
|
|
||||||
formik.setFieldTouched('kandangs', true);
|
|
||||||
formik.setFieldValue('kandangs', kandangs);
|
|
||||||
|
|
||||||
const newRealizations = [...(formik.values.realizations ?? [])];
|
|
||||||
|
|
||||||
// add new realizations
|
|
||||||
kandangs.forEach((kandangItem) => {
|
|
||||||
const isKandangExistInRealization = newRealizations.find(
|
|
||||||
(realizationItem) => realizationItem.kandang_id === kandangItem.id
|
|
||||||
);
|
|
||||||
|
|
||||||
if (isKandangExistInRealization) return;
|
|
||||||
|
|
||||||
newRealizations.push({
|
|
||||||
kandang_id: kandangItem.id,
|
|
||||||
cost_items: [
|
|
||||||
{
|
|
||||||
nonstock: undefined,
|
|
||||||
quantity: undefined,
|
|
||||||
total_cost: undefined,
|
|
||||||
notes: '',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// prune realizations
|
|
||||||
const kandangIds = new Set(kandangs.map((kandang) => kandang.id));
|
|
||||||
const deletedRealizationsIdx: number[] = [];
|
|
||||||
|
|
||||||
newRealizations.forEach((realization, idx) => {
|
|
||||||
const isRealizationValid = kandangIds.has(realization.kandang_id);
|
|
||||||
|
|
||||||
if (!isRealizationValid) {
|
|
||||||
deletedRealizationsIdx.push(idx);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
deletedRealizationsIdx.forEach((deletedRealizationIdx) => {
|
|
||||||
newRealizations.splice(deletedRealizationIdx, 1);
|
|
||||||
});
|
|
||||||
|
|
||||||
formik.setFieldValue('realizations', newRealizations);
|
|
||||||
};
|
|
||||||
|
|
||||||
const vendorChangeHandler = (val: OptionType | OptionType[] | null) => {
|
|
||||||
formik.setFieldTouched('vendor', true);
|
|
||||||
formik.setFieldValue('vendor', val);
|
|
||||||
};
|
|
||||||
|
|
||||||
const realizationDocumentsChangeHandler = (val: File[]) => {
|
|
||||||
formik.setFieldTouched('documents', true);
|
|
||||||
formik.setFieldValue('documents', val);
|
|
||||||
};
|
|
||||||
|
|
||||||
const realizationDocumentsDeleteHandler = (deletedFileIdx: number) => {
|
|
||||||
const newRequestDocuments = formik.values.documents;
|
|
||||||
|
|
||||||
newRequestDocuments?.splice(deletedFileIdx, 1);
|
|
||||||
|
|
||||||
formik.setFieldValue('documents', newRequestDocuments);
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
formikSetValues(getExpenseRealizationFormInitialValues(initialValues));
|
|
||||||
}, [formikSetValues, getExpenseRealizationFormInitialValues, initialValues]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<section className='w-full max-w-5xl'>
|
|
||||||
<header className='flex flex-col gap-4'>
|
|
||||||
<Button
|
|
||||||
href='/expense'
|
|
||||||
variant='link'
|
|
||||||
className='w-fit p-0 text-primary'
|
|
||||||
>
|
|
||||||
<Icon icon='uil:arrow-left' width={24} height={24} />
|
|
||||||
Kembali
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<h1 className='text-2xl font-bold text-center'>
|
|
||||||
Realisasi Biaya Operasional
|
|
||||||
</h1>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<form
|
|
||||||
onSubmit={formik.handleSubmit}
|
|
||||||
onReset={formik.handleReset}
|
|
||||||
className='w-full mt-8 flex flex-col gap-6'
|
|
||||||
>
|
|
||||||
<div className='grid grid-cols-12 gap-4'>
|
|
||||||
<SelectInput
|
|
||||||
label='Lokasi'
|
|
||||||
required
|
|
||||||
placeholder='Pilih Lokasi'
|
|
||||||
value={formik.values.location}
|
|
||||||
onChange={locationChangeHandler}
|
|
||||||
options={locationOptions}
|
|
||||||
isLoading={isLoadingLocationOptions}
|
|
||||||
onInputChange={setLocationInputValue}
|
|
||||||
isDisabled
|
|
||||||
className={{ wrapper: 'col-span-12 sm:col-span-6' }}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DateInput
|
|
||||||
name='realization_date'
|
|
||||||
label='Tanggal Realisasi'
|
|
||||||
required
|
|
||||||
value={formik.values.realization_date}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12 sm:col-span-6',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ExpenseKandangsTable
|
|
||||||
type='detail'
|
|
||||||
locationId={formik.values.location?.value}
|
|
||||||
selectedKandangs={formik.values.kandangs ?? []}
|
|
||||||
onChange={kandangsChangeHandler}
|
|
||||||
className={{
|
|
||||||
wrapper: 'w-full col-span-12',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<SelectInput
|
|
||||||
label='Vendor'
|
|
||||||
required
|
|
||||||
placeholder='Pilih Vendor'
|
|
||||||
value={formik.values.supplier}
|
|
||||||
onChange={vendorChangeHandler}
|
|
||||||
options={vendorOptions}
|
|
||||||
isLoading={isLoadingVendorOptions}
|
|
||||||
onInputChange={setVendorInputValue}
|
|
||||||
isDisabled
|
|
||||||
className={{ wrapper: 'col-span-12' }}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DropFileInput
|
|
||||||
label='Dokumen Realisasi'
|
|
||||||
name='documents'
|
|
||||||
values={formik.values.documents}
|
|
||||||
onChange={realizationDocumentsChangeHandler}
|
|
||||||
onDelete={realizationDocumentsDeleteHandler}
|
|
||||||
accept={{
|
|
||||||
...ACCEPTED_FILE_TYPE.PDF,
|
|
||||||
...ACCEPTED_FILE_TYPE.IMAGE,
|
|
||||||
}}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12',
|
|
||||||
inputWrapper: 'h-12 flex items-center',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{formik.values.existing_documents &&
|
|
||||||
formik.values.existing_documents.length > 0 && (
|
|
||||||
<div className='w-full col-span-12'>
|
|
||||||
<ul className='pl-4 list-disc'>
|
|
||||||
{formik.values.existing_documents.map(
|
|
||||||
(existingDocument, existingDocumentIdx) => (
|
|
||||||
<li key={existingDocumentIdx}>
|
|
||||||
<Link
|
|
||||||
href={existingDocument.url}
|
|
||||||
target='_blank'
|
|
||||||
rel='noopener noreferrer'
|
|
||||||
className='text-blue-500 underline'
|
|
||||||
>
|
|
||||||
{existingDocument.name}{' '}
|
|
||||||
<Icon
|
|
||||||
icon='cuida:open-in-new-tab-outline'
|
|
||||||
width={12}
|
|
||||||
height={12}
|
|
||||||
className='inline'
|
|
||||||
/>
|
|
||||||
</Link>
|
|
||||||
</li>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<ExpenseRealizationKandangDetailExpense
|
|
||||||
formik={formik}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{expenseFormErrorMessage && (
|
|
||||||
<div role='alert' className='alert alert-error w-full'>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:error-outline'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
/>
|
|
||||||
<span>{expenseFormErrorMessage}</span>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div className='flex flex-row justify-between gap-2 flex-wrap'>
|
|
||||||
{type !== 'add' && (
|
|
||||||
<div className='flex flex-row justify-start gap-2'>
|
|
||||||
{type !== 'edit' && (
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='warning'
|
|
||||||
href={`/expense/detail/edit/?expenseId=${initialValues?.id}`}
|
|
||||||
className='px-4'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:edit-outline'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
/>
|
|
||||||
Edit
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{type !== 'detail' && (
|
|
||||||
<div
|
|
||||||
className={cn('flex flex-row justify-end gap-2', {
|
|
||||||
'w-full': type === 'add',
|
|
||||||
})}
|
|
||||||
>
|
|
||||||
<Button type='reset' color='warning' className='px-4'>
|
|
||||||
Reset
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
type='submit'
|
|
||||||
color='primary'
|
|
||||||
isLoading={formik.isSubmitting}
|
|
||||||
disabled={!formik.isValid || formik.isSubmitting}
|
|
||||||
className='px-4'
|
|
||||||
>
|
|
||||||
Submit
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseRealizationForm;
|
|
||||||
@@ -1,224 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { FormikContextType } from 'formik';
|
|
||||||
|
|
||||||
import Card from '@/components/Card';
|
|
||||||
import SelectInput, {
|
|
||||||
OptionType,
|
|
||||||
useSelect,
|
|
||||||
} from '@/components/input/SelectInput';
|
|
||||||
import NumberInput from '@/components/input/NumberInput';
|
|
||||||
import TextInput from '@/components/input/TextInput';
|
|
||||||
|
|
||||||
import { ExpenseRealizationFormValues } from '@/components/pages/expense/form/ExpenseRealizationForm.schema';
|
|
||||||
import { cn } from '@/lib/helper';
|
|
||||||
import { NonstockApi } from '@/services/api/master-data';
|
|
||||||
import { Nonstock } from '@/types/api/master-data/nonstock';
|
|
||||||
|
|
||||||
interface ExpenseRealizationKandangDetailExpenseProps {
|
|
||||||
type?: 'add' | 'edit' | 'detail';
|
|
||||||
formik: FormikContextType<ExpenseRealizationFormValues>;
|
|
||||||
className?: {
|
|
||||||
wrapper?: string;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseRealizationKandangDetailExpense: React.FC<
|
|
||||||
ExpenseRealizationKandangDetailExpenseProps
|
|
||||||
> = ({ type, formik, className }) => {
|
|
||||||
const {
|
|
||||||
setInputValue: setNonstockInputValue,
|
|
||||||
options: nonstockOptions,
|
|
||||||
isLoadingOptions: isLoadingNonstockOptions,
|
|
||||||
} = useSelect<Nonstock>(NonstockApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
const nonstockChangeHandler = (
|
|
||||||
kandangExpenseIdx: number,
|
|
||||||
costItemIdx: number,
|
|
||||||
val: OptionType | OptionType[] | null
|
|
||||||
) => {
|
|
||||||
formik.setFieldTouched(
|
|
||||||
`realizations[${kandangExpenseIdx}].cost_items[${costItemIdx}].nonstock`,
|
|
||||||
true
|
|
||||||
);
|
|
||||||
formik.setFieldValue(
|
|
||||||
`realizations[${kandangExpenseIdx}].cost_items[${costItemIdx}].nonstock`,
|
|
||||||
val
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const isExpenseRepeaterInputError = (
|
|
||||||
column: 'nonstock' | 'quantity' | 'total_cost' | 'notes',
|
|
||||||
kandangExpenseIdx: number,
|
|
||||||
expenseIdx: number
|
|
||||||
) => {
|
|
||||||
return (
|
|
||||||
formik.touched.realizations?.[kandangExpenseIdx]?.cost_items?.[
|
|
||||||
expenseIdx
|
|
||||||
]?.[column] &&
|
|
||||||
Boolean(
|
|
||||||
formik.errors.realizations?.[kandangExpenseIdx] instanceof Object &&
|
|
||||||
formik.errors.realizations?.[kandangExpenseIdx].cost_items?.[
|
|
||||||
expenseIdx
|
|
||||||
] instanceof Object &&
|
|
||||||
formik.errors.realizations?.[kandangExpenseIdx].cost_items?.[
|
|
||||||
expenseIdx
|
|
||||||
]?.[column]
|
|
||||||
)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card
|
|
||||||
className={{
|
|
||||||
wrapper: cn('w-full', className?.wrapper),
|
|
||||||
body: 'p-4 shadow',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div className='mb-4 text-center'>
|
|
||||||
<h4 className='font-bold text-xl'>
|
|
||||||
Rincian Realisasi Biaya Operasional
|
|
||||||
</h4>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='w-full flex flex-col gap-6'>
|
|
||||||
{formik.values.realizations.length === 0 && (
|
|
||||||
<div>
|
|
||||||
<p className='text-sm text-gray-400 text-center'>
|
|
||||||
Pilih kandang terlebih dahulu!
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{formik.values.realizations.map((kandangExpense, kandangExpenseIdx) => {
|
|
||||||
const kandangName = formik.values.kandangs?.find(
|
|
||||||
(kandang) => kandang.id === kandangExpense.kandang_id
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
kandangName?.name && (
|
|
||||||
<div
|
|
||||||
key={`kandangExpense-${kandangExpenseIdx}`}
|
|
||||||
className='w-full flex flex-col gap-4'
|
|
||||||
>
|
|
||||||
<div>
|
|
||||||
<h5 className='mb-2 text-lg font-bold text-center'>
|
|
||||||
Biaya {kandangName?.name}
|
|
||||||
</h5>
|
|
||||||
|
|
||||||
<div className='overflow-x-auto'>
|
|
||||||
<table className='table'>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Nonstock</th>
|
|
||||||
<th>Total Kuantitas</th>
|
|
||||||
<th>Total Biaya</th>
|
|
||||||
<th>Catatan</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
|
|
||||||
<tbody>
|
|
||||||
{kandangExpense.cost_items.map(
|
|
||||||
(expenseItem, expenseIdx) => (
|
|
||||||
<tr key={`expense-${expenseIdx}`}>
|
|
||||||
<td className='p-2'>
|
|
||||||
<SelectInput
|
|
||||||
placeholder='Pilih Nonstock'
|
|
||||||
value={expenseItem.nonstock}
|
|
||||||
onChange={(val) => {
|
|
||||||
nonstockChangeHandler(
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx,
|
|
||||||
val
|
|
||||||
);
|
|
||||||
}}
|
|
||||||
options={nonstockOptions}
|
|
||||||
isLoading={isLoadingNonstockOptions}
|
|
||||||
onInputChange={setNonstockInputValue}
|
|
||||||
className={{ wrapper: 'min-w-48' }}
|
|
||||||
isDisabled
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td className='p-2'>
|
|
||||||
<NumberInput
|
|
||||||
required
|
|
||||||
name={`realizations[${kandangExpenseIdx}].cost_items[${expenseIdx}].quantity`}
|
|
||||||
placeholder='Masukkan Total Kuantitas'
|
|
||||||
value={
|
|
||||||
formik.values.realizations[
|
|
||||||
kandangExpenseIdx
|
|
||||||
].cost_items[expenseIdx].quantity ?? ''
|
|
||||||
}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
onBlur={formik.handleBlur}
|
|
||||||
isError={isExpenseRepeaterInputError(
|
|
||||||
'quantity',
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx
|
|
||||||
)}
|
|
||||||
className={{ wrapper: 'min-w-24' }}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td className='p-2'>
|
|
||||||
<NumberInput
|
|
||||||
name={`realizations[${kandangExpenseIdx}].cost_items[${expenseIdx}].total_cost`}
|
|
||||||
placeholder='Masukkan Total Biaya'
|
|
||||||
value={
|
|
||||||
formik.values.realizations[
|
|
||||||
kandangExpenseIdx
|
|
||||||
].cost_items[expenseIdx].total_cost ?? ''
|
|
||||||
}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
onBlur={formik.handleBlur}
|
|
||||||
isError={isExpenseRepeaterInputError(
|
|
||||||
'total_cost',
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx
|
|
||||||
)}
|
|
||||||
inputPrefix={
|
|
||||||
<span className='text-gray-600 font-medium'>
|
|
||||||
Rp
|
|
||||||
</span>
|
|
||||||
}
|
|
||||||
className={{ wrapper: 'min-w-24' }}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td className='p-2'>
|
|
||||||
<TextInput
|
|
||||||
name={`realizations[${kandangExpenseIdx}].cost_items[${expenseIdx}].notes`}
|
|
||||||
placeholder='Tuliskan catatan'
|
|
||||||
value={
|
|
||||||
formik.values.realizations[
|
|
||||||
kandangExpenseIdx
|
|
||||||
].cost_items[expenseIdx].notes ?? ''
|
|
||||||
}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
onBlur={formik.handleBlur}
|
|
||||||
isError={isExpenseRepeaterInputError(
|
|
||||||
'notes',
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx
|
|
||||||
)}
|
|
||||||
className={{ wrapper: 'min-w-24' }}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseRealizationKandangDetailExpense;
|
|
||||||
@@ -1,168 +0,0 @@
|
|||||||
import * as Yup from 'yup';
|
|
||||||
import { Expense } from '@/types/api/expense';
|
|
||||||
import { formatDate } from '@/lib/helper';
|
|
||||||
|
|
||||||
type ExpenseFormSchemaType = {
|
|
||||||
category?: {
|
|
||||||
value: 'BOP' | 'NON-BOP';
|
|
||||||
label: 'BOP' | 'NON-BOP';
|
|
||||||
};
|
|
||||||
location?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
};
|
|
||||||
transaction_date?: string;
|
|
||||||
kandangs?: { id: number; name: string }[];
|
|
||||||
supplier?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
};
|
|
||||||
existing_documents?: { id: number; name: string; url: string }[];
|
|
||||||
deleted_documents?: number[];
|
|
||||||
documents?: File[];
|
|
||||||
cost_per_kandangs: {
|
|
||||||
kandang_id: number;
|
|
||||||
cost_items: {
|
|
||||||
nonstock?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
};
|
|
||||||
quantity?: number;
|
|
||||||
total_cost?: number;
|
|
||||||
notes?: string;
|
|
||||||
}[];
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
|
|
||||||
export const ExpenseRequestFormSchema: Yup.ObjectSchema<ExpenseFormSchemaType> =
|
|
||||||
Yup.object({
|
|
||||||
category: Yup.object({
|
|
||||||
value: Yup.string().oneOf(['BOP', 'NON-BOP']).required(),
|
|
||||||
label: Yup.string().oneOf(['BOP', 'NON-BOP']).required(),
|
|
||||||
}).required('Kategori wajib diisi!'),
|
|
||||||
|
|
||||||
location: Yup.object({
|
|
||||||
value: Yup.number().min(1).required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).required('Lokasi wajib diisi!'),
|
|
||||||
|
|
||||||
transaction_date: Yup.string().required('Tanggal transaksi wajib diisi!'),
|
|
||||||
kandangs: Yup.array()
|
|
||||||
.of(
|
|
||||||
Yup.object({
|
|
||||||
id: Yup.number().required('Kandang wajib dipilih!'),
|
|
||||||
name: Yup.string().required('Kandang wajib dipilih!'),
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.min(1, 'Kandang wajib dipilih!')
|
|
||||||
.required('Kandang wajib dipilih!'),
|
|
||||||
|
|
||||||
supplier: Yup.object({
|
|
||||||
value: Yup.number().min(1).required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).required('Vendor wajib diisi!'),
|
|
||||||
|
|
||||||
existing_documents: Yup.array().of(
|
|
||||||
Yup.object({
|
|
||||||
id: Yup.number().required(),
|
|
||||||
name: Yup.string().required(),
|
|
||||||
url: Yup.string().required(),
|
|
||||||
})
|
|
||||||
),
|
|
||||||
|
|
||||||
deleted_documents: Yup.array().of(Yup.number().required()).optional(),
|
|
||||||
|
|
||||||
documents: Yup.array().of(Yup.mixed<File>().required()).optional(),
|
|
||||||
|
|
||||||
cost_per_kandangs: Yup.array()
|
|
||||||
.of(
|
|
||||||
Yup.object({
|
|
||||||
kandang_id: Yup.number().min(1, 'Wajib memilih kandang!').required(),
|
|
||||||
cost_items: Yup.array()
|
|
||||||
.of(
|
|
||||||
Yup.object({
|
|
||||||
nonstock: Yup.object({
|
|
||||||
value: Yup.number().min(1).required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).required('Nonstock wajib diisi!'),
|
|
||||||
quantity: Yup.number().required('Total kuantitas wajib diisi!'),
|
|
||||||
total_cost: Yup.number().required('Total biaya wajib diisi!'),
|
|
||||||
notes: Yup.string(),
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.min(1, 'Kandang harus memiliki setidaknya 1 biaya!')
|
|
||||||
.required('Biaya kandang wajib diisi!'),
|
|
||||||
})
|
|
||||||
)
|
|
||||||
.min(1, 'Biaya kandang wajib diisi!')
|
|
||||||
.required('Biaya kandang wajib diisi!'),
|
|
||||||
});
|
|
||||||
|
|
||||||
export const UpdateExpenseRequestFormSchema = ExpenseRequestFormSchema;
|
|
||||||
|
|
||||||
export const UploadRequestDocumentsFormSchema = Yup.object({
|
|
||||||
documents: Yup.array().of(Yup.mixed<File>().required()).required(),
|
|
||||||
});
|
|
||||||
|
|
||||||
export type ExpenseRequestFormValues = Yup.InferType<
|
|
||||||
typeof ExpenseRequestFormSchema
|
|
||||||
>;
|
|
||||||
|
|
||||||
export type UploadRequestDocumentsFormValues = Yup.InferType<
|
|
||||||
typeof UploadRequestDocumentsFormSchema
|
|
||||||
>;
|
|
||||||
|
|
||||||
export const getExpenseFormInitialValues = (
|
|
||||||
initialValues?: Expense
|
|
||||||
): ExpenseRequestFormValues => {
|
|
||||||
return {
|
|
||||||
category: initialValues?.category
|
|
||||||
? {
|
|
||||||
value: initialValues.category,
|
|
||||||
label: initialValues.category,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
location: initialValues?.location
|
|
||||||
? {
|
|
||||||
value: initialValues.location.id,
|
|
||||||
label: initialValues.location.name,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
transaction_date: initialValues?.expense_date
|
|
||||||
? formatDate(initialValues.expense_date, 'YYYY-MM-DD')
|
|
||||||
: undefined,
|
|
||||||
kandangs: initialValues?.kandangs.map((kandang) => ({
|
|
||||||
id: kandang.kandang_id,
|
|
||||||
name: kandang.name,
|
|
||||||
})),
|
|
||||||
supplier: initialValues?.supplier
|
|
||||||
? {
|
|
||||||
value: initialValues.supplier.id,
|
|
||||||
label: initialValues.supplier.name,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
existing_documents: initialValues?.documents?.map((doc) => ({
|
|
||||||
id: doc.id,
|
|
||||||
name: doc.path,
|
|
||||||
url: doc.path,
|
|
||||||
})),
|
|
||||||
deleted_documents: [],
|
|
||||||
documents: [],
|
|
||||||
cost_per_kandangs: initialValues?.kandangs
|
|
||||||
? initialValues.kandangs.map((kandangExpense) => ({
|
|
||||||
kandang_id: kandangExpense.kandang_id,
|
|
||||||
cost_items: kandangExpense.pengajuans
|
|
||||||
? kandangExpense.pengajuans.map((expenseItem) => ({
|
|
||||||
nonstock: {
|
|
||||||
value: expenseItem.nonstock.id,
|
|
||||||
label: expenseItem.nonstock.name,
|
|
||||||
},
|
|
||||||
quantity: expenseItem.qty,
|
|
||||||
total_cost: expenseItem.total_price,
|
|
||||||
notes: expenseItem.note,
|
|
||||||
}))
|
|
||||||
: [],
|
|
||||||
}))
|
|
||||||
: [],
|
|
||||||
};
|
|
||||||
};
|
|
||||||
@@ -1,584 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { useCallback, useEffect, useState } from 'react';
|
|
||||||
import { useRouter } from 'next/navigation';
|
|
||||||
import { useFormik } from 'formik';
|
|
||||||
import { toast } from 'react-hot-toast';
|
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Link from 'next/link';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import { useModal } from '@/components/Modal';
|
|
||||||
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
|
||||||
import SelectInput, {
|
|
||||||
OptionType,
|
|
||||||
useSelect,
|
|
||||||
} from '@/components/input/SelectInput';
|
|
||||||
import DateInput from '@/components/input/DateInput';
|
|
||||||
import ExpenseKandangsTable from '@/components/pages/expense/form/ExpenseKandangsTable';
|
|
||||||
import DropFileInput from '@/components/input/DropFileInput';
|
|
||||||
import ExpenseRequestKandangDetailExpense from '@/components/pages/expense/form/ExpenseRequestKandangDetailExpense';
|
|
||||||
|
|
||||||
import {
|
|
||||||
ExpenseRequestFormSchema,
|
|
||||||
ExpenseRequestFormValues,
|
|
||||||
getExpenseFormInitialValues,
|
|
||||||
UpdateExpenseRequestFormSchema,
|
|
||||||
} from '@/components/pages/expense/form/ExpenseRequestForm.schema';
|
|
||||||
import { isResponseError } from '@/lib/api-helper';
|
|
||||||
import {
|
|
||||||
Expense,
|
|
||||||
CreateExpensePayload,
|
|
||||||
UpdateExpensePayload,
|
|
||||||
} from '@/types/api/expense';
|
|
||||||
import { ExpenseApi } from '@/services/api/expense';
|
|
||||||
import { cn, sleep } from '@/lib/helper';
|
|
||||||
import { LocationApi, SupplierApi } from '@/services/api/master-data';
|
|
||||||
import { ACCEPTED_FILE_TYPE } from '@/config/constant';
|
|
||||||
import { Supplier } from '@/types/api/master-data/supplier';
|
|
||||||
|
|
||||||
interface ExpenseFormProps {
|
|
||||||
type?: 'add' | 'edit' | 'detail';
|
|
||||||
initialValues?: Expense;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseRequestForm = ({
|
|
||||||
type = 'add',
|
|
||||||
initialValues,
|
|
||||||
}: ExpenseFormProps) => {
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
// Modal hooks
|
|
||||||
const deleteModal = useModal();
|
|
||||||
const approveModal = useModal();
|
|
||||||
const rejectModal = useModal();
|
|
||||||
|
|
||||||
const [expenseFormErrorMessage, setExpenseFormErrorMessage] = useState('');
|
|
||||||
|
|
||||||
const createExpenseHandler = useCallback(
|
|
||||||
async (payload: CreateExpensePayload) => {
|
|
||||||
const createExpenseRes = await ExpenseApi.create(
|
|
||||||
ExpenseApi.convertExpenseRequestPayloadToFormData(payload)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (isResponseError(createExpenseRes)) {
|
|
||||||
setExpenseFormErrorMessage(createExpenseRes.message);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast.success(createExpenseRes?.message as string);
|
|
||||||
router.push('/expense');
|
|
||||||
},
|
|
||||||
[router]
|
|
||||||
);
|
|
||||||
|
|
||||||
const updateExpenseHandler = useCallback(
|
|
||||||
async (
|
|
||||||
expenseId: number,
|
|
||||||
payload: UpdateExpensePayload,
|
|
||||||
deletedDocumentIds: number[]
|
|
||||||
) => {
|
|
||||||
const updateExpenseRes = await ExpenseApi.update(
|
|
||||||
expenseId,
|
|
||||||
ExpenseApi.convertExpenseRequestUpdatePayloadToFormData(payload),
|
|
||||||
deletedDocumentIds
|
|
||||||
);
|
|
||||||
|
|
||||||
if (updateExpenseRes?.status === 'error') {
|
|
||||||
setExpenseFormErrorMessage(updateExpenseRes.message);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
toast.success(updateExpenseRes?.message as string);
|
|
||||||
router.refresh();
|
|
||||||
router.push('/expense');
|
|
||||||
},
|
|
||||||
[router]
|
|
||||||
);
|
|
||||||
|
|
||||||
const formik = useFormik<ExpenseRequestFormValues>({
|
|
||||||
initialValues: getExpenseFormInitialValues(initialValues),
|
|
||||||
validationSchema:
|
|
||||||
type === 'edit'
|
|
||||||
? UpdateExpenseRequestFormSchema
|
|
||||||
: ExpenseRequestFormSchema,
|
|
||||||
onSubmit: async (values) => {
|
|
||||||
setExpenseFormErrorMessage('');
|
|
||||||
|
|
||||||
const expensePayload: CreateExpensePayload = {
|
|
||||||
category: formik.values.category?.value as 'BOP' | 'NON-BOP',
|
|
||||||
transaction_date: values?.transaction_date as string,
|
|
||||||
supplier_id: values.supplier?.value as number,
|
|
||||||
documents: values.documents as File[],
|
|
||||||
cost_per_kandangs: values.cost_per_kandangs.map((costPerKandang) => ({
|
|
||||||
kandang_id: costPerKandang.kandang_id,
|
|
||||||
cost_items: costPerKandang.cost_items.map((costItem) => ({
|
|
||||||
nonstock_id: costItem.nonstock?.value as number,
|
|
||||||
quantity: parseFloat(String(costItem.quantity)) as number,
|
|
||||||
total_cost: parseFloat(String(costItem.total_cost)) as number,
|
|
||||||
notes: costItem.notes ?? '',
|
|
||||||
})),
|
|
||||||
})),
|
|
||||||
};
|
|
||||||
|
|
||||||
switch (type) {
|
|
||||||
case 'add':
|
|
||||||
await createExpenseHandler(expensePayload);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'edit':
|
|
||||||
const expenseUpdatePayload: UpdateExpensePayload = {
|
|
||||||
category: formik.values.category?.value as 'BOP' | 'NON-BOP',
|
|
||||||
transaction_date: values?.transaction_date as string,
|
|
||||||
supplier_id: values.supplier?.value as number,
|
|
||||||
documents: values.documents as File[],
|
|
||||||
cost_per_kandang: values.cost_per_kandangs.map(
|
|
||||||
(costPerKandang) => ({
|
|
||||||
kandang_id: costPerKandang.kandang_id,
|
|
||||||
cost_items: costPerKandang.cost_items.map((costItem) => ({
|
|
||||||
nonstock_id: costItem.nonstock?.value as number,
|
|
||||||
quantity: parseFloat(String(costItem.quantity)) as number,
|
|
||||||
total_cost: parseFloat(String(costItem.total_cost)) as number,
|
|
||||||
notes: costItem.notes ?? '',
|
|
||||||
})),
|
|
||||||
})
|
|
||||||
),
|
|
||||||
};
|
|
||||||
|
|
||||||
await updateExpenseHandler(
|
|
||||||
initialValues?.id as number,
|
|
||||||
expenseUpdatePayload,
|
|
||||||
formik.values.deleted_documents ?? []
|
|
||||||
);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const { setValues: formikSetValues } = formik;
|
|
||||||
|
|
||||||
const {
|
|
||||||
setInputValue: setLocationInputValue,
|
|
||||||
options: locationOptions,
|
|
||||||
isLoadingOptions: isLoadingLocationOptions,
|
|
||||||
} = useSelect<Location>(LocationApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
const {
|
|
||||||
setInputValue: setVendorInputValue,
|
|
||||||
options: supplierOptions,
|
|
||||||
isLoadingOptions: isLoadingVendorOptions,
|
|
||||||
} = useSelect<Supplier>(SupplierApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
const categoryChangeHandler = (val: OptionType | OptionType[] | null) => {
|
|
||||||
formik.setFieldTouched('category', true);
|
|
||||||
formik.setFieldValue('category', val);
|
|
||||||
};
|
|
||||||
|
|
||||||
const locationChangeHandler = (val: OptionType | OptionType[] | null) => {
|
|
||||||
formik.setFieldTouched('location', true);
|
|
||||||
formik.setFieldValue('location', val);
|
|
||||||
|
|
||||||
formik.setFieldValue('kandangs', []);
|
|
||||||
formik.setFieldValue('cost_per_kandangs', []);
|
|
||||||
};
|
|
||||||
|
|
||||||
const kandangsChangeHandler = (kandangs: { id: number; name: string }[]) => {
|
|
||||||
formik.setFieldTouched('kandangs', true);
|
|
||||||
formik.setFieldValue('kandangs', kandangs);
|
|
||||||
|
|
||||||
const newCostPerKandangs = [...(formik.values.cost_per_kandangs ?? [])];
|
|
||||||
|
|
||||||
// add new cost_per_kandangs
|
|
||||||
kandangs.forEach((kandangItem) => {
|
|
||||||
const isKandangExistInCostPerKandangs = newCostPerKandangs.find(
|
|
||||||
(costPerKandangItem) => costPerKandangItem.kandang_id === kandangItem.id
|
|
||||||
);
|
|
||||||
|
|
||||||
if (isKandangExistInCostPerKandangs) return;
|
|
||||||
|
|
||||||
newCostPerKandangs.push({
|
|
||||||
kandang_id: kandangItem.id,
|
|
||||||
cost_items: [
|
|
||||||
{
|
|
||||||
nonstock: undefined,
|
|
||||||
quantity: undefined,
|
|
||||||
total_cost: undefined,
|
|
||||||
notes: '',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// prune cost_per_kandangs
|
|
||||||
const kandangIds = new Set(kandangs.map((kandang) => kandang.id));
|
|
||||||
const deletedCostPerKandangsIdx: number[] = [];
|
|
||||||
|
|
||||||
newCostPerKandangs.forEach((costPerKandang, idx) => {
|
|
||||||
const isCostPerKandangValid = kandangIds.has(costPerKandang.kandang_id);
|
|
||||||
|
|
||||||
if (!isCostPerKandangValid) {
|
|
||||||
deletedCostPerKandangsIdx.push(idx);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
deletedCostPerKandangsIdx.forEach((deletedCostPerKandangIdx) => {
|
|
||||||
newCostPerKandangs.splice(deletedCostPerKandangIdx, 1);
|
|
||||||
});
|
|
||||||
|
|
||||||
formik.setFieldValue('cost_per_kandangs', newCostPerKandangs);
|
|
||||||
};
|
|
||||||
|
|
||||||
const supplierChangeHandler = (val: OptionType | OptionType[] | null) => {
|
|
||||||
formik.setFieldTouched('supplier', true);
|
|
||||||
formik.setFieldValue('supplier', val);
|
|
||||||
};
|
|
||||||
|
|
||||||
const requestDocumentsChangeHandler = (val: File[]) => {
|
|
||||||
formik.setFieldTouched('documents', true);
|
|
||||||
formik.setFieldValue('documents', val);
|
|
||||||
};
|
|
||||||
|
|
||||||
const requestDocumentsDeleteHandler = (deletedFileIdx: number) => {
|
|
||||||
const newRequestDocuments = formik.values.documents;
|
|
||||||
|
|
||||||
newRequestDocuments?.splice(deletedFileIdx, 1);
|
|
||||||
|
|
||||||
formik.setFieldValue('documents', newRequestDocuments);
|
|
||||||
};
|
|
||||||
|
|
||||||
const deleteDocumentClickHandler = (
|
|
||||||
deletedDocumentIdx: number,
|
|
||||||
deletedDocumentId: number
|
|
||||||
) => {
|
|
||||||
const newDeletedDocumentIds = [...(formik.values.deleted_documents ?? [])];
|
|
||||||
const newExistingDocuments = [
|
|
||||||
...(formik.values.existing_documents ?? []),
|
|
||||||
].filter((_, idx) => idx !== deletedDocumentIdx);
|
|
||||||
|
|
||||||
newDeletedDocumentIds.push(deletedDocumentId);
|
|
||||||
|
|
||||||
formik.setFieldTouched('deleted_documents', true);
|
|
||||||
formik.setFieldValue('deleted_documents', newDeletedDocumentIds);
|
|
||||||
|
|
||||||
formik.setFieldTouched('existing_documents', true);
|
|
||||||
formik.setFieldValue('existing_documents', newExistingDocuments);
|
|
||||||
};
|
|
||||||
|
|
||||||
const deleteExpenseClickHandler = () => {
|
|
||||||
deleteModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalRejectClickHandler = async () => {
|
|
||||||
await sleep(750);
|
|
||||||
|
|
||||||
rejectModal.closeModal();
|
|
||||||
toast.success('Berhasil melakukan reject biaya operasional!');
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalApproveClickHandler = async () => {
|
|
||||||
await sleep(750);
|
|
||||||
|
|
||||||
approveModal.closeModal();
|
|
||||||
toast.success('Berhasil melakukan approve biaya operasional!');
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalDeleteClickHandler = async () => {
|
|
||||||
await ExpenseApi.delete(initialValues?.id as number);
|
|
||||||
|
|
||||||
deleteModal.closeModal();
|
|
||||||
toast.success('Successfully delete Expense!');
|
|
||||||
router.push('/expense');
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
formikSetValues(getExpenseFormInitialValues(initialValues));
|
|
||||||
}, [formikSetValues, getExpenseFormInitialValues, initialValues]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<section className='w-full max-w-5xl'>
|
|
||||||
<header className='flex flex-col gap-4'>
|
|
||||||
<Button
|
|
||||||
href='/expense'
|
|
||||||
variant='link'
|
|
||||||
className='w-fit p-0 text-primary'
|
|
||||||
>
|
|
||||||
<Icon icon='uil:arrow-left' width={24} height={24} />
|
|
||||||
Kembali
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<h1 className='text-2xl font-bold text-center'>
|
|
||||||
{type === 'add' && 'Tambah Biaya Operasional'}
|
|
||||||
{type === 'edit' && 'Edit Biaya Operasional'}
|
|
||||||
{type === 'detail' && 'Detail Biaya Operasional'}
|
|
||||||
</h1>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<form
|
|
||||||
onSubmit={formik.handleSubmit}
|
|
||||||
onReset={formik.handleReset}
|
|
||||||
className='w-full mt-8 flex flex-col gap-6'
|
|
||||||
>
|
|
||||||
<div className='grid grid-cols-12 gap-4'>
|
|
||||||
<SelectInput
|
|
||||||
label='Kategori'
|
|
||||||
required
|
|
||||||
placeholder='Pilih Kategori'
|
|
||||||
value={formik.values.category}
|
|
||||||
onChange={categoryChangeHandler}
|
|
||||||
options={[
|
|
||||||
{
|
|
||||||
value: 'BOP',
|
|
||||||
label: 'BOP',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'NON-BOP',
|
|
||||||
label: 'NON-BOP',
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
className={{ wrapper: 'col-span-12 sm:col-span-4' }}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<SelectInput
|
|
||||||
label='Lokasi'
|
|
||||||
required
|
|
||||||
placeholder='Pilih Lokasi'
|
|
||||||
value={formik.values.location}
|
|
||||||
onChange={locationChangeHandler}
|
|
||||||
options={locationOptions}
|
|
||||||
isLoading={isLoadingLocationOptions}
|
|
||||||
onInputChange={setLocationInputValue}
|
|
||||||
className={{ wrapper: 'col-span-12 sm:col-span-4' }}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DateInput
|
|
||||||
name='transaction_date'
|
|
||||||
label='Tanggal Transaksi'
|
|
||||||
required
|
|
||||||
value={formik.values.transaction_date}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12 sm:col-span-4',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ExpenseKandangsTable
|
|
||||||
type={type}
|
|
||||||
locationId={formik.values.location?.value}
|
|
||||||
selectedKandangs={formik.values.kandangs ?? []}
|
|
||||||
onChange={kandangsChangeHandler}
|
|
||||||
className={{
|
|
||||||
wrapper: 'w-full col-span-12',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<SelectInput
|
|
||||||
label='Vendor'
|
|
||||||
required
|
|
||||||
placeholder='Pilih Vendor'
|
|
||||||
value={formik.values.supplier}
|
|
||||||
onChange={supplierChangeHandler}
|
|
||||||
options={supplierOptions}
|
|
||||||
isLoading={isLoadingVendorOptions}
|
|
||||||
onInputChange={setVendorInputValue}
|
|
||||||
className={{ wrapper: 'col-span-12' }}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DropFileInput
|
|
||||||
label='Dokumen Pengajuan'
|
|
||||||
name='documents'
|
|
||||||
values={formik.values.documents}
|
|
||||||
onChange={requestDocumentsChangeHandler}
|
|
||||||
onDelete={requestDocumentsDeleteHandler}
|
|
||||||
accept={{
|
|
||||||
...ACCEPTED_FILE_TYPE.PDF,
|
|
||||||
...ACCEPTED_FILE_TYPE.IMAGE,
|
|
||||||
}}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12',
|
|
||||||
inputWrapper: 'h-12 flex items-center',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{formik.values.existing_documents &&
|
|
||||||
formik.values.existing_documents.length > 0 && (
|
|
||||||
<div className='w-full col-span-12'>
|
|
||||||
<ul className='pl-4 list-disc'>
|
|
||||||
{formik.values.existing_documents.map(
|
|
||||||
(existingDocument, existingDocumentIdx) => (
|
|
||||||
<li key={existingDocumentIdx}>
|
|
||||||
<div className='w-full flex flex-wrap justify-between'>
|
|
||||||
<Link
|
|
||||||
href={existingDocument.url}
|
|
||||||
target='_blank'
|
|
||||||
rel='noopener noreferrer'
|
|
||||||
className='text-blue-500 underline'
|
|
||||||
>
|
|
||||||
{existingDocument.name}{' '}
|
|
||||||
<Icon
|
|
||||||
icon='cuida:open-in-new-tab-outline'
|
|
||||||
width={12}
|
|
||||||
height={12}
|
|
||||||
className='inline'
|
|
||||||
/>
|
|
||||||
</Link>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
variant='ghost'
|
|
||||||
color='error'
|
|
||||||
onClick={() => {
|
|
||||||
deleteDocumentClickHandler(
|
|
||||||
existingDocumentIdx,
|
|
||||||
existingDocument.id
|
|
||||||
);
|
|
||||||
}}
|
|
||||||
className='p-1 rounded-full text-error focus-visible:text-error-content hover:text-error-content'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='fluent:delete-12-regular'
|
|
||||||
width={20}
|
|
||||||
height={20}
|
|
||||||
/>
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<ExpenseRequestKandangDetailExpense
|
|
||||||
formik={formik}
|
|
||||||
className={{
|
|
||||||
wrapper: 'col-span-12',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='flex flex-row justify-between gap-2 flex-wrap'>
|
|
||||||
{type !== 'add' && (
|
|
||||||
<div className='flex flex-row justify-start gap-2'>
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='error'
|
|
||||||
onClick={deleteExpenseClickHandler}
|
|
||||||
className='px-4'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:delete-outline-rounded'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
/>
|
|
||||||
Delete
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
{type !== 'edit' && (
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='warning'
|
|
||||||
href={`/expense/detail/edit/?expenseId=${initialValues?.id}`}
|
|
||||||
className='px-4'
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:edit-outline'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
/>
|
|
||||||
Edit
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{expenseFormErrorMessage && (
|
|
||||||
<div role='alert' className='alert alert-error w-full'>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:error-outline'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
/>
|
|
||||||
<span>{expenseFormErrorMessage}</span>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{type !== 'detail' && (
|
|
||||||
<div
|
|
||||||
className={cn('flex flex-row justify-end gap-2', {
|
|
||||||
'w-full': type === 'add',
|
|
||||||
})}
|
|
||||||
>
|
|
||||||
<Button type='reset' color='warning' className='px-4'>
|
|
||||||
Reset
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
type='submit'
|
|
||||||
color='primary'
|
|
||||||
isLoading={formik.isSubmitting}
|
|
||||||
disabled={!formik.isValid || formik.isSubmitting}
|
|
||||||
className='px-4'
|
|
||||||
>
|
|
||||||
Submit
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
{type !== 'add' && (
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={deleteModal.ref}
|
|
||||||
type='error'
|
|
||||||
text='Apakah anda yakin ingin menghapus data Expense ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
onClick: confirmationModalDeleteClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{type === 'detail' && (
|
|
||||||
<>
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={approveModal.ref}
|
|
||||||
type='success'
|
|
||||||
text='Apakah anda yakin ingin approve data transfer ke laying ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'success',
|
|
||||||
onClick: confirmationModalApproveClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={rejectModal.ref}
|
|
||||||
type='error'
|
|
||||||
text='Apakah anda yakin ingin reject data transfer ke laying ini?'
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
onClick: confirmationModalRejectClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseRequestForm;
|
|
||||||
@@ -1,295 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { FormikContextType } from 'formik';
|
|
||||||
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import Card from '@/components/Card';
|
|
||||||
import SelectInput, {
|
|
||||||
OptionType,
|
|
||||||
useSelect,
|
|
||||||
} from '@/components/input/SelectInput';
|
|
||||||
import NumberInput from '@/components/input/NumberInput';
|
|
||||||
import TextInput from '@/components/input/TextInput';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
|
|
||||||
import { ExpenseRequestFormValues } from '@/components/pages/expense/form/ExpenseRequestForm.schema';
|
|
||||||
import { cn } from '@/lib/helper';
|
|
||||||
import { NonstockApi } from '@/services/api/master-data';
|
|
||||||
import { Nonstock } from '@/types/api/master-data/nonstock';
|
|
||||||
import { removeArrayItemAndSync } from '@/lib/utils/formik';
|
|
||||||
|
|
||||||
interface ExpenseRequestKandangDetailExpenseProps {
|
|
||||||
type?: 'add' | 'edit' | 'detail';
|
|
||||||
formik: FormikContextType<ExpenseRequestFormValues>;
|
|
||||||
className?: {
|
|
||||||
wrapper?: string;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpenseRequestKandangDetailExpense: React.FC<
|
|
||||||
ExpenseRequestKandangDetailExpenseProps
|
|
||||||
> = ({ type, formik, className }) => {
|
|
||||||
const {
|
|
||||||
setInputValue: setNonstockInputValue,
|
|
||||||
options: nonstockOptions,
|
|
||||||
isLoadingOptions: isLoadingNonstockOptions,
|
|
||||||
} = useSelect<Nonstock>(NonstockApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
const nonstockChangeHandler = (
|
|
||||||
kandangExpenseIdx: number,
|
|
||||||
expenseIdx: number,
|
|
||||||
val: OptionType | OptionType[] | null
|
|
||||||
) => {
|
|
||||||
formik.setFieldTouched(
|
|
||||||
`cost_per_kandangs[${kandangExpenseIdx}].cost_items[${expenseIdx}].nonstock`,
|
|
||||||
true
|
|
||||||
);
|
|
||||||
formik.setFieldValue(
|
|
||||||
`cost_per_kandangs[${kandangExpenseIdx}].cost_items[${expenseIdx}].nonstock`,
|
|
||||||
val
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const addExpenseItemHandler = (kandangExpenseIdx: number) => {
|
|
||||||
const newExpensesValue = [
|
|
||||||
...formik.values.cost_per_kandangs[kandangExpenseIdx].cost_items,
|
|
||||||
{
|
|
||||||
nonstock: undefined,
|
|
||||||
total_cost: undefined,
|
|
||||||
quantity: undefined,
|
|
||||||
notes: '',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
formik.setFieldValue(
|
|
||||||
`cost_per_kandangs[${kandangExpenseIdx}].cost_items`,
|
|
||||||
newExpensesValue
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const deleteExpenseItemHandler = (
|
|
||||||
kandangExpenseIdx: number,
|
|
||||||
expenseIdx: number
|
|
||||||
) => {
|
|
||||||
const path = `cost_per_kandangs[${kandangExpenseIdx}].cost_items`;
|
|
||||||
|
|
||||||
// trims values, errors, and touched at expenseIdx
|
|
||||||
removeArrayItemAndSync(formik, path, expenseIdx);
|
|
||||||
};
|
|
||||||
|
|
||||||
const isExpenseRepeaterInputError = (
|
|
||||||
column: 'nonstock' | 'quantity' | 'total_cost' | 'notes',
|
|
||||||
kandangExpenseIdx: number,
|
|
||||||
expenseIdx: number
|
|
||||||
) => {
|
|
||||||
return (
|
|
||||||
formik.touched.cost_per_kandangs?.[kandangExpenseIdx]?.cost_items?.[
|
|
||||||
expenseIdx
|
|
||||||
]?.[column] &&
|
|
||||||
Boolean(
|
|
||||||
formik.errors.cost_per_kandangs?.[kandangExpenseIdx] instanceof
|
|
||||||
Object &&
|
|
||||||
formik.errors.cost_per_kandangs?.[kandangExpenseIdx].cost_items?.[
|
|
||||||
expenseIdx
|
|
||||||
] instanceof Object &&
|
|
||||||
formik.errors.cost_per_kandangs?.[kandangExpenseIdx].cost_items?.[
|
|
||||||
expenseIdx
|
|
||||||
]?.[column]
|
|
||||||
)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card
|
|
||||||
className={{
|
|
||||||
wrapper: cn('w-full', className?.wrapper),
|
|
||||||
body: 'p-4 shadow',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div className='mb-4 text-center'>
|
|
||||||
<h4 className='font-bold text-xl'>
|
|
||||||
Rincian Pengajuan Biaya Operasional
|
|
||||||
</h4>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='w-full flex flex-col gap-6'>
|
|
||||||
{(formik.values.cost_per_kandangs.length === 0 ||
|
|
||||||
!formik.values.supplier?.value) && (
|
|
||||||
<div>
|
|
||||||
<p className='text-sm text-gray-400 text-center'>
|
|
||||||
Pilih kandang terlebih dahulu!
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{formik.values.cost_per_kandangs.length > 0 &&
|
|
||||||
formik.values.supplier?.value &&
|
|
||||||
formik.values.cost_per_kandangs.map(
|
|
||||||
(kandangExpense, kandangExpenseIdx) => {
|
|
||||||
const kandangName = formik.values.kandangs?.find(
|
|
||||||
(kandang) => kandang.id === kandangExpense.kandang_id
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
kandangName?.name && (
|
|
||||||
<div
|
|
||||||
key={`kandangExpense-${kandangExpenseIdx}`}
|
|
||||||
className='w-full flex flex-col gap-4'
|
|
||||||
>
|
|
||||||
<div>
|
|
||||||
<h5 className='mb-2 text-lg font-bold text-center'>
|
|
||||||
Biaya {kandangName?.name}
|
|
||||||
</h5>
|
|
||||||
|
|
||||||
<div className='overflow-x-auto'>
|
|
||||||
<table className='table'>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Nonstock</th>
|
|
||||||
<th>Total Kuantitas</th>
|
|
||||||
<th>Total Biaya</th>
|
|
||||||
<th>Catatan</th>
|
|
||||||
{type !== 'detail' && <th>Aksi</th>}
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
|
|
||||||
<tbody>
|
|
||||||
{kandangExpense.cost_items.map(
|
|
||||||
(expenseItem, expenseIdx) => (
|
|
||||||
<tr key={`expense-${expenseIdx}`}>
|
|
||||||
<td className='p-2'>
|
|
||||||
<SelectInput
|
|
||||||
placeholder='Pilih Nonstock'
|
|
||||||
value={expenseItem.nonstock}
|
|
||||||
onChange={(val) => {
|
|
||||||
nonstockChangeHandler(
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx,
|
|
||||||
val
|
|
||||||
);
|
|
||||||
}}
|
|
||||||
options={nonstockOptions}
|
|
||||||
isLoading={isLoadingNonstockOptions}
|
|
||||||
onInputChange={setNonstockInputValue}
|
|
||||||
className={{ wrapper: 'min-w-48' }}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td className='p-2'>
|
|
||||||
<NumberInput
|
|
||||||
required
|
|
||||||
name={`cost_per_kandangs[${kandangExpenseIdx}].cost_items[${expenseIdx}].quantity`}
|
|
||||||
placeholder='Masukkan Total Kuantitas'
|
|
||||||
value={
|
|
||||||
formik.values.cost_per_kandangs[
|
|
||||||
kandangExpenseIdx
|
|
||||||
].cost_items[expenseIdx].quantity ?? ''
|
|
||||||
}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
onBlur={formik.handleBlur}
|
|
||||||
isError={isExpenseRepeaterInputError(
|
|
||||||
'quantity',
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx
|
|
||||||
)}
|
|
||||||
className={{ wrapper: 'min-w-24' }}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td className='p-2'>
|
|
||||||
<NumberInput
|
|
||||||
name={`cost_per_kandangs[${kandangExpenseIdx}].cost_items[${expenseIdx}].total_cost`}
|
|
||||||
placeholder='Masukkan Total Biaya'
|
|
||||||
value={
|
|
||||||
formik.values.cost_per_kandangs[
|
|
||||||
kandangExpenseIdx
|
|
||||||
].cost_items[expenseIdx].total_cost ??
|
|
||||||
''
|
|
||||||
}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
onBlur={formik.handleBlur}
|
|
||||||
isError={isExpenseRepeaterInputError(
|
|
||||||
'total_cost',
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx
|
|
||||||
)}
|
|
||||||
inputPrefix={
|
|
||||||
<span className='text-gray-600 font-medium'>
|
|
||||||
Rp
|
|
||||||
</span>
|
|
||||||
}
|
|
||||||
className={{ wrapper: 'min-w-24' }}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td className='p-2'>
|
|
||||||
<TextInput
|
|
||||||
name={`cost_per_kandangs[${kandangExpenseIdx}].cost_items[${expenseIdx}].notes`}
|
|
||||||
placeholder='Tuliskan catatan'
|
|
||||||
value={
|
|
||||||
formik.values.cost_per_kandangs[
|
|
||||||
kandangExpenseIdx
|
|
||||||
].cost_items[expenseIdx].notes ?? ''
|
|
||||||
}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
onBlur={formik.handleBlur}
|
|
||||||
isError={isExpenseRepeaterInputError(
|
|
||||||
'notes',
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx
|
|
||||||
)}
|
|
||||||
className={{ wrapper: 'min-w-24' }}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
{type !== 'detail' && (
|
|
||||||
<td>
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='error'
|
|
||||||
onClick={() =>
|
|
||||||
deleteExpenseItemHandler(
|
|
||||||
kandangExpenseIdx,
|
|
||||||
expenseIdx
|
|
||||||
)
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon='material-symbols:delete-outline-rounded'
|
|
||||||
width={24}
|
|
||||||
height={24}
|
|
||||||
/>
|
|
||||||
</Button>
|
|
||||||
</td>
|
|
||||||
)}
|
|
||||||
</tr>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{type !== 'detail' && (
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
variant='outline'
|
|
||||||
color='success'
|
|
||||||
onClick={() => addExpenseItemHandler(kandangExpenseIdx)}
|
|
||||||
className='w-fit mx-auto'
|
|
||||||
>
|
|
||||||
<Icon icon='ic:round-plus' width={24} height={24} />{' '}
|
|
||||||
Tambah
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpenseRequestKandangDetailExpense;
|
|
||||||
@@ -1,651 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import {
|
|
||||||
Document,
|
|
||||||
Image,
|
|
||||||
Link,
|
|
||||||
Page,
|
|
||||||
StyleSheet,
|
|
||||||
Text,
|
|
||||||
View,
|
|
||||||
} from '@react-pdf/renderer';
|
|
||||||
|
|
||||||
import { Expense } from '@/types/api/expense';
|
|
||||||
import { formatCurrency, formatDate, formatNumber } from '@/lib/helper';
|
|
||||||
|
|
||||||
interface ExpensePDFProps {
|
|
||||||
expense?: Expense;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpensePDFStyle = StyleSheet.create({
|
|
||||||
page: {
|
|
||||||
paddingTop: 24,
|
|
||||||
paddingBottom: 64,
|
|
||||||
paddingHorizontal: 32,
|
|
||||||
},
|
|
||||||
|
|
||||||
companyInfoHeader: {
|
|
||||||
width: '100%',
|
|
||||||
display: 'flex',
|
|
||||||
flexDirection: 'row',
|
|
||||||
justifyContent: 'space-between',
|
|
||||||
alignItems: 'flex-start',
|
|
||||||
marginBottom: 8,
|
|
||||||
},
|
|
||||||
companyLogo: {
|
|
||||||
width: 64,
|
|
||||||
height: 'auto',
|
|
||||||
},
|
|
||||||
companyInfoHeaderDate: {
|
|
||||||
paddingTop: 8,
|
|
||||||
fontSize: 12,
|
|
||||||
},
|
|
||||||
companyName: {
|
|
||||||
fontSize: 12,
|
|
||||||
fontWeight: 'bold',
|
|
||||||
marginBottom: 4,
|
|
||||||
},
|
|
||||||
companyAddress: {
|
|
||||||
fontSize: 8,
|
|
||||||
maxWidth: 400,
|
|
||||||
marginBottom: 10,
|
|
||||||
},
|
|
||||||
|
|
||||||
title: {
|
|
||||||
marginTop: 16,
|
|
||||||
fontSize: 16,
|
|
||||||
lineHeight: '150%',
|
|
||||||
textAlign: 'center',
|
|
||||||
fontFamily: 'Times-Roman',
|
|
||||||
fontWeight: 'bold',
|
|
||||||
},
|
|
||||||
|
|
||||||
footer: {
|
|
||||||
width: '100%',
|
|
||||||
display: 'flex',
|
|
||||||
flexDirection: 'row',
|
|
||||||
justifyContent: 'space-between',
|
|
||||||
alignItems: 'center',
|
|
||||||
paddingHorizontal: 32,
|
|
||||||
|
|
||||||
position: 'absolute',
|
|
||||||
fontSize: 10,
|
|
||||||
bottom: 30,
|
|
||||||
left: 0,
|
|
||||||
right: 0,
|
|
||||||
textAlign: 'center',
|
|
||||||
color: 'grey',
|
|
||||||
},
|
|
||||||
|
|
||||||
// wrapper
|
|
||||||
generalInfoTable: {
|
|
||||||
width: '100%',
|
|
||||||
marginTop: 8,
|
|
||||||
borderWidth: 1,
|
|
||||||
borderColor: '#000000',
|
|
||||||
borderBottomWidth: 0,
|
|
||||||
fontSize: 12,
|
|
||||||
},
|
|
||||||
|
|
||||||
generalInfoTableRow: {
|
|
||||||
flexDirection: 'row',
|
|
||||||
borderBottomWidth: 1,
|
|
||||||
borderBottomColor: '#000000',
|
|
||||||
},
|
|
||||||
|
|
||||||
// columns
|
|
||||||
generalInfoTableColLabel: {
|
|
||||||
width: '30%',
|
|
||||||
paddingVertical: 6,
|
|
||||||
paddingHorizontal: 8,
|
|
||||||
},
|
|
||||||
generalInfoTableColSeparator: {
|
|
||||||
width: '3%',
|
|
||||||
justifyContent: 'center',
|
|
||||||
alignItems: 'center',
|
|
||||||
paddingVertical: 6,
|
|
||||||
},
|
|
||||||
generalInfoTableColValue: {
|
|
||||||
width: '67%',
|
|
||||||
paddingVertical: 6,
|
|
||||||
paddingHorizontal: 8,
|
|
||||||
},
|
|
||||||
|
|
||||||
generalInfoTableLabelText: {
|
|
||||||
fontWeight: 'bold',
|
|
||||||
},
|
|
||||||
generalInfoTableValueText: {},
|
|
||||||
|
|
||||||
// expense detail table
|
|
||||||
expenseDetailContainer: {
|
|
||||||
width: '100%',
|
|
||||||
marginTop: 12,
|
|
||||||
},
|
|
||||||
expenseDetailTitle: {
|
|
||||||
fontSize: 14,
|
|
||||||
lineHeight: '150%',
|
|
||||||
fontFamily: 'Times-Roman',
|
|
||||||
fontWeight: 'bold',
|
|
||||||
textAlign: 'center',
|
|
||||||
},
|
|
||||||
kandangExpenseContainer: {
|
|
||||||
width: '100%',
|
|
||||||
marginTop: 8,
|
|
||||||
},
|
|
||||||
kandangExpenseTitle: {
|
|
||||||
fontSize: 14,
|
|
||||||
lineHeight: '150%',
|
|
||||||
fontFamily: 'Times-Roman',
|
|
||||||
fontWeight: 'bold',
|
|
||||||
textAlign: 'center',
|
|
||||||
},
|
|
||||||
kandangExpenseTable: {
|
|
||||||
width: '100%',
|
|
||||||
marginTop: 8,
|
|
||||||
borderWidth: 1,
|
|
||||||
borderColor: '#000000',
|
|
||||||
borderBottomWidth: 0,
|
|
||||||
fontSize: 12,
|
|
||||||
},
|
|
||||||
kandangExpenseTableRow: {
|
|
||||||
flexDirection: 'row',
|
|
||||||
borderBottomWidth: 1,
|
|
||||||
borderBottomColor: '#000000',
|
|
||||||
},
|
|
||||||
kandangExpenseTableColLabel: {
|
|
||||||
width: '20%',
|
|
||||||
paddingVertical: 6,
|
|
||||||
paddingHorizontal: 8,
|
|
||||||
},
|
|
||||||
kandangExpenseTableColLabelBorderRight: {
|
|
||||||
borderRight: '1px solid #000000',
|
|
||||||
},
|
|
||||||
kandangExpenseTableColNonstock: {
|
|
||||||
width: '20%',
|
|
||||||
},
|
|
||||||
kandangExpenseTableColNote: {
|
|
||||||
width: '40%',
|
|
||||||
},
|
|
||||||
kandangExpenseHeaderLabelText: {
|
|
||||||
fontWeight: 'bold',
|
|
||||||
},
|
|
||||||
kandangExpenseLabelText: {
|
|
||||||
fontSize: 10,
|
|
||||||
},
|
|
||||||
kandangExpenseTableFooterColTotalExpenseCaption: {
|
|
||||||
width: '40%',
|
|
||||||
paddingVertical: 6,
|
|
||||||
paddingHorizontal: 8,
|
|
||||||
textAlign: 'right',
|
|
||||||
},
|
|
||||||
kandangExpenseTableFooterColTotalExpenseValue: {
|
|
||||||
width: '60%',
|
|
||||||
paddingVertical: 6,
|
|
||||||
paddingHorizontal: 8,
|
|
||||||
},
|
|
||||||
|
|
||||||
// utils
|
|
||||||
doubleDivider: {
|
|
||||||
width: '100%',
|
|
||||||
height: 6,
|
|
||||||
borderTop: '2px solid black',
|
|
||||||
borderBottom: '2px solid black',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const ExpensePDF = ({ expense }: ExpensePDFProps) => {
|
|
||||||
const isLatestApprovalRejected =
|
|
||||||
expense?.latest_approval?.action === 'REJECTED';
|
|
||||||
const isExpenseRealized =
|
|
||||||
expense?.latest_approval?.step_number &&
|
|
||||||
expense?.latest_approval.step_number >= 4;
|
|
||||||
|
|
||||||
const realizationStatus = isExpenseRealized
|
|
||||||
? 'Sudah Realisasi'
|
|
||||||
: 'Belum Realisasi';
|
|
||||||
|
|
||||||
const rows = [
|
|
||||||
{ label: 'Nomor PO', value: expense?.po_number },
|
|
||||||
{ label: 'Nomor Referensi', value: expense?.reference_number },
|
|
||||||
{
|
|
||||||
label: 'Kategori',
|
|
||||||
value:
|
|
||||||
expense?.category === 'BOP'
|
|
||||||
? 'Biaya Operasional'
|
|
||||||
: expense?.category === 'NON-BOP'
|
|
||||||
? 'Non Biaya Operasional'
|
|
||||||
: '',
|
|
||||||
},
|
|
||||||
{ label: 'Lokasi', value: expense?.location.name },
|
|
||||||
{
|
|
||||||
label: 'Kandang',
|
|
||||||
value: expense?.kandangs.map((item) => item.name).join(', '),
|
|
||||||
},
|
|
||||||
{ label: 'Vendor', value: expense?.supplier.name },
|
|
||||||
{
|
|
||||||
label: 'Tanggal Transaksi',
|
|
||||||
value: formatDate(expense?.expense_date, 'DD MMMM YYYY'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Tanggal Realisasi',
|
|
||||||
value: expense?.realization_date
|
|
||||||
? formatDate(expense?.realization_date, 'DD MMMM YYYY')
|
|
||||||
: '-',
|
|
||||||
},
|
|
||||||
{ label: 'Nama Pengaju', value: expense?.created_user.name },
|
|
||||||
{
|
|
||||||
label: 'Nominal Biaya',
|
|
||||||
value: formatCurrency(expense?.grand_total ?? 0),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Nominal Pengajuan',
|
|
||||||
value: formatCurrency(expense?.total_pengajuan ?? 0),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Nominal Realisasi',
|
|
||||||
value: expense?.total_realisasi
|
|
||||||
? formatCurrency(expense?.total_realisasi ?? 0)
|
|
||||||
: '-',
|
|
||||||
},
|
|
||||||
{ label: 'Status Pencairan', value: realizationStatus },
|
|
||||||
{
|
|
||||||
label: 'Status Biaya',
|
|
||||||
value: isLatestApprovalRejected
|
|
||||||
? 'Ditolak'
|
|
||||||
: expense?.latest_approval?.step_name,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Document>
|
|
||||||
<Page style={ExpensePDFStyle.page}>
|
|
||||||
<View>
|
|
||||||
<View style={ExpensePDFStyle.companyInfoHeader}>
|
|
||||||
<Image
|
|
||||||
style={ExpensePDFStyle.companyLogo}
|
|
||||||
src='/assets/img/lti-logo.png'
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Text style={ExpensePDFStyle.companyInfoHeaderDate}>
|
|
||||||
{formatDate(Date.now(), 'DD MMMM YYYY')}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
|
|
||||||
<View>
|
|
||||||
<Text style={ExpensePDFStyle.companyName}>
|
|
||||||
PT LUMBUNG TELUR INDONESIA
|
|
||||||
</Text>
|
|
||||||
<Text style={ExpensePDFStyle.companyAddress}>
|
|
||||||
SOHO Building Lt.3 (Paris Van Java), Jalan Karang Tinggal, Kel.
|
|
||||||
Cipedes, Kec. Sukajadi, Kota Bandung 40162
|
|
||||||
</Text>
|
|
||||||
|
|
||||||
<View style={ExpensePDFStyle.doubleDivider} />
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
|
|
||||||
<Text style={ExpensePDFStyle.title}>
|
|
||||||
Laporan{' '}
|
|
||||||
{expense?.category === 'BOP'
|
|
||||||
? 'Biaya Operasional'
|
|
||||||
: 'Non-Biaya Operasional'}{' '}
|
|
||||||
{expense?.po_number}
|
|
||||||
</Text>
|
|
||||||
|
|
||||||
{/* General info table */}
|
|
||||||
<View style={ExpensePDFStyle.generalInfoTable}>
|
|
||||||
{rows.map((row) => (
|
|
||||||
<View style={ExpensePDFStyle.generalInfoTableRow} key={row.label}>
|
|
||||||
<View style={ExpensePDFStyle.generalInfoTableColLabel}>
|
|
||||||
<Text style={ExpensePDFStyle.generalInfoTableLabelText}>
|
|
||||||
{row.label}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View style={ExpensePDFStyle.generalInfoTableColSeparator}>
|
|
||||||
<Text>:</Text>
|
|
||||||
</View>
|
|
||||||
<View style={ExpensePDFStyle.generalInfoTableColValue}>
|
|
||||||
<Text style={ExpensePDFStyle.generalInfoTableValueText}>
|
|
||||||
{row.value}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
))}
|
|
||||||
</View>
|
|
||||||
|
|
||||||
{/* Detail expense request */}
|
|
||||||
<View
|
|
||||||
minPresenceAhead={80}
|
|
||||||
style={ExpensePDFStyle.expenseDetailContainer}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.expenseDetailTitle}>
|
|
||||||
Rincian Pengajuan Biaya Operasional
|
|
||||||
</Text>
|
|
||||||
|
|
||||||
{expense?.kandangs.map((kandangExpense, kandangExpenseIdx) => {
|
|
||||||
let expenseRequestTotal = 0;
|
|
||||||
|
|
||||||
kandangExpense.pengajuans?.forEach(
|
|
||||||
(item) => (expenseRequestTotal += item.total_price)
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<View
|
|
||||||
key={kandangExpenseIdx}
|
|
||||||
style={ExpensePDFStyle.kandangExpenseContainer}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseTitle}>
|
|
||||||
{kandangExpense.name}
|
|
||||||
</Text>
|
|
||||||
|
|
||||||
<View style={ExpensePDFStyle.kandangExpenseTable}>
|
|
||||||
<View style={[ExpensePDFStyle.kandangExpenseTableRow]}>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColNonstock,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Nonstock
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Kuantitas
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Total Biaya
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColNote,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Catatan
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
|
|
||||||
{kandangExpense.pengajuans?.map((pengajuan, pengajuanIdx) => (
|
|
||||||
<View
|
|
||||||
key={pengajuanIdx}
|
|
||||||
style={ExpensePDFStyle.kandangExpenseTableRow}
|
|
||||||
>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColNonstock,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseLabelText}>
|
|
||||||
{pengajuan.nonstock.name}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseLabelText}>
|
|
||||||
{formatNumber(pengajuan.qty)}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseLabelText}>
|
|
||||||
{formatCurrency(pengajuan.total_price)}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColNote,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseLabelText}>
|
|
||||||
{pengajuan.note}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
))}
|
|
||||||
|
|
||||||
<View style={[ExpensePDFStyle.kandangExpenseTableRow]}>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableFooterColTotalExpenseCaption,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Total Biaya Keseluruhan
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableFooterColTotalExpenseValue,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
{formatCurrency(expenseRequestTotal)}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</View>
|
|
||||||
|
|
||||||
{/* Detail expense realization */}
|
|
||||||
<View
|
|
||||||
minPresenceAhead={80}
|
|
||||||
style={ExpensePDFStyle.expenseDetailContainer}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.expenseDetailTitle}>
|
|
||||||
Rincian Realisasi Biaya Operasional
|
|
||||||
</Text>
|
|
||||||
|
|
||||||
{expense?.kandangs.map((kandangExpense, kandangExpenseIdx) => {
|
|
||||||
let expenseRealizationTotal = 0;
|
|
||||||
|
|
||||||
kandangExpense.realisasi?.forEach(
|
|
||||||
(item) => (expenseRealizationTotal += item.total_price)
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<View
|
|
||||||
key={kandangExpenseIdx}
|
|
||||||
style={ExpensePDFStyle.kandangExpenseContainer}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseTitle}>
|
|
||||||
{kandangExpense.name}
|
|
||||||
</Text>
|
|
||||||
|
|
||||||
<View style={ExpensePDFStyle.kandangExpenseTable}>
|
|
||||||
<View style={[ExpensePDFStyle.kandangExpenseTableRow]}>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColNonstock,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Nonstock
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Kuantitas
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Total Biaya
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColNote,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Catatan
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
|
|
||||||
{kandangExpense.realisasi?.map((realisasi, realisasiIdx) => (
|
|
||||||
<View
|
|
||||||
key={realisasiIdx}
|
|
||||||
style={ExpensePDFStyle.kandangExpenseTableRow}
|
|
||||||
>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColNonstock,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseLabelText}>
|
|
||||||
{realisasi.nonstock.name}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseLabelText}>
|
|
||||||
{formatNumber(realisasi.qty)}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseLabelText}>
|
|
||||||
{formatCurrency(realisasi.total_price)}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabel,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColNote,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text style={ExpensePDFStyle.kandangExpenseLabelText}>
|
|
||||||
{realisasi.note}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
))}
|
|
||||||
|
|
||||||
<View style={[ExpensePDFStyle.kandangExpenseTableRow]}>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableFooterColTotalExpenseCaption,
|
|
||||||
ExpensePDFStyle.kandangExpenseTableColLabelBorderRight,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
Total Biaya Keseluruhan
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
ExpensePDFStyle.kandangExpenseTableFooterColTotalExpenseValue,
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<Text
|
|
||||||
style={ExpensePDFStyle.kandangExpenseHeaderLabelText}
|
|
||||||
>
|
|
||||||
{formatCurrency(expenseRealizationTotal)}
|
|
||||||
</Text>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</View>
|
|
||||||
|
|
||||||
<View style={ExpensePDFStyle.footer} fixed>
|
|
||||||
<Link
|
|
||||||
src={`${process.env.NEXT_PUBLIC_LTI_URL}expense/detail?expenseId=${expense?.id}`}
|
|
||||||
>
|
|
||||||
{expense?.po_number}
|
|
||||||
</Link>
|
|
||||||
|
|
||||||
<Text
|
|
||||||
render={({ pageNumber, totalPages }) =>
|
|
||||||
`${pageNumber} / ${totalPages}`
|
|
||||||
}
|
|
||||||
fixed
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
</Page>
|
|
||||||
</Document>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpensePDF;
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { pdf } from '@react-pdf/renderer';
|
|
||||||
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import ExpensePDF from '@/components/pages/expense/pdf/ExpensePDF';
|
|
||||||
|
|
||||||
import { Expense } from '@/types/api/expense';
|
|
||||||
|
|
||||||
interface ExpensePDFPreviewButtonProps {
|
|
||||||
expense?: Expense;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExpensePDFPreviewButton = ({ expense }: ExpensePDFPreviewButtonProps) => {
|
|
||||||
const openPdf = async () => {
|
|
||||||
const expensePdfBlob = await pdf(<ExpensePDF expense={expense} />).toBlob();
|
|
||||||
|
|
||||||
const expensePdfUrl = URL.createObjectURL(expensePdfBlob);
|
|
||||||
window.open(expensePdfUrl, '_blank');
|
|
||||||
};
|
|
||||||
|
|
||||||
const downloadPdf = async () => {
|
|
||||||
const blob = await pdf(<ExpensePDF expense={expense} />).toBlob();
|
|
||||||
const url = URL.createObjectURL(blob);
|
|
||||||
|
|
||||||
const link = document.createElement('a');
|
|
||||||
link.href = url;
|
|
||||||
link.download = `${expense?.po_number}.pdf`;
|
|
||||||
link.click();
|
|
||||||
|
|
||||||
URL.revokeObjectURL(url);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-fit flex flex-col'>
|
|
||||||
<Button onClick={downloadPdf} className='text-xs'>
|
|
||||||
<Icon icon='bx:file' width={16} height={16} />
|
|
||||||
{expense?.po_number}
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
onClick={openPdf}
|
|
||||||
variant='link'
|
|
||||||
className='p-0 mt-1 text-xs justify-start'
|
|
||||||
>
|
|
||||||
Lihat Dokumen
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ExpensePDFPreviewButton;
|
|
||||||
@@ -71,8 +71,9 @@ const InventoryAdjustmentForm = ({
|
|||||||
Partial<InventoryAdjustmentFormValues>
|
Partial<InventoryAdjustmentFormValues>
|
||||||
>(() => {
|
>(() => {
|
||||||
return {
|
return {
|
||||||
product_id: initialValues?.product_warehouse?.product_id ?? 0,
|
product_category_id: initialValues?.product_category?.id ?? 0,
|
||||||
warehouse_id: initialValues?.product_warehouse?.warehouse_id ?? 0,
|
product_id: initialValues?.product?.id ?? 0,
|
||||||
|
warehouse_id: initialValues?.warehouse?.id ?? 0,
|
||||||
product_category: undefined,
|
product_category: undefined,
|
||||||
product: undefined,
|
product: undefined,
|
||||||
warehouse: undefined,
|
warehouse: undefined,
|
||||||
|
|||||||
@@ -1,44 +1,24 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { ChangeEventHandler, useState } from 'react';
|
import { useState } from 'react';
|
||||||
import useSWR from 'swr';
|
import useSWR from 'swr';
|
||||||
import { SortingState, CellContext, ColumnDef } from '@tanstack/react-table';
|
import { SortingState } from '@tanstack/react-table';
|
||||||
|
|
||||||
import Table from '@/components/Table';
|
import Table from '@/components/Table';
|
||||||
import { Icon } from '@iconify/react';
|
import { useModal } from '@/components/Modal';
|
||||||
|
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
||||||
import { Movement } from '@/types/api/inventory/movement';
|
import { Movement } from '@/types/api/inventory/movement';
|
||||||
import { MovementApi } from '@/services/api/inventory';
|
import { MovementApi } from '@/services/api/inventory';
|
||||||
import { cn } from '@/lib/helper';
|
import { cn } from '@/lib/helper';
|
||||||
import { isResponseSuccess } from '@/lib/api-helper';
|
import { isResponseSuccess } from '@/lib/api-helper';
|
||||||
import { useTableFilter } from '@/services/hooks/useTableFilter';
|
import { useTableFilter } from '@/services/hooks/useTableFilter';
|
||||||
import { ROWS_OPTIONS } from '@/config/constant';
|
import { ROWS_OPTIONS } from '@/config/constant';
|
||||||
|
import { TableToolbar } from '@/components/table/TableToolbar';
|
||||||
|
import { TableRowSizeSelector } from '@/components/table/TableRowSizeSelector';
|
||||||
import { OptionType } from '@/components/input/SelectInput';
|
import { OptionType } from '@/components/input/SelectInput';
|
||||||
import Button from '@/components/Button';
|
|
||||||
import DebouncedTextInput from '@/components/input/DebouncedTextInput';
|
|
||||||
import SelectInput from '@/components/input/SelectInput';
|
|
||||||
import RowDropdownOptions from '@/components/table/RowDropdownOptions';
|
import RowDropdownOptions from '@/components/table/RowDropdownOptions';
|
||||||
import RowCollapseOptions from '@/components/table/RowCollapseOptions';
|
import RowCollapseOptions from '@/components/table/RowCollapseOptions';
|
||||||
import RowOptionsMenuWrapper from '@/components/table/RowOptionsMenuWrapper';
|
import { TableRowOptions } from '@/components/table/TableRowOptions';
|
||||||
|
|
||||||
const RowOptionsMenu = ({
|
|
||||||
type = 'dropdown',
|
|
||||||
props,
|
|
||||||
}: {
|
|
||||||
type: 'dropdown' | 'collapse';
|
|
||||||
props: CellContext<Movement, unknown>;
|
|
||||||
}) => (
|
|
||||||
<RowOptionsMenuWrapper type={type}>
|
|
||||||
<Button
|
|
||||||
href={`/inventory/movement/detail/?movementId=${props.row.original.id}`}
|
|
||||||
variant='ghost'
|
|
||||||
color='primary'
|
|
||||||
className='justify-start text-sm'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:eye-outline' width={16} height={16} />
|
|
||||||
Detail
|
|
||||||
</Button>
|
|
||||||
</RowOptionsMenuWrapper>
|
|
||||||
);
|
|
||||||
|
|
||||||
const MovementTable = () => {
|
const MovementTable = () => {
|
||||||
const {
|
const {
|
||||||
@@ -48,24 +28,30 @@ const MovementTable = () => {
|
|||||||
setPageSize,
|
setPageSize,
|
||||||
toQueryString: getTableFilterQueryString,
|
toQueryString: getTableFilterQueryString,
|
||||||
} = useTableFilter({
|
} = useTableFilter({
|
||||||
initial: {
|
initial: { search: '' },
|
||||||
search: '',
|
paramMap: { page: 'page', pageSize: 'limit' },
|
||||||
},
|
|
||||||
paramMap: {
|
|
||||||
page: 'page',
|
|
||||||
pageSize: 'limit',
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const [sorting, setSorting] = useState<SortingState>([]);
|
const [sorting, setSorting] = useState<SortingState>([]);
|
||||||
|
const [selectedMovement, setSelectedMovement] = useState<
|
||||||
|
Movement | undefined
|
||||||
|
>(undefined);
|
||||||
|
const [isDeleteLoading, setIsDeleteLoading] = useState(false);
|
||||||
|
|
||||||
const { data: movements, isLoading } = useSWR(
|
const deleteModal = useModal();
|
||||||
|
|
||||||
|
const {
|
||||||
|
data: movements,
|
||||||
|
isLoading,
|
||||||
|
mutate: refreshMovements,
|
||||||
|
} = useSWR(
|
||||||
`${MovementApi.basePath}${getTableFilterQueryString()}`,
|
`${MovementApi.basePath}${getTableFilterQueryString()}`,
|
||||||
MovementApi.getAllFetcher
|
MovementApi.getAllFetcher
|
||||||
);
|
);
|
||||||
|
|
||||||
const searchChangeHandler: ChangeEventHandler<HTMLInputElement> = (e) => {
|
const searchChangeHandler = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
updateFilter('search', e.target.value);
|
updateFilter('search', e.target.value);
|
||||||
|
setPage(1);
|
||||||
};
|
};
|
||||||
|
|
||||||
const pageSizeChangeHandler = (val: OptionType | OptionType[] | null) => {
|
const pageSizeChangeHandler = (val: OptionType | OptionType[] | null) => {
|
||||||
@@ -74,143 +60,167 @@ const MovementTable = () => {
|
|||||||
setPage(1);
|
setPage(1);
|
||||||
};
|
};
|
||||||
|
|
||||||
const movementColumns: ColumnDef<Movement>[] = [
|
const confirmationModalDeleteClickHandler = async () => {
|
||||||
{
|
setIsDeleteLoading(true);
|
||||||
header: '#',
|
try {
|
||||||
cell: (props) =>
|
await MovementApi.delete(selectedMovement?.id as number);
|
||||||
tableFilterState.pageSize * (tableFilterState.page - 1) +
|
refreshMovements();
|
||||||
props.row.index +
|
deleteModal.closeModal();
|
||||||
1,
|
} finally {
|
||||||
},
|
setIsDeleteLoading(false);
|
||||||
{
|
}
|
||||||
accessorFn: (row) => row.source_warehouse?.name,
|
};
|
||||||
header: 'Gudang Asal',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorFn: (row) => row.destination_warehouse?.name,
|
|
||||||
header: 'Gudang Tujuan',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'transfer_reason',
|
|
||||||
header: 'Catatan',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'transfer_date',
|
|
||||||
header: 'Tanggal',
|
|
||||||
cell: (props) =>
|
|
||||||
new Date(props.row.original.transfer_date).toLocaleDateString('id-ID'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorFn: (row) => {
|
|
||||||
const totalCost = row.deliveries?.reduce(
|
|
||||||
(sum, d) => sum + (d.shipping_cost_total || 0),
|
|
||||||
0
|
|
||||||
);
|
|
||||||
return totalCost?.toLocaleString('id-ID');
|
|
||||||
},
|
|
||||||
header: 'Biaya Pengiriman',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Aksi',
|
|
||||||
cell: (props) => {
|
|
||||||
const currentPageSize = props.table.getPaginationRowModel().rows.length;
|
|
||||||
const currentPageRows = props.table.getPaginationRowModel().flatRows;
|
|
||||||
const currentRowRelativeIndex =
|
|
||||||
currentPageRows.findIndex((r) => r.id === props.row.id) + 1;
|
|
||||||
|
|
||||||
const isLast2Rows = currentRowRelativeIndex > currentPageSize - 2;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{currentPageSize > 2 && (
|
|
||||||
<RowDropdownOptions isLast2Rows={isLast2Rows}>
|
|
||||||
<RowOptionsMenu type='dropdown' props={props} />
|
|
||||||
</RowDropdownOptions>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{currentPageSize <= 2 && (
|
|
||||||
<RowCollapseOptions>
|
|
||||||
<RowOptionsMenu type='collapse' props={props} />
|
|
||||||
</RowCollapseOptions>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className='flex flex-col gap-4'>
|
||||||
<div className='w-full p-0 sm:p-4'>
|
<div className='flex flex-col gap-2 mb-4'>
|
||||||
<div className='flex flex-col gap-2 mb-4'>
|
<TableToolbar
|
||||||
<div className='w-full flex flex-col sm:flex-row justify-between items-end sm:items-center gap-2'>
|
addButton={{
|
||||||
<div className='w-full flex flex-row gap-2'>
|
href: '/inventory/movement/add',
|
||||||
<Button
|
label: 'Tambah',
|
||||||
href='/inventory/movement/add'
|
}}
|
||||||
variant='outline'
|
search={{
|
||||||
color='primary'
|
value: tableFilterState.search,
|
||||||
className='w-full sm:w-fit'
|
onChange: searchChangeHandler,
|
||||||
>
|
placeholder: 'Cari Movement',
|
||||||
<Icon icon='ic:round-plus' width={24} height={24} />
|
|
||||||
Tambah
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<DebouncedTextInput
|
|
||||||
name='search'
|
|
||||||
placeholder='Cari Movement'
|
|
||||||
value={tableFilterState.search}
|
|
||||||
onChange={searchChangeHandler}
|
|
||||||
className={{ wrapper: 'sm:max-w-3xs' }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='flex justify-end gap-4'>
|
|
||||||
<SelectInput
|
|
||||||
label='Baris'
|
|
||||||
options={ROWS_OPTIONS}
|
|
||||||
value={{
|
|
||||||
label: String(tableFilterState.pageSize),
|
|
||||||
value: tableFilterState.pageSize,
|
|
||||||
}}
|
|
||||||
onChange={pageSizeChangeHandler}
|
|
||||||
className={{
|
|
||||||
wrapper:
|
|
||||||
'col-span-6 sm:col-span-4 max-w-28 sm:justify-self-end',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Table<Movement>
|
|
||||||
data={isResponseSuccess(movements) ? movements?.data : []}
|
|
||||||
columns={movementColumns}
|
|
||||||
pageSize={tableFilterState.pageSize}
|
|
||||||
page={isResponseSuccess(movements) ? movements?.meta?.page : 0}
|
|
||||||
totalItems={
|
|
||||||
isResponseSuccess(movements) ? movements?.meta?.total_results : 0
|
|
||||||
}
|
|
||||||
onPageChange={setPage}
|
|
||||||
isLoading={isLoading}
|
|
||||||
sorting={sorting}
|
|
||||||
setSorting={setSorting}
|
|
||||||
className={{
|
|
||||||
containerClassName: cn({
|
|
||||||
'mb-20':
|
|
||||||
isResponseSuccess(movements) && movements?.data?.length === 0,
|
|
||||||
}),
|
|
||||||
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
|
||||||
tableClassName: 'font-inter w-full table-auto min-h-full!',
|
|
||||||
headerRowClassName: 'border-b border-b-gray-200',
|
|
||||||
headerColumnClassName:
|
|
||||||
'px-6 py-3 text-xs font-semibold text-gray-500 last:flex last:flex-row last:justify-end',
|
|
||||||
bodyRowClassName: 'border-b border-b-gray-200',
|
|
||||||
bodyColumnClassName:
|
|
||||||
'px-6 py-3 last:flex last:flex-row last:justify-end',
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
<TableRowSizeSelector
|
||||||
|
value={tableFilterState.pageSize}
|
||||||
|
onChange={pageSizeChangeHandler}
|
||||||
|
options={ROWS_OPTIONS}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</>
|
|
||||||
|
<Table<Movement>
|
||||||
|
data={isResponseSuccess(movements) ? movements?.data : []}
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
header: '#',
|
||||||
|
cell: (props) =>
|
||||||
|
tableFilterState.pageSize * (tableFilterState.page - 1) +
|
||||||
|
props.row.index +
|
||||||
|
1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorFn: (row) => row.source_warehouse?.name,
|
||||||
|
header: 'Gudang Asal',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorFn: (row) => row.destination_warehouse?.name,
|
||||||
|
header: 'Gudang Tujuan',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: 'transfer_reason',
|
||||||
|
header: 'Catatan',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: 'transfer_date',
|
||||||
|
header: 'Tanggal',
|
||||||
|
cell: (props) =>
|
||||||
|
new Date(props.row.original.transfer_date).toLocaleDateString(
|
||||||
|
'id-ID'
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorFn: (row) => {
|
||||||
|
const totalCost = row.deliveries?.reduce(
|
||||||
|
(sum, d) => sum + (d.shipping_cost_total || 0),
|
||||||
|
0
|
||||||
|
);
|
||||||
|
return totalCost?.toLocaleString('id-ID');
|
||||||
|
},
|
||||||
|
header: 'Biaya Pengiriman',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
header: 'Aksi',
|
||||||
|
cell: (props) => {
|
||||||
|
const currentPageSize =
|
||||||
|
props.table.getPaginationRowModel().rows.length;
|
||||||
|
const currentPageRows =
|
||||||
|
props.table.getPaginationRowModel().flatRows;
|
||||||
|
const currentRowRelativeIndex =
|
||||||
|
currentPageRows.findIndex((r) => r.id === props.row.id) + 1;
|
||||||
|
|
||||||
|
const isLast2Rows = currentRowRelativeIndex > currentPageSize - 2;
|
||||||
|
|
||||||
|
const deleteClickHandler = () => {
|
||||||
|
setSelectedMovement(props.row.original);
|
||||||
|
deleteModal.openModal();
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{currentPageSize > 2 && (
|
||||||
|
<RowDropdownOptions isLast2Rows={isLast2Rows}>
|
||||||
|
<TableRowOptions
|
||||||
|
type='dropdown'
|
||||||
|
recordId={props.row.original.id}
|
||||||
|
basePath='/inventory/movement'
|
||||||
|
queryParam='movementId'
|
||||||
|
showEdit={false}
|
||||||
|
showDelete={false}
|
||||||
|
/>
|
||||||
|
</RowDropdownOptions>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{currentPageSize <= 2 && (
|
||||||
|
<RowCollapseOptions>
|
||||||
|
<TableRowOptions
|
||||||
|
type='collapse'
|
||||||
|
recordId={props.row.original.id}
|
||||||
|
basePath='/inventory/movement'
|
||||||
|
queryParam='movementId'
|
||||||
|
showEdit={false}
|
||||||
|
showDelete={false}
|
||||||
|
/>
|
||||||
|
</RowCollapseOptions>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
pageSize={tableFilterState.pageSize}
|
||||||
|
page={isResponseSuccess(movements) ? movements?.meta?.page : 0}
|
||||||
|
totalItems={
|
||||||
|
isResponseSuccess(movements) ? movements?.meta?.total_results : 0
|
||||||
|
}
|
||||||
|
onPageChange={setPage}
|
||||||
|
isLoading={isLoading}
|
||||||
|
sorting={sorting}
|
||||||
|
setSorting={setSorting}
|
||||||
|
className={{
|
||||||
|
containerClassName: cn({
|
||||||
|
'mb-20':
|
||||||
|
isResponseSuccess(movements) && movements?.data?.length === 0,
|
||||||
|
}),
|
||||||
|
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
||||||
|
tableClassName: 'font-inter w-full table-auto min-h-full!',
|
||||||
|
headerRowClassName: 'border-b border-b-gray-200',
|
||||||
|
headerColumnClassName:
|
||||||
|
'px-6 py-3 text-xs font-semibold text-gray-500 last:flex last:flex-row last:justify-end',
|
||||||
|
bodyRowClassName: 'border-b border-b-gray-200',
|
||||||
|
bodyColumnClassName:
|
||||||
|
'px-6 py-3 last:flex last:flex-row last:justify-end',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<ConfirmationModal
|
||||||
|
ref={deleteModal.ref}
|
||||||
|
type='error'
|
||||||
|
text={`Apakah anda yakin ingin menghapus data Movement ini?`}
|
||||||
|
secondaryButton={{
|
||||||
|
text: 'Tidak',
|
||||||
|
}}
|
||||||
|
primaryButton={{
|
||||||
|
text: 'Ya',
|
||||||
|
color: 'error',
|
||||||
|
isLoading: isDeleteLoading,
|
||||||
|
onClick: confirmationModalDeleteClickHandler,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,82 +1,34 @@
|
|||||||
import * as Yup from 'yup';
|
import * as Yup from 'yup';
|
||||||
import { Movement } from '@/types/api/inventory/movement';
|
import { Movement } from '@/types/api/inventory/movement';
|
||||||
|
|
||||||
type MovementFormSchemaType = {
|
|
||||||
transfer_reason: string;
|
|
||||||
transfer_date: string;
|
|
||||||
source_warehouse?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
area?: string;
|
|
||||||
location?: string;
|
|
||||||
} | null;
|
|
||||||
source_warehouse_id: number;
|
|
||||||
destination_warehouse?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
area?: string;
|
|
||||||
location?: string;
|
|
||||||
} | null;
|
|
||||||
destination_warehouse_id: number;
|
|
||||||
products: {
|
|
||||||
product?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
} | null;
|
|
||||||
product_id: number;
|
|
||||||
product_qty: number | string;
|
|
||||||
}[];
|
|
||||||
deliveries: {
|
|
||||||
delivery_cost?: number | string;
|
|
||||||
delivery_cost_per_item?: number | string;
|
|
||||||
document?: File | string | null;
|
|
||||||
document_path?: string | null;
|
|
||||||
driver_name: string;
|
|
||||||
vehicle_plate: string;
|
|
||||||
supplier?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
} | null;
|
|
||||||
supplier_id: number;
|
|
||||||
products: {
|
|
||||||
product?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
} | null;
|
|
||||||
product_id: number;
|
|
||||||
product_qty: number | string;
|
|
||||||
}[];
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
|
|
||||||
export type ProductSchema = {
|
export type ProductSchema = {
|
||||||
product?: {
|
product: {
|
||||||
value: number;
|
value: number;
|
||||||
label: string;
|
label: string;
|
||||||
} | null;
|
} | null;
|
||||||
product_id: number;
|
product_id: number;
|
||||||
product_qty: number | string;
|
product_qty: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DeliverySchema = {
|
export type DeliverySchema = {
|
||||||
delivery_cost?: number | string;
|
delivery_cost?: number | undefined;
|
||||||
delivery_cost_per_item?: number | string;
|
delivery_cost_per_item?: number | undefined;
|
||||||
document?: File | string | null;
|
document?: File | string | null;
|
||||||
document_path?: string | null;
|
document_path?: string | null;
|
||||||
driver_name: string;
|
driver_name: string;
|
||||||
vehicle_plate: string;
|
vehicle_plate: string;
|
||||||
supplier?: {
|
supplier: {
|
||||||
value: number;
|
value: number;
|
||||||
label: string;
|
label: string;
|
||||||
} | null;
|
} | null;
|
||||||
supplier_id: number;
|
supplier_id: number;
|
||||||
products: {
|
products: {
|
||||||
product?: {
|
product: {
|
||||||
value: number;
|
value: number;
|
||||||
label: string;
|
label: string;
|
||||||
} | null;
|
} | null;
|
||||||
product_id: number;
|
product_id: number;
|
||||||
product_qty: number | string;
|
product_qty: number;
|
||||||
}[];
|
}[];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -150,47 +102,38 @@ const DeliveryObjectSchema: Yup.ObjectSchema<DeliverySchema> = Yup.object({
|
|||||||
.required('Produk wajib diisi!'),
|
.required('Produk wajib diisi!'),
|
||||||
});
|
});
|
||||||
|
|
||||||
export const MovementFormSchema: Yup.ObjectSchema<MovementFormSchemaType> =
|
export const MovementFormSchema = Yup.object({
|
||||||
Yup.object({
|
transfer_reason: Yup.string().required('Alasan transfer wajib diisi!'),
|
||||||
transfer_reason: Yup.string().required('Alasan transfer wajib diisi!'),
|
transfer_date: Yup.string().required('Tanggal transfer wajib diisi!'),
|
||||||
transfer_date: Yup.string().required('Tanggal transfer wajib diisi!'),
|
source_warehouse: Yup.object({
|
||||||
source_warehouse: Yup.object({
|
value: Yup.number().min(1).required(),
|
||||||
value: Yup.number().min(1).required(),
|
label: Yup.string().required(),
|
||||||
label: Yup.string().required(),
|
area: Yup.string().optional(),
|
||||||
area: Yup.string().optional(),
|
location: Yup.string().optional(),
|
||||||
location: Yup.string().optional(),
|
}).nullable(),
|
||||||
}).nullable(),
|
source_warehouse_id: Yup.number()
|
||||||
source_warehouse_id: Yup.number()
|
.required('Gudang asal wajib diisi!')
|
||||||
.required('Gudang asal wajib diisi!')
|
.typeError('Gudang asal wajib diisi!'),
|
||||||
.typeError('Gudang asal wajib diisi!'),
|
destination_warehouse: Yup.object({
|
||||||
destination_warehouse: Yup.object({
|
value: Yup.number().min(1).required(),
|
||||||
value: Yup.number().min(1).required(),
|
label: Yup.string().required(),
|
||||||
label: Yup.string().required(),
|
area: Yup.string().optional(),
|
||||||
area: Yup.string().optional(),
|
location: Yup.string().optional(),
|
||||||
location: Yup.string().optional(),
|
}).nullable(),
|
||||||
}).nullable(),
|
destination_warehouse_id: Yup.number()
|
||||||
destination_warehouse_id: Yup.number()
|
.required('Gudang tujuan wajib diisi!')
|
||||||
.required('Gudang tujuan wajib diisi!')
|
.typeError('Gudang tujuan wajib diisi!'),
|
||||||
.typeError('Gudang tujuan wajib diisi!')
|
products: Yup.array()
|
||||||
.test(
|
.of(ProductObjectSchema)
|
||||||
'different-warehouse',
|
.min(1, 'Minimal harus ada 1 produk!')
|
||||||
'Gudang tujuan tidak boleh sama dengan gudang asal!',
|
.required('Produk wajib diisi!'),
|
||||||
function (value) {
|
deliveries: Yup.array()
|
||||||
const { source_warehouse_id } = this.parent;
|
.of(DeliveryObjectSchema)
|
||||||
return (
|
.min(1, 'Minimal harus ada 1 pengiriman!')
|
||||||
!value || !source_warehouse_id || value !== source_warehouse_id
|
.required('Pengiriman wajib diisi!'),
|
||||||
);
|
});
|
||||||
}
|
|
||||||
),
|
export const UpdateMovementFormSchema = MovementFormSchema;
|
||||||
products: Yup.array()
|
|
||||||
.of(ProductObjectSchema)
|
|
||||||
.min(1, 'Minimal harus ada 1 produk!')
|
|
||||||
.required('Produk wajib diisi!'),
|
|
||||||
deliveries: Yup.array()
|
|
||||||
.of(DeliveryObjectSchema)
|
|
||||||
.min(1, 'Minimal harus ada 1 pengiriman!')
|
|
||||||
.required('Pengiriman wajib diisi!'),
|
|
||||||
});
|
|
||||||
|
|
||||||
export type MovementFormValues = Yup.InferType<typeof MovementFormSchema>;
|
export type MovementFormValues = Yup.InferType<typeof MovementFormSchema>;
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,95 @@
|
|||||||
|
import { useCallback, useState } from 'react';
|
||||||
|
import { useRouter } from 'next/navigation';
|
||||||
|
import { toast } from 'react-hot-toast';
|
||||||
|
import { useModal } from '@/components/Modal';
|
||||||
|
import { MovementApi } from '@/services/api/inventory';
|
||||||
|
import {
|
||||||
|
CreateMovementPayload,
|
||||||
|
UpdateMovementPayload,
|
||||||
|
} from '@/types/api/inventory/movement';
|
||||||
|
import { isResponseError } from '@/lib/api-helper';
|
||||||
|
|
||||||
|
export const useMovementFormHandlers = (initialValuesId?: number) => {
|
||||||
|
const router = useRouter();
|
||||||
|
const deleteModal = useModal();
|
||||||
|
const [movementFormErrorMessage, setMovementFormErrorMessage] = useState('');
|
||||||
|
const [isDeleteLoading, setIsDeleteLoading] = useState(false);
|
||||||
|
|
||||||
|
const createMovementHandler = useCallback(
|
||||||
|
async (payload: CreateMovementPayload, documents: File[] = []) => {
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append('data', JSON.stringify(payload));
|
||||||
|
documents.forEach((file, index) => {
|
||||||
|
formData.append(`documents[${index}]`, file);
|
||||||
|
});
|
||||||
|
|
||||||
|
const res = await MovementApi.create(
|
||||||
|
formData as unknown as CreateMovementPayload
|
||||||
|
);
|
||||||
|
if (isResponseError(res)) {
|
||||||
|
setMovementFormErrorMessage(res.message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
toast.success(res?.message as string);
|
||||||
|
router.push('/inventory/movement');
|
||||||
|
},
|
||||||
|
[router]
|
||||||
|
);
|
||||||
|
|
||||||
|
const updateMovementHandler = useCallback(
|
||||||
|
async (
|
||||||
|
movementId: number,
|
||||||
|
payload: UpdateMovementPayload,
|
||||||
|
documents: File[] = []
|
||||||
|
) => {
|
||||||
|
let finalPayload: UpdateMovementPayload | FormData;
|
||||||
|
|
||||||
|
if (documents.length > 0) {
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append('data', JSON.stringify(payload));
|
||||||
|
documents.forEach((file, index) => {
|
||||||
|
formData.append(`documents[${index}]`, file);
|
||||||
|
});
|
||||||
|
|
||||||
|
finalPayload = formData as unknown as UpdateMovementPayload;
|
||||||
|
} else {
|
||||||
|
finalPayload = payload;
|
||||||
|
}
|
||||||
|
|
||||||
|
const res = await MovementApi.update(movementId, finalPayload);
|
||||||
|
if (res?.status === 'error') {
|
||||||
|
setMovementFormErrorMessage(res.message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
toast.success(res?.message as string);
|
||||||
|
router.refresh();
|
||||||
|
router.push('/inventory/movement');
|
||||||
|
},
|
||||||
|
[router]
|
||||||
|
);
|
||||||
|
|
||||||
|
const deleteMovementClickHandler = useCallback(() => {
|
||||||
|
deleteModal.openModal();
|
||||||
|
}, [deleteModal]);
|
||||||
|
|
||||||
|
const confirmationModalDeleteClickHandler = useCallback(async () => {
|
||||||
|
if (!initialValuesId) return;
|
||||||
|
|
||||||
|
setIsDeleteLoading(true);
|
||||||
|
await MovementApi.delete(initialValuesId);
|
||||||
|
deleteModal.closeModal();
|
||||||
|
toast.success('Successfully delete Movement!');
|
||||||
|
setIsDeleteLoading(false);
|
||||||
|
router.push('/inventory/movement');
|
||||||
|
}, [deleteModal, initialValuesId, router]);
|
||||||
|
|
||||||
|
return {
|
||||||
|
deleteModal,
|
||||||
|
movementFormErrorMessage,
|
||||||
|
isDeleteLoading,
|
||||||
|
createMovementHandler,
|
||||||
|
updateMovementHandler,
|
||||||
|
deleteMovementClickHandler,
|
||||||
|
confirmationModalDeleteClickHandler,
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -1,625 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import CheckboxInput from '@/components/input/CheckboxInput';
|
|
||||||
import SelectInput, { OptionType } from '@/components/input/SelectInput';
|
|
||||||
import Modal, { useModal } from '@/components/Modal';
|
|
||||||
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
|
||||||
import ConfirmationModalWithNotes from '@/components/modal/ConfirmationModalWithNotes';
|
|
||||||
import Table from '@/components/Table';
|
|
||||||
import RowCollapseOptions from '@/components/table/RowCollapseOptions';
|
|
||||||
import RowDropdownOptions from '@/components/table/RowDropdownOptions';
|
|
||||||
import { TableRowSizeSelector } from '@/components/table/TableRowSizeSelector';
|
|
||||||
import { TableToolbar } from '@/components/table/TableToolbar';
|
|
||||||
import { ROWS_OPTIONS } from '@/config/constant';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import { cn, formatCurrency, formatDate } from '@/lib/helper';
|
|
||||||
import {
|
|
||||||
MarketingApi,
|
|
||||||
SalesOrderApi,
|
|
||||||
} from '@/services/api/marketing/marketing';
|
|
||||||
import { useTableFilter } from '@/services/hooks/useTableFilter';
|
|
||||||
import { BaseSalesOrder, Marketing } from '@/types/api/marketing/marketing';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import { CellContext, Row } from '@tanstack/react-table';
|
|
||||||
import { useRouter } from 'next/navigation';
|
|
||||||
import { useCallback, useState } from 'react';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
import useSWR from 'swr';
|
|
||||||
|
|
||||||
const RowsOptionsMenu = ({
|
|
||||||
type = 'dropdown',
|
|
||||||
props,
|
|
||||||
deleteClickHandler,
|
|
||||||
deliveryClickHandler,
|
|
||||||
}: {
|
|
||||||
type: 'dropdown' | 'collapse';
|
|
||||||
props: CellContext<Marketing, unknown>;
|
|
||||||
deleteClickHandler: () => void;
|
|
||||||
deliveryClickHandler?: () => void;
|
|
||||||
}) => {
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
tabIndex={type === 'dropdown' ? 0 : undefined}
|
|
||||||
className={cn(
|
|
||||||
{
|
|
||||||
'dropdown-content': type === 'dropdown',
|
|
||||||
'mt-2': type === 'collapse',
|
|
||||||
},
|
|
||||||
'p-2.5 mr-2 bg-base-100 rounded-box z-10 border border-black/10 shadow'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<div className='flex flex-col gap-1'>
|
|
||||||
<Button
|
|
||||||
href={`/marketing/detail?marketingId=${props.row.original.id}`}
|
|
||||||
variant='ghost'
|
|
||||||
color='primary'
|
|
||||||
className='justify-start text-sm'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:eye-outline' width={16} height={16} />
|
|
||||||
Detail
|
|
||||||
</Button>
|
|
||||||
{props.row.original.latest_approval.step_number != 1 && (
|
|
||||||
<Button
|
|
||||||
href={
|
|
||||||
props.row.original.latest_approval.step_number == 3
|
|
||||||
? `/marketing/detail/delivery-orders/edit?marketingId=${props.row.original.id}`
|
|
||||||
: props.row.original.latest_approval.step_number == 2
|
|
||||||
? `/marketing/add/delivery-orders?marketingId=${props.row.original.id}`
|
|
||||||
: undefined
|
|
||||||
}
|
|
||||||
onClick={() => {
|
|
||||||
if (props.row.original.latest_approval.step_number == 2) {
|
|
||||||
deliveryClickHandler?.();
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
variant='ghost'
|
|
||||||
color='success'
|
|
||||||
className='justify-start text-sm'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:truck' width={16} height={16} />
|
|
||||||
Deliver
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
{props.row.original.latest_approval.step_number != 3 && (
|
|
||||||
<Button
|
|
||||||
href={`/marketing/detail/sales-orders/edit?marketingId=${props.row.original.id}`}
|
|
||||||
variant='ghost'
|
|
||||||
color='warning'
|
|
||||||
className='justify-start text-sm'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:pencil-outline' width={16} height={16} />
|
|
||||||
Edit
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
<Button
|
|
||||||
onClick={deleteClickHandler}
|
|
||||||
variant='ghost'
|
|
||||||
color='error'
|
|
||||||
className='text-error hover:text-inherit justify-start text-sm'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:delete-outline' width={16} height={16} />
|
|
||||||
Delete
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const MarketingTable = () => {
|
|
||||||
const [search, setSearch] = useState('');
|
|
||||||
const [page, setPage] = useState(1);
|
|
||||||
const [pageSize, setPageSize] = useState(10);
|
|
||||||
|
|
||||||
const [approveAction, setApproveAction] = useState<'APPROVED' | 'REJECTED'>(
|
|
||||||
'APPROVED'
|
|
||||||
);
|
|
||||||
const [selectedItem, setSelectedItem] = useState<Marketing | null>(null);
|
|
||||||
const [rowSelection, setRowSelection] = useState<Record<string, boolean>>({});
|
|
||||||
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: marketing,
|
|
||||||
isLoading: isLoadingMarketing,
|
|
||||||
mutate: refreshMarketing,
|
|
||||||
} = useSWR(MarketingApi.basePath, MarketingApi.getAllFetcher);
|
|
||||||
|
|
||||||
const deleteModal = useModal();
|
|
||||||
const confirmationModal = useModal();
|
|
||||||
const productsModal = useModal();
|
|
||||||
const deliveryModal = useModal();
|
|
||||||
|
|
||||||
const searchChangeHandler = useCallback(
|
|
||||||
(e: React.ChangeEvent<HTMLInputElement>) => {
|
|
||||||
setSearch(e.target.value);
|
|
||||||
setPage(1);
|
|
||||||
},
|
|
||||||
[]
|
|
||||||
);
|
|
||||||
const pageSizeChangeHandler = useCallback(
|
|
||||||
(val: OptionType | OptionType[] | null) => {
|
|
||||||
const newVal = val as OptionType;
|
|
||||||
setPageSize(newVal.value as number);
|
|
||||||
setPage(1);
|
|
||||||
},
|
|
||||||
[]
|
|
||||||
);
|
|
||||||
|
|
||||||
const approveClickHandler = () => {
|
|
||||||
setApproveAction('APPROVED');
|
|
||||||
confirmationModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const rejectClickHandler = () => {
|
|
||||||
setApproveAction('REJECTED');
|
|
||||||
confirmationModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const productsClickHandler = (item: Marketing) => {
|
|
||||||
setSelectedItem(item);
|
|
||||||
productsModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const deleteMarketingHandler = async () => {
|
|
||||||
const deleteMarketingRes = await MarketingApi.delete(
|
|
||||||
selectedItem?.id as number
|
|
||||||
);
|
|
||||||
if (isResponseSuccess(deleteMarketingRes)) {
|
|
||||||
confirmationModal.closeModal();
|
|
||||||
toast.success(deleteMarketingRes?.message as string);
|
|
||||||
}
|
|
||||||
if (isResponseError(deleteMarketingRes)) {
|
|
||||||
confirmationModal.closeModal();
|
|
||||||
toast.error(deleteMarketingRes?.message as string);
|
|
||||||
}
|
|
||||||
refreshMarketing();
|
|
||||||
deleteModal.closeModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const allData = isResponseSuccess(marketing) ? marketing.data : [];
|
|
||||||
const selectedRowsData = allData.filter(
|
|
||||||
(row) => rowSelection[row.id.toString()]
|
|
||||||
);
|
|
||||||
|
|
||||||
const hasApprovable = selectedRowsData.some(
|
|
||||||
(row) =>
|
|
||||||
row.latest_approval.step_number === 1 &&
|
|
||||||
row.latest_approval.action !== 'REJECTED'
|
|
||||||
);
|
|
||||||
const hasRejectable = selectedRowsData.some(
|
|
||||||
(row) =>
|
|
||||||
row.latest_approval.step_number === 1 &&
|
|
||||||
row.latest_approval.action !== 'REJECTED'
|
|
||||||
);
|
|
||||||
|
|
||||||
const disableApprove = !hasApprovable;
|
|
||||||
const disableReject = !hasRejectable;
|
|
||||||
|
|
||||||
const idsToProcess =
|
|
||||||
approveAction === 'APPROVED'
|
|
||||||
? selectedRowsData
|
|
||||||
.filter((row) => row.latest_approval.step_number === 1)
|
|
||||||
.map((row) => row.id)
|
|
||||||
: selectedRowsData
|
|
||||||
.filter((row) => row.latest_approval.step_number === 2)
|
|
||||||
.map((row) => row.id);
|
|
||||||
|
|
||||||
const approveMarketingHandler = async (notes: string) => {
|
|
||||||
let idsToProcess: number[] = [];
|
|
||||||
|
|
||||||
idsToProcess = selectedRowsData
|
|
||||||
.filter((row) => row.latest_approval.step_number === 1)
|
|
||||||
.map((row) => row.id);
|
|
||||||
|
|
||||||
if (idsToProcess.length === 0) {
|
|
||||||
toast.error(`Tidak ada data yang valid untuk di ${approveAction}.`);
|
|
||||||
confirmationModal.closeModal();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const approveMarketingRes = await SalesOrderApi.bulkApprovals(
|
|
||||||
idsToProcess,
|
|
||||||
approveAction,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
|
|
||||||
if (isResponseSuccess(approveMarketingRes)) {
|
|
||||||
confirmationModal.closeModal();
|
|
||||||
toast.success(approveMarketingRes?.message as string);
|
|
||||||
setRowSelection({});
|
|
||||||
}
|
|
||||||
if (isResponseError(approveMarketingRes)) {
|
|
||||||
confirmationModal.closeModal();
|
|
||||||
toast.error(approveMarketingRes?.message as string);
|
|
||||||
}
|
|
||||||
refreshMarketing();
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalDeliveryClickHandler = async (notes: string) => {
|
|
||||||
const res = await SalesOrderApi.delivery(selectedItem?.id as number, notes);
|
|
||||||
deliveryModal.closeModal();
|
|
||||||
toast.success(res?.message as string);
|
|
||||||
refreshMarketing?.();
|
|
||||||
router.push(
|
|
||||||
`/marketing/detail/delivery-orders/edit?marketingId=${selectedItem?.id}`
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const {
|
|
||||||
state: tableFilterState,
|
|
||||||
updateFilter,
|
|
||||||
toQueryString: getTableFilterToQueryString,
|
|
||||||
} = useTableFilter({
|
|
||||||
initial: {
|
|
||||||
search: '',
|
|
||||||
},
|
|
||||||
paramMap: {
|
|
||||||
page: 'page',
|
|
||||||
pageSize: 'limit',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const getRowCanSelect = (row: Row<Marketing>): boolean => {
|
|
||||||
const approval = row.original.latest_approval;
|
|
||||||
return approval?.step_number === 1 && approval?.action !== 'REJECTED';
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div className='flex flex-col gap-4'>
|
|
||||||
<div className='flex flex-col gap-2 mb-4'>
|
|
||||||
<TableToolbar
|
|
||||||
addButton={{
|
|
||||||
href: '/marketing/add/sales-orders',
|
|
||||||
label: 'Tambah Sales Order',
|
|
||||||
}}
|
|
||||||
search={{
|
|
||||||
value: search,
|
|
||||||
onChange: searchChangeHandler,
|
|
||||||
placeholder: 'Cari Sales Order',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<div className='flex flex-row gap-2'>
|
|
||||||
<Button
|
|
||||||
color='success'
|
|
||||||
onClick={approveClickHandler}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
disabled={disableApprove}
|
|
||||||
>
|
|
||||||
<Icon icon='material-symbols:check' width={24} height={24} />
|
|
||||||
Approve
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
color='error'
|
|
||||||
onClick={rejectClickHandler}
|
|
||||||
className='justify-start text-sm'
|
|
||||||
disabled={disableReject}
|
|
||||||
>
|
|
||||||
<Icon icon='material-symbols:close' width={24} height={24} />
|
|
||||||
Reject
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
<TableRowSizeSelector
|
|
||||||
value={pageSize}
|
|
||||||
onChange={pageSizeChangeHandler}
|
|
||||||
options={ROWS_OPTIONS}
|
|
||||||
>
|
|
||||||
{/* select multiple product */}
|
|
||||||
<SelectInput
|
|
||||||
label='Product'
|
|
||||||
isClearable
|
|
||||||
placeholder='Pilih product'
|
|
||||||
options={[]}
|
|
||||||
isMulti
|
|
||||||
/>
|
|
||||||
{/* select status */}
|
|
||||||
<SelectInput
|
|
||||||
label='Status'
|
|
||||||
isClearable
|
|
||||||
placeholder='Pilih status'
|
|
||||||
options={[]}
|
|
||||||
/>
|
|
||||||
{/* select customer */}
|
|
||||||
<SelectInput
|
|
||||||
label='Customer'
|
|
||||||
isClearable
|
|
||||||
placeholder='Pilih customer'
|
|
||||||
options={[]}
|
|
||||||
/>
|
|
||||||
</TableRowSizeSelector>
|
|
||||||
</div>
|
|
||||||
<Table
|
|
||||||
rowSelection={rowSelection}
|
|
||||||
setRowSelection={setRowSelection}
|
|
||||||
data={allData}
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
id: 'select',
|
|
||||||
header: ({ table }) => {
|
|
||||||
const allRows = table.getRowModel().rows;
|
|
||||||
const selectableRows = allRows.filter(getRowCanSelect);
|
|
||||||
|
|
||||||
const allSelected =
|
|
||||||
selectableRows.length > 0 &&
|
|
||||||
selectableRows.every((row) => row.getIsSelected());
|
|
||||||
|
|
||||||
const someSelected =
|
|
||||||
selectableRows.some((row) => row.getIsSelected()) &&
|
|
||||||
!allSelected;
|
|
||||||
|
|
||||||
const toggleSelectableRows = () => {
|
|
||||||
const shouldSelect = !allSelected;
|
|
||||||
selectableRows.forEach((row) =>
|
|
||||||
row.toggleSelected(shouldSelect)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className='w-full flex flex-row justify-center'>
|
|
||||||
<CheckboxInput
|
|
||||||
name='allRow'
|
|
||||||
checked={allSelected}
|
|
||||||
indeterminate={someSelected}
|
|
||||||
onChange={toggleSelectableRows}
|
|
||||||
disabled={selectableRows.length === 0}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
cell: ({ row }) => {
|
|
||||||
const canSelect = getRowCanSelect(row);
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<CheckboxInput
|
|
||||||
name='row'
|
|
||||||
checked={row.getIsSelected()}
|
|
||||||
disabled={!canSelect}
|
|
||||||
indeterminate={row.getIsSomeSelected()}
|
|
||||||
onChange={row.getToggleSelectedHandler()}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'so_number',
|
|
||||||
header: 'No. Order',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'so_date',
|
|
||||||
header: 'Tanggal',
|
|
||||||
cell: (props) => {
|
|
||||||
return formatDate(props.row.original.so_date, 'DD MMM yyyy');
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'latest_approval.step_name',
|
|
||||||
header: 'Status',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'customer.name',
|
|
||||||
header: 'Customer',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorFn: (row) =>
|
|
||||||
row.sales_order
|
|
||||||
?.map((product) => product.total_price)
|
|
||||||
.reduce((a, b) => a + b, 0) ?? 0,
|
|
||||||
header: 'Grand Total',
|
|
||||||
cell: (props) => {
|
|
||||||
return formatCurrency(
|
|
||||||
props.row.original?.sales_order
|
|
||||||
?.map((product) => product.total_price)
|
|
||||||
.reduce((a, b) => a + b, 0) ?? 0
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
accessorKey: 'marketing_products.length',
|
|
||||||
header: 'Product Details',
|
|
||||||
cell: (props) => {
|
|
||||||
if (props?.row?.original?.sales_order?.length) {
|
|
||||||
if (props?.row?.original?.sales_order?.length > 1) {
|
|
||||||
return (
|
|
||||||
<Button
|
|
||||||
variant='link'
|
|
||||||
color='success'
|
|
||||||
className='p-0 text-none'
|
|
||||||
onClick={() => {
|
|
||||||
productsClickHandler(props?.row?.original);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Lihat {props?.row?.original?.sales_order?.length} Produk
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
const product = props?.row?.original?.sales_order[0];
|
|
||||||
return <>{product?.product_warehouse?.product?.name}</>;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Aksi',
|
|
||||||
cell: (props) => {
|
|
||||||
const currentPageSize =
|
|
||||||
props.table.getPaginationRowModel().rows.length;
|
|
||||||
const currentPageRows =
|
|
||||||
props.table.getPaginationRowModel().flatRows;
|
|
||||||
const currentRowRelativeIndex =
|
|
||||||
currentPageRows.findIndex((r) => r.id === props.row.id) + 1;
|
|
||||||
|
|
||||||
const isLast2Rows =
|
|
||||||
currentRowRelativeIndex > currentPageSize - 2;
|
|
||||||
|
|
||||||
const deleteClickHandler = () => {
|
|
||||||
setSelectedItem(props.row.original);
|
|
||||||
deleteModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const deliveryClickHandler = () => {
|
|
||||||
setSelectedItem(props.row.original);
|
|
||||||
deliveryModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{currentPageSize > 2 && (
|
|
||||||
<RowDropdownOptions isLast2Rows={isLast2Rows}>
|
|
||||||
<RowsOptionsMenu
|
|
||||||
type='dropdown'
|
|
||||||
props={props}
|
|
||||||
deleteClickHandler={deleteClickHandler}
|
|
||||||
deliveryClickHandler={deliveryClickHandler}
|
|
||||||
/>
|
|
||||||
</RowDropdownOptions>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{currentPageSize <= 2 && (
|
|
||||||
<RowCollapseOptions>
|
|
||||||
<RowsOptionsMenu
|
|
||||||
type='collapse'
|
|
||||||
props={props}
|
|
||||||
deleteClickHandler={deleteClickHandler}
|
|
||||||
deliveryClickHandler={deliveryClickHandler}
|
|
||||||
/>
|
|
||||||
</RowCollapseOptions>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
pageSize={pageSize}
|
|
||||||
page={page}
|
|
||||||
onPageChange={setPage}
|
|
||||||
className={{
|
|
||||||
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
|
||||||
tableClassName: 'font-inter w-full table-auto min-h-full!',
|
|
||||||
headerRowClassName: 'border-b border-b-gray-200',
|
|
||||||
headerColumnClassName:
|
|
||||||
'px-6 py-3 text-xs font-semibold text-gray-500 last:flex last:flex-row last:justify-end',
|
|
||||||
bodyRowClassName: 'border-b border-b-gray-200',
|
|
||||||
bodyColumnClassName:
|
|
||||||
'px-6 py-3 last:flex last:flex-row last:justify-end',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={deleteModal.ref}
|
|
||||||
type='error'
|
|
||||||
text={`Apakah anda yakin ingin menghapus data Project Flock ini?`}
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ConfirmationModalWithNotes
|
|
||||||
ref={confirmationModal.ref}
|
|
||||||
type={approveAction === 'APPROVED' ? 'success' : 'error'}
|
|
||||||
text={`Apakah anda yakin ingin ${approveAction == 'APPROVED' ? 'approve' : 'reject'} data penjualan (${idsToProcess.length} data)?`}
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
onClick: confirmationModal.closeModal,
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: approveAction === 'APPROVED' ? 'success' : 'error',
|
|
||||||
onClick: approveMarketingHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={deleteModal.ref}
|
|
||||||
type='error'
|
|
||||||
text={`Apakah anda yakin ingin menghapus data penjualan ini?`}
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
onClick: deleteModal.closeModal,
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
onClick: deleteMarketingHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<ConfirmationModalWithNotes
|
|
||||||
ref={deliveryModal.ref}
|
|
||||||
type={'success'}
|
|
||||||
text={`Apakah anda yakin ingin deliver penjualan ${selectedItem?.so_number}?`}
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'success',
|
|
||||||
onClick: confirmationModalDeliveryClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Modal
|
|
||||||
ref={productsModal.ref}
|
|
||||||
className={{
|
|
||||||
modalBox: 'max-w-2/5 z-100',
|
|
||||||
}}
|
|
||||||
closeOnBackdrop
|
|
||||||
>
|
|
||||||
<div className='flex flex-row justify-between items-center mb-3'>
|
|
||||||
<h4 className='text-xl font-semibold'>Daftar Produk</h4>
|
|
||||||
<Button
|
|
||||||
variant='ghost'
|
|
||||||
color='error'
|
|
||||||
onClick={productsModal.closeModal}
|
|
||||||
className='justify-start text-sm rounded-full'
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:close' width={16} height={16} />
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
<Table<BaseSalesOrder>
|
|
||||||
data={
|
|
||||||
isResponseSuccess(marketing) && selectedItem
|
|
||||||
? (selectedItem?.sales_order ?? [])
|
|
||||||
: []
|
|
||||||
}
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
header: 'Kandang',
|
|
||||||
accessorFn(row) {
|
|
||||||
return row.product_warehouse.warehouse.name;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Produk',
|
|
||||||
accessorFn(row) {
|
|
||||||
return row.product_warehouse.product.name;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Harga Satuan (Rp)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatCurrency(row.unit_price);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
className={{
|
|
||||||
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
|
||||||
tableClassName: 'font-inter w-full table-auto min-h-full!',
|
|
||||||
headerRowClassName: 'border-b border-b-gray-200',
|
|
||||||
headerColumnClassName:
|
|
||||||
'px-6 py-3 text-xs font-semibold text-gray-500 last:flex last:flex-row last:justify-end',
|
|
||||||
bodyRowClassName: 'border-b border-b-gray-200',
|
|
||||||
bodyColumnClassName:
|
|
||||||
'px-6 py-3 last:flex last:flex-row last:justify-end',
|
|
||||||
paginationClassName: 'hidden',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Modal>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
export default MarketingTable;
|
|
||||||
@@ -1,477 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import Card from '@/components/Card';
|
|
||||||
import { FormHeader } from '@/components/helper/form/FormHeader';
|
|
||||||
import { useModal } from '@/components/Modal';
|
|
||||||
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
|
||||||
import ConfirmationModalWithNotes from '@/components/modal/ConfirmationModalWithNotes';
|
|
||||||
import ApprovalSteps, {
|
|
||||||
useApprovalSteps,
|
|
||||||
} from '@/components/pages/ApprovalSteps';
|
|
||||||
import Table from '@/components/Table';
|
|
||||||
import { MARKETING_APPROVAL_LINE } from '@/config/approval-line';
|
|
||||||
import {
|
|
||||||
cn,
|
|
||||||
formatCurrency,
|
|
||||||
formatDate,
|
|
||||||
formatNumber,
|
|
||||||
formatVechicleNumber,
|
|
||||||
} from '@/lib/helper';
|
|
||||||
import {
|
|
||||||
MarketingApi,
|
|
||||||
SalesOrderApi,
|
|
||||||
} from '@/services/api/marketing/marketing';
|
|
||||||
import {
|
|
||||||
BaseDelivery,
|
|
||||||
BaseSalesOrder,
|
|
||||||
Marketing,
|
|
||||||
} from '@/types/api/marketing/marketing';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import { useRouter } from 'next/navigation';
|
|
||||||
import { useState } from 'react';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
import SalesOrderExport from '@/components/pages/marketing/pdf/SalesOrderExport';
|
|
||||||
import DeliveryOrderExport from '@/components/pages/marketing/pdf/DeliveryOrderExport';
|
|
||||||
|
|
||||||
const MarketingDetail = ({
|
|
||||||
initialValues,
|
|
||||||
refresh,
|
|
||||||
}: {
|
|
||||||
initialValues?: Marketing;
|
|
||||||
refresh?: () => void;
|
|
||||||
}) => {
|
|
||||||
const router = useRouter();
|
|
||||||
const [approvalAction, setApprovalAction] = useState<'APPROVED' | 'REJECTED'>(
|
|
||||||
'APPROVED'
|
|
||||||
);
|
|
||||||
const [grandTotal, setGrandTotal] = useState(
|
|
||||||
initialValues?.sales_order
|
|
||||||
?.map((item) => item.total_price)
|
|
||||||
.reduce((a, b) => a + b, 0)
|
|
||||||
);
|
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
|
||||||
|
|
||||||
const deleteModal = useModal();
|
|
||||||
const confirmationModal = useModal();
|
|
||||||
const deliveryModal = useModal();
|
|
||||||
const {
|
|
||||||
approvals,
|
|
||||||
isLoading: isLoadingApproval,
|
|
||||||
refresh: refreshApproval,
|
|
||||||
} = useApprovalSteps({
|
|
||||||
latestApproval: initialValues?.latest_approval,
|
|
||||||
approvalLines: MARKETING_APPROVAL_LINE,
|
|
||||||
moduleName: 'MARKETINGS',
|
|
||||||
moduleId: initialValues?.id as number as unknown as string,
|
|
||||||
});
|
|
||||||
|
|
||||||
const approveClickHandler = () => {
|
|
||||||
setApprovalAction('APPROVED');
|
|
||||||
confirmationModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const rejectClickHandler = () => {
|
|
||||||
setApprovalAction('REJECTED');
|
|
||||||
confirmationModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const deliveryClickHandler = () => {
|
|
||||||
deliveryModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const deleteClickHandler = () => {
|
|
||||||
deleteModal.openModal();
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalDeleteClickHandler = async () => {
|
|
||||||
setIsLoading(true);
|
|
||||||
const res = await MarketingApi.delete(initialValues?.id as number);
|
|
||||||
deleteModal.closeModal();
|
|
||||||
router.push('/marketing');
|
|
||||||
toast.success(res?.message as string);
|
|
||||||
refresh?.();
|
|
||||||
setIsLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalApproveClickHandler = async (notes: string) => {
|
|
||||||
setIsLoading(true);
|
|
||||||
const res = await SalesOrderApi.singleApproval(
|
|
||||||
initialValues?.id as number,
|
|
||||||
approvalAction,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
setIsLoading(false);
|
|
||||||
confirmationModal.closeModal();
|
|
||||||
toast.success(res?.message as string);
|
|
||||||
refresh?.();
|
|
||||||
refreshApproval?.();
|
|
||||||
};
|
|
||||||
|
|
||||||
const confirmationModalDeliveryClickHandler = async (notes: string) => {
|
|
||||||
setIsLoading(true);
|
|
||||||
const res = await SalesOrderApi.delivery(
|
|
||||||
initialValues?.id as number,
|
|
||||||
notes
|
|
||||||
);
|
|
||||||
setIsLoading(false);
|
|
||||||
deliveryModal.closeModal();
|
|
||||||
toast.success(res?.message as string);
|
|
||||||
refresh?.();
|
|
||||||
refreshApproval?.();
|
|
||||||
router.push(
|
|
||||||
`/marketing/detail/delivery-orders/edit?marketingId=${initialValues?.id}`
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div className='flex flex-col w-full gap-4'>
|
|
||||||
<FormHeader title='Detail Sales Order' backUrl='/marketing' />
|
|
||||||
{!isLoadingApproval && approvals && (
|
|
||||||
<ApprovalSteps approvals={approvals} />
|
|
||||||
)}
|
|
||||||
<div className='flex-row flex gap-3'>
|
|
||||||
{initialValues?.latest_approval?.step_number == 1 && (
|
|
||||||
<>
|
|
||||||
<Button
|
|
||||||
color='success'
|
|
||||||
onClick={approveClickHandler}
|
|
||||||
disabled={
|
|
||||||
initialValues?.latest_approval?.step_number == 1 &&
|
|
||||||
initialValues?.latest_approval?.action == 'REJECTED'
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:check' width={24} height={24} />
|
|
||||||
Approve
|
|
||||||
</Button>
|
|
||||||
<Button
|
|
||||||
color='error'
|
|
||||||
onClick={rejectClickHandler}
|
|
||||||
disabled={
|
|
||||||
initialValues?.latest_approval?.step_number == 1 &&
|
|
||||||
initialValues?.latest_approval?.action == 'REJECTED'
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:close' width={24} height={24} />
|
|
||||||
Reject
|
|
||||||
</Button>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
{initialValues?.latest_approval?.step_number != 1 && (
|
|
||||||
<Button
|
|
||||||
color='success'
|
|
||||||
href={
|
|
||||||
initialValues?.latest_approval?.step_number == 3
|
|
||||||
? `/marketing/detail/delivery-orders/edit?marketingId=${initialValues?.id}`
|
|
||||||
: `/marketing/add/delivery-orders?marketingId=${initialValues?.id}`
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:truck' width={24} height={24} />
|
|
||||||
{initialValues?.latest_approval?.step_number == 3
|
|
||||||
? 'Edit '
|
|
||||||
: 'Tambah '}
|
|
||||||
Delivery Order
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Card
|
|
||||||
title='Informasi Penjualan'
|
|
||||||
className={{
|
|
||||||
wrapper: 'w-full bg-white',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div className='overflow-x-auto rounded-box border border-base-content/5 bg-base-100 mt-3'>
|
|
||||||
<table className='table'>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td width='45%' className='font-semibold'>
|
|
||||||
No. Sales Order
|
|
||||||
</td>
|
|
||||||
<td>:</td>
|
|
||||||
<td width='50%'>{initialValues?.so_number}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td className='font-semibold'>Nama Pelanggan</td>
|
|
||||||
<td>:</td>
|
|
||||||
<td>{initialValues?.customer?.name}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td className='font-semibold'>Status</td>
|
|
||||||
<td>:</td>
|
|
||||||
<td>{initialValues?.latest_approval?.step_name}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td className='font-semibold'>Tanggal Penjualan</td>
|
|
||||||
<td>:</td>
|
|
||||||
<td>{formatDate(initialValues?.so_date, 'DD MMM yyyy')}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td className='font-semibold'>Total Penjualan</td>
|
|
||||||
<td>:</td>
|
|
||||||
<td>{formatCurrency(grandTotal as number)}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td className='font-semibold'>Catatan</td>
|
|
||||||
<td>:</td>
|
|
||||||
<td>{initialValues?.notes ?? '-'}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td className='font-semibold'>Dokumen</td>
|
|
||||||
<td>:</td>
|
|
||||||
<td>
|
|
||||||
<SalesOrderExport data={initialValues} />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
{initialValues?.sales_order && (
|
|
||||||
<Card
|
|
||||||
title='Informasi Produk'
|
|
||||||
className={{
|
|
||||||
wrapper: 'w-full bg-white',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Table<BaseSalesOrder>
|
|
||||||
data={initialValues?.sales_order}
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
header: 'Kandang',
|
|
||||||
accessorFn(row) {
|
|
||||||
return row.product_warehouse.warehouse.name;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Produk',
|
|
||||||
accessorFn(row) {
|
|
||||||
return row.product_warehouse.product.name;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Harga Satuan (Rp)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatCurrency(row.unit_price);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Total Bobot (Kg)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatNumber(row.total_weight);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Kuantitas',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatNumber(row.qty);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Avg. Bobot (Kg)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatNumber(row.avg_weight);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Total Penjualan (Rp)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatCurrency(row.total_price);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
className={{
|
|
||||||
containerClassName: cn({
|
|
||||||
'mb-20':
|
|
||||||
initialValues?.sales_order &&
|
|
||||||
initialValues?.sales_order?.length === 0,
|
|
||||||
}),
|
|
||||||
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
|
||||||
tableClassName: 'font-inter w-full table-auto min-h-full!',
|
|
||||||
headerRowClassName: 'border-b border-b-gray-200',
|
|
||||||
headerColumnClassName:
|
|
||||||
'px-6 py-3 text-xs font-semibold text-gray-500 last:flex last:flex-row last:justify-end',
|
|
||||||
bodyRowClassName: 'border-b border-b-gray-200',
|
|
||||||
bodyColumnClassName:
|
|
||||||
'px-6 py-3 last:flex last:flex-row last:justify-end',
|
|
||||||
paginationClassName: 'hidden',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Card>
|
|
||||||
)}
|
|
||||||
{initialValues?.delivery_order && (
|
|
||||||
<Card
|
|
||||||
title='Informasi Pengiriman'
|
|
||||||
className={{
|
|
||||||
wrapper: 'w-full bg-white',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{initialValues?.delivery_order.map((delivery, index) => {
|
|
||||||
return (
|
|
||||||
<div key={index}>
|
|
||||||
<Card
|
|
||||||
className={{
|
|
||||||
wrapper: 'w-full',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div className='flex flex-row gap-3'>
|
|
||||||
<div className='font-semibold'>
|
|
||||||
Nomor DO : {delivery.do_number}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<Table<BaseDelivery>
|
|
||||||
data={delivery.deliveries}
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
header: 'Tanggal Pengiriman',
|
|
||||||
accessorFn() {
|
|
||||||
return formatDate(
|
|
||||||
delivery.delivery_date,
|
|
||||||
'DD MMM yyyy'
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'No. Polisi',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatVechicleNumber(row.vehicle_number);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Kandang',
|
|
||||||
accessorFn(row) {
|
|
||||||
return row.product_warehouse.warehouse.name;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Produk',
|
|
||||||
accessorFn(row) {
|
|
||||||
return row.product_warehouse.product.name;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Harga Satuan (Rp)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatCurrency(row.unit_price);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Total Bobot (Kg)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatNumber(row.total_weight);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Kuantitas',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatNumber(row.qty);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Avg. Bobot (Kg)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatNumber(row.avg_weight);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'Total Penjualan (Rp)',
|
|
||||||
accessorFn(row) {
|
|
||||||
return formatCurrency(row.total_price);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
className={{
|
|
||||||
containerClassName: cn({
|
|
||||||
'mb-20':
|
|
||||||
initialValues?.sales_order &&
|
|
||||||
initialValues?.sales_order?.length === 0,
|
|
||||||
}),
|
|
||||||
tableWrapperClassName: 'overflow-x-auto min-h-full!',
|
|
||||||
tableClassName:
|
|
||||||
'font-inter w-full table-auto min-h-full!',
|
|
||||||
headerRowClassName: 'border-b border-b-gray-200',
|
|
||||||
headerColumnClassName:
|
|
||||||
'px-6 py-3 text-xs font-semibold text-gray-500 last:flex last:flex-row last:justify-end',
|
|
||||||
bodyRowClassName: 'border-b border-b-gray-200',
|
|
||||||
bodyColumnClassName:
|
|
||||||
'px-6 py-3 last:flex last:flex-row last:justify-end',
|
|
||||||
paginationClassName: 'hidden',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Card>
|
|
||||||
<div className='flex flex-row gap-3 my-3'>
|
|
||||||
<DeliveryOrderExport
|
|
||||||
data={initialValues}
|
|
||||||
deliveryOrder={delivery}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</Card>
|
|
||||||
)}
|
|
||||||
<div className='flex flex-row gap-3'>
|
|
||||||
{initialValues?.latest_approval?.step_number != 3 && (
|
|
||||||
<Button
|
|
||||||
color='warning'
|
|
||||||
type='button'
|
|
||||||
href={`/marketing/detail/${initialValues?.latest_approval.step_number == 3 ? 'delivery-orders' : 'sales-orders'}/edit?marketingId=${initialValues?.id}`}
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:pencil' width={24} height={24} />
|
|
||||||
Edit
|
|
||||||
</Button>
|
|
||||||
)}
|
|
||||||
<Button color='error' onClick={deleteClickHandler}>
|
|
||||||
<Icon icon='mdi:delete' width={24} height={24} />
|
|
||||||
Hapus
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={deleteModal.ref}
|
|
||||||
type='error'
|
|
||||||
text={`Apakah anda yakin ingin menghapus data penjualan ini?`}
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
isLoading: isLoading,
|
|
||||||
onClick: confirmationModalDeleteClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<ConfirmationModalWithNotes
|
|
||||||
ref={confirmationModal.ref}
|
|
||||||
type={approvalAction === 'APPROVED' ? 'success' : 'error'}
|
|
||||||
text={`Apakah anda yakin ingin ${approvalAction == 'APPROVED' ? 'approve' : 'reject'} data penjualan ini?`}
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: approvalAction === 'APPROVED' ? 'success' : 'error',
|
|
||||||
isLoading: isLoading,
|
|
||||||
onClick: confirmationModalApproveClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<ConfirmationModalWithNotes
|
|
||||||
ref={deliveryModal.ref}
|
|
||||||
type={'success'}
|
|
||||||
text={`Apakah anda yakin ingin deliver penjualan ini?`}
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'success',
|
|
||||||
isLoading: isLoading,
|
|
||||||
onClick: confirmationModalDeliveryClickHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default MarketingDetail;
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
import * as Yup from 'yup';
|
|
||||||
import {
|
|
||||||
SalesOrderProductFormValues,
|
|
||||||
SalesOrderProductSchema,
|
|
||||||
} from '@/components/pages/marketing/form/repeater/sales-order/SalesOrderProduct.schema';
|
|
||||||
import {
|
|
||||||
DeliveryOrderProductFormValues,
|
|
||||||
DeliveryOrderProductSchema,
|
|
||||||
} from './repeater/delivery-order/DeliverOrderProduct.schema';
|
|
||||||
|
|
||||||
type MarketingSchemaType = {
|
|
||||||
customer_id: number | undefined;
|
|
||||||
sales_person_id: number | undefined;
|
|
||||||
customer:
|
|
||||||
| {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
}
|
|
||||||
| undefined
|
|
||||||
| null;
|
|
||||||
so_date: string | undefined;
|
|
||||||
notes: string | undefined;
|
|
||||||
};
|
|
||||||
|
|
||||||
type SalesOrderSchemaType = MarketingSchemaType & {
|
|
||||||
sales_order: SalesOrderProductFormValues[];
|
|
||||||
};
|
|
||||||
|
|
||||||
type DeliveryOrderSchemaType = {
|
|
||||||
delivery_order: DeliveryOrderProductFormValues[];
|
|
||||||
};
|
|
||||||
|
|
||||||
export const SalesOrderSchema: Yup.ObjectSchema<SalesOrderSchemaType> =
|
|
||||||
Yup.object({
|
|
||||||
customer_id: Yup.number().required('Customer wajib diisi!'),
|
|
||||||
sales_person_id: Yup.number().required('Sales Person wajib diisi!'),
|
|
||||||
customer: Yup.object({
|
|
||||||
value: Yup.number().required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).nullable(),
|
|
||||||
so_date: Yup.string().required('Tanggal wajib diisi!'),
|
|
||||||
notes: Yup.string().required('Catatan wajib diisi!'),
|
|
||||||
sales_order: Yup.array()
|
|
||||||
.of(SalesOrderProductSchema)
|
|
||||||
.min(1, 'Produk wajib diisi!')
|
|
||||||
.required('Produk wajib diisi!'),
|
|
||||||
});
|
|
||||||
|
|
||||||
export const DeliveryOrderSchema: Yup.ObjectSchema<DeliveryOrderSchemaType> =
|
|
||||||
Yup.object({
|
|
||||||
delivery_order: Yup.array()
|
|
||||||
.min(1, 'Pengiriman wajib diisi!')
|
|
||||||
.required('Pengiriman wajib diisi!')
|
|
||||||
.test(
|
|
||||||
'at-least-one-valid-row',
|
|
||||||
'Minimal ada satu baris pengiriman yang valid!',
|
|
||||||
function (items) {
|
|
||||||
if (!items || items.length === 0) return false;
|
|
||||||
|
|
||||||
// VALIDASI: minimal 1 item valid full
|
|
||||||
const itemSchema = DeliveryOrderProductSchema;
|
|
||||||
|
|
||||||
const hasValidItem = items.some((item) => {
|
|
||||||
if (!item) return false;
|
|
||||||
return itemSchema.isValidSync(item, { abortEarly: true });
|
|
||||||
});
|
|
||||||
|
|
||||||
return hasValidItem;
|
|
||||||
}
|
|
||||||
),
|
|
||||||
});
|
|
||||||
|
|
||||||
export const UpdateSalesOrderSchema = SalesOrderSchema;
|
|
||||||
|
|
||||||
export type SalesOrderFormValues = Yup.InferType<typeof SalesOrderSchema>;
|
|
||||||
|
|
||||||
export type DeliveryOrderFormValues = Yup.InferType<typeof DeliveryOrderSchema>;
|
|
||||||
@@ -1,802 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import Card from '@/components/Card';
|
|
||||||
import { FormHeader } from '@/components/helper/form/FormHeader';
|
|
||||||
import DateInput from '@/components/input/DateInput';
|
|
||||||
import SelectInput, {
|
|
||||||
OptionType,
|
|
||||||
useSelect,
|
|
||||||
} from '@/components/input/SelectInput';
|
|
||||||
import TextArea from '@/components/input/TextArea';
|
|
||||||
import Modal, { useModal } from '@/components/Modal';
|
|
||||||
import { formatCurrency, formatDate } from '@/lib/helper';
|
|
||||||
import {
|
|
||||||
BaseDeliveryOrder,
|
|
||||||
BaseSalesOrder,
|
|
||||||
CreateDeliveryOrderPayload,
|
|
||||||
CreateSalesOrderPayload,
|
|
||||||
CreateSalesOrderProductPayload,
|
|
||||||
Marketing,
|
|
||||||
UpdateDeliveryOrderPayload,
|
|
||||||
UpdateSalesOrderPayload,
|
|
||||||
} from '@/types/api/marketing/marketing';
|
|
||||||
import { Icon } from '@iconify/react';
|
|
||||||
import { memo, useCallback, useEffect, useMemo, useState } from 'react';
|
|
||||||
import { Customer } from '@/types/api/master-data/customer';
|
|
||||||
import { CustomerApi } from '@/services/api/master-data';
|
|
||||||
import { useFormik } from 'formik';
|
|
||||||
import {
|
|
||||||
DeliveryOrderFormValues,
|
|
||||||
DeliveryOrderSchema,
|
|
||||||
SalesOrderFormValues,
|
|
||||||
SalesOrderSchema,
|
|
||||||
} from './MarketingForm.schema';
|
|
||||||
import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
|
|
||||||
import {
|
|
||||||
DeliveryOrderApi,
|
|
||||||
MarketingApi,
|
|
||||||
SalesOrderApi,
|
|
||||||
} from '@/services/api/marketing/marketing';
|
|
||||||
import { SalesOrderProductFormValues } from './repeater/sales-order/SalesOrderProduct.schema';
|
|
||||||
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
|
||||||
import toast from 'react-hot-toast';
|
|
||||||
import { useRouter } from 'next/navigation';
|
|
||||||
import SalesOrderProductTable from './table-view/SalesOrderProductTable';
|
|
||||||
import SalesOrderProductForm from './repeater/sales-order/SalesOrderProductForm';
|
|
||||||
import DeliveryOrderProductTable from './table-view/DeliveryOrderProductTable';
|
|
||||||
import DeliveryOrderProductForm from './repeater/delivery-order/DeliverOrderProduct';
|
|
||||||
import { DeliveryOrderProductFormValues } from './repeater/delivery-order/DeliverOrderProduct.schema';
|
|
||||||
import DebouncedTextArea from '@/components/input/DebouncedTextArea';
|
|
||||||
|
|
||||||
const MemoizedSalesOrderProductTable = memo(SalesOrderProductTable);
|
|
||||||
const MemoizedSalesOrderProductForm = memo(SalesOrderProductForm);
|
|
||||||
const MemoizedDeliveryOrderProductTable = memo(DeliveryOrderProductTable);
|
|
||||||
const MemoizedDeliveryOrderProductForm = memo(DeliveryOrderProductForm);
|
|
||||||
|
|
||||||
// ================== EXTERNAL HELPER FUNCTION ==================
|
|
||||||
export interface ProductCalculationFields {
|
|
||||||
qty: string | number | undefined;
|
|
||||||
unit_price: string | number | undefined;
|
|
||||||
total_price: string | number | undefined;
|
|
||||||
avg_weight: string | number | undefined;
|
|
||||||
total_weight: string | number | undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const SalesProductToFieldValues = (
|
|
||||||
product: BaseSalesOrder
|
|
||||||
): SalesOrderProductFormValues => {
|
|
||||||
return {
|
|
||||||
id: product.id,
|
|
||||||
vehicle_number: product.vehicle_number,
|
|
||||||
kandang_id: product.product_warehouse.warehouse.id,
|
|
||||||
kandang: {
|
|
||||||
value: product.product_warehouse.warehouse.id,
|
|
||||||
label: product.product_warehouse.warehouse.name,
|
|
||||||
},
|
|
||||||
product_warehouse: {
|
|
||||||
value: product.product_warehouse.id,
|
|
||||||
label: product.product_warehouse.product.name,
|
|
||||||
},
|
|
||||||
product_warehouse_id: product.product_warehouse.id,
|
|
||||||
unit_price: product.unit_price,
|
|
||||||
total_weight: product.total_weight,
|
|
||||||
qty: product.qty,
|
|
||||||
avg_weight: product.avg_weight,
|
|
||||||
total_price: product.total_price,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
export const DeliveryProductToFieldValues = (
|
|
||||||
salesOrders: BaseSalesOrder[],
|
|
||||||
delivery: BaseDeliveryOrder
|
|
||||||
): DeliveryOrderProductFormValues[] => {
|
|
||||||
const data = delivery.deliveries.map((item) => {
|
|
||||||
const soId = salesOrders.find(
|
|
||||||
(so) => so.product_warehouse.id === item.product_warehouse.id
|
|
||||||
)?.id;
|
|
||||||
return {
|
|
||||||
id: soId,
|
|
||||||
unit_price: item.unit_price,
|
|
||||||
total_weight: item.total_weight,
|
|
||||||
qty: item.qty,
|
|
||||||
avg_weight: item.avg_weight,
|
|
||||||
total_price: item.total_price,
|
|
||||||
vehicle_number: item.vehicle_number,
|
|
||||||
delivery_date: formatDate(delivery.delivery_date, 'yyyy-MM-DD'),
|
|
||||||
do_number: delivery.do_number,
|
|
||||||
marketing_product_id: soId,
|
|
||||||
marketing_product: {
|
|
||||||
id: soId,
|
|
||||||
vehicle_number: item.vehicle_number,
|
|
||||||
kandang_id: item.product_warehouse.warehouse.id,
|
|
||||||
kandang: {
|
|
||||||
value: item.product_warehouse.warehouse.id,
|
|
||||||
label: item.product_warehouse.warehouse.name,
|
|
||||||
},
|
|
||||||
product_warehouse: {
|
|
||||||
value: item.product_warehouse.id,
|
|
||||||
label: item.product_warehouse.product.name,
|
|
||||||
},
|
|
||||||
product_warehouse_id: item.product_warehouse.id,
|
|
||||||
unit_price: item.unit_price,
|
|
||||||
total_weight: item.total_weight,
|
|
||||||
qty: item.qty,
|
|
||||||
avg_weight: item.avg_weight,
|
|
||||||
total_price: item.total_price,
|
|
||||||
},
|
|
||||||
} as DeliveryOrderProductFormValues;
|
|
||||||
});
|
|
||||||
return data;
|
|
||||||
};
|
|
||||||
export const mergeSOwithDO = (
|
|
||||||
salesOrders: SalesOrderProductFormValues[],
|
|
||||||
deliveryOrders: DeliveryOrderProductFormValues[]
|
|
||||||
): DeliveryOrderProductFormValues[] => {
|
|
||||||
return salesOrders.map((so) => {
|
|
||||||
const delivery = deliveryOrders.find(
|
|
||||||
(d) => d?.marketing_product_id === so.id
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
|
||||||
...so, // nilai dasar dari sales order
|
|
||||||
marketing_product_id: so.id,
|
|
||||||
delivery_date: delivery?.delivery_date || undefined,
|
|
||||||
do_number: delivery?.do_number || undefined,
|
|
||||||
vehicle_number: delivery?.vehicle_number || so.vehicle_number,
|
|
||||||
unit_price: delivery?.unit_price,
|
|
||||||
total_weight: delivery?.total_weight,
|
|
||||||
qty: delivery?.qty,
|
|
||||||
avg_weight: delivery?.avg_weight,
|
|
||||||
total_price: delivery?.total_price,
|
|
||||||
marketing_product: so, // jika ada, override
|
|
||||||
} as DeliveryOrderProductFormValues;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
export const recalculate = (
|
|
||||||
field: string,
|
|
||||||
values: ProductCalculationFields
|
|
||||||
) => {
|
|
||||||
console.log('Values');
|
|
||||||
console.log(values);
|
|
||||||
const { qty, unit_price, total_price, avg_weight, total_weight } = values;
|
|
||||||
const result: Partial<ProductCalculationFields> = {};
|
|
||||||
if (field == 'unit_price' || field == 'total_price' || field == 'qty') {
|
|
||||||
if (qty && unit_price && (field == 'unit_price' || field == 'qty')) {
|
|
||||||
result.total_price = Number(qty) * Number(unit_price);
|
|
||||||
} else if (qty && total_price && field == 'total_price') {
|
|
||||||
result.unit_price = Number(total_price) / Number(qty);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (field == 'avg_weight' || field == 'total_weight' || field == 'qty') {
|
|
||||||
if (qty && avg_weight && (field == 'avg_weight' || field == 'qty')) {
|
|
||||||
result.total_weight = Number(qty) * Number(avg_weight);
|
|
||||||
} else if (qty && total_weight && field == 'total_weight') {
|
|
||||||
result.avg_weight = Number(total_weight) / Number(qty);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
console.log('Result');
|
|
||||||
console.log(result);
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
export const getSubmitField = (values: ProductCalculationFields) => {
|
|
||||||
const { qty, unit_price, total_price, avg_weight, total_weight } = values;
|
|
||||||
|
|
||||||
// Harga logic
|
|
||||||
if (qty && unit_price && !total_price) {
|
|
||||||
return 'unit_price';
|
|
||||||
}
|
|
||||||
if (qty && total_price && !unit_price) {
|
|
||||||
return 'total_price';
|
|
||||||
}
|
|
||||||
|
|
||||||
// Bobot logic
|
|
||||||
if (qty && avg_weight && !total_weight) {
|
|
||||||
return 'avg_weight';
|
|
||||||
}
|
|
||||||
if (qty && total_weight && !avg_weight) {
|
|
||||||
return 'total_weight';
|
|
||||||
}
|
|
||||||
|
|
||||||
// Tidak ada yang perlu dihitung
|
|
||||||
return '';
|
|
||||||
};
|
|
||||||
|
|
||||||
const MarketingForm = ({
|
|
||||||
formType = 'add',
|
|
||||||
initialValues,
|
|
||||||
afterSubmit,
|
|
||||||
}: {
|
|
||||||
formType?: 'add' | 'edit' | 'add_deliver' | 'edit_deliver';
|
|
||||||
initialValues?: Marketing;
|
|
||||||
afterSubmit?: () => void;
|
|
||||||
}) => {
|
|
||||||
const router = useRouter();
|
|
||||||
const deleteModal = useModal();
|
|
||||||
|
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
|
||||||
const [selectedMarketingProduct, setSelectedMarketingProduct] =
|
|
||||||
useState<SalesOrderProductFormValues | null>(null);
|
|
||||||
const [selectedDeliveryProduct, setSelectedDeliveryProduct] =
|
|
||||||
useState<DeliveryOrderProductFormValues | null>(null);
|
|
||||||
const [deliveryFormState, setDeliveryFormState] = useState<'add' | 'edit'>(
|
|
||||||
'add'
|
|
||||||
);
|
|
||||||
const [deliveryOrderValues, setDeliveryOrderValues] = useState<
|
|
||||||
DeliveryOrderProductFormValues[]
|
|
||||||
>(
|
|
||||||
mergeSOwithDO(
|
|
||||||
initialValues?.sales_order?.map(SalesProductToFieldValues) ?? [],
|
|
||||||
initialValues?.delivery_order?.flatMap((delivery) =>
|
|
||||||
DeliveryProductToFieldValues(initialValues.sales_order, delivery)
|
|
||||||
) ?? []
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
// ================== REPEATER ==================
|
|
||||||
const addSOModal = useModal();
|
|
||||||
const addDOModal = useModal();
|
|
||||||
const [rowSOSelection, setRowSOSelection] = useState<Record<string, boolean>>(
|
|
||||||
{}
|
|
||||||
);
|
|
||||||
const selectedRowSOIds = Object.keys(rowSOSelection).map((item) =>
|
|
||||||
parseInt(item)
|
|
||||||
);
|
|
||||||
|
|
||||||
// ================== FETCH OPTIONS ==================
|
|
||||||
const {
|
|
||||||
options: customerOptions,
|
|
||||||
isLoadingOptions: isLoadingCustomerOptions,
|
|
||||||
} = useSelect<Customer>(CustomerApi.basePath, 'id', 'name');
|
|
||||||
|
|
||||||
// ================== SETUP FORMIK ==================
|
|
||||||
const formikInitialValues = useMemo<
|
|
||||||
SalesOrderFormValues & DeliveryOrderFormValues
|
|
||||||
>(() => {
|
|
||||||
return {
|
|
||||||
so_date: initialValues?.so_date || undefined,
|
|
||||||
notes: initialValues?.notes || undefined,
|
|
||||||
customer_id: initialValues?.customer?.id || undefined,
|
|
||||||
sales_person_id: initialValues?.sales_person?.id || 1,
|
|
||||||
customer: initialValues?.customer
|
|
||||||
? {
|
|
||||||
value: initialValues.customer.id,
|
|
||||||
label: initialValues.customer.name,
|
|
||||||
}
|
|
||||||
: null,
|
|
||||||
sales_order:
|
|
||||||
initialValues?.sales_order?.map((product) =>
|
|
||||||
SalesProductToFieldValues(product)
|
|
||||||
) ?? [],
|
|
||||||
delivery_order: mergeSOwithDO(
|
|
||||||
initialValues?.sales_order?.map(SalesProductToFieldValues) ?? [],
|
|
||||||
initialValues?.delivery_order?.flatMap((delivery) =>
|
|
||||||
DeliveryProductToFieldValues(initialValues.sales_order, delivery)
|
|
||||||
) ?? []
|
|
||||||
),
|
|
||||||
};
|
|
||||||
}, [initialValues]);
|
|
||||||
const formik = useFormik<SalesOrderFormValues & DeliveryOrderFormValues>({
|
|
||||||
enableReinitialize: true,
|
|
||||||
initialValues: formikInitialValues,
|
|
||||||
validationSchema:
|
|
||||||
formType == 'add_deliver' || formType == 'edit_deliver'
|
|
||||||
? DeliveryOrderSchema
|
|
||||||
: SalesOrderSchema,
|
|
||||||
validateOnMount: true,
|
|
||||||
onSubmit: async (values) => {
|
|
||||||
const payload =
|
|
||||||
formType != 'add_deliver' && formType != 'edit_deliver'
|
|
||||||
? ({
|
|
||||||
customer_id: values.customer_id as number,
|
|
||||||
sales_person_id: values.sales_person_id as number,
|
|
||||||
date: formatDate(values.so_date as string, 'yyyy-MM-DD'),
|
|
||||||
notes: values.notes as string,
|
|
||||||
marketing_products: values.sales_order.map((product) => {
|
|
||||||
return {
|
|
||||||
vehicle_number: product.vehicle_number as string,
|
|
||||||
kandang_id: product.kandang_id as number,
|
|
||||||
product_warehouse_id: product.product_warehouse_id as number,
|
|
||||||
unit_price: parseFloat(product.unit_price as string),
|
|
||||||
total_weight: parseFloat(product.total_weight as string),
|
|
||||||
qty: parseFloat(product.qty as string),
|
|
||||||
avg_weight: parseFloat(product.avg_weight as string),
|
|
||||||
total_price: parseFloat(product.total_price as string),
|
|
||||||
} as CreateSalesOrderProductPayload;
|
|
||||||
}),
|
|
||||||
} as CreateSalesOrderPayload)
|
|
||||||
: ({
|
|
||||||
marketing_id: initialValues?.id as number,
|
|
||||||
delivery_products: values.delivery_order
|
|
||||||
.map((product) => {
|
|
||||||
if (Boolean(product.delivery_date)) {
|
|
||||||
return {
|
|
||||||
marketing_product_id:
|
|
||||||
product.marketing_product_id as number,
|
|
||||||
unit_price: parseFloat(product.unit_price as string),
|
|
||||||
total_weight: parseFloat(product.total_weight as string),
|
|
||||||
qty: parseFloat(product.qty as string),
|
|
||||||
avg_weight: parseFloat(product.avg_weight as string),
|
|
||||||
total_price: parseFloat(product.total_price as string),
|
|
||||||
delivery_date: formatDate(
|
|
||||||
product.delivery_date as string,
|
|
||||||
'yyyy-MM-DD'
|
|
||||||
),
|
|
||||||
vehicle_number: product.vehicle_number,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.filter((item) => Boolean(item)),
|
|
||||||
} as UpdateDeliveryOrderPayload);
|
|
||||||
console.log('PAYLOAD');
|
|
||||||
console.log(payload);
|
|
||||||
switch (formType) {
|
|
||||||
case 'add':
|
|
||||||
await createMarketingHandler(payload as CreateSalesOrderPayload);
|
|
||||||
break;
|
|
||||||
case 'edit':
|
|
||||||
await updateMarketingHandler(payload as UpdateSalesOrderPayload);
|
|
||||||
break;
|
|
||||||
case 'add_deliver':
|
|
||||||
await createDeliveryHandler(payload as CreateDeliveryOrderPayload);
|
|
||||||
break;
|
|
||||||
case 'edit_deliver':
|
|
||||||
await updateDeliveryHandler(payload as UpdateDeliveryOrderPayload);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
afterSubmit?.();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
// ================== FORM REPEATER HANDLER ==================
|
|
||||||
const createMarketingHandler = async (values: CreateSalesOrderPayload) => {
|
|
||||||
setIsLoading(true);
|
|
||||||
console.log(values);
|
|
||||||
const createMarketingRes = await SalesOrderApi.create(values);
|
|
||||||
if (isResponseSuccess(createMarketingRes)) {
|
|
||||||
toast.success(createMarketingRes?.message as string);
|
|
||||||
router.push('/marketing');
|
|
||||||
}
|
|
||||||
if (isResponseError(createMarketingRes)) {
|
|
||||||
toast.error(createMarketingRes?.message as string);
|
|
||||||
}
|
|
||||||
setIsLoading(false);
|
|
||||||
};
|
|
||||||
const updateMarketingHandler = async (values: UpdateSalesOrderPayload) => {
|
|
||||||
setIsLoading(true);
|
|
||||||
console.log(values);
|
|
||||||
const updateMarketingRes = await SalesOrderApi.update(
|
|
||||||
initialValues?.id as number,
|
|
||||||
values
|
|
||||||
);
|
|
||||||
if (isResponseSuccess(updateMarketingRes)) {
|
|
||||||
toast.success(updateMarketingRes?.message as string);
|
|
||||||
router.push(`/marketing/detail?marketingId=${initialValues?.id}`);
|
|
||||||
}
|
|
||||||
if (isResponseError(updateMarketingRes)) {
|
|
||||||
toast.error(updateMarketingRes?.message as string);
|
|
||||||
}
|
|
||||||
setIsLoading(false);
|
|
||||||
};
|
|
||||||
const createDeliveryHandler = async (values: CreateDeliveryOrderPayload) => {
|
|
||||||
setIsLoading(true);
|
|
||||||
console.log(initialValues?.id);
|
|
||||||
const createDeliveryRes = await DeliveryOrderApi.create(values);
|
|
||||||
if (isResponseSuccess(createDeliveryRes)) {
|
|
||||||
console.log(createDeliveryRes);
|
|
||||||
toast.success(createDeliveryRes?.message as string);
|
|
||||||
setDeliveryOrderValues(
|
|
||||||
createDeliveryRes.data?.delivery_order?.flatMap((delivery) =>
|
|
||||||
DeliveryProductToFieldValues(
|
|
||||||
createDeliveryRes.data?.sales_order,
|
|
||||||
delivery
|
|
||||||
)
|
|
||||||
) ?? []
|
|
||||||
);
|
|
||||||
router.push(`/marketing/detail?marketingId=${initialValues?.id}`);
|
|
||||||
}
|
|
||||||
if (isResponseError(createDeliveryRes)) {
|
|
||||||
console.log(createDeliveryRes);
|
|
||||||
toast.error(createDeliveryRes?.message as string);
|
|
||||||
}
|
|
||||||
setIsLoading(false);
|
|
||||||
};
|
|
||||||
const updateDeliveryHandler = async (values: UpdateDeliveryOrderPayload) => {
|
|
||||||
setIsLoading(true);
|
|
||||||
console.log(initialValues?.id);
|
|
||||||
const updateDeliveryRes = await DeliveryOrderApi.update(
|
|
||||||
initialValues?.id as number,
|
|
||||||
values
|
|
||||||
);
|
|
||||||
if (isResponseSuccess(updateDeliveryRes)) {
|
|
||||||
console.log(updateDeliveryRes);
|
|
||||||
toast.success(updateDeliveryRes?.message as string);
|
|
||||||
setDeliveryOrderValues(
|
|
||||||
mergeSOwithDO(
|
|
||||||
formik.values.sales_order,
|
|
||||||
updateDeliveryRes.data?.delivery_order?.flatMap((delivery) =>
|
|
||||||
DeliveryProductToFieldValues(
|
|
||||||
updateDeliveryRes.data?.sales_order,
|
|
||||||
delivery
|
|
||||||
)
|
|
||||||
) ?? []
|
|
||||||
)
|
|
||||||
);
|
|
||||||
router.push(`/marketing/detail?marketingId=${initialValues?.id}`);
|
|
||||||
}
|
|
||||||
if (isResponseError(updateDeliveryRes)) {
|
|
||||||
console.log(updateDeliveryRes);
|
|
||||||
toast.error(updateDeliveryRes?.message as string);
|
|
||||||
}
|
|
||||||
setIsLoading(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
// ================== MARKETING HANDLER ==================
|
|
||||||
const deleteMarketingHandler = async () => {
|
|
||||||
setIsLoading(true);
|
|
||||||
console.log(initialValues?.id);
|
|
||||||
const deleteMarketingRes = await MarketingApi.delete(
|
|
||||||
initialValues?.id as number
|
|
||||||
);
|
|
||||||
if (isResponseSuccess(deleteMarketingRes)) {
|
|
||||||
console.log(deleteMarketingRes);
|
|
||||||
toast.success(deleteMarketingRes?.message as string);
|
|
||||||
}
|
|
||||||
if (isResponseError(deleteMarketingRes)) {
|
|
||||||
console.log(deleteMarketingRes);
|
|
||||||
toast.error(deleteMarketingRes?.message as string);
|
|
||||||
}
|
|
||||||
setIsLoading(false);
|
|
||||||
deleteModal.closeModal();
|
|
||||||
router.push('/marketing');
|
|
||||||
};
|
|
||||||
const handleChangeCustomer = useCallback(
|
|
||||||
(val: OptionType | OptionType[] | null) => {
|
|
||||||
formik.setFieldValue('customer_id', (val as OptionType)?.value);
|
|
||||||
formik.setFieldValue('customer', val as OptionType);
|
|
||||||
},
|
|
||||||
[]
|
|
||||||
);
|
|
||||||
const handleDelete = useCallback(() => {
|
|
||||||
deleteModal.openModal();
|
|
||||||
}, [deleteModal]);
|
|
||||||
|
|
||||||
// ================== SALES ORDER HANDLER ==================
|
|
||||||
const handleDeleteSO = useCallback((id: number) => {
|
|
||||||
const currentProducts = formik.values.sales_order;
|
|
||||||
formik.setFieldValue(
|
|
||||||
'sales_order',
|
|
||||||
currentProducts.filter((p) => p.id != id)
|
|
||||||
);
|
|
||||||
}, []);
|
|
||||||
const handleBulkDeleteSO = useCallback(() => {
|
|
||||||
const currentProducts = formik.values.sales_order;
|
|
||||||
formik.setFieldValue(
|
|
||||||
'sales_order',
|
|
||||||
currentProducts.filter(
|
|
||||||
(product) => !selectedRowSOIds.includes(product.id ?? -1)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
setRowSOSelection({});
|
|
||||||
}, [selectedRowSOIds]);
|
|
||||||
const handleAddSOClick = useCallback(() => {
|
|
||||||
setSelectedMarketingProduct(null);
|
|
||||||
addSOModal.openModal();
|
|
||||||
}, [addSOModal]);
|
|
||||||
const handleAddSubmitSO = useCallback(
|
|
||||||
async (values: SalesOrderProductFormValues) => {
|
|
||||||
const currentProducts = formik.values.sales_order;
|
|
||||||
|
|
||||||
const newValues = {
|
|
||||||
...values,
|
|
||||||
id: values.id ?? Date.now(),
|
|
||||||
};
|
|
||||||
|
|
||||||
const existingIndex = currentProducts.findIndex(
|
|
||||||
(item) =>
|
|
||||||
item.kandang_id === newValues.kandang_id &&
|
|
||||||
item.product_warehouse_id === newValues.product_warehouse_id
|
|
||||||
);
|
|
||||||
|
|
||||||
let updatedProducts = [];
|
|
||||||
|
|
||||||
if (existingIndex !== -1) {
|
|
||||||
// Overwrite
|
|
||||||
updatedProducts = currentProducts.map((item, index) =>
|
|
||||||
index === existingIndex ? newValues : item
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
// Add new item
|
|
||||||
updatedProducts = [...currentProducts, newValues];
|
|
||||||
}
|
|
||||||
|
|
||||||
formik.setFieldValue('sales_order', updatedProducts);
|
|
||||||
|
|
||||||
addSOModal.closeModal();
|
|
||||||
},
|
|
||||||
[addSOModal]
|
|
||||||
);
|
|
||||||
|
|
||||||
// ================== DELIVERY ORDER HANDLER ==================
|
|
||||||
const handleEditDO = useCallback(
|
|
||||||
(id: number, values?: DeliveryOrderProductFormValues) => {
|
|
||||||
setDeliveryFormState('edit');
|
|
||||||
const currentProducts = formik.values.delivery_order.find(
|
|
||||||
(product) => product.id == id
|
|
||||||
);
|
|
||||||
setSelectedDeliveryProduct(values ?? currentProducts ?? null);
|
|
||||||
addDOModal.openModal();
|
|
||||||
},
|
|
||||||
[addDOModal]
|
|
||||||
);
|
|
||||||
const handleAddDOClick = useCallback(() => {
|
|
||||||
setDeliveryFormState('add');
|
|
||||||
setSelectedDeliveryProduct(null);
|
|
||||||
addDOModal.openModal();
|
|
||||||
}, [addDOModal]);
|
|
||||||
const handleAddSubmitDO = useCallback(
|
|
||||||
async (values: DeliveryOrderProductFormValues) => {
|
|
||||||
const newValues = {
|
|
||||||
...values,
|
|
||||||
id: values.id ?? Date.now(),
|
|
||||||
};
|
|
||||||
|
|
||||||
setDeliveryOrderValues((prev) => [...prev, newValues]);
|
|
||||||
addDOModal.closeModal();
|
|
||||||
setSelectedDeliveryProduct(null);
|
|
||||||
},
|
|
||||||
[addDOModal]
|
|
||||||
);
|
|
||||||
const handleUpdateDO = useCallback(
|
|
||||||
async (id: number, values: DeliveryOrderProductFormValues) => {
|
|
||||||
setDeliveryOrderValues((prev) =>
|
|
||||||
prev.map((product) =>
|
|
||||||
product.id === id ? { ...product, ...values } : product
|
|
||||||
)
|
|
||||||
);
|
|
||||||
addDOModal.closeModal();
|
|
||||||
setSelectedDeliveryProduct(null);
|
|
||||||
},
|
|
||||||
[addDOModal]
|
|
||||||
);
|
|
||||||
|
|
||||||
const memoSalesOrder = formik.values.sales_order;
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
formik.setFieldValue('delivery_order', deliveryOrderValues);
|
|
||||||
}, [deliveryOrderValues, initialValues]);
|
|
||||||
|
|
||||||
const grandTotal = useMemo(() => {
|
|
||||||
return memoSalesOrder.reduce(
|
|
||||||
(total, product) =>
|
|
||||||
total + parseFloat((product.total_price as string) || '0'),
|
|
||||||
0
|
|
||||||
);
|
|
||||||
}, [memoSalesOrder]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<form
|
|
||||||
className='flex flex-col gap-4'
|
|
||||||
onSubmit={formik.handleSubmit}
|
|
||||||
onReset={formik.handleReset}
|
|
||||||
>
|
|
||||||
<FormHeader
|
|
||||||
title={`${formType == 'add' || formType == 'add_deliver' ? 'Tambah' : 'Edit'} ${formType === 'add_deliver' || formType === 'edit_deliver' ? 'Delivery' : 'Sales'} Order`}
|
|
||||||
backUrl='/marketing'
|
|
||||||
/>
|
|
||||||
{/* Input Cutomer And Date */}
|
|
||||||
<Card
|
|
||||||
title='Informasi Order'
|
|
||||||
className={{
|
|
||||||
wrapper: 'bg-white w-full',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div className='grid grid-cols-2 gap-3 mt-3'>
|
|
||||||
<SelectInput
|
|
||||||
label='Pelanggan'
|
|
||||||
options={customerOptions}
|
|
||||||
isLoading={isLoadingCustomerOptions}
|
|
||||||
value={formik.values.customer}
|
|
||||||
onChange={handleChangeCustomer}
|
|
||||||
isError={
|
|
||||||
formik.touched.customer_id && Boolean(formik.errors.customer_id)
|
|
||||||
}
|
|
||||||
errorMessage={formik.errors.customer_id}
|
|
||||||
isClearable
|
|
||||||
placeholder='Pilih Pelanggan'
|
|
||||||
isDisabled={
|
|
||||||
formType === 'add_deliver' || formType === 'edit_deliver'
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<DateInput
|
|
||||||
name='so_date'
|
|
||||||
label='Tanggal'
|
|
||||||
value={formik.values.so_date}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
isError={formik.touched.so_date && Boolean(formik.errors.so_date)}
|
|
||||||
errorMessage={formik.errors.so_date}
|
|
||||||
placeholder='Pilih Tanggal'
|
|
||||||
readOnly={formType == 'add_deliver' || formType == 'edit_deliver'}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
|
|
||||||
{/* Input Table Repeater Sales Order */}
|
|
||||||
<Card
|
|
||||||
title='Informasi Produk'
|
|
||||||
className={{
|
|
||||||
wrapper: 'bg-white w-full',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<MemoizedSalesOrderProductTable
|
|
||||||
formType={formType}
|
|
||||||
data={memoSalesOrder}
|
|
||||||
rowSelection={rowSOSelection}
|
|
||||||
setRowSelection={setRowSOSelection}
|
|
||||||
selectedRowIds={selectedRowSOIds}
|
|
||||||
onDelete={handleDeleteSO}
|
|
||||||
onBulkDelete={handleBulkDeleteSO}
|
|
||||||
onAddProductClick={handleAddSOClick}
|
|
||||||
/>
|
|
||||||
</Card>
|
|
||||||
|
|
||||||
{/* Input Table Repeater Delivery Order */}
|
|
||||||
{(formType == 'add_deliver' || formType == 'edit_deliver') &&
|
|
||||||
initialValues?.sales_order &&
|
|
||||||
initialValues?.sales_order.length > 0 && (
|
|
||||||
<Card
|
|
||||||
title='Informasi Pengiriman'
|
|
||||||
className={{
|
|
||||||
wrapper: 'bg-white w-full',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{/* <div className='text-blue-500'>
|
|
||||||
{JSON.stringify(formik.values)}
|
|
||||||
</div>
|
|
||||||
<div className='text-red-500'>
|
|
||||||
{JSON.stringify(formik.errors)}
|
|
||||||
</div> */}
|
|
||||||
<MemoizedDeliveryOrderProductTable
|
|
||||||
formType={formType}
|
|
||||||
data={deliveryOrderValues}
|
|
||||||
onEdit={handleEditDO}
|
|
||||||
onAddProductClick={handleAddDOClick}
|
|
||||||
/>
|
|
||||||
</Card>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{/* Input Notes */}
|
|
||||||
<div className='grid grid-cols-2 gap-3'>
|
|
||||||
<DebouncedTextArea
|
|
||||||
required
|
|
||||||
name='notes'
|
|
||||||
label='Catatan'
|
|
||||||
rows={3}
|
|
||||||
placeholder='Masukan catatan penjualan'
|
|
||||||
value={formik.values.notes}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
isError={formik.touched.notes && Boolean(formik.errors.notes)}
|
|
||||||
errorMessage={formik.errors.notes}
|
|
||||||
disabled={formType === 'add_deliver' || formType === 'edit_deliver'}
|
|
||||||
/>
|
|
||||||
<div className='flex flex-col h-full justify-between items-end py-6'>
|
|
||||||
<span>Total Penjualan</span>
|
|
||||||
<span className='text-lg font-semibold'>
|
|
||||||
{formatCurrency(grandTotal)}{' '}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Form Actions */}
|
|
||||||
<div className='flex flex-row items-start justify-center gap-2 mt-4'>
|
|
||||||
<Button type='reset' color='warning' disabled={formik.isSubmitting}>
|
|
||||||
Reset
|
|
||||||
</Button>
|
|
||||||
<Button
|
|
||||||
type='submit'
|
|
||||||
disabled={!formik.isValid || formik.isSubmitting}
|
|
||||||
isLoading={formik.isSubmitting}
|
|
||||||
>
|
|
||||||
Submit
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
{/* Actions button */}
|
|
||||||
{formType == 'edit' && (
|
|
||||||
<div className='flex flex-row justify-start'>
|
|
||||||
<Button
|
|
||||||
type='button'
|
|
||||||
color='error'
|
|
||||||
onClick={handleDelete}
|
|
||||||
isLoading={isLoading}
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:trash' width={24} height={24} />
|
|
||||||
Hapus
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{/* Modals */}
|
|
||||||
<Modal
|
|
||||||
ref={addSOModal.ref}
|
|
||||||
closeOnBackdrop
|
|
||||||
className={{
|
|
||||||
modalBox: 'max-w-4/5 z-100',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div className='flex flex-col gap-4'>
|
|
||||||
<div className='flex flex-row items-center justify-between'>
|
|
||||||
<h3 className='text-lg font-semibold mb-4'>Tambah Produk</h3>
|
|
||||||
<Button
|
|
||||||
variant='ghost'
|
|
||||||
color='error'
|
|
||||||
className='rounded-full'
|
|
||||||
onClick={addSOModal.closeModal}
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:close' width={20} height={20} />
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<MemoizedSalesOrderProductForm
|
|
||||||
onSubmitForm={handleAddSubmitSO}
|
|
||||||
initialValues={selectedMarketingProduct ?? undefined}
|
|
||||||
exisitingValues={memoSalesOrder}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Modal>
|
|
||||||
<Modal
|
|
||||||
ref={addDOModal.ref}
|
|
||||||
closeOnBackdrop
|
|
||||||
className={{
|
|
||||||
modalBox: 'max-w-4/5 z-100',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div className='flex flex-col gap-4'>
|
|
||||||
<div className='flex flex-row items-center justify-between'>
|
|
||||||
<h3 className='text-lg font-semibold mb-4'>
|
|
||||||
{selectedDeliveryProduct ? 'Edit' : 'Tambah'} Pengiriman
|
|
||||||
</h3>
|
|
||||||
<Button
|
|
||||||
variant='ghost'
|
|
||||||
color='error'
|
|
||||||
className='rounded-full'
|
|
||||||
onClick={addDOModal.closeModal}
|
|
||||||
>
|
|
||||||
<Icon icon='mdi:close' width={20} height={20} />
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<MemoizedDeliveryOrderProductForm
|
|
||||||
formState={deliveryFormState}
|
|
||||||
salesOrders={initialValues?.sales_order ?? []}
|
|
||||||
exisitingValues={deliveryOrderValues}
|
|
||||||
onSubmitForm={handleAddSubmitDO}
|
|
||||||
initialValues={selectedDeliveryProduct ?? undefined}
|
|
||||||
onUpdateForm={handleUpdateDO}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Modal>
|
|
||||||
<ConfirmationModal
|
|
||||||
ref={deleteModal.ref}
|
|
||||||
type='error'
|
|
||||||
text={`Apakah anda yakin ingin menghapus data penjualan ini?`}
|
|
||||||
secondaryButton={{
|
|
||||||
text: 'Tidak',
|
|
||||||
onClick: deleteModal.closeModal,
|
|
||||||
}}
|
|
||||||
primaryButton={{
|
|
||||||
text: 'Ya',
|
|
||||||
color: 'error',
|
|
||||||
onClick: deleteMarketingHandler,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default MarketingForm;
|
|
||||||
-47
@@ -1,47 +0,0 @@
|
|||||||
import * as Yup from 'yup';
|
|
||||||
import { SalesOrderProductFormValues } from '@/components/pages/marketing/form/repeater/sales-order/SalesOrderProduct.schema';
|
|
||||||
|
|
||||||
type DeliveryOrderProductSchemaType = {
|
|
||||||
id?: number | undefined;
|
|
||||||
marketing_product_id: number | undefined; // Sales Order ID
|
|
||||||
marketing_product?: SalesOrderProductFormValues | undefined | null;
|
|
||||||
unit_price: string | number | undefined;
|
|
||||||
total_weight: string | number | undefined;
|
|
||||||
qty: string | number | undefined;
|
|
||||||
avg_weight: string | number | undefined;
|
|
||||||
total_price: string | number | undefined;
|
|
||||||
vehicle_number: string | undefined;
|
|
||||||
delivery_date: string | undefined | null;
|
|
||||||
do_number?: string | undefined | null; // Uncertain
|
|
||||||
};
|
|
||||||
|
|
||||||
export const DeliveryOrderProductSchema: Yup.ObjectSchema<DeliveryOrderProductSchemaType> =
|
|
||||||
Yup.object({
|
|
||||||
id: Yup.number(),
|
|
||||||
marketing_product_id: Yup.number()
|
|
||||||
.min(1, 'Produk wajib diisi!')
|
|
||||||
.required('Produk wajib diisi!'),
|
|
||||||
marketing_product: Yup.object().nullable().optional(),
|
|
||||||
unit_price: Yup.number()
|
|
||||||
.min(1, 'Harga Satuan wajib diisi!')
|
|
||||||
.required('Harga Satuan wajib diisi!'),
|
|
||||||
total_weight: Yup.number()
|
|
||||||
.min(0, 'Total Bobot wajib diisi!')
|
|
||||||
.required('Total Bobot wajib diisi!'),
|
|
||||||
qty: Yup.number()
|
|
||||||
.min(1, 'Kuantitas wajib diisi!')
|
|
||||||
.required('Kuantitas wajib diisi!'),
|
|
||||||
avg_weight: Yup.number()
|
|
||||||
.min(0, 'Avg. Bobot wajib diisi!')
|
|
||||||
.required('Avg. Bobot wajib diisi!'),
|
|
||||||
total_price: Yup.number()
|
|
||||||
.min(1, 'Total Penjualan wajib diisi!')
|
|
||||||
.required('Total Penjualan wajib diisi!'),
|
|
||||||
vehicle_number: Yup.string().required('Nomor Kendaraan wajib diisi!'),
|
|
||||||
delivery_date: Yup.string().required('Tanggal Pengiriman wajib diisi!'),
|
|
||||||
do_number: Yup.string().nullable().optional(),
|
|
||||||
});
|
|
||||||
|
|
||||||
export type DeliveryOrderProductFormValues = Yup.InferType<
|
|
||||||
typeof DeliveryOrderProductSchema
|
|
||||||
>;
|
|
||||||
@@ -1,394 +0,0 @@
|
|||||||
import { useEffect, useState } from 'react';
|
|
||||||
import {
|
|
||||||
DeliveryOrderProductFormValues,
|
|
||||||
DeliveryOrderProductSchema,
|
|
||||||
} from './DeliverOrderProduct.schema';
|
|
||||||
import { useFormik } from 'formik';
|
|
||||||
import Alert from '@/components/Alert';
|
|
||||||
import Button from '@/components/Button';
|
|
||||||
import NumberInput from '@/components/input/NumberInput';
|
|
||||||
import PatternInput from '@/components/input/PatternInput';
|
|
||||||
import { formatVechicleNumber } from '@/lib/helper';
|
|
||||||
import DateInput from '@/components/input/DateInput';
|
|
||||||
import SelectInput, { OptionType } from '@/components/input/SelectInput';
|
|
||||||
import { BaseSalesOrder } from '@/types/api/marketing/marketing';
|
|
||||||
import Badge from '@/components/Badge';
|
|
||||||
import { SalesProductToFieldValues } from '@/components/pages/marketing/form/MarketingForm';
|
|
||||||
import * as Yup from 'yup';
|
|
||||||
|
|
||||||
const DeliveryOrderProductForm = ({
|
|
||||||
formState,
|
|
||||||
salesOrders,
|
|
||||||
initialValues,
|
|
||||||
exisitingValues,
|
|
||||||
onSubmitForm,
|
|
||||||
onUpdateForm,
|
|
||||||
}: {
|
|
||||||
formState: 'add' | 'edit';
|
|
||||||
salesOrders: BaseSalesOrder[];
|
|
||||||
initialValues?: DeliveryOrderProductFormValues;
|
|
||||||
exisitingValues?: DeliveryOrderProductFormValues[];
|
|
||||||
onSubmitForm?: (value: DeliveryOrderProductFormValues) => Promise<void>;
|
|
||||||
onUpdateForm?: (
|
|
||||||
id: number,
|
|
||||||
value: DeliveryOrderProductFormValues
|
|
||||||
) => Promise<void>;
|
|
||||||
}) => {
|
|
||||||
const [formikErrorMessage, setFormErrorMessage] = useState('');
|
|
||||||
const [selectedProduct, setSelectedProduct] = useState<OptionType | null>(
|
|
||||||
null
|
|
||||||
);
|
|
||||||
const [currentInput, setCurrentInput] = useState<string>('');
|
|
||||||
const salesOrder = salesOrders.find(
|
|
||||||
(item) => item.id === initialValues?.marketing_product_id
|
|
||||||
);
|
|
||||||
|
|
||||||
const formik = useFormik<DeliveryOrderProductFormValues>({
|
|
||||||
enableReinitialize: true,
|
|
||||||
initialValues: {
|
|
||||||
delivery_date: initialValues?.delivery_date || undefined,
|
|
||||||
vehicle_number: initialValues?.vehicle_number || undefined,
|
|
||||||
marketing_product_id:
|
|
||||||
salesOrder?.id || initialValues?.marketing_product_id || undefined,
|
|
||||||
unit_price: initialValues?.unit_price || undefined,
|
|
||||||
total_weight: initialValues?.total_weight || undefined,
|
|
||||||
qty: initialValues?.qty || undefined,
|
|
||||||
avg_weight: initialValues?.avg_weight || undefined,
|
|
||||||
total_price: initialValues?.total_price || undefined,
|
|
||||||
marketing_product: initialValues?.marketing_product || undefined,
|
|
||||||
},
|
|
||||||
isInitialValid: false,
|
|
||||||
validationSchema: Yup.object().shape({
|
|
||||||
...DeliveryOrderProductSchema.fields,
|
|
||||||
|
|
||||||
qty: Yup.lazy((_, context) => {
|
|
||||||
// values diambil aman dari context
|
|
||||||
const { parent } = context;
|
|
||||||
|
|
||||||
const mpId = parent?.marketing_product_id;
|
|
||||||
const selectedSO = salesOrders.find((item) => item.id === mpId);
|
|
||||||
|
|
||||||
const maxQty = selectedSO?.qty ?? Infinity;
|
|
||||||
|
|
||||||
return Yup.number()
|
|
||||||
.min(1, 'Kuantitas wajib diisi!')
|
|
||||||
.max(maxQty, `Maksimal kuantitas adalah ${maxQty}`)
|
|
||||||
.required('Kuantitas wajib diisi!');
|
|
||||||
}),
|
|
||||||
}),
|
|
||||||
validateOnChange: true,
|
|
||||||
validateOnBlur: true,
|
|
||||||
onSubmit: async (values) => {
|
|
||||||
setFormErrorMessage('');
|
|
||||||
if (initialValues?.id) {
|
|
||||||
await onUpdateForm?.(initialValues.id, values);
|
|
||||||
} else {
|
|
||||||
await onUpdateForm?.(values.marketing_product_id as number, values);
|
|
||||||
}
|
|
||||||
handleResetForm();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const handleResetForm = () => {
|
|
||||||
setFormErrorMessage('');
|
|
||||||
formik.resetForm({
|
|
||||||
values: {
|
|
||||||
delivery_date: '',
|
|
||||||
vehicle_number: '',
|
|
||||||
marketing_product_id: undefined,
|
|
||||||
unit_price: '',
|
|
||||||
total_weight: '',
|
|
||||||
qty: '',
|
|
||||||
avg_weight: '',
|
|
||||||
total_price: '',
|
|
||||||
marketing_product: undefined,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
setSelectedProduct(null);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleBlurField = (field: string) => {
|
|
||||||
setCurrentInput(field);
|
|
||||||
const { qty, unit_price, total_price, avg_weight, total_weight } =
|
|
||||||
formik.values;
|
|
||||||
|
|
||||||
if (field === 'unit_price' || field === 'total_price' || field === 'qty') {
|
|
||||||
if (qty && unit_price && (field === 'unit_price' || field === 'qty')) {
|
|
||||||
formik.setFieldValue('total_price', Number(qty) * Number(unit_price));
|
|
||||||
} else if (qty && total_price && field === 'total_price') {
|
|
||||||
formik.setFieldValue('unit_price', Number(total_price) / Number(qty));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (field === 'avg_weight' || field === 'total_weight' || field === 'qty') {
|
|
||||||
if (qty && avg_weight && (field === 'avg_weight' || field === 'qty')) {
|
|
||||||
formik.setFieldValue('total_weight', Number(qty) * Number(avg_weight));
|
|
||||||
} else if (qty && total_weight && field === 'total_weight') {
|
|
||||||
formik.setFieldValue('avg_weight', Number(total_weight) / Number(qty));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const options = exisitingValues
|
|
||||||
?.map((item) => {
|
|
||||||
if (!Boolean(item.qty)) {
|
|
||||||
return {
|
|
||||||
value: item.id,
|
|
||||||
label: `${item.marketing_product?.product_warehouse?.label} - ${item.marketing_product?.kandang?.label}`,
|
|
||||||
} as OptionType;
|
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
?.filter((item) => item != null) as OptionType[];
|
|
||||||
|
|
||||||
const { setValues: setFormikValues } = formik;
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (initialValues) {
|
|
||||||
if (!Boolean(initialValues.qty)) {
|
|
||||||
handleResetForm();
|
|
||||||
} else {
|
|
||||||
setFormikValues(initialValues);
|
|
||||||
// const value = exisitingValues?.find(
|
|
||||||
// (item) => item.id === initialValues?.id
|
|
||||||
// );
|
|
||||||
if (initialValues?.marketing_product_id) {
|
|
||||||
setSelectedProduct({
|
|
||||||
value: initialValues?.id,
|
|
||||||
label: `${initialValues?.marketing_product?.product_warehouse?.label} - ${initialValues?.marketing_product?.kandang?.label}`,
|
|
||||||
} as OptionType);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, [initialValues]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<form
|
|
||||||
className='size-full'
|
|
||||||
onSubmit={(e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
handleBlurField(currentInput);
|
|
||||||
formik.handleSubmit(e);
|
|
||||||
}}
|
|
||||||
onReset={handleResetForm}
|
|
||||||
>
|
|
||||||
{/* <small className='block text-blue-500'>
|
|
||||||
{JSON.stringify(exisitingValues)}
|
|
||||||
</small>
|
|
||||||
<small className='block text-emerald-500'>
|
|
||||||
{JSON.stringify(formik.values)}
|
|
||||||
</small> */}
|
|
||||||
{/* <small className='block text-red-500'>
|
|
||||||
{JSON.stringify(formik.errors)}
|
|
||||||
</small>
|
|
||||||
<div className='hidden'>
|
|
||||||
{JSON.stringify(formik.values.marketing_product)}
|
|
||||||
</div> */}
|
|
||||||
|
|
||||||
{formikErrorMessage && (
|
|
||||||
<div onClick={() => setFormErrorMessage('')} className='my-3 w-full'>
|
|
||||||
<Alert color='error'>{formikErrorMessage}</Alert>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<div className='grid grid-cols-2 gap-4'>
|
|
||||||
<SelectInput
|
|
||||||
options={options}
|
|
||||||
label='Produk'
|
|
||||||
placeholder='Pilih Produk'
|
|
||||||
isDisabled={formState == 'edit'}
|
|
||||||
value={
|
|
||||||
selectedProduct
|
|
||||||
? ({
|
|
||||||
value: selectedProduct?.value,
|
|
||||||
label: exisitingValues?.find(
|
|
||||||
(item) => item.id === selectedProduct?.value
|
|
||||||
)?.marketing_product?.product_warehouse?.label,
|
|
||||||
} as OptionType)
|
|
||||||
: null
|
|
||||||
}
|
|
||||||
onChange={(value) => {
|
|
||||||
const selected = value as OptionType;
|
|
||||||
setSelectedProduct(selected);
|
|
||||||
|
|
||||||
const so = salesOrders?.find(
|
|
||||||
(item) => item.id === selected?.value
|
|
||||||
);
|
|
||||||
if (!so) {
|
|
||||||
formik.setValues({
|
|
||||||
...formik.values,
|
|
||||||
marketing_product_id: undefined,
|
|
||||||
marketing_product: null,
|
|
||||||
qty: formik.values.qty || '',
|
|
||||||
unit_price: '',
|
|
||||||
total_price: '',
|
|
||||||
avg_weight: '',
|
|
||||||
total_weight: '',
|
|
||||||
vehicle_number: '',
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
formik.setValues({
|
|
||||||
...formik.values,
|
|
||||||
marketing_product_id: selected.value as number,
|
|
||||||
marketing_product: SalesProductToFieldValues(so),
|
|
||||||
qty: formik.values.qty || so.qty,
|
|
||||||
unit_price: so.unit_price,
|
|
||||||
total_price: so.total_price,
|
|
||||||
avg_weight: so.avg_weight,
|
|
||||||
total_weight: so.total_weight,
|
|
||||||
vehicle_number: so.vehicle_number,
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
startAdornment={
|
|
||||||
selectedProduct && (
|
|
||||||
<Badge
|
|
||||||
variant='soft'
|
|
||||||
color='success'
|
|
||||||
size='sm'
|
|
||||||
className={{ badge: 'whitespace-nowrap font-semibold' }}
|
|
||||||
>
|
|
||||||
{
|
|
||||||
exisitingValues?.find(
|
|
||||||
(item) => item.id === selectedProduct?.value
|
|
||||||
)?.marketing_product?.kandang?.label
|
|
||||||
}
|
|
||||||
</Badge>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
isClearable
|
|
||||||
isError={Boolean(formik.errors.marketing_product_id)}
|
|
||||||
errorMessage={formik.errors.marketing_product_id}
|
|
||||||
required
|
|
||||||
/>
|
|
||||||
<DateInput
|
|
||||||
name='delivery_date'
|
|
||||||
label='Tanggal'
|
|
||||||
value={formik.values.delivery_date ?? undefined}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
onBlur={formik.handleBlur}
|
|
||||||
isError={
|
|
||||||
formik.touched.delivery_date &&
|
|
||||||
Boolean(formik.errors.delivery_date)
|
|
||||||
}
|
|
||||||
errorMessage={formik.errors.delivery_date}
|
|
||||||
placeholder='Pilih Tanggal'
|
|
||||||
className={{
|
|
||||||
inputWrapper: 'bg-white',
|
|
||||||
}}
|
|
||||||
required
|
|
||||||
/>
|
|
||||||
|
|
||||||
<PatternInput
|
|
||||||
name='vehicle_number'
|
|
||||||
label='No. Polisi'
|
|
||||||
format='AA #### AAA'
|
|
||||||
mask='_'
|
|
||||||
inputVehicleNumber
|
|
||||||
required
|
|
||||||
type='text'
|
|
||||||
placeholder='B 1234 CDE'
|
|
||||||
value={formatVechicleNumber(formik.values.vehicle_number ?? '')}
|
|
||||||
onChange={formik.handleChange}
|
|
||||||
onBlur={formik.handleBlur}
|
|
||||||
isError={Boolean(formik.errors.vehicle_number)}
|
|
||||||
errorMessage={formik.errors.vehicle_number}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<NumberInput
|
|
||||||
required
|
|
||||||
label='Kuantitas'
|
|
||||||
name='qty'
|
|
||||||
value={formik.values.qty}
|
|
||||||
onChange={(e) => {
|
|
||||||
formik.handleChange(e);
|
|
||||||
setCurrentInput(e.target.name);
|
|
||||||
}}
|
|
||||||
onBlur={() => handleBlurField('qty')}
|
|
||||||
isError={Boolean(formik.errors.qty)}
|
|
||||||
errorMessage={formik.errors.qty}
|
|
||||||
placeholder='Masukan Kuantitas'
|
|
||||||
/>
|
|
||||||
|
|
||||||
<NumberInput
|
|
||||||
required
|
|
||||||
label='Avg. Bobot (Kg)'
|
|
||||||
name='avg_weight'
|
|
||||||
value={formik.values.avg_weight}
|
|
||||||
onChange={(e) => {
|
|
||||||
formik.handleChange(e);
|
|
||||||
setCurrentInput(e.target.name);
|
|
||||||
}}
|
|
||||||
onBlur={() => handleBlurField('avg_weight')}
|
|
||||||
isError={Boolean(formik.errors.avg_weight)}
|
|
||||||
errorMessage={formik.errors.avg_weight}
|
|
||||||
placeholder='Masukan Bobot Rata-rata'
|
|
||||||
/>
|
|
||||||
|
|
||||||
<NumberInput
|
|
||||||
required
|
|
||||||
label='Harga Satuan (Rp)'
|
|
||||||
name='unit_price'
|
|
||||||
value={formik.values.unit_price}
|
|
||||||
onChange={(e) => {
|
|
||||||
formik.handleChange(e);
|
|
||||||
setCurrentInput(e.target.name);
|
|
||||||
}}
|
|
||||||
onBlur={() => handleBlurField('unit_price')}
|
|
||||||
isError={Boolean(formik.errors.unit_price)}
|
|
||||||
errorMessage={formik.errors.unit_price}
|
|
||||||
placeholder='Masukan Harga Satuan'
|
|
||||||
/>
|
|
||||||
|
|
||||||
<NumberInput
|
|
||||||
required
|
|
||||||
label='Total Bobot (Kg)'
|
|
||||||
name='total_weight'
|
|
||||||
value={formik.values.total_weight}
|
|
||||||
onChange={(e) => {
|
|
||||||
formik.handleChange(e);
|
|
||||||
setCurrentInput(e.target.name);
|
|
||||||
}}
|
|
||||||
onBlur={() => handleBlurField('total_weight')}
|
|
||||||
isError={Boolean(formik.errors.total_weight)}
|
|
||||||
errorMessage={formik.errors.total_weight}
|
|
||||||
placeholder='Masukan Total Bobot'
|
|
||||||
/>
|
|
||||||
|
|
||||||
<NumberInput
|
|
||||||
required
|
|
||||||
label='Total Penjualan (Rp)'
|
|
||||||
name='total_price'
|
|
||||||
value={formik.values.total_price}
|
|
||||||
onChange={(e) => {
|
|
||||||
formik.handleChange(e);
|
|
||||||
setCurrentInput(e.target.name);
|
|
||||||
}}
|
|
||||||
onBlur={() => handleBlurField('total_price')}
|
|
||||||
isError={Boolean(formik.errors.total_price)}
|
|
||||||
errorMessage={formik.errors.total_price}
|
|
||||||
placeholder='Masukan Total Penjualan'
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='flex flex-row justify-end gap-3 mt-4'>
|
|
||||||
<Button type='reset' color='warning'>
|
|
||||||
Reset
|
|
||||||
</Button>
|
|
||||||
<Button
|
|
||||||
type='submit'
|
|
||||||
isLoading={formik.isSubmitting}
|
|
||||||
disabled={!formik.isValid || formik.isSubmitting}
|
|
||||||
>
|
|
||||||
Submit
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default DeliveryOrderProductForm;
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
import * as Yup from 'yup';
|
|
||||||
|
|
||||||
type SalesOrderProductSchemaType = {
|
|
||||||
id?: number | undefined;
|
|
||||||
kandang_id?: number;
|
|
||||||
kandang?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
} | null;
|
|
||||||
product_warehouse?: {
|
|
||||||
value: number;
|
|
||||||
label: string;
|
|
||||||
} | null;
|
|
||||||
product_warehouse_id?: number;
|
|
||||||
unit_price: string | number | undefined;
|
|
||||||
total_weight: string | number | undefined;
|
|
||||||
qty: string | number | undefined;
|
|
||||||
avg_weight: string | number | undefined;
|
|
||||||
total_price: string | number | undefined;
|
|
||||||
vehicle_number?: string | undefined;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const SalesOrderProductSchema: Yup.ObjectSchema<SalesOrderProductSchemaType> =
|
|
||||||
Yup.object({
|
|
||||||
id: Yup.number(),
|
|
||||||
vehicle_number: Yup.string().required('Nomor Kendaraan wajib diisi!'),
|
|
||||||
kandang: Yup.object({
|
|
||||||
value: Yup.number().min(1).required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).nullable(),
|
|
||||||
kandang_id: Yup.number()
|
|
||||||
.min(1, 'Kandang wajib diisi!')
|
|
||||||
.required('Kandang wajib diisi!'),
|
|
||||||
product_warehouse: Yup.object({
|
|
||||||
value: Yup.number().min(1).required(),
|
|
||||||
label: Yup.string().required(),
|
|
||||||
}).nullable(),
|
|
||||||
product_warehouse_id: Yup.number()
|
|
||||||
.min(1, 'Produk wajib diisi!')
|
|
||||||
.required('Produk wajib diisi!'),
|
|
||||||
unit_price: Yup.number()
|
|
||||||
.min(1, 'Harga Satuan wajib diisi!')
|
|
||||||
.required('Harga Satuan wajib diisi!'),
|
|
||||||
total_weight: Yup.number()
|
|
||||||
.min(0, 'Total Bobot wajib diisi!')
|
|
||||||
.required('Total Bobot wajib diisi!'),
|
|
||||||
qty: Yup.number()
|
|
||||||
.min(1, 'Kuantitas wajib diisi!')
|
|
||||||
.required('Kuantitas wajib diisi!'),
|
|
||||||
avg_weight: Yup.number()
|
|
||||||
.min(0, 'Avg. Bobot wajib diisi!')
|
|
||||||
.required('Avg. Bobot wajib diisi!'),
|
|
||||||
total_price: Yup.number()
|
|
||||||
.min(1, 'Total Penjualan wajib diisi!')
|
|
||||||
.required('Total Penjualan wajib diisi!'),
|
|
||||||
});
|
|
||||||
|
|
||||||
export type SalesOrderProductFormValues = Yup.InferType<
|
|
||||||
typeof SalesOrderProductSchema
|
|
||||||
>;
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user