You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.3 KiB
121 lines
3.3 KiB
import React, { useEffect, useRef, useState } from 'react' |
|
import Highcharts from 'highcharts' |
|
import HighchartsReact from 'highcharts-react-official' |
|
import { Col, Row } from 'reactstrap' |
|
import { format_angka } from '../util' |
|
import $ from 'jquery' |
|
const date = new Date() |
|
const cBulan = date.getMonth() + 1 |
|
import { Skeleton } from 'primereact/skeleton' |
|
import collect from 'collect.js' |
|
|
|
const Pembayaran = ({ dataSend }) => { |
|
const base_url = '<?=base_url()?>' |
|
|
|
const refChart = useRef(null) |
|
const refChart1 = useRef(null) |
|
const refChart2 = useRef(null) |
|
const [dataC, setDataC] = useState(null) |
|
const [dataMin1, setDataMin1] = useState(null) |
|
const [dataMin2, setDataMin2] = useState(null) |
|
const [loading, setLoading] = useState(false) |
|
|
|
const currentMonth = '<?=currentMonth()?>' |
|
const currentYear = '<?=currentYear()?>' |
|
useEffect(() => { |
|
setLoading(true) |
|
$.get({ |
|
url: base_url + 'kewilayahan/kytp/sebaranPembayaran', |
|
dataType: 'json', |
|
type: 'POST', |
|
data: { |
|
...dataSend, |
|
tahun: currentYear, |
|
bulan: currentMonth |
|
}, |
|
success: (data) => { |
|
setDataC(data.dataC) |
|
setDataMin1(data.dataMin1) |
|
setDataMin2(data.dataMin2) |
|
setLoading(false) |
|
} |
|
}) |
|
}, [dataSend]) |
|
|
|
const optionsChart = (data, title, type) => { |
|
const total_wp = collect(data).sum('y') |
|
return { |
|
chart: { |
|
plotBackgroundColor: null, |
|
plotBorderWidth: null, |
|
plotShadow: false, |
|
type: 'pie', |
|
zoomType: 'xy', |
|
height: '300' |
|
}, |
|
title: { |
|
text: title, |
|
style: { fontSize: '10px' } |
|
}, |
|
tooltip: { |
|
pointFormat: '<b>{point.percentage:.1f}%</b><br>Jml NPWP : {point.y} dari ' + format_angka(total_wp) |
|
}, |
|
accessibility: { |
|
point: { |
|
valueSuffix: '%' |
|
} |
|
}, |
|
plotOptions: { |
|
pie: { |
|
allowPointSelect: true, |
|
cursor: 'pointer', |
|
//colors : warna_garis, |
|
dataLabels: { |
|
enabled: true, |
|
style: { fontSize: '10px' }, |
|
format: '{point.name}: <br> {point.percentage:.1f} %' |
|
} |
|
// showInLegend: true |
|
} |
|
// series: pie_click |
|
}, |
|
series: [ |
|
{ |
|
name: type, |
|
data |
|
} |
|
] |
|
} |
|
} |
|
return ( |
|
<> |
|
<Row> |
|
<Col md="4" className=""> |
|
{loading ? ( |
|
<div className="text-center"> |
|
<Skeleton className="" shape="circle" size="15rem"></Skeleton> |
|
</div> |
|
) : ( |
|
<HighchartsReact ref={refChart} highcharts={Highcharts} options={optionsChart(dataC, 's.d. bulan ini', 'C')} /> |
|
)} |
|
</Col> |
|
<Col md="4"> |
|
{loading ? ( |
|
<Skeleton className="" shape="circle" size="15rem"></Skeleton> |
|
) : ( |
|
<HighchartsReact ref={refChart1} highcharts={Highcharts} options={optionsChart(dataMin1, 's.d. bulan lalu', 'Min1')} /> |
|
)} |
|
</Col> |
|
<Col md="4"> |
|
{loading ? ( |
|
<Skeleton className="center text-center" shape="circle" size="15rem"></Skeleton> |
|
) : ( |
|
<HighchartsReact ref={refChart2} highcharts={Highcharts} options={optionsChart(dataMin2, 's.d. 2 bulan yang lalu', 'Min2')} /> |
|
)} |
|
</Col> |
|
</Row> |
|
</> |
|
) |
|
} |
|
|
|
export default Pembayaran
|
|
|