@ -1,25 +1,28 @@
import React , { useEffect , useRef , useState } from "react"
import React , { useEffect , useRef , useState } from "react"
import ReactDOM from "react-dom"
import ReactDOM from "react-dom"
import { Button , Card , CardBody , CardText , CardTitle , Col , Label , Nav , NavItem , NavLink , Row , TabContent , TabPane } from "reactstrap"
import { Button , Card , CardBody , CardHeader , Card Text , CardTitle , Col , Label , Nav , NavItem , NavLink , Row , TabContent , TabPane } from "reactstrap"
import Select from "react-select"
import Select from "react-select"
import jQuery from "jquery"
import jQuery from "jquery"
import collect from "collect.js"
import collect from "collect.js"
import { format _angka , isObjEmpty } from "./util"
import { format _angka , isObjEmpty } from "./util"
import { MultiSelect } from "react-multi-select-component"
import { MultiSelect } from "react-multi-select-component"
import Highcharts from 'highcharts'
import Highcharts from "highcharts"
import HighchartsReact from 'highcharts-react-official'
import HighchartsReact from "highcharts-react-official"
import { Toast } from 'primereact/toast' ;
import { Toast } from "primereact/toast"
import { Button as ButtonP } from 'primereact/button' ;
import { Button as ButtonP } from "primereact/button"
import "primereact/resources/themes/bootstrap4-light-blue/theme.css" ;
import "primereact/resources/themes/bootstrap4-light-blue/theme.css"
import "primeflex/primeflex.css"
import TabProgresifitas from "./TabProgresifitas"
import TabProgresifitas from "./TabProgresifitas"
import TabPenugasan from "./TabPenugasan"
// import 'bootstrap/dist/css/bootstrap.m in.css';
// import 'bootstrap/dist/css/bootstrap.m in.css';
// let datasend = {}
const Root = ( ) => {
const Root = ( ) => {
const base _url = "<?=base_url()?>"
const base _url = "<?=base_url()?>"
const refChart1 = useRef ( null )
const refChart1 = useRef ( null )
const toast = useRef ( null ) ;
const toast = useRef ( null )
const [ active , setActive ] = useState ( 'wilayah' )
const [ active , setActive ] = useState ( "wilayah" )
const toggle = tab => {
const toggle = ( tab ) => {
setActive ( tab )
setActive ( tab )
}
}
@ -45,24 +48,29 @@ const Root = () => {
const [ arSelected , setArSelected ] = useState ( [ ] )
const [ arSelected , setArSelected ] = useState ( [ ] )
const [ zpSelected , setZpSelected ] = useState ( [ ] )
const [ zpSelected , setZpSelected ] = useState ( [ ] )
const [ dataSend , setDataSend ] = useState ( { opsiWilZona : null , adm4 _pcode : [ ] , id _poly _zona : [ ] } )
const [ dataGraphMatoa , setDataGraphMatoa ] = useState ( { poi _agg : [ ] , kpdl _agg : [ ] } )
const [ dataGraphMatoa , setDataGraphMatoa ] = useState ( { poi _agg : [ ] , kpdl _agg : [ ] } )
useEffect ( ( ) => {
useEffect ( ( ) => {
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/propinsi' , method : "GET" , dataType : "json" , success : ( ( data ) => {
url : base _url + "kewilayahan/ref/propinsi" ,
method : "GET" ,
dataType : "json" ,
success : ( data ) => {
setProp ( data )
setProp ( data )
} )
}
} )
} )
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/zpkanwil' , method : "GET" , dataType : "json" , success : ( ( data ) => {
url : base _url + "kewilayahan/ref/zpkanwil" ,
method : "GET" ,
dataType : "json" ,
success : ( data ) => {
setKanwil ( data )
setKanwil ( data )
} )
}
} )
} )
} , [ ] )
} , [ ] )
useEffect ( ( ) => {
useEffect ( ( ) => {
setKota ( { } )
setKota ( { } )
setKec ( [ ] )
setKec ( [ ] )
@ -73,13 +81,13 @@ const Root = () => {
if ( propSelected && ! isObjEmpty ( propSelected ) ) {
if ( propSelected && ! isObjEmpty ( propSelected ) ) {
const prop = propSelected . value
const prop = propSelected . value
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/kota' ,
url : base _url + "kewilayahan/ref/kota" ,
method : "GET" ,
method : "GET" ,
dataType : "json" ,
dataType : "json" ,
data : { prop } ,
data : { prop } ,
success : ( ( data ) => {
success : ( data ) => {
setKota ( data )
setKota ( data )
} )
}
} )
} )
}
}
} , [ propSelected ] )
} , [ propSelected ] )
@ -92,15 +100,14 @@ const Root = () => {
if ( kotaSelected && ! isObjEmpty ( kotaSelected ) ) {
if ( kotaSelected && ! isObjEmpty ( kotaSelected ) ) {
const kota = kotaSelected . value
const kota = kotaSelected . value
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/kecamatan' ,
url : base _url + "kewilayahan/ref/kecamatan" ,
method : "GET" ,
method : "GET" ,
dataType : "json" ,
dataType : "json" ,
data : { kota } ,
data : { kota } ,
success : ( ( data ) => {
success : ( data ) => {
setKec ( data )
setKec ( data )
}
} )
} )
} )
}
}
} , [ kotaSelected ] )
} , [ kotaSelected ] )
@ -109,18 +116,17 @@ const Root = () => {
setKelSelected ( [ ] )
setKelSelected ( [ ] )
console . log ( { kecSelected } )
console . log ( { kecSelected } )
if ( kecSelected . length && ! isObjEmpty ( kecSelected ) ) {
if ( kecSelected . length && ! isObjEmpty ( kecSelected ) ) {
const kec = collect ( kecSelected ) . pluck ( 'value' ) . all ( )
const kec = collect ( kecSelected ) . pluck ( "value" ) . all ( )
console . log ( { kec } )
console . log ( { kec } )
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/kelurahan' ,
url : base _url + "kewilayahan/ref/kelurahan" ,
method : "GET" ,
method : "GET" ,
dataType : "json" ,
dataType : "json" ,
data : { kec } ,
data : { kec } ,
success : ( ( data ) => {
success : ( data ) => {
setKel ( data )
setKel ( data )
}
} )
} )
} )
}
}
} , [ kecSelected ] )
} , [ kecSelected ] )
@ -136,13 +142,13 @@ const Root = () => {
if ( kanwilSelected && ! isObjEmpty ( kanwilSelected ) ) {
if ( kanwilSelected && ! isObjEmpty ( kanwilSelected ) ) {
const kanwil = kanwilSelected . value
const kanwil = kanwilSelected . value
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/zpkpp' ,
url : base _url + "kewilayahan/ref/zpkpp" ,
method : "GET" ,
method : "GET" ,
dataType : "json" ,
dataType : "json" ,
data : { kanwil } ,
data : { kanwil } ,
success : ( ( data ) => {
success : ( data ) => {
setKpp ( data )
setKpp ( data )
} )
}
} )
} )
}
}
} , [ kanwilSelected ] )
} , [ kanwilSelected ] )
@ -155,15 +161,15 @@ const Root = () => {
setArSelected ( [ ] )
setArSelected ( [ ] )
setZpSelected ( [ ] )
setZpSelected ( [ ] )
if ( kppSelected && ! isObjEmpty ( kppSelected ) ) {
if ( kppSelected && ! isObjEmpty ( kppSelected ) ) {
const kpp = collect ( kppSelected ) . pluck ( 'value' ) . all ( )
const kpp = collect ( kppSelected ) . pluck ( "value" ) . all ( )
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/zpseksi' ,
url : base _url + "kewilayahan/ref/zpseksi" ,
method : "GET" ,
method : "GET" ,
dataType : "json" ,
dataType : "json" ,
data : { kpp } ,
data : { kpp } ,
success : ( ( data ) => {
success : ( data ) => {
setSeksi ( data )
setSeksi ( data )
} )
}
} )
} )
}
}
} , [ kppSelected ] )
} , [ kppSelected ] )
@ -174,17 +180,17 @@ const Root = () => {
setArSelected ( [ ] )
setArSelected ( [ ] )
setZpSelected ( [ ] )
setZpSelected ( [ ] )
if ( seksiSelected && ! isObjEmpty ( seksiSelected ) ) {
if ( seksiSelected && ! isObjEmpty ( seksiSelected ) ) {
const kpp = collect ( kppSelected ) . pluck ( 'value' ) . all ( )
const kpp = collect ( kppSelected ) . pluck ( "value" ) . all ( )
const seksi = collect ( seksiSelected ) . pluck ( 'value' ) . all ( )
const seksi = collect ( seksiSelected ) . pluck ( "value" ) . all ( )
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/zpar' ,
url : base _url + "kewilayahan/ref/zpar" ,
method : "GET" ,
method : "GET" ,
dataType : "json" ,
dataType : "json" ,
data : { kpp , seksi } ,
data : { kpp , seksi } ,
success : ( ( data ) => {
success : ( data ) => {
setAr ( data )
setAr ( data )
} )
}
} )
} )
}
}
} , [ seksiSelected ] )
} , [ seksiSelected ] )
@ -193,69 +199,51 @@ const Root = () => {
setZp ( [ ] )
setZp ( [ ] )
setZpSelected ( [ ] )
setZpSelected ( [ ] )
if ( arSelected && ! isObjEmpty ( arSelected ) ) {
if ( arSelected && ! isObjEmpty ( arSelected ) ) {
const kpp = collect ( kppSelected ) . pluck ( 'value' ) . all ( )
const kpp = collect ( kppSelected ) . pluck ( "value" ) . all ( )
const seksi = collect ( seksiSelected ) . pluck ( 'value' ) . all ( )
const seksi = collect ( seksiSelected ) . pluck ( "value" ) . all ( )
const ar = collect ( arSelected ) . pluck ( 'value' ) . all ( )
const ar = collect ( arSelected ) . pluck ( "value" ) . all ( )
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/ref/zpzp' ,
url : base _url + "kewilayahan/ref/zpzp" ,
method : "GET" ,
method : "GET" ,
dataType : "json" ,
dataType : "json" ,
data : { kpp , seksi , ar } ,
data : { kpp , seksi , ar } ,
success : ( ( data ) => {
success : ( data ) => {
setZp ( data )
setZp ( data )
} )
}
} )
} )
}
}
} , [ arSelected ] )
} , [ arSelected ] )
const buttonProsesOnClick = ( ) => {
const buttonProsesOnClick = ( ) => {
const opsiWilZona = active
const opsiWilZona = active
const adm4 _pcode = collect ( kelSelected ) . pluck ( 'value' ) . all ( )
const adm4 _pcode = collect ( kelSelected ) . pluck ( "value" ) . all ( )
const id _poly _zona = collect ( zpSelected ) . pluck ( 'value' ) . all ( )
const id _poly _zona = collect ( zpSelected ) . pluck ( "value" ) . all ( )
let datasend = {
opsiWilZona ,
}
switch ( opsiWilZona ) {
switch ( opsiWilZona ) {
case 'wilayah' :
case "wilayah" :
if ( adm4 _pcode . length ) {
if ( adm4 _pcode . length ) {
datasend . adm4 _pcode = adm4 _pcode
setDataSend ( { opsiWilZona : "wilayah" , adm4 _pcode , id _poly _zona : [ ] } )
} else {
} else {
toast . current . show ( { severity : 'info' , summary : 'Info' , detail : 'Kelurahan harus dipilih' } ) ;
toast . current . show ( { severity : "info" , summary : "Info" , detail : "Kelurahan harus dipilih" } )
}
}
break ;
break
case 'zona' :
case "zona" :
if ( id _poly _zona . length ) {
if ( id _poly _zona . length ) {
setDataSend ( { opsiWilZona : "zona" , adm4 _pcode : [ ] , id _poly _zona } )
datasend . id _poly _zona = id _poly _zona
} else {
} else {
toast . current . show ( { severity : 'info' , summary : 'Info' , detail : 'Zona harus dipilih' } ) ;
toast . current . show ( { severity : "info" , summary : "Info" , detail : "Zona harus dipilih" } )
}
}
break ;
break
default :
default :
break ;
break
}
}
jQuery . ajax ( {
url : base _url + 'kewilayahan/kytp/graph_matoa' ,
dataType : "json" ,
type : "POST" ,
data : datasend ,
success : ( data ) => {
setDataGraphMatoa ( data )
}
} )
}
}
useEffect ( ( ) => {
useEffect ( ( ) => {
Highcharts . setOptions ( {
Highcharts . setOptions ( {
lang : {
lang : {
decimalPoint : ',' ,
decimalPoint : "," ,
thousandsSep : '.' ,
thousandsSep : "." ,
numericSymbols : [ "rb" , "jt" , "M" , "T" , "P" , "E" ]
numericSymbols : [ "rb" , "jt" , "M" , "T" , "P" , "E" ]
} ,
} ,
@ -264,37 +252,37 @@ const Root = () => {
}
}
} )
} )
jQuery . ajax ( {
jQuery . ajax ( {
url : base _url + 'kewilayahan/kytp/graph_matoa' ,
url : base _url + "kewilayahan/kytp/graph_matoa" ,
dataType : "json" ,
dataType : "json" ,
type : "POST" ,
type : "POST" ,
data : { ... dataSend } ,
success : ( data ) => {
success : ( data ) => {
setDataGraphMatoa ( data )
setDataGraphMatoa ( data )
}
}
} )
} )
} , [ dataSend ] )
} , [ ] )
const optionsGraphMatoaAgg = {
const optionsGraphMatoaAgg = {
chart : {
chart : {
zoomType : 'xy' ,
zoomType : "xy" ,
height : '320' ,
height : "320"
} ,
} ,
title : {
title : {
text : 'Poi Google dan Matoa' ,
text : "Poi Google dan Matoa"
// align: 'center'
// align: 'center'
} ,
} ,
xAxis : [ {
xAxis : [
categories : [ 'Jan' , 'Feb' , 'Mar' , 'Apr' , 'May' , 'Jun' ,
{
'Jul' , 'Aug' , 'Sep' , 'Oct' , 'Nov' , 'Dec' ] ,
categories : [ "Jan" , "Feb" , "Mar" , "Apr" , "May" , "Jun" , "Jul" , "Aug" , "Sep" , "Oct" , "Nov" , "Dec" ] ,
crosshair : true
crosshair : true
} ] ,
}
] ,
yAxis : [
yAxis : [
{
{
gridLineWidth : 0 ,
gridLineWidth : 0 ,
title : {
title : {
text : '' ,
text : "" ,
style : {
style : {
color : Highcharts . getOptions ( ) . colors [ 0 ]
color : Highcharts . getOptions ( ) . colors [ 0 ]
}
}
@ -315,19 +303,18 @@ const Root = () => {
}
}
} ,
} ,
title : {
title : {
text : 'NPWP Work True' ,
text : "NPWP Work True" ,
style : {
style : {
color : Highcharts . getOptions ( ) . colors [ 1 ]
color : Highcharts . getOptions ( ) . colors [ 1 ]
}
}
} ,
} ,
opposite : true ,
opposite : true ,
visible : false
visible : false
} ,
} ,
{
{
gridLineWidth : 0 ,
gridLineWidth : 0 ,
title : {
title : {
text : 'Rupiah' ,
text : "Rupiah" ,
style : {
style : {
color : Highcharts . getOptions ( ) . colors [ 2 ]
color : Highcharts . getOptions ( ) . colors [ 2 ]
}
}
@ -344,7 +331,7 @@ const Root = () => {
{
{
gridLineWidth : 0 ,
gridLineWidth : 0 ,
title : {
title : {
text : '' ,
text : "" ,
style : {
style : {
color : "#FF0000"
color : "#FF0000"
}
}
@ -362,32 +349,33 @@ const Root = () => {
shared : true
shared : true
} ,
} ,
legend : {
legend : {
layout : 'horizontal' ,
layout : "horizontal" ,
align : 'center' ,
align : "center" ,
//x: 80,
//x: 80,
verticalAlign : 'top' ,
verticalAlign : "top" ,
//y: 55,
//y: 55,
//floating: true,
//floating: true,
backgroundColor :
backgroundColor :
Highcharts . defaultOptions . legend . backgroundColor || // theme
Highcharts . defaultOptions . legend . backgroundColor || // theme
'rgba(255,255,255,0.25)'
"rgba(255,255,255,0.25)"
} ,
} ,
series : [ {
series : [
color : '#FF0000' ,
{
name : 'Jml PoI' ,
color : "#FF0000" ,
type : 'column' ,
name : "Jml PoI" ,
type : "column" ,
yAxis : 3 ,
yAxis : 3 ,
data : dataGraphMatoa . poi _agg ,
data : dataGraphMatoa . poi _agg ,
marker : {
marker : {
enabled : true
enabled : true
} ,
} ,
tooltip : {
tooltip : {
valueSuffix : ' PoI'
valueSuffix : " PoI"
} ,
}
} ,
} ,
{
{
name : 'Matoa' ,
name : "Matoa" ,
type : 'spline' ,
type : "spline" ,
yAxis : 3 ,
yAxis : 3 ,
data : dataGraphMatoa . kpdl _agg ,
data : dataGraphMatoa . kpdl _agg ,
marker : {
marker : {
@ -396,26 +384,35 @@ const Root = () => {
tooltip : {
tooltip : {
pointFormatter : function ( ) {
pointFormatter : function ( ) {
const idx = this . index
const idx = this . index
let pct _coverage ;
let pct _coverage
const jml _poi _agg = dataGraphMatoa . poi _agg
const jml _poi _agg = dataGraphMatoa . poi _agg
if ( jml _poi _agg [ idx ] && jml _poi _agg [ idx ] !== 0 ) {
if ( jml _poi _agg [ idx ] && jml _poi _agg [ idx ] !== 0 ) {
pct _coverage = format _angka ( parseFloat ( ( parseFloat ( this . y ) / jml _poi _agg [ idx ] * 100 ) ) . toFixed ( 2 ) ) + '%' ;
pct _coverage = format _angka ( parseFloat ( ( parseFloat ( this . y ) / jml _poi _agg [ idx ] ) * 100 ) . toFixed ( 2 ) ) + "%"
}
}
let s = '<span style="color:' + this . color + '">\u25CF</span> ' + this . series . name + ': <b>' + format _angka ( this . y ) + ' lokasi kpdl</b> ' + ( ( pct _coverage ) ? '(' + pct _coverage + ')<br>\n' : '<br>' )
let s =
return s ;
'<span style="color:' +
this . color +
'">\u25CF</span> ' +
this . series . name +
": <b>" +
format _angka ( this . y ) +
" lokasi kpdl</b> " +
( pct _coverage ? "(" + pct _coverage + ")<br>\n" : "<br>" )
return s
} ,
} ,
shared : false
shared : false
} ,
} ,
visible : true ,
visible : true ,
color : "#8000ff"
color : "#8000ff"
} ] ,
}
]
}
}
return < >
return (
< >
< Row className = "text-center" >
< Row className = "text-center" >
< Col >
< Col >
< h2 > E - Geospatial Thematic Tax < / h 2 >
< h2 > E - Geospatial Thematic Tax < / h 2 >
< / C o l >
< / C o l >
< / R o w >
< / R o w >
@ -423,22 +420,24 @@ const Root = () => {
< Col sm = "12" >
< Col sm = "12" >
< Card >
< Card >
< CardBody >
< CardBody >
< Nav tabs >
< Nav tabs >
< NavItem >
< NavItem >
< NavLink style = { { cursor : "pointer" } }
< NavLink
active = { active === 'wilayah' }
style = { { cursor : "pointer" } }
active = { active === "wilayah" }
onClick = { ( ) => {
onClick = { ( ) => {
toggle ( 'wilayah' )
toggle ( "wilayah" )
} }
} }
>
>
Wilayah Adm .
Wilayah Adm .
< / N a v L i n k >
< / N a v L i n k >
< / N a v I t e m >
< / N a v I t e m >
< NavItem >
< NavItem >
< NavLink style = { { cursor : "pointer" } }
< NavLink
active = { active === 'zona' }
style = { { cursor : "pointer" } }
active = { active === "zona" }
onClick = { ( ) => {
onClick = { ( ) => {
toggle ( 'zona' )
toggle ( "zona" )
} }
} }
>
>
Zona Pengawasan
Zona Pengawasan
@ -449,7 +448,7 @@ const Root = () => {
< TabPane tabId = "wilayah" >
< TabPane tabId = "wilayah" >
< Row >
< Row >
< Col md = "3" >
< Col md = "3" >
< Label className = 'form-label' for = 'basicInput' >
< Label className = "form-label" for = "basicInput" >
Propinsi
Propinsi
< / L a b e l >
< / L a b e l >
< Select
< Select
@ -466,7 +465,7 @@ const Root = () => {
/ >
/ >
< / C o l >
< / C o l >
< Col md = "3" >
< Col md = "3" >
< Label className = 'form-label' for = 'basicInput' >
< Label className = "form-label" for = "basicInput" >
Kota / Kab
Kota / Kab
< / L a b e l >
< / L a b e l >
< Select
< Select
@ -483,7 +482,7 @@ const Root = () => {
/ >
/ >
< / C o l >
< / C o l >
< Col md = "3" >
< Col md = "3" >
< Label className = 'form-label' for = 'Pilih Kecamatan' >
< Label className = "form-label" for = "Pilih Kecamatan" >
Kecamatan
Kecamatan
< / L a b e l >
< / L a b e l >
< MultiSelect
< MultiSelect
@ -500,7 +499,7 @@ const Root = () => {
/ >
/ >
< / C o l >
< / C o l >
< Col md = "3" >
< Col md = "3" >
< Label className = 'form-label' for = 'Pilih Kelurahan' >
< Label className = "form-label" for = "Pilih Kelurahan" >
Kelurahan
Kelurahan
< / L a b e l >
< / L a b e l >
< MultiSelect
< MultiSelect
@ -516,16 +515,17 @@ const Root = () => {
overrideStrings = { { allItemsAreSelected : "Semua dipilih" , selectSomeItems : "Pilih Kelurahan" } }
overrideStrings = { { allItemsAreSelected : "Semua dipilih" , selectSomeItems : "Pilih Kelurahan" } }
/ >
/ >
< / C o l >
< / C o l >
< Col md = "3" >
< / R o w >
< ButtonP onClick = { ( ) => buttonProsesOnClick ( ) } label = "Proses" severity = "success" / >
< Row className = "mt-2" >
< Col sm = "12" >
< ButtonP onClick = { ( ) => buttonProsesOnClick ( ) } label = "Proses" severity = "" rounded className = "w-10rem text-white text-base" / >
< / C o l >
< / C o l >
< / R o w >
< / R o w >
< / T a b P a n e >
< / T a b P a n e >
< TabPane tabId = "zona" >
< TabPane tabId = "zona" >
< Row >
< Row >
< Col md = "2" >
< Col md = "2" >
< Label className = 'form-label' for = 'basicInput' >
< Label className = "form-label" for = "basicInput" >
Kanwil
Kanwil
< / L a b e l >
< / L a b e l >
< Select
< Select
@ -542,7 +542,7 @@ const Root = () => {
/ >
/ >
< / C o l >
< / C o l >
< Col md = "2" >
< Col md = "2" >
< Label className = 'form-label' for = 'Pilih KPP' >
< Label className = "form-label" for = "Pilih KPP" >
KPP
KPP
< / L a b e l >
< / L a b e l >
< MultiSelect
< MultiSelect
@ -559,7 +559,7 @@ const Root = () => {
/ >
/ >
< / C o l >
< / C o l >
< Col md = "2" >
< Col md = "2" >
< Label className = 'form-label' for = 'Pilih Seksi' >
< Label className = "form-label" for = "Pilih Seksi" >
Seksi
Seksi
< / L a b e l >
< / L a b e l >
< MultiSelect
< MultiSelect
@ -576,7 +576,7 @@ const Root = () => {
/ >
/ >
< / C o l >
< / C o l >
< Col md = "3" >
< Col md = "3" >
< Label className = 'form-label' for = 'Pilih AR' >
< Label className = "form-label" for = "Pilih AR" >
AR
AR
< / L a b e l >
< / L a b e l >
< MultiSelect
< MultiSelect
@ -593,7 +593,7 @@ const Root = () => {
/ >
/ >
< / C o l >
< / C o l >
< Col md = "3" >
< Col md = "3" >
< Label className = 'form-label' for = 'Pilih Zona' >
< Label className = "form-label" for = "Pilih Zona" >
Zona Pengawasan
Zona Pengawasan
< / L a b e l >
< / L a b e l >
< MultiSelect
< MultiSelect
@ -609,15 +609,14 @@ const Root = () => {
overrideStrings = { { allItemsAreSelected : "Semua dipilih" , selectSomeItems : "Pilih Zona" } }
overrideStrings = { { allItemsAreSelected : "Semua dipilih" , selectSomeItems : "Pilih Zona" } }
/ >
/ >
< / C o l >
< / C o l >
< / R o w >
< Col md = "2" >
< Row className = "mt- 2" >
< Col sm = "12" >
< ButtonP onClick = { ( ) => buttonProsesOnClick ( ) } label = "Proses" severity = "s uc cess " / >
< ButtonP onClick = { ( ) => buttonProsesOnClick ( ) } label = "Proses" severity = "" ro unded classNam e = "w-10rem text-white text-base " / >
< / C o l >
< / C o l >
< / R o w >
< / R o w >
< / T a b P a n e >
< / T a b P a n e >
< / T a b C o n t e n t >
< / T a b C o n t e n t >
< / C a r d B o d y >
< / C a r d B o d y >
< / C a r d >
< / C a r d >
< / C o l >
< / C o l >
@ -628,11 +627,7 @@ const Root = () => {
< Card >
< Card >
< CardBody >
< CardBody >
< div id = "graph_matoa_agg" >
< div id = "graph_matoa_agg" >
< HighchartsReact
< HighchartsReact ref = { refChart1 } highcharts = { Highcharts } options = { optionsGraphMatoaAgg } / >
ref = { refChart1 }
highcharts = { Highcharts }
options = { optionsGraphMatoaAgg }
/ >
< / d i v >
< / d i v >
< / C a r d B o d y >
< / C a r d B o d y >
< / C a r d >
< / C a r d >
@ -641,15 +636,29 @@ const Root = () => {
< Row >
< Row >
< Col sm = "12" >
< Col sm = "12" >
< Card >
< Card >
< CardHeader className = "d-flex justify-content-center" >
< CardTitle tag = { "h1" } className = "font-weight-bold" >
Statistik Progresifitas Hasil Kegiatan Matoa
< / C a r d T i t l e >
< / C a r d H e a d e r >
< CardBody >
< CardBody >
< TabProgresifitas / >
< TabProgresifitas dataSend = { dataSend } / >
< / C a r d B o d y >
< / C a r d >
< / C o l >
< / R o w >
< Row >
< Col sm = "12" >
< Card >
< CardBody >
< TabPenugasan dataSend = { dataSend } / >
< / C a r d B o d y >
< / C a r d B o d y >
< / C a r d >
< / C a r d >
< / C o l >
< / C o l >
< / R o w >
< / R o w >
< Toast ref = { toast } / >
< Toast ref = { toast } / >
< / >
< / >
)
}
}
const container = document . getElementById ( "app" )
const container = document . getElementById ( "app" )