Files
taxbaik/legacy/smartadmin/scripts/pages/apexscatterchart.js
T
kjh2064 40cffb3beb
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m26s
fix: implement Blazor-native login form to properly update authentication state
Problem: JavaScript login form saved tokens to localStorage but didn't notify
CustomAuthenticationStateProvider, causing [Authorize] pages to remain in
'loading' state indefinitely. The provider only reads tokens when:
1. GetAuthenticationStateAsync() is called (page load)
2. NotifyAuthenticationStateChanged() is triggered (UI updates)

But JavaScript login didn't trigger either, leaving the authentication state
stale.

Solution: Convert AdminLoginForm from HTML+JavaScript to pure Blazor component.
Now the login flow is:
1. User enters credentials in Blazor form
2. HttpClient POST to /api/auth/login
3. Save tokens to localStorage
4. Call CustomAuthenticationStateProvider.LoginAsync() directly
5. Blazor detects auth state change and re-evaluates [Authorize] pages
6. Dashboard [Authorize] page renders successfully

Result: Immediate authentication state update, no loading timeout on protected pages.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-07-03 13:03:53 +09:00

479 lines
15 KiB
JavaScript

import ApexCharts from '../thirdparty/apexchartsWrapper.js';
document.addEventListener('DOMContentLoaded', function() {
'use strict';
// Basic Scatter Chart
if (document.getElementById('basic-scatter-chart')) {
const basicScatterOptions = {
series: [{
name: "Sample A",
data: [
[16.4, 5.4], [21.7, 2.1], [25.4, 3.0], [19.0, 2.5], [10.9, 1.4],
[13.6, 3.2], [10.9, 7.1], [10.9, 0], [10.9, 8.7], [16.4, 0],
[16.4, 1.8], [13.6, 0.3], [13.6, 0], [29.9, 0], [27.1, 2.3],
[16.4, 0], [13.6, 3.7], [10.9, 5.2], [16.4, 6.5], [10.9, 0],
[24.5, 7.1], [10.9, 0], [8.1, 4.7], [19.0, 0], [21.7, 1.8],
[27.1, 0], [24.5, 0], [27.1, 0], [29.9, 1.5], [27.1, 0.8],
[22.1, 2.0]
]
},{
name: "Sample B",
data: [
[36.4, 13.4], [1.7, 11.1], [5.4, 8.0], [9.0, 17.5], [1.9, 4.4],
[3.6, 12.2], [1.9, 14.1], [1.9, 9.0], [1.9, 13.7], [1.4, 7.0],
[6.4, 8.8], [3.6, 4.3], [1.6, 10.0], [9.9, 2.0], [7.1, 15.3],
[1.4, 0], [3.6, 13.7], [1.9, 15.2], [6.4, 16.5], [0.9, 10.0],
[4.5, 17.1], [10.9, 10.0], [0.1, 14.7], [9.0, 10.0], [12.7, 11.8],
[2.1, 10.0], [2.5, 10.0], [27.1, 10.0], [2.9, 11.5], [7.1, 10.8],
[2.1, 12.0]
]
}],
chart: {
height: 350,
type: 'scatter',
zoom: {
enabled: true,
type: 'xy'
},
toolbar: {
show: true
}
},
xaxis: {
tickAmount: 10
},
yaxis: {
tickAmount: 7
},
title: {
text: 'Basic Scatter Chart',
align: 'left'
},
grid: {
show: true,
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
strokeDashArray: 5,
position: 'back',
row: {
colors: [window.colorMap.bootstrapVars.bodyColor.rgba(0.05), 'transparent'],
opacity: 0.5
},
xaxis: {
lines: {
show: false
}
}
},
colors: [window.colorMap.primary[500].hex, window.colorMap.danger[500].hex],
markers: {
size: 6
}
};
const basicScatterChart = new ApexCharts(
document.getElementById('basic-scatter-chart'),
basicScatterOptions
);
basicScatterChart.render();
}
// Scatter Chart with Categories
if (document.getElementById('category-scatter-chart')) {
const categoryScatterOptions = {
series: [{
name: "TEAM A",
data: [
[1, 5.4], [2, 7.1], [3, 9.0], [4, 9.5], [5, 8.9],
[6, 12.2], [7, 14.3], [8, 16.5], [9, 18.0], [10, 15.8]
]
},{
name: "TEAM B",
data: [
[1, 3.2], [2, 4.5], [3, 5.8], [4, 6.3], [5, 7.0],
[6, 7.5], [7, 8.0], [8, 8.5], [9, 9.1], [10, 9.8]
]
},{
name: "TEAM C",
data: [
[1, 11.1], [2, 12.5], [3, 11.8], [4, 10.5], [5, 12.0],
[6, 13.5], [7, 11.7], [8, 10.8], [9, 13.2], [10, 14.5]
]
}],
chart: {
height: 350,
type: 'scatter',
zoom: {
enabled: true,
type: 'xy'
},
toolbar: {
show: true
}
},
xaxis: {
type: 'category',
tickAmount: 10,
labels: {
formatter: function(val) {
return parseInt(val) + "";
}
}
},
yaxis: {
tickAmount: 7,
title: {
text: 'Performance Score'
}
},
title: {
text: 'Scatter Chart with Categories',
align: 'left'
},
legend: {
position: 'top'
},
grid: {
show: true,
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
strokeDashArray: 5,
position: 'back',
xaxis: {
lines: {
show: false
}
}
},
colors: [window.colorMap.primary[500].hex, window.colorMap.danger[500].hex, window.colorMap.warning[500].hex],
tooltip: {
y: {
formatter: function(val) {
return val + " points";
}
},
x: {
formatter: function(val) {
return "Round " + val;
}
}
},
markers: {
size: 7
}
};
const categoryScatterChart = new ApexCharts(
document.getElementById('category-scatter-chart'),
categoryScatterOptions
);
categoryScatterChart.render();
}
// Scatter Chart with Images
if (document.getElementById('image-scatter-chart')) {
const imageScatterOptions = {
series: [{
name: 'Messenger',
data: [
[16.4, 5.4],
[21.7, 4.1],
[25.4, 3.0],
[19.0, 2.5],
[10.9, 1.4]
]
}, {
name: 'LinkedIn',
data: [
[6.4, 5.4],
[11.7, 4.1],
[15.4, 3.0],
[9.0, 2.5],
[10.9, 1.4]
]
}, {
name: 'Facebook',
data: [
[36.4, 13.4],
[1.7, 11.1],
[5.4, 8.0],
[9.0, 17.0],
[1.9, 4.4]
]
}, {
name: 'Instagram',
data: [
[26.4, 16.4],
[28.7, 18.1],
[29.4, 20.0],
[25.0, 22.5],
[20.9, 19.4]
]
}],
chart: {
height: 350,
type: 'scatter',
animations: {
enabled: false,
},
zoom: {
enabled: true,
type: 'xy'
},
toolbar: {
show: true
}
},
xaxis: {
tickAmount: 10,
min: 0,
max: 40
},
yaxis: {
tickAmount: 7,
min: 0,
max: 25,
title: {
text: 'Engagement Rate (%)'
}
},
title: {
text: 'Social Media Engagement (with custom markers)',
align: 'left'
},
colors: [window.colorMap.primary[500].hex, window.colorMap.danger[500].hex, window.colorMap.warning[500].hex, window.colorMap.success[500].hex],
tooltip: {
y: {
formatter: function(val) {
return val + "%";
}
},
x: {
formatter: function(val) {
return val + "M users";
}
}
},
grid: {
show: true,
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
strokeDashArray: 5,
position: 'back',
xaxis: {
lines: {
show: false
}
}
},
markers: {
size: 20,
shape: "circle",
radius: 2
},
legend: {
position: 'top'
}
};
const imageScatterChart = new ApexCharts(
document.getElementById('image-scatter-chart'),
imageScatterOptions
);
imageScatterChart.render();
}
// Datetime Scatter Chart
if (document.getElementById('datetime-scatter-chart')) {
const generateDayWiseTimeSeries = function(startDate, count, range) {
let i = 0;
const series = [];
while (i < count) {
const x = new Date(startDate.getTime() + i * 86400000); // add 1 day
const y = Math.floor(Math.random() * (range.max - range.min + 1)) + range.min;
series.push([x, y]);
i++;
}
return series;
};
const datetimeScatterOptions = {
series: [{
name: 'Sales',
data: generateDayWiseTimeSeries(new Date('01 Jan 2025'), 30, { min: 10, max: 90 })
}, {
name: 'Web Traffic',
data: generateDayWiseTimeSeries(new Date('01 Jan 2025'), 30, { min: 50, max: 150 })
}],
chart: {
height: 350,
type: 'scatter',
zoom: {
enabled: true,
type: 'xy'
},
toolbar: {
show: true
}
},
xaxis: {
type: 'datetime',
labels: {
datetimeUTC: false
}
},
yaxis: {
title: {
text: 'Value'
}
},
title: {
text: 'Scatter Chart with Datetime',
align: 'left'
},
grid: {
row: {
colors: [window.colorMap.bootstrapVars.bodyColor.rgba(0.05), 'transparent'],
opacity: 0.5
},
show: true,
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
strokeDashArray: 5,
position: 'back',
xaxis: {
lines: {
show: false
}
}
},
colors: [window.colorMap.primary[500].hex, window.colorMap.danger[500].hex],
tooltip: {
x: {
format: 'dd MMM yyyy'
}
},
markers: {
size: 6
}
};
const datetimeScatterChart = new ApexCharts(
document.getElementById('datetime-scatter-chart'),
datetimeScatterOptions
);
datetimeScatterChart.render();
}
// Images Scatter Chart
if (document.getElementById('images-scatter-chart')) {
function generateData(count, yrange) {
let i = 0;
const series = [];
while (i < count) {
const x = (Math.random() * 100).toFixed(0);
const y = (Math.random() * yrange).toFixed(0);
series.push({
x: x,
y: y
});
i++;
}
return series;
}
const imagesScatterOptions = {
series: [{
name: 'Brave',
data: generateData(10, 80)
}, {
name: 'Chrome',
data: generateData(10, 60)
}, {
name: 'Firefox',
data: generateData(10, 40)
}, {
name: 'Safari',
data: generateData(10, 100)
}],
chart: {
height: 350,
type: 'scatter',
animations: {
enabled: false,
},
zoom: {
enabled: false,
},
toolbar: {
show: false
}
},
colors: [window.colorMap.primary[500].hex, window.colorMap.danger[500].hex, window.colorMap.warning[500].hex, window.colorMap.success[500].hex],
xaxis: {
tickAmount: 20,
min: 0,
max: 10
},
yaxis: {
tickAmount: 5
},
markers: {
size: 20,
shape: 'circle',
strokeWidth: 0,
hover: {
size: 25,
}
},
fill: {
type: 'image',
opacity: 1,
borderRadius: 0,
image: {
src: [
'img/browsers/brave.png',
'img/browsers/chrome.png',
'img/browsers/firefox.png',
'img/browsers/safari.png'
],
width: 30,
height: 30,
}
},
title: {
text: 'Social Media Usage Distribution',
align: 'left'
},
legend: {
position: 'bottom'
},
grid: {
show: true,
borderColor: window.colorMap.bootstrapVars.bodyColor.rgba(0.08),
strokeDashArray: 5,
position: 'back',
xaxis: {
lines: {
show: false
}
}
},
tooltip: {
custom: function({ series, seriesIndex, dataPointIndex, w }) {
const platforms = ['Brave', 'Chrome', 'Firefox', 'Safari'];
const data = w.globals.initialSeries[seriesIndex].data[dataPointIndex];
return '<div class="p-2">' +
'<div style="text-align: center; margin-bottom: 5px;"><strong>' + platforms[seriesIndex] + '</strong></div>' +
'<span>Usage score: ' + data.y + '</span><br>' +
'<span>Satisfaction: ' + data.x + '</span>' +
'</div>';
}
}
};
const imagesScatterChart = new ApexCharts(
document.getElementById('images-scatter-chart'),
imagesScatterOptions
);
imagesScatterChart.render();
}
});