年間チェックイングラフの追加
This commit is contained in:
parent
c04ec89c3e
commit
7a3a1c1ada
@ -53,38 +53,42 @@ count(*) AS "count"
|
|||||||
SQL
|
SQL
|
||||||
))
|
))
|
||||||
->where('user_id', $user->id)
|
->where('user_id', $user->id)
|
||||||
->where('ejaculated_date', '>=', Carbon::now()->addMonths(-9)->firstOfMonth())
|
|
||||||
->groupBy(DB::raw("to_char(ejaculated_date, 'YYYY/MM/DD')"))
|
->groupBy(DB::raw("to_char(ejaculated_date, 'YYYY/MM/DD')"))
|
||||||
->orderBy(DB::raw("to_char(ejaculated_date, 'YYYY/MM/DD')"))
|
->orderBy(DB::raw("to_char(ejaculated_date, 'YYYY/MM/DD')"))
|
||||||
->get();
|
->get();
|
||||||
$calendarData = [];
|
|
||||||
foreach ($groupByDay as $data) {
|
|
||||||
$timestamp = Carbon::createFromFormat('Y/m/d', $data->date)->getTimestamp();
|
|
||||||
$calendarData[$timestamp] = $data->count;
|
|
||||||
}
|
|
||||||
|
|
||||||
$groupByMonth = Ejaculation::select(DB::raw(<<<'SQL'
|
$dailySum = [];
|
||||||
to_char(ejaculated_date, 'YYYY/MM') AS "date",
|
$monthlySum = [];
|
||||||
count(*) AS "count"
|
$yearlySum = [];
|
||||||
SQL
|
|
||||||
))
|
// 年間グラフ用の配列初期化
|
||||||
->where('user_id', $user->id)
|
if ($groupByDay->first() !== null) {
|
||||||
->where('ejaculated_date', '>=', Carbon::now()->addMonths(-11)->firstOfMonth())
|
$year = Carbon::createFromFormat('Y/m/d', $groupByDay->first()->date)->year;
|
||||||
->groupBy(DB::raw("to_char(ejaculated_date, 'YYYY/MM')"))
|
$currentYear = date('Y');
|
||||||
->orderBy(DB::raw("to_char(ejaculated_date, 'YYYY/MM')"))
|
for (; $year <= $currentYear; $year++) {
|
||||||
->get();
|
$yearlySum[$year] = 0;
|
||||||
$monthlyCounts = [];
|
|
||||||
$month = (new Carbon())->subMonth(11);
|
|
||||||
while ($month->format('Y/m') <= date('Y/m')) {
|
|
||||||
if ($groupByMonth->first()['date'] === $month->format('Y/m')) {
|
|
||||||
$monthlyCounts[] = $groupByMonth->shift()['count'];
|
|
||||||
} else {
|
|
||||||
$monthlyCounts[] = 0;
|
|
||||||
}
|
}
|
||||||
$month = $month->addMonth(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return view('user.stats')->with(compact('user', 'calendarData', 'monthlyCounts'));
|
// 月間グラフ用の配列初期化
|
||||||
|
$month = Carbon::now()->subMonth(11)->firstOfMonth(); // 直近12ヶ月
|
||||||
|
for ($i = 0; $i < 12; $i++) {
|
||||||
|
$monthlySum[$month->format('Y/m')] = 0;
|
||||||
|
$month->addMonth();
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($groupByDay as $data) {
|
||||||
|
$date = Carbon::createFromFormat('Y/m/d', $data->date);
|
||||||
|
$yearAndMonth = $date->format('Y/m');
|
||||||
|
|
||||||
|
$dailySum[$date->timestamp] = $data->count;
|
||||||
|
$yearlySum[$date->year] += $data->count;
|
||||||
|
if (isset($monthlySum[$yearAndMonth])) {
|
||||||
|
$monthlySum[$yearAndMonth] += $data->count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return view('user.stats')->with(compact('user', 'dailySum', 'monthlySum', 'yearlySum'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function okazu($name)
|
public function okazu($name)
|
||||||
|
@ -13,13 +13,15 @@
|
|||||||
<h5 class="my-4">Shikontribution graph</h5>
|
<h5 class="my-4">Shikontribution graph</h5>
|
||||||
<div id="cal-heatmap" class="tis-contribution-graph"></div>
|
<div id="cal-heatmap" class="tis-contribution-graph"></div>
|
||||||
<hr class="my-4">
|
<hr class="my-4">
|
||||||
<h5 class="my-4">月別チェックイン回数</h5>
|
<h5 class="my-4">月間チェックイン回数</h5>
|
||||||
<canvas id="monthly-graph" class="w-100"></canvas>
|
<canvas id="monthly-graph" class="w-100"></canvas>
|
||||||
|
<hr class="my-4">
|
||||||
|
<h5 class="my-4">年間チェックイン回数</h5>
|
||||||
|
<canvas id="yearly-graph" class="w-100"></canvas>
|
||||||
@endif
|
@endif
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@push('script')
|
@push('script')
|
||||||
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/moment@2.20.1/moment.min.js"></script>
|
|
||||||
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/chart.js@2.7.1/dist/Chart.min.js"></script>
|
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/chart.js@2.7.1/dist/Chart.min.js"></script>
|
||||||
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
|
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
|
||||||
<script type="text/javascript" src="//cdn.jsdelivr.net/cal-heatmap/3.3.10/cal-heatmap.min.js"></script>
|
<script type="text/javascript" src="//cdn.jsdelivr.net/cal-heatmap/3.3.10/cal-heatmap.min.js"></script>
|
||||||
@ -32,26 +34,18 @@
|
|||||||
domainLabelFormat: '%Y/%m',
|
domainLabelFormat: '%Y/%m',
|
||||||
start: new Date({{ \Carbon\Carbon::now()->addMonths(-9)->timestamp * 1000 }}),
|
start: new Date({{ \Carbon\Carbon::now()->addMonths(-9)->timestamp * 1000 }}),
|
||||||
range: 10,
|
range: 10,
|
||||||
data: @json($calendarData),
|
data: @json($dailySum),
|
||||||
legend: [1, 2, 3, 4]
|
legend: [1, 2, 3, 4]
|
||||||
});
|
});
|
||||||
|
|
||||||
(function () {
|
function createGraph(id, labels, data) {
|
||||||
var labels = [];
|
var context = document.getElementById(id).getContext('2d');
|
||||||
var m = moment().date(1);
|
|
||||||
while (labels.length < 12) {
|
|
||||||
labels.push(m.format('YYYY/MM'));
|
|
||||||
m = m.subtract(1, 'months');
|
|
||||||
}
|
|
||||||
labels.reverse();
|
|
||||||
|
|
||||||
var context = document.getElementById('monthly-graph').getContext('2d');
|
|
||||||
var chart = new Chart(context, {
|
var chart = new Chart(context, {
|
||||||
type: 'line',
|
type: 'line',
|
||||||
data: {
|
data: {
|
||||||
labels: labels,
|
labels: labels,
|
||||||
datasets: [{
|
datasets: [{
|
||||||
data: @json($monthlyCounts),
|
data: data,
|
||||||
backgroundColor: 'rgba(255, 99, 132, 0.2)',
|
backgroundColor: 'rgba(255, 99, 132, 0.2)',
|
||||||
borderColor: 'rgba(255, 99, 132, 1)',
|
borderColor: 'rgba(255, 99, 132, 1)',
|
||||||
borderWidth: 1
|
borderWidth: 1
|
||||||
@ -75,6 +69,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
})();
|
}
|
||||||
|
createGraph('monthly-graph', @json(array_keys($monthlySum)), @json(array_values($monthlySum)));
|
||||||
|
createGraph('yearly-graph', @json(array_keys($yearlySum)), @json(array_values($yearlySum)));
|
||||||
</script>
|
</script>
|
||||||
@endpush
|
@endpush
|
Loading…
Reference in New Issue
Block a user