121 lines
6.2 KiB
PHP
121 lines
6.2 KiB
PHP
@extends('search.base')
|
|
|
|
@section('tab-content')
|
|
@if(empty($results))
|
|
<p>このタグが含まれるチェックインはありません。</p>
|
|
@else
|
|
<ul class="list-group">
|
|
@foreach($results as $ejaculation)
|
|
<li class="list-group-item border-bottom-only pt-3 pb-3">
|
|
<!-- span -->
|
|
<div class="d-flex justify-content-between">
|
|
<h5>
|
|
<a href="{{ route('user.profile', ['id' => $ejaculation->user->name]) }}" class="text-dark"><img src="{{ $ejaculation->user->getProfileImageUrl(30) }}" width="30" height="30" class="rounded d-inline-block align-bottom"> @{{ $ejaculation->user->name }}</a>
|
|
<a href="{{ route('checkin.show', ['id' => $ejaculation->id]) }}" class="text-muted"><small>{{ $ejaculation->ejaculated_date->format('Y/m/d H:i') }}</small></a>
|
|
</h5>
|
|
<div>
|
|
<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>
|
|
@if ($ejaculation->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
|
|
</div>
|
|
</div>
|
|
<!-- tags -->
|
|
@if ($ejaculation->is_private || $ejaculation->tags->isNotEmpty())
|
|
<p class="mb-2">
|
|
@if ($ejaculation->is_private)
|
|
<span class="badge badge-warning"><span class="oi oi-lock-locked"></span> 非公開</span>
|
|
@endif
|
|
@foreach ($ejaculation->tags as $tag)
|
|
<a class="badge badge-secondary" href="{{ route('search', ['q' => $tag->name]) }}"><span class="oi oi-tag"></span> {{ $tag->name }}</a>
|
|
@endforeach
|
|
</p>
|
|
@endif
|
|
<!-- okazu link -->
|
|
@if (!empty($ejaculation->link))
|
|
<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>
|
|
</div>
|
|
<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>
|
|
@endif
|
|
<!-- note -->
|
|
@if (!empty($ejaculation->note))
|
|
<p class="mb-0 tis-word-wrap">
|
|
{!! Formatter::linkify(nl2br(e($ejaculation->note))) !!}
|
|
</p>
|
|
@endif
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
<ul class="pagination mt-4 justify-content-center">
|
|
<li class="page-item {{ $results->currentPage() === 1 ? 'disabled' : '' }}">
|
|
<a class="page-link" href="{{ $results->previousPageUrl() }}" aria-label="Previous">
|
|
<span aria-hidden="true">«</span>
|
|
<span class="sr-only">Previous</span>
|
|
</a>
|
|
</li>
|
|
@for ($i = 1; $i <= $results->lastPage(); $i++)
|
|
<li class="page-item {{ $i === $results->currentPage() ? 'active' : '' }}"><a href="{{ $results->url($i) }}" class="page-link">{{ $i }}</a></li>
|
|
@endfor
|
|
<li class="page-item {{ $results->currentPage() === $results->lastPage() ? 'disabled' : '' }}">
|
|
<a class="page-link" href="{{ $results->nextPageUrl() }}" aria-label="Next">
|
|
<span aria-hidden="true">»</span>
|
|
<span class="sr-only">Next</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
@endif
|
|
@endsection
|
|
|
|
@push('script')
|
|
<script>
|
|
$('.link-card').each(function () {
|
|
var $this = $(this);
|
|
$.ajax({
|
|
url: '{{ url('/api/checkin/card') }}',
|
|
method: 'get',
|
|
type: 'json',
|
|
data: {
|
|
url: $this.find('a').attr('href')
|
|
}
|
|
}).then(function (data) {
|
|
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');
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
@endpush |