|
|
|
@ -2,7 +2,7 @@ import React, { useEffect, useRef, useState } from "react"
|
|
|
|
|
import ReactDOM from "react-dom" |
|
|
|
|
import { Button, Card, CardBody, CardHeader, CardText, CardTitle, Col, Label, Nav, NavItem, NavLink, Row, TabContent, TabPane } from "reactstrap" |
|
|
|
|
import Select from "react-select" |
|
|
|
|
import jQuery from "jquery" |
|
|
|
|
import $ from "jquery" |
|
|
|
|
import collect from "collect.js" |
|
|
|
|
import { format_angka, isObjEmpty } from "./util" |
|
|
|
|
import { MultiSelect } from "react-multi-select-component" |
|
|
|
@ -52,7 +52,7 @@ const Root = () => {
|
|
|
|
|
const [dataGraphMatoa, setDataGraphMatoa] = useState({ poi_agg: [], kpdl_agg: [] }) |
|
|
|
|
|
|
|
|
|
useEffect(() => { |
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/propinsi", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -61,7 +61,7 @@ const Root = () => {
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/zpkanwil", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -80,7 +80,7 @@ const Root = () => {
|
|
|
|
|
setKelSelected([]) |
|
|
|
|
if (propSelected && !isObjEmpty(propSelected)) { |
|
|
|
|
const prop = propSelected.value |
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/kota", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -99,7 +99,7 @@ const Root = () => {
|
|
|
|
|
setKelSelected([]) |
|
|
|
|
if (kotaSelected && !isObjEmpty(kotaSelected)) { |
|
|
|
|
const kota = kotaSelected.value |
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/kecamatan", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -118,7 +118,7 @@ const Root = () => {
|
|
|
|
|
if (kecSelected.length && !isObjEmpty(kecSelected)) { |
|
|
|
|
const kec = collect(kecSelected).pluck("value").all() |
|
|
|
|
console.log({ kec }) |
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/kelurahan", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -141,7 +141,7 @@ const Root = () => {
|
|
|
|
|
setZpSelected([]) |
|
|
|
|
if (kanwilSelected && !isObjEmpty(kanwilSelected)) { |
|
|
|
|
const kanwil = kanwilSelected.value |
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/zpkpp", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -163,7 +163,7 @@ const Root = () => {
|
|
|
|
|
if (kppSelected && !isObjEmpty(kppSelected)) { |
|
|
|
|
// const kpp = collect(kppSelected).pluck("value").all()
|
|
|
|
|
const kpp = [kppSelected.value] |
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/zpseksi", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -184,7 +184,7 @@ const Root = () => {
|
|
|
|
|
const kpp = [kppSelected.value] |
|
|
|
|
const seksi = collect(seksiSelected).pluck("value").all() |
|
|
|
|
|
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/zpar", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -203,7 +203,7 @@ const Root = () => {
|
|
|
|
|
const kpp = kppSelected.value |
|
|
|
|
const seksi = collect(seksiSelected).pluck("value").all() |
|
|
|
|
const ar = collect(arSelected).pluck("value").all() |
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/ref/zpzp", |
|
|
|
|
method: "GET", |
|
|
|
|
dataType: "json", |
|
|
|
@ -252,7 +252,7 @@ const Root = () => {
|
|
|
|
|
yDecimals: 2 // If you want to add 2 decimals
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
jQuery.ajax({ |
|
|
|
|
$.ajax({ |
|
|
|
|
url: base_url + "kewilayahan/kytp/graph_matoa", |
|
|
|
|
dataType: "json", |
|
|
|
|
type: "POST", |
|
|
|
|