mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
195 lines
3.8 KiB
JavaScript
195 lines
3.8 KiB
JavaScript
daysPerYear();
|
|
weekDays();
|
|
months();
|
|
|
|
function daysPerYear() {
|
|
$.ajax({
|
|
url: base_url + 'index.php/dayswithqso/get_days',
|
|
success: function (data) {
|
|
if ($.trim(data)) {
|
|
var labels = [];
|
|
var dataDxcc = [];
|
|
$.each(data, function () {
|
|
labels.push(this.Year);
|
|
dataDxcc.push(this.Days);
|
|
});
|
|
var ctx = document.getElementById("myChartDiff").getContext('2d');
|
|
var color = ifDarkModeThemeReturn('white', 'grey');
|
|
var myChart = new Chart(ctx, {
|
|
type: 'bar',
|
|
data: {
|
|
labels: labels,
|
|
datasets: [{
|
|
label: lang_days_with_qso_short,
|
|
data: dataDxcc,
|
|
backgroundColor: 'rgba(54, 162, 235, 0.2)',
|
|
borderColor: 'rgba(54, 162, 235, 1)',
|
|
borderWidth: 2,
|
|
color: color
|
|
}]
|
|
},
|
|
options: {
|
|
scales: {
|
|
y: {
|
|
ticks: {
|
|
beginAtZero: true,
|
|
color: color
|
|
}
|
|
},
|
|
x: {
|
|
ticks: {
|
|
color: color
|
|
}
|
|
}
|
|
},
|
|
plugins: {
|
|
legend: {
|
|
labels: {
|
|
color: color
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function weekDays() {
|
|
$.ajax({
|
|
url: base_url + 'index.php/dayswithqso/get_weekdays',
|
|
success: function (data) {
|
|
if ($.trim(data)) {
|
|
var labels = [];
|
|
var dataDays = [];
|
|
$.each(data, function () {
|
|
labels.push(this.weekday);
|
|
dataDays.push(this.qsos);
|
|
});
|
|
var ctx = document.getElementById("weekdaysChart").getContext('2d');
|
|
var color = ifDarkModeThemeReturn('white', 'grey');
|
|
var myChart = new Chart(ctx, {
|
|
type: 'bar',
|
|
data: {
|
|
labels: labels,
|
|
datasets: [{
|
|
label: lang_qsos_this_weekday,
|
|
data: dataDays,
|
|
backgroundColor: 'rgba(54, 162, 235, 0.2)',
|
|
borderColor: 'rgba(54, 162, 235, 1)',
|
|
borderWidth: 2,
|
|
color: color
|
|
}]
|
|
},
|
|
options: {
|
|
scales: {
|
|
y: {
|
|
ticks: {
|
|
beginAtZero: true,
|
|
color: color
|
|
}
|
|
},
|
|
x: {
|
|
ticks: {
|
|
color: color
|
|
}
|
|
}
|
|
},
|
|
plugins: {
|
|
legend: {
|
|
labels: {
|
|
color: color
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function months() {
|
|
$.ajax({
|
|
url: base_url + 'index.php/dayswithqso/get_months',
|
|
success: function (data) {
|
|
if ($.trim(data)) {
|
|
var labels = [];
|
|
var dataDays = [];
|
|
$.each(data, function () {
|
|
labels.push(this.month);
|
|
dataDays.push(this.qsos);
|
|
});
|
|
var ctx = document.getElementById("monthChart").getContext('2d');
|
|
var color = ifDarkModeThemeReturn('white', 'grey');
|
|
var myChart = new Chart(ctx, {
|
|
type: 'bar',
|
|
data: {
|
|
labels: labels,
|
|
datasets: [{
|
|
label: lang_qsos_this_month,
|
|
data: dataDays,
|
|
backgroundColor: 'rgba(54, 162, 235, 0.2)',
|
|
borderColor: 'rgba(54, 162, 235, 1)',
|
|
borderWidth: 2,
|
|
color: color
|
|
}]
|
|
},
|
|
options: {
|
|
scales: {
|
|
y: {
|
|
ticks: {
|
|
beginAtZero: true,
|
|
color: color
|
|
}
|
|
},
|
|
x: {
|
|
ticks: {
|
|
color: color
|
|
}
|
|
}
|
|
},
|
|
plugins: {
|
|
legend: {
|
|
labels: {
|
|
color: color
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
$(function() {
|
|
var pdata;
|
|
function render_punchcard() {
|
|
$.ajax({
|
|
url: base_url + 'index.php/dayswithqso/get_punchvals/' + $("#yr option:selected").val(),
|
|
success: function (data) {
|
|
pdata=data;
|
|
|
|
$('#js-glanceyear').empty().glanceyear(
|
|
pdata,
|
|
{
|
|
eventClick: function(e) {
|
|
$('#debug').html('Date: '+ e.date + ', Count: ' + e.count);
|
|
},
|
|
showToday: false,
|
|
today: new Date($("#yr option:selected").val() + '-12-31T23:59:00')
|
|
}
|
|
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
render_punchcard();
|
|
$("#yr").on('change',function(e) {
|
|
render_punchcard();
|
|
});
|
|
});
|