2017-10-23 00:03:24 +09:00
|
|
|
@extends('layouts.base')
|
2017-08-27 04:44:53 +09:00
|
|
|
|
2017-11-03 17:48:58 +09:00
|
|
|
@push('head')
|
|
|
|
@endpush
|
2017-08-27 04:44:53 +09:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2017-10-23 00:03:24 +09:00
|
|
|
<div class="col-lg-4">
|
2019-02-07 00:52:03 +09:00
|
|
|
<div class="card mb-4">
|
|
|
|
<div class="card-body">
|
2020-05-24 18:30:48 +09:00
|
|
|
@component('components.profile-mini', ['user' => Auth::user(), 'class' => 'mb-4'])
|
2020-05-24 18:01:55 +09:00
|
|
|
@endcomponent
|
2019-02-07 00:52:03 +09:00
|
|
|
@component('components.profile-stats', ['user' => Auth::user()])
|
|
|
|
@endcomponent
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-10-23 00:03:24 +09:00
|
|
|
<div class="card mb-4">
|
|
|
|
<div class="card-header">サイトからのお知らせ</div>
|
2019-02-09 00:17:12 +09:00
|
|
|
<div class="list-group list-group-flush tis-sidebar-info">
|
2017-11-03 20:38:09 +09:00
|
|
|
@foreach($informations as $info)
|
|
|
|
<a class="list-group-item" href="{{ route('info.show', ['id' => $info->id]) }}">
|
2019-02-09 00:17:12 +09:00
|
|
|
@if ($info->pinned)
|
|
|
|
<span class="badge badge-secondary"><span class="oi oi-pin"></span>ピン留め</span>
|
|
|
|
@endif
|
2017-11-03 20:38:09 +09:00
|
|
|
<span class="badge {{ $categories[$info->category]['class'] }}">{{ $categories[$info->category]['label'] }}</span> {{ $info->title }} <small class="text-secondary">- {{ $info->created_at->format('n月j日') }}</small>
|
|
|
|
</a>
|
|
|
|
@endforeach
|
|
|
|
<a href="{{ route('info') }}" class="list-group-item text-right">お知らせ一覧 »</a>
|
2017-10-23 00:03:24 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-09 00:17:12 +09:00
|
|
|
</div>
|
|
|
|
<div class="col-lg-8">
|
2019-02-09 02:34:53 +09:00
|
|
|
@if (!empty($globalEjaculationCounts))
|
|
|
|
<h5>チェックインの動向</h5>
|
2019-02-09 17:56:06 +09:00
|
|
|
<div class="w-100 mb-4 position-relative tis-global-count-graph">
|
2019-02-09 02:34:53 +09:00
|
|
|
<canvas id="global-count-graph"></canvas>
|
|
|
|
</div>
|
|
|
|
@endif
|
2018-01-07 22:19:33 +09:00
|
|
|
@if (!empty($publicLinkedEjaculations))
|
2019-02-09 00:50:33 +09:00
|
|
|
<h5 class="mb-3">お惣菜コーナー</h5>
|
|
|
|
<p class="text-secondary">最近の公開チェックインから、オカズリンク付きのものを表示しています。</p>
|
|
|
|
<ul class="list-group">
|
|
|
|
@foreach ($publicLinkedEjaculations as $ejaculation)
|
2019-03-10 16:28:38 +09:00
|
|
|
<li class="list-group-item no-side-border pt-3 pb-3 text-break">
|
2019-04-05 23:10:26 +09:00
|
|
|
@component('components.ejaculation', compact('ejaculation'))
|
|
|
|
@endcomponent
|
2019-02-09 00:50:33 +09:00
|
|
|
</li>
|
|
|
|
@endforeach
|
2019-03-04 22:30:34 +09:00
|
|
|
<li class="list-group-item no-side-border text-right">
|
2020-02-20 22:08:55 +09:00
|
|
|
<a href="{{ route('timeline.public', ['page' => 2]) }}" class="stretched-link">もっと見る »</a>
|
2019-03-04 22:30:34 +09:00
|
|
|
</li>
|
2019-02-09 00:50:33 +09:00
|
|
|
</ul>
|
2018-01-07 22:19:33 +09:00
|
|
|
@endif
|
2017-08-27 04:44:53 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
2018-01-07 22:19:33 +09:00
|
|
|
|
|
|
|
@push('script')
|
2019-03-05 00:25:13 +09:00
|
|
|
<script id="global-count-labels" type="application/json">@json(array_keys($globalEjaculationCounts))</script>
|
|
|
|
<script id="global-count-data" type="application/json">@json(array_values($globalEjaculationCounts))</script>
|
2019-03-08 06:53:13 +09:00
|
|
|
<script src="{{ mix('js/vendor/chart.js') }}"></script>
|
2019-03-05 00:25:13 +09:00
|
|
|
<script src="{{ mix('js/home.js') }}"></script>
|
2019-03-08 06:53:13 +09:00
|
|
|
@endpush
|