2017-11-03 17:48:58 +09:00
|
|
|
|
@extends('user.base')
|
2017-08-27 04:44:53 +09:00
|
|
|
|
|
2017-11-03 17:48:58 +09:00
|
|
|
|
@section('tab-content')
|
2017-11-05 22:29:09 +09:00
|
|
|
|
@if ($user->is_protected && !$user->isMe())
|
2017-11-05 21:59:01 +09:00
|
|
|
|
<p class="mt-4">
|
|
|
|
|
<span class="oi oi-lock-locked"></span> このユーザはチェックイン履歴を公開していません。
|
|
|
|
|
</p>
|
|
|
|
|
@else
|
|
|
|
|
<ul class="list-group">
|
|
|
|
|
@forelse ($ejaculations as $ejaculation)
|
|
|
|
|
<li class="list-group-item border-bottom-only pt-3 pb-3">
|
|
|
|
|
<!-- span -->
|
|
|
|
|
<div class="d-flex justify-content-between">
|
|
|
|
|
<h5>{{ $ejaculation->ejaculated_span ?? '精通' }} <a href="{{ route('checkin.show', ['id' => $ejaculation->id]) }}" class="text-muted"><small>{{ $ejaculation->before_date }}{{ !empty($ejaculation->before_date) ? ' ~ ' : '' }}{{ $ejaculation->ejaculated_date->format('Y/m/d H:i') }}</small></a></h5>
|
2017-11-05 22:29:09 +09:00
|
|
|
|
@if ($user->isMe())
|
2017-11-05 21:59:01 +09:00
|
|
|
|
<div>
|
|
|
|
|
<a class="text-secondary timeline-action-item" href="#"><span class="oi oi-pencil" data-toggle="tooltip" data-placement="bottom" title="修正"></span></a>
|
|
|
|
|
<a class="text-secondary timeline-action-item" href="#" data-toggle="modal" data-target="#deleteCheckinModal" data-id="{{ $ejaculation->id }}" data-date="{{ $ejaculation->ejaculated_date }}"><span class="oi oi-trash" data-toggle="tooltip" data-placement="bottom" title="削除"></span></a>
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
2017-08-27 04:44:53 +09:00
|
|
|
|
</div>
|
2017-11-05 21:59:01 +09:00
|
|
|
|
<!-- tags -->
|
|
|
|
|
@if ($ejaculation->is_private) {{-- TODO: タグを付けたら、タグが空じゃないかも判定に加える --}}
|
|
|
|
|
<p class="mb-2">
|
|
|
|
|
@if ($ejaculation->is_private)
|
|
|
|
|
<span class="badge badge-warning"><span class="oi oi-lock-locked"></span> 非公開</span>
|
|
|
|
|
@endif
|
|
|
|
|
{{--
|
|
|
|
|
<span class="badge badge-secondary"><span class="oi oi-tag"></span> 催眠音声</span>
|
|
|
|
|
<span class="badge badge-secondary"><span class="oi oi-tag"></span> 適当なタグ</span>
|
|
|
|
|
--}}
|
|
|
|
|
</p>
|
2017-11-03 17:48:58 +09:00
|
|
|
|
@endif
|
2017-11-05 21:59:01 +09:00
|
|
|
|
<!-- okazu link -->
|
|
|
|
|
{{--
|
|
|
|
|
<div class="card mb-2 w-50" style="font-size: small;">
|
|
|
|
|
<a class="text-dark card-link" href="#">
|
|
|
|
|
<img src="holder.js/320x240" alt="Thumbnail" class="card-img-top">
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<h6 class="card-title">タイトル</h6>
|
|
|
|
|
<p class="card-text">コンテンツの説明文</p>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
--}}
|
|
|
|
|
<!-- note -->
|
|
|
|
|
@if (!empty($ejaculation->note))
|
|
|
|
|
<p class="mb-0 tis-word-wrap">
|
|
|
|
|
{!! Formatter::linkify(nl2br(e($ejaculation->note))) !!}
|
|
|
|
|
</p>
|
|
|
|
|
@endif
|
|
|
|
|
</li>
|
|
|
|
|
@empty
|
|
|
|
|
<li class="list-group-item border-bottom-only">
|
|
|
|
|
<p>まだチェックインしていません。</p>
|
|
|
|
|
</li>
|
|
|
|
|
@endforelse
|
|
|
|
|
</ul>
|
|
|
|
|
<ul class="pagination mt-4 justify-content-center">
|
|
|
|
|
<li class="page-item {{ $ejaculations->currentPage() === 1 ? 'disabled' : '' }}">
|
|
|
|
|
<a class="page-link" href="{{ $ejaculations->previousPageUrl() }}" aria-label="Previous">
|
|
|
|
|
<span aria-hidden="true">«</span>
|
|
|
|
|
<span class="sr-only">Previous</span>
|
|
|
|
|
</a>
|
2017-11-03 17:48:58 +09:00
|
|
|
|
</li>
|
2017-11-05 21:59:01 +09:00
|
|
|
|
@for ($i = 1; $i <= $ejaculations->lastPage(); $i++)
|
|
|
|
|
<li class="page-item {{ $i === $ejaculations->currentPage() ? 'active' : '' }}"><a href="{{ $ejaculations->url($i) }}" class="page-link">{{ $i }}</a></li>
|
|
|
|
|
@endfor
|
|
|
|
|
<li class="page-item {{ $ejaculations->currentPage() === $ejaculations->lastPage() ? 'disabled' : '' }}">
|
|
|
|
|
<a class="page-link" href="{{ $ejaculations->nextPageUrl() }}" aria-label="Next">
|
|
|
|
|
<span aria-hidden="true">»</span>
|
|
|
|
|
<span class="sr-only">Next</span>
|
|
|
|
|
</a>
|
2017-11-03 17:48:58 +09:00
|
|
|
|
</li>
|
2017-11-05 21:59:01 +09:00
|
|
|
|
</ul>
|
|
|
|
|
@endif
|
2017-11-03 17:48:58 +09:00
|
|
|
|
|
|
|
|
|
@component('components.modal', ['id' => 'deleteCheckinModal'])
|
|
|
|
|
@slot('title')
|
|
|
|
|
削除確認
|
|
|
|
|
@endslot
|
|
|
|
|
<span class="date-label"></span> のチェックインを削除してもよろしいですか?
|
|
|
|
|
<form action="{{ route('checkin.destroy', ['id' => '@']) }}" method="post">
|
|
|
|
|
{{ csrf_field() }}
|
|
|
|
|
{{ method_field('DELETE') }}
|
|
|
|
|
</form>
|
|
|
|
|
@slot('footer')
|
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">キャンセル</button>
|
|
|
|
|
<button type="button" class="btn btn-danger">削除</button>
|
|
|
|
|
@endslot
|
|
|
|
|
@endcomponent
|
2017-08-27 04:44:53 +09:00
|
|
|
|
@endsection
|
2017-11-03 17:48:58 +09:00
|
|
|
|
|
|
|
|
|
@push('script')
|
|
|
|
|
<script>
|
|
|
|
|
$('#deleteCheckinModal').on('show.bs.modal', function (event) {
|
|
|
|
|
var target = $(event.relatedTarget);
|
|
|
|
|
var modal = $(this);
|
|
|
|
|
modal.find('.modal-body .date-label').text(target.data('date'));
|
|
|
|
|
modal.data('id', target.data('id'));
|
|
|
|
|
}).find('.btn-danger').on('click', function (event) {
|
|
|
|
|
var modal = $('#deleteCheckinModal');
|
|
|
|
|
var form = modal.find('form');
|
|
|
|
|
form.attr('action', form.attr('action').replace('@', modal.data('id')));
|
|
|
|
|
form.submit();
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
@endpush
|