2017-11-03 17:48:58 +09:00
|
|
|
|
@extends('user.base')
|
2017-08-27 04:44:53 +09:00
|
|
|
|
|
2019-01-08 23:27:48 +09:00
|
|
|
|
@section('title', $user->display_name . ' (@' . $user->name . ')')
|
|
|
|
|
|
2018-06-09 00:30:41 +09:00
|
|
|
|
@section('sidebar')
|
|
|
|
|
{{-- TODO: タイムラインとオカズのテンプレを分けたら条件外す --}}
|
|
|
|
|
@if (Route::currentRouteName() === 'user.profile')
|
|
|
|
|
@if (!empty($tags) && (!$user->is_protected || $user->isMe()))
|
|
|
|
|
<div class="card mb-4">
|
|
|
|
|
<div class="card-header">
|
|
|
|
|
よく使っているタグ
|
|
|
|
|
</div>
|
|
|
|
|
<div class="list-group list-group-flush">
|
|
|
|
|
@foreach ($tags as $tag)
|
2018-09-11 23:08:11 +09:00
|
|
|
|
<a class="list-group-item d-flex justify-content-between align-items-center text-dark" href="{{ route('search', ['q' => $tag->name]) }}">
|
2018-06-09 00:30:41 +09:00
|
|
|
|
<div>
|
|
|
|
|
<span class="oi oi-tag text-secondary"></span>
|
|
|
|
|
{{ $tag->name }}
|
|
|
|
|
</div>
|
|
|
|
|
<span class="badge badge-secondary badge-pill">{{ $tag->count }}</span>
|
|
|
|
|
</a>
|
|
|
|
|
@endforeach
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
@endif
|
|
|
|
|
@endsection
|
|
|
|
|
|
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>
|
|
|
|
|
<div>
|
2018-06-02 23:33:16 +09:00
|
|
|
|
<a class="text-secondary timeline-action-item" href="{{ route('checkin', ['link' => $ejaculation->link, 'tags' => $ejaculation->textTags()]) }}"><span class="oi oi-reload" data-toggle="tooltip" data-placement="bottom" title="同じオカズでチェックイン"></span></a>
|
2018-06-07 02:21:40 +09:00
|
|
|
|
@if ($user->isMe())
|
|
|
|
|
<a class="text-secondary timeline-action-item" href="{{ route('checkin.edit', ['id' => $ejaculation->id]) }}"><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>
|
|
|
|
|
@endif
|
2017-11-05 21:59:01 +09:00
|
|
|
|
</div>
|
2017-08-27 04:44:53 +09:00
|
|
|
|
</div>
|
2017-11-05 21:59:01 +09:00
|
|
|
|
<!-- tags -->
|
2018-01-08 08:50:22 +09:00
|
|
|
|
@if ($ejaculation->is_private || $ejaculation->tags->isNotEmpty())
|
2017-11-05 21:59:01 +09:00
|
|
|
|
<p class="mb-2">
|
|
|
|
|
@if ($ejaculation->is_private)
|
|
|
|
|
<span class="badge badge-warning"><span class="oi oi-lock-locked"></span> 非公開</span>
|
|
|
|
|
@endif
|
2018-01-08 08:50:22 +09:00
|
|
|
|
@foreach ($ejaculation->tags as $tag)
|
2018-09-11 23:05:01 +09:00
|
|
|
|
<a class="badge badge-secondary" href="{{ route('search', ['q' => $tag->name]) }}"><span class="oi oi-tag"></span> {{ $tag->name }}</a>
|
2018-01-08 08:50:22 +09:00
|
|
|
|
@endforeach
|
2017-11-05 21:59:01 +09:00
|
|
|
|
</p>
|
2017-11-03 17:48:58 +09:00
|
|
|
|
@endif
|
2017-11-05 21:59:01 +09:00
|
|
|
|
<!-- okazu link -->
|
2018-01-05 00:26:48 +09:00
|
|
|
|
@if (!empty($ejaculation->link))
|
2018-03-06 23:46:22 +09:00
|
|
|
|
<div class="row mx-0">
|
|
|
|
|
<div class="card link-card mb-2 px-0 col-12 col-md-6 d-none" style="font-size: small;">
|
|
|
|
|
<a class="text-dark card-link" href="{{ $ejaculation->link }}" target="_blank" rel="noopener">
|
|
|
|
|
<img src="" alt="Thumbnail" class="card-img-top bg-secondary">
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<h6 class="card-title font-weight-bold">タイトル</h6>
|
|
|
|
|
<p class="card-text">コンテンツの説明文</p>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
2017-11-05 21:59:01 +09:00
|
|
|
|
</div>
|
2018-03-06 23:46:22 +09:00
|
|
|
|
<p class="mb-2 col-12 px-0">
|
|
|
|
|
<span class="oi oi-link-intact mr-1"></span><a href="{{ $ejaculation->link }}" target="_blank" rel="noopener">{{ $ejaculation->link }}</a>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2018-01-05 00:26:48 +09:00
|
|
|
|
@endif
|
2017-11-05 21:59:01 +09:00
|
|
|
|
<!-- 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();
|
|
|
|
|
});
|
2018-01-05 00:26:48 +09:00
|
|
|
|
|
|
|
|
|
$('.link-card').each(function () {
|
|
|
|
|
var $this = $(this);
|
|
|
|
|
$.ajax({
|
2018-01-05 22:43:33 +09:00
|
|
|
|
url: '{{ url('/api/checkin/card') }}',
|
2018-01-05 00:26:48 +09:00
|
|
|
|
method: 'get',
|
|
|
|
|
type: 'json',
|
|
|
|
|
data: {
|
|
|
|
|
url: $this.find('a').attr('href')
|
|
|
|
|
}
|
|
|
|
|
}).then(function (data) {
|
2018-01-05 23:34:49 +09:00
|
|
|
|
var $title = $this.find('.card-title');
|
|
|
|
|
var $desc = $this.find('.card-text');
|
|
|
|
|
var $image = $this.find('img');
|
|
|
|
|
|
|
|
|
|
if (data.title === '') {
|
|
|
|
|
$title.hide();
|
|
|
|
|
} else {
|
|
|
|
|
$title.text(data.title);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data.description === '') {
|
|
|
|
|
$desc.hide();
|
|
|
|
|
} else {
|
|
|
|
|
$desc.text(data.description);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data.image === '') {
|
|
|
|
|
$image.hide();
|
|
|
|
|
} else {
|
|
|
|
|
$image.attr('src', data.image);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data.title !== '' || data.description !== '' || data.image !== '') {
|
|
|
|
|
$this.removeClass('d-none');
|
|
|
|
|
}
|
2018-01-05 00:26:48 +09:00
|
|
|
|
});
|
|
|
|
|
});
|
2017-11-03 17:48:58 +09:00
|
|
|
|
</script>
|
|
|
|
|
@endpush
|