Change Directory For Charts

This commit is contained in:
Randa Firman Putra
2025-06-29 10:30:14 +07:00
parent 37d083ec31
commit 6941b8bb8d
45 changed files with 276 additions and 257 deletions

View File

@@ -3,14 +3,14 @@
import { useState } from "react";
import FilterTahunAngkatan from "@/components/FilterTahunAngkatan";
import FilterJenisBeasiswa from "@/components/FilterJenisBeasiswa";
import TotalBeasiswaChart from "@/components/TotalBeasiswaChart";
import TotalBeasiswaPieChart from "@/components/TotalBeasiswaPieChart";
import NamaBeasiswaChart from "@/components/NamaBeasiswaChart";
import NamaBeasiswaPieChart from "@/components/NamaBeasiswaPieChart";
import JenisPendaftaranBeasiswaChart from "@/components/JenisPendaftaranBeasiswaChart";
import JenisPendaftaranBeasiswaPieChart from "@/components/JenisPendaftaranBeasiswaPieChart";
import AsalDaerahBeasiswaChart from "@/components/AsalDaerahBeasiswaChart";
import IPKBeasiswaChart from "@/components/IPKBeasiswaChart";
import TotalBeasiswaChart from "@/components/charts/TotalBeasiswaChart";
import TotalBeasiswaPieChart from "@/components/charts/TotalBeasiswaPieChart";
import NamaBeasiswaChart from "@/components/charts/NamaBeasiswaChart";
import NamaBeasiswaPieChart from "@/components/charts/NamaBeasiswaPieChart";
import JenisPendaftaranBeasiswaChart from "@/components/charts/JenisPendaftaranBeasiswaChart";
import JenisPendaftaranBeasiswaPieChart from "@/components/charts/JenisPendaftaranBeasiswaPieChart";
import AsalDaerahBeasiswaChart from "@/components/charts/AsalDaerahBeasiswaChart";
import IPKBeasiswaChart from "@/components/charts/IPKBeasiswaChart";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
export default function BeasiswaMahasiswaPage() {

View File

@@ -4,14 +4,14 @@ import { useState } from "react";
import FilterTahunAngkatan from "@/components/FilterTahunAngkatan";
import FilterJenisPrestasi from "@/components/FilterJenisPrestasi";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import TotalPrestasiChart from "@/components/TotalPrestasiChart";
import TotalPrestasiPieChart from "@/components/TotalPrestasiPieChart";
import TingkatPrestasiChart from "@/components/TingkatPrestasiChart";
import TingkatPrestasiPieChart from "@/components/TingkatPrestasiPieChart";
import JenisPendaftaranPrestasiChart from "@/components/JenisPendaftaranPrestasiChart";
import JenisPendaftaranPrestasiPieChart from "@/components/JenisPendaftaranPrestasiPieChart";
import AsalDaerahPrestasiChart from "@/components/AsalDaerahPrestasiChart";
import IPKPrestasiChart from "@/components/IPKPrestasiChart";
import TotalPrestasiChart from "@/components/charts/TotalPrestasiChart";
import TotalPrestasiPieChart from "@/components/charts/TotalPrestasiPieChart";
import TingkatPrestasiChart from "@/components/charts/TingkatPrestasiChart";
import TingkatPrestasiPieChart from "@/components/charts/TingkatPrestasiPieChart";
import JenisPendaftaranPrestasiChart from "@/components/charts/JenisPendaftaranPrestasiChart";
import JenisPendaftaranPrestasiPieChart from "@/components/charts/JenisPendaftaranPrestasiPieChart";
import AsalDaerahPrestasiChart from "@/components/charts/AsalDaerahPrestasiChart";
import IPKPrestasiChart from "@/components/charts/IPKPrestasiChart";
export default function BerprestasiMahasiswaPage() {
const [selectedYear, setSelectedYear] = useState<string>("all");

View File

@@ -3,12 +3,12 @@
import { useState } from "react";
import FilterTahunAngkatan from "@/components/FilterTahunAngkatan";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import LulusTepatWaktuChart from "@/components/LulusTepatWaktuChart";
import LulusTepatWaktuPieChart from "@/components/LulusTepatWaktuPieChart";
import JenisPendaftaranLulusChart from "@/components/JenisPendaftaranLulusChart";
import JenisPendaftaranLulusPieChart from "@/components/JenisPendaftaranLulusPieChart";
import AsalDaerahLulusChart from "@/components/AsalDaerahLulusChart";
import IPKLulusTepatChart from "@/components/IPKLulusTepatChart";
import LulusTepatWaktuChart from "@/components/charts/LulusTepatWaktuChart";
import LulusTepatWaktuPieChart from "@/components/charts/LulusTepatWaktuPieChart";
import JenisPendaftaranLulusChart from "@/components/charts/JenisPendaftaranLulusChart";
import JenisPendaftaranLulusPieChart from "@/components/charts/JenisPendaftaranLulusPieChart";
import AsalDaerahLulusChart from "@/components/charts/AsalDaerahLulusChart";
import IPKLulusTepatChart from "@/components/charts/IPKLulusTepatChart";
export default function LulusTepatWaktuPage() {
const [selectedYear, setSelectedYear] = useState<string>("all");

View File

@@ -3,12 +3,12 @@
import { useState } from "react";
import FilterTahunAngkatan from "@/components/FilterTahunAngkatan";
import FilterStatusKuliah from "@/components/FilterStatusKuliah";
import StatusMahasiswaFilterChart from "@/components/StatusMahasiswaFilterChart";
import StatusMahasiswaFilterPieChart from "@/components/StatusMahasiswaFilterPieChart";
import JenisPendaftaranStatusChart from "@/components/JenisPendaftaranStatusChart";
import JenisPendaftaranStatusPieChart from "@/components/JenisPendaftaranStatusPieChart";
import AsalDaerahStatusChart from '@/components/AsalDaerahStatusChart';
import IpkStatusChart from '@/components/IpkStatusChart';
import StatusMahasiswaFilterChart from "@/components/charts/StatusMahasiswaFilterChart";
import StatusMahasiswaFilterPieChart from "@/components/charts/StatusMahasiswaFilterPieChart";
import JenisPendaftaranStatusChart from "@/components/charts/JenisPendaftaranStatusChart";
import JenisPendaftaranStatusPieChart from "@/components/charts/JenisPendaftaranStatusPieChart";
import AsalDaerahStatusChart from '@/components/charts/AsalDaerahStatusChart';
import IpkStatusChart from '@/components/charts/IpkStatusChart';
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
export default function StatusMahasiswaPage() {

View File

@@ -1,15 +1,15 @@
'use client';
import { useState } from "react";
import StatistikMahasiswaChart from "@/components/StatistikMahasiswaChart";
import StatistikPerAngkatanChart from "@/components/StatistikPerAngkatanChart";
import JenisPendaftaranChart from "@/components/JenisPendaftaranChart";
import AsalDaerahChart from "@/components/AsalDaerahChart";
import IPKChart from "@/components/IPKChart";
import StatistikMahasiswaChart from "@/components/charts/StatistikMahasiswaChart";
import StatistikPerAngkatanChart from "@/components/charts/StatistikPerAngkatanChart";
import JenisPendaftaranChart from "@/components/charts/JenisPendaftaranChart";
import AsalDaerahChart from "@/components/charts/AsalDaerahChart";
import IPKChart from "@/components/charts/IPKChart";
import FilterTahunAngkatan from "@/components/FilterTahunAngkatan";
import JenisPendaftaranPerAngkatanChart from "@/components/JenisPendaftaranPerAngkatanChart";
import AsalDaerahPerAngkatanChart from "@/components/AsalDaerahPerAngkatanChart";
import IPKJenisKelaminChart from "@/components/IPKJenisKelaminChart";
import JenisPendaftaranPerAngkatanChart from "@/components/charts/JenisPendaftaranPerAngkatanChart";
import AsalDaerahPerAngkatanChart from "@/components/charts/AsalDaerahPerAngkatanChart";
import IPKJenisKelaminChart from "@/components/charts/IPKJenisKelaminChart";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
export default function TotalMahasiswaPage() {