Browse Source

jquery fix

main^2
pecintaseni 7 months ago committed by =
parent
commit
b87faa2d61
  1. 2
      app/Views/kewilayahan/dist/kpdl.js
  2. 6
      app/Views/kewilayahan/kytp/componentProgresifitas/ChartKPDL.js
  3. 4
      app/Views/kewilayahan/kytp/componentProgresifitas/Identifikasi.js
  4. 4
      app/Views/kewilayahan/kytp/componentProgresifitas/JenisStatusWp.js
  5. 4
      app/Views/kewilayahan/kytp/componentProgresifitas/KLU.js
  6. 3
      app/Views/kewilayahan/kytp/componentProgresifitas/PayComp.js
  7. 3
      app/Views/kewilayahan/kytp/componentProgresifitas/Pembayaran.js
  8. 4
      app/Views/kewilayahan/kytp/componentProgresifitas/Pengampu.js
  9. 4
      app/Views/kewilayahan/kytp/componentProgresifitas/SPTTahunan.js
  10. 3
      app/Views/kewilayahan/kytp/componentProgresifitas/Sof.js
  11. 22
      app/Views/kewilayahan/kytp/kpdl.js

2
app/Views/kewilayahan/dist/kpdl.js vendored

File diff suppressed because one or more lines are too long

6
app/Views/kewilayahan/kytp/componentProgresifitas/ChartKPDL.js

@ -6,7 +6,7 @@ import { Badge } from "primereact/badge"
import { Button as ButtonP } from "primereact/button" import { Button as ButtonP } from "primereact/button"
import { format_angka } from "../util" import { format_angka } from "../util"
import collect from "collect.js" import collect from "collect.js"
import jQuery from "jquery" import $ from "jquery"
import "primereact/resources/themes/bootstrap4-light-blue/theme.css" import "primereact/resources/themes/bootstrap4-light-blue/theme.css"
import "primeflex/primeflex.css" import "primeflex/primeflex.css"
@ -24,7 +24,7 @@ const ChartKpdl = ({ dataSend }) => {
const [bulan, setBulan] = useState([]) const [bulan, setBulan] = useState([])
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/identifikasiLapangan", url: base_url + "kewilayahan/kytp/identifikasiLapangan",
dataType: "json", dataType: "json",
type: "POST", type: "POST",
@ -39,7 +39,7 @@ const ChartKpdl = ({ dataSend }) => {
}, [dataSend, selectedBulan]) }, [dataSend, selectedBulan])
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/getBulan", url: base_url + "kewilayahan/kytp/getBulan",
dataType: "json", dataType: "json",
type: "GET", type: "GET",

4
app/Views/kewilayahan/kytp/componentProgresifitas/Identifikasi.js

@ -4,7 +4,7 @@ import HighchartsReact from "highcharts-react-official"
import { Col, Row } from "reactstrap" import { Col, Row } from "reactstrap"
import { format_angka } from "../util" import { format_angka } from "../util"
import collect from "collect.js" import collect from "collect.js"
import $ from "jquery"
const Identifikasi = ({ dataSend }) => { const Identifikasi = ({ dataSend }) => {
const base_url = "<?=base_url()?>" const base_url = "<?=base_url()?>"
@ -12,7 +12,7 @@ const Identifikasi = ({ dataSend }) => {
const [data, setData] = useState(null) const [data, setData] = useState(null)
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/sebaranIdentifikasi", url: base_url + "kewilayahan/kytp/sebaranIdentifikasi",
dataType: "json", dataType: "json",
type: "POST", type: "POST",

4
app/Views/kewilayahan/kytp/componentProgresifitas/JenisStatusWp.js

@ -4,7 +4,7 @@ import HighchartsReact from "highcharts-react-official"
import { Col, Row } from "reactstrap" import { Col, Row } from "reactstrap"
import { format_angka } from "../util" import { format_angka } from "../util"
import collect from "collect.js" import collect from "collect.js"
import $ from "jquery"
const JenisStatusWp = ({ dataSend }) => { const JenisStatusWp = ({ dataSend }) => {
const base_url = "<?=base_url()?>" const base_url = "<?=base_url()?>"
@ -14,7 +14,7 @@ const JenisStatusWp = ({ dataSend }) => {
const [dataStatus, setDataStatus] = useState(null) const [dataStatus, setDataStatus] = useState(null)
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/sebaranJenisStatusWp", url: base_url + "kewilayahan/kytp/sebaranJenisStatusWp",
dataType: "json", dataType: "json",
type: "POST", type: "POST",

4
app/Views/kewilayahan/kytp/componentProgresifitas/KLU.js

@ -4,7 +4,7 @@ import HighchartsReact from "highcharts-react-official"
import { Col, Row } from "reactstrap" import { Col, Row } from "reactstrap"
import { format_angka } from "../util" import { format_angka } from "../util"
import collect from "collect.js" import collect from "collect.js"
import $ from "jquery"
const KLU = ({ dataSend }) => { const KLU = ({ dataSend }) => {
const base_url = "<?=base_url()?>" const base_url = "<?=base_url()?>"
@ -16,7 +16,7 @@ const KLU = ({ dataSend }) => {
const [dataRupiahBayar, setDataRupiahBayar] = useState(null) const [dataRupiahBayar, setDataRupiahBayar] = useState(null)
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/sebaranKLU", url: base_url + "kewilayahan/kytp/sebaranKLU",
dataType: "json", dataType: "json",
type: "POST", type: "POST",

3
app/Views/kewilayahan/kytp/componentProgresifitas/PayComp.js

@ -3,6 +3,7 @@ import Highcharts from "highcharts"
import HighchartsReact from "highcharts-react-official" import HighchartsReact from "highcharts-react-official"
import { Col, Row } from "reactstrap" import { Col, Row } from "reactstrap"
import { format_angka } from "../util" import { format_angka } from "../util"
import $ from "jquery"
const date = new Date() const date = new Date()
const cBulan = date.getMonth() + 1 const cBulan = date.getMonth() + 1
@ -17,7 +18,7 @@ const PayComp = ({ dataSend }) => {
const [dataMin2, setDataMin2] = useState(null) const [dataMin2, setDataMin2] = useState(null)
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/sebaranPayComp", url: base_url + "kewilayahan/kytp/sebaranPayComp",
dataType: "json", dataType: "json",
type: "POST", type: "POST",

3
app/Views/kewilayahan/kytp/componentProgresifitas/Pembayaran.js

@ -3,6 +3,7 @@ import Highcharts from "highcharts"
import HighchartsReact from "highcharts-react-official" import HighchartsReact from "highcharts-react-official"
import { Col, Row } from "reactstrap" import { Col, Row } from "reactstrap"
import { format_angka } from "../util" import { format_angka } from "../util"
import $ from "jquery"
const date = new Date() const date = new Date()
const cBulan = date.getMonth() + 1 const cBulan = date.getMonth() + 1
@ -17,7 +18,7 @@ const Pembayaran = ({ dataSend }) => {
const [dataMin2, setDataMin2] = useState(null) const [dataMin2, setDataMin2] = useState(null)
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/sebaranPembayaran", url: base_url + "kewilayahan/kytp/sebaranPembayaran",
dataType: "json", dataType: "json",
type: "POST", type: "POST",

4
app/Views/kewilayahan/kytp/componentProgresifitas/Pengampu.js

@ -4,7 +4,7 @@ import HighchartsReact from "highcharts-react-official"
import { Col, Row } from "reactstrap" import { Col, Row } from "reactstrap"
import { format_angka } from "../util" import { format_angka } from "../util"
import collect from "collect.js" import collect from "collect.js"
import $ from "jquery"
const Pengampu = ({ dataSend }) => { const Pengampu = ({ dataSend }) => {
const base_url = "<?=base_url()?>" const base_url = "<?=base_url()?>"
@ -14,7 +14,7 @@ const Pengampu = ({ dataSend }) => {
const [dataUnAssign, setDataUnAssign] = useState(null) const [dataUnAssign, setDataUnAssign] = useState(null)
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/sebaranPengampu", url: base_url + "kewilayahan/kytp/sebaranPengampu",
dataType: "json", dataType: "json",
type: "POST", type: "POST",

4
app/Views/kewilayahan/kytp/componentProgresifitas/SPTTahunan.js

@ -4,7 +4,7 @@ import HighchartsReact from "highcharts-react-official"
import { Col, Row } from "reactstrap" import { Col, Row } from "reactstrap"
import { format_angka } from "../util" import { format_angka } from "../util"
import collect from "collect.js" import collect from "collect.js"
import $ from "jquery"
const SPTTahunan = ({ dataSend }) => { const SPTTahunan = ({ dataSend }) => {
const base_url = "<?=base_url()?>" const base_url = "<?=base_url()?>"
@ -12,7 +12,7 @@ const SPTTahunan = ({ dataSend }) => {
const [data, setData] = useState(null) const [data, setData] = useState(null)
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/sebaranSPTTahunan", url: base_url + "kewilayahan/kytp/sebaranSPTTahunan",
dataType: "json", dataType: "json",
type: "POST", type: "POST",

3
app/Views/kewilayahan/kytp/componentProgresifitas/Sof.js

@ -2,6 +2,7 @@ import React, { useEffect, useRef, useState } from "react"
import { Col, Row, Table } from "reactstrap" import { Col, Row, Table } from "reactstrap"
import { format_angka } from "../util" import { format_angka } from "../util"
import collect from "collect.js" import collect from "collect.js"
import $ from "jquery"
const date = new Date() const date = new Date()
const cBulan = date.getMonth() + 1 const cBulan = date.getMonth() + 1
@ -12,7 +13,7 @@ const Sof = ({ dataSend }) => {
const [total, setTotal] = useState({ totalC: 0, totalP1: 0, totalP2: 0 }) const [total, setTotal] = useState({ totalC: 0, totalP1: 0, totalP2: 0 })
useEffect(() => { useEffect(() => {
jQuery.get({ $.get({
url: base_url + "kewilayahan/kytp/sebaranSof", url: base_url + "kewilayahan/kytp/sebaranSof",
dataType: "json", dataType: "json",
type: "POST", type: "POST",

22
app/Views/kewilayahan/kytp/kpdl.js

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

Loading…
Cancel
Save