Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
I
IPRSv2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Ngei
IPRSv2
Commits
501270e7
Commit
501270e7
authored
Apr 16, 2025
by
Brian Wangora
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dashboard corrections
parent
654b05a6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
601 additions
and
420 deletions
+601
-420
dashboard.blade.php
resources/views/home/dashboard.blade.php
+491
-341
home2.blade.php
resources/views/home/home2.blade.php
+110
-79
No files found.
resources/views/home/dashboard.blade.php
View file @
501270e7
This diff is collapsed.
Click to expand it.
resources/views/home/home2.blade.php
View file @
501270e7
...
...
@@ -86,18 +86,17 @@
$heads = [
'Industry',
'Organization Name',
'API Key',
'Data Type',
'Monthly API Calls',
['label' => 'Actions', 'no-export' => true, 'width' => 5],
];
$data = [
['Telco', 'Safaricom', '
API-1243', '
ID + Birth', '45,000'],
['Telco', 'Airtel', '
API-9421', '
ID Only', '33,500'],
['FBSI', 'Equity Bank', 'A
PI-5521', 'A
ll', '64,200'],
['FBSI', 'NCBA', '
API-6211', '
ID + Passport', '22,700'],
['Gov', 'NHIF', '
API-7710', '
Birth Only', '17,000'],
['Telco', 'Safaricom', 'ID + Birth', '45,000'],
['Telco', 'Airtel', 'ID Only', '33,500'],
['FBSI', 'Equity Bank', 'All', '64,200'],
['FBSI', 'NCBA', 'ID + Passport', '22,700'],
['Gov', 'NHIF', 'Birth Only', '17,000'],
];
$config = [
...
...
@@ -146,8 +145,6 @@
</div>
<div
class=
"col-lg-5 d-flex flex-column"
>
<div>
<div>
<x-adminlte-card
title=
"Total API Requests Processed"
theme=
""
icon=
""
collapsible
>
<x-slot
name=
"titleSlot"
>
<h4
class=
"card-title"
>
Total API Requests Processed
</h4>
...
...
@@ -157,18 +154,17 @@
$heads = [
'Organization',
'Industry',
'API Key',
'Total Requests',
'Success Rate (%)',
['label' => 'Actions', 'no-export' => true, 'width' => 5],
];
$data = [
['Safaricom', 'Telco', 'API-1243
', '1,203,421', '98.2'],
['Airtel', 'Telco', 'API-9421
', '834,775', '97.5'],
['Equity Bank', 'FBSI', 'API-5521
', '1,509,342', '96.9'],
['NCBA', 'FBSI', 'API-6211
', '675,312', '95.3'],
['NHIF', 'Gov', 'API-7710
', '321,008', '92.6'],
['Safaricom', 'Telco
', '1,203,421', '98.2'],
['Airtel', 'Telco
', '834,775', '97.5'],
['Equity Bank', 'FBSI
', '1,509,342', '96.9'],
['NCBA', 'FBSI
', '675,312', '95.3'],
['NHIF', 'Gov
', '321,008', '92.6'],
];
$config = [
...
...
@@ -195,17 +191,16 @@
</x-adminlte-datatable>
</div>
</x-adminlte-card>
</div>
<x-adminlte-card
title=
"Data Sources"
theme=
""
icon=
""
collapsible
>
<x-slot
name=
"titleSlot"
>
<h4
class=
"card-title"
>
Data Sources
</h4>
</x-slot>
<div
class=
"py-4"
>
<canvas
id=
"dataSource1"
></canvas>
</div>
<canvas
id=
"dataSource1"
height=
"250"
></canvas>
<div
class=
"chart-legend text-center mt-3"
id=
"dataSource1-legend"
></div>
</x-adminlte-card>
</div>
</div>
</div>
</main>
...
...
@@ -220,30 +215,66 @@
<script
src=
"https://cdn.jsdelivr.net/npm/chart.js"
></script>
<script>
let
chart1
;
$
(
document
).
ready
(()
=>
{
chart1
=
document
.
getElementById
(
'dataSource1'
);
new
Chart
(
chart1
,
{
type
:
'doughnut'
,
data
:
{
labels
:
[
'CRD'
,
'DOI'
,
'NRB'
,
'RAD'
,
'RG'
],
datasets
:
[{
label
:
'Population Dataset'
,
data
:
[
300
,
50
,
100
,
150
,
125
],
backgroundColor
:
[
const
ctx
=
document
.
getElementById
(
'dataSource1'
);
const
data
=
[
41.3
,
6.9
,
13.8
,
20.7
,
17.2
];
const
labels
=
[
'CRD'
,
'DOI'
,
'NRB'
,
'RAD'
,
'RG'
];
const
colors
=
[
'rgb(255,99,132)'
,
'rgb(54,162,235)'
,
'rgb(255,205,86)'
,
'rgb(16,203,23)'
,
'rgb(159,8,234)'
,
],
'rgb(159,8,234)'
];
// Calculate total for percentages
const
total
=
data
.
reduce
((
sum
,
value
)
=>
sum
+
value
,
0
);
const
percentages
=
data
.
map
(
value
=>
((
value
/
total
)
*
100
).
toFixed
(
1
)
+
'%'
);
const
chart
=
new
Chart
(
ctx
,
{
type
:
'doughnut'
,
data
:
{
labels
:
labels
,
datasets
:
[{
data
:
data
,
backgroundColor
:
colors
,
hoverOffset
:
4
}]
},
options
:
{
responsive
:
true
,
plugins
:
{
legend
:
{
position
:
'bottom'
,
labels
:
{
generateLabels
:
function
(
chart
)
{
const
data
=
chart
.
data
;
return
data
.
labels
.
map
((
label
,
i
)
=>
{
const
value
=
data
.
datasets
[
0
].
data
[
i
];
const
percentage
=
((
value
/
total
)
*
100
).
toFixed
(
1
)
+
'%'
;
return
{
text
:
`
${
label
}
:
${
percentage
}
`
,
fillStyle
:
data
.
datasets
[
0
].
backgroundColor
[
i
],
hidden
:
false
,
index
:
i
};
});
}
}
},
tooltip
:
{
callbacks
:
{
label
:
function
(
context
)
{
const
label
=
context
.
label
||
''
;
const
value
=
context
.
raw
||
0
;
const
percentage
=
((
value
/
total
)
*
100
).
toFixed
(
1
)
+
'%'
;
return
`
${
label
}
:
${
value
}
(
${
percentage
}
)`
;
}
}
}
}
}
});
});
$
(
document
).
ready
(
function
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment