import React, { Component, useState, useEffect } from "react"; import { Button } from "reactstrap"; import { Progress } from "reactstrap"; import Sparkline from "@/components/Common/Sparklines"; import { Container, Row, Col, Card, CardHeader, CardBody } from "reactstrap"; import FlotChart from "@/components/Charts/Flot.js"; import { ChartSpline, ChartArea, ChartBarStacked, ChartDonut, ChartLine } from "@/components/Config/flot.setup.js"; import Datatable from "@/components/Tables/Datatable"; import MorrisChart from "@/components/Charts//Morris"; import Dropdown from 'react-bootstrap/Dropdown'; function CaseProgress({ data, nextButton, prevButton, tahun, excel, excelSemua, excelMenu, user }) { const ChartPie = { data: [ { label: "Ditindaklanjuti DIKTI", color: "#287DAD", data: [data.jumlah_laporan.dikti], }, { label: "Ditindaklanjuti LLDIKTI", color: "#1EA457", data: [data.jumlah_laporan.lldikti], }, { label: "Ditutup", color: "#FD4233", data: [data.jumlah_laporan.ditutup], }, ], options: { series: { pie: { show: true, innerRadius: 0, label: { show: true, radius: 0.5, formatter: function (label, series) { return ( '
' + //label + ' : ' + Math.round(series.percent) + "%
" ); }, background: { opacity: 0.8, color: "#222", }, }, }, }, }, }; const ChartBar = { data: [ { // "label": "Complete", color: "#287DAD", data: [["Ditindaklanjuti DIKTI", data.jumlah_laporan.dikti]], }, { // "label": "In Progress", color: "#1EA457", data: [["Ditindaklanjuti LLDIKTI", data.jumlah_laporan.lldikti]], }, { // "label": "Cancelled", color: "#FD4233", data: [["Ditutup", data.jumlah_laporan.ditutup]], }, ], options: { series: { bars: { align: "center", lineWidth: 0, show: true, barWidth: 0.2, fill: 0.9, }, }, grid: { borderColor: "#eee", borderWidth: 1, hoverable: true, backgroundColor: "#fcfcfc", }, tooltip: true, tooltipOpts: { content: (label, x, y) => x + " : " + y, }, xaxis: { tickColor: "#fcfcfc", mode: "categories", }, yaxis: { // position: 'right' or 'left' tickColor: "#eee", }, shadowSize: 0, }, }; return (
Tahun {tahun} {user?.role?.id !== 2071 && ( // ⬅️ sembunyikan dropdown untuk role 2071 Unduh Unduh dokumen pelaporan Unduh dokumen semua menu )} {/* */}

Perkembangan

{/* */}

Rekapitulasi

); } export default CaseProgress;