Размер файла: 12.1Kb
@extends('layout')
@section('title')
{{ $topic->title }} (Стр. {{ $page->current }})
@stop
@section('description', 'Обсуждение темы: '.$topic->title.' (Стр. '.$page->current.')')
@section('content')
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
<li class="breadcrumb-item"><a href="/forums">Форум</a></li>
@if ($topic->forum->parent->id)
<li class="breadcrumb-item"><a href="/forums/{{ $topic->forum->parent->id }}">{{ $topic->forum->parent->title }}</a></li>
@endif
<li class="breadcrumb-item"><a href="/forums/{{ $topic->forum->id }}">{{ $topic->forum->title }}</a></li>
<li class="breadcrumb-item active">{{ $topic->title }}</li>
</ol>
</nav>
<h1>{{ $topic->title }}</h1>
<a href="/topics/print/{{ $topic->id }}">Печать</a> / <a href="/topics/rss/{{ $topic->id }}">RSS-лента</a>
@if (getUser())
@if (! $topic->closed && $topic->user->id === getUser('id') && getUser('point') >= setting('editforumpoint'))
/ <a href="/topics/close/{{ $topic->id }}?token={{ $_SESSION['token'] }}" onclick="return confirm('Вы действительно хотите закрыть данную тему?')">Закрыть</a>
/ <a href="/topics/edit/{{ $topic->id }}">Изменить</a>
@endif
<?php $bookmark = $topic->bookmark_posts ? 'Из закладок' : 'В закладки'; ?>
/ <a href="#" onclick="return bookmark(this)" data-tid="{{ $topic->id }}" data-token="{{ $_SESSION['token'] }}">{{ $bookmark }}</a>
@endif
@if ($topic->curators)
<div>
<span class="badge badge-warning">
<i class="fa fa-wrench"></i> Кураторы темы:
@foreach ($topic->curators as $key => $curator)
<?php $comma = (empty($key)) ? '' : ', '; ?>
{{ $comma }}{!! $curator->getProfile() !!}
@endforeach
</span>
</div>
@endif
@if ($topic->note)
<div class="p-1 bg-info text-white">{!! bbCode($topic->note) !!}</div>
@endif
<hr>
@if (isAdmin())
@if ($topic->closed)
<a href="/admin/topics/action/{{ $topic->id }}?type=open&page={{ $page->current }}&token={{ $_SESSION['token'] }}">Открыть</a> /
@else
<a href="/admin/topics/action/{{ $topic->id }}?type=closed&page={{ $page->current }}&token={{ $_SESSION['token'] }}">Закрыть</a> /
@endif
@if ($topic->locked)
<a href="/admin/topics/action/{{ $topic->id }}?type=unlocked&page={{ $page->current }}&token={{ $_SESSION['token'] }}">Открепить</a> /
@else
<a href="/admin/topics/action/{{ $topic->id }}?type=locked&page={{ $page->current }}&token={{ $_SESSION['token'] }}">Закрепить</a> /
@endif
<a href="/admin/topics/edit/{{ $topic->id }}">Изменить</a> /
<a href="/admin/topics/move/{{ $topic->id }}">Переместить</a> /
<a href="/admin/topics/delete/{{ $topic->id }}?token={{ $_SESSION['token'] }}" onclick="return confirm('Вы действительно хотите удалить данную тему?')">Удалить</a> /
<a href="/admin/topics/{{ $topic->id }}?page={{ $page->current }}">Управление</a><br>
@endif
@if ($vote)
<h3>{{ $vote->title }}</h3>
@if (!getUser() || $vote->poll || $vote->closed)
@foreach ($vote->voted as $key => $data)
<?php $proc = round(($data * 100) / $vote->sum, 1); ?>
<?php $maxproc = round(($data * 100) / $vote->max); ?>
<b>{{ $key }}</b> (Голосов: {{ $data }})<br>
{!! progressBar($maxproc, $proc.'%') !!}
@endforeach
@else
<form action="/topics/votes/{{ $topic->id }}?page={{ $page->current }}" method="post">
<input type="hidden" name="token" value="{{ $_SESSION['token'] }}">
@foreach ($vote->answers as $answer)
<label><input name="poll" type="radio" value="{{ $answer->id }}"> {{ $answer->answer }}</label><br>
@endforeach
<br><button class="btn btn-sm btn-primary">Голосовать</button>
</form><br>
@endif
Всего проголосовало: {{ $vote->count }}
@endif
@if ($topic->isModer)
<form action="/topics/delete/{{ $topic->id }}?page={{ $page->current }}" method="post">
<input type="hidden" name="token" value="{{ $_SESSION['token'] }}">
@endif
@if ($posts->isNotEmpty())
@foreach ($posts as $data)
<?php $num = ($page->offset + $loop->iteration ); ?>
<div class="post">
<div class="b" id="post_{{ $data->id }}">
<div class="float-right text-right">
@if (getUser())
@if (getUser('id') !== $data->user_id)
<a href="#" onclick="return postReply(this)" title="Ответить"><i class="fa fa-reply text-muted"></i></a>
<a href="#" onclick="return postQuote(this)" title="Цитировать"><i class="fa fa-quote-right text-muted"></i></a>
<a href="#" onclick="return sendComplaint(this)" data-type="{{ App\Models\Post::class }}" data-id="{{ $data->id }}" data-token="{{ $_SESSION['token'] }}" data-page="{{ $page->current }}" rel="nofollow" title="Жалоба"><i class="fa fa-bell text-muted"></i></a>
@endif
@if ($topic->isModer || (getUser('id') === $data->user_id && $data->created_at + 600 > SITETIME))
<a href="/posts/edit/{{ $data->id }}?page={{ $page->current }}" title="Редактировать"><i class="fa fa-pencil-alt text-muted"></i></a>
@if ($topic->isModer)
<input type="checkbox" name="del[]" value="{{ $data->id }}">
@endif
@endif
@endif
<div class="js-rating">
@if (getUser() && getUser('id') !== $data->user_id)
<a class="post-rating-down{{ $data->vote === '-' ? ' active' : '' }}" href="#" onclick="return changeRating(this);" data-id="{{ $data->id }}" data-type="{{ App\Models\Post::class }}" data-vote="-" data-token="{{ $_SESSION['token'] }}"><i class="fa fa-minus"></i></a>
@endif
<span>{!! formatNum($data->rating) !!}</span>
@if (getUser() && getUser('id') !== $data->user_id)
<a class="post-rating-up{{ $data->vote === '+' ? ' active' : '' }}" href="#" onclick="return changeRating(this);" data-id="{{ $data->id }}" data-type="{{ App\Models\Post::class }}" data-vote="+" data-token="{{ $_SESSION['token'] }}"><i class="fa fa-plus"></i></a>
@endif
</div>
</div>
<div class="img">
{!! $data->user->getAvatar() !!}
{!! $data->user->getOnline() !!}
</div>
{{ $num }}. <b>{!! $data->user->getProfile() !!}</b> <small>({{ dateFixed($data->created_at) }})</small><br>
{!! $data->user->getStatus() !!}
</div>
<div class="message">
{!! bbCode($data->text) !!}
</div>
@if ($data->files->isNotEmpty())
<div class="hiding">
<i class="fa fa-paperclip"></i> <b>Прикрепленные файлы:</b><br>
@foreach ($data->files as $file)
<?php $ext = getExtension($file->hash); ?>
{!! icons($ext) !!}
<a href="{{ $file->hash }}">{{ $file->name }}</a> ({{ formatSize($file->size) }})<br>
@if (in_array($ext, ['jpg', 'jpeg', 'gif', 'png']))
<a href="{{ $file->hash }}" class="gallery" data-group="{{ $data->id }}">{!! resizeImage($file->hash, ['alt' => $file->name]) !!}</a><br>
@endif
@endforeach
</div>
@endif
@if ($data->edit_user_id)
<small><i class="fa fa-exclamation-circle text-danger"></i> Отредактировано: {{ $data->editUser->login }} ({{ dateFixed($data->updated_at) }})</small><br>
@endif
@if (isAdmin())
<span class="data">({{ $data->brow }}, {{ $data->ip }})</span>
@endif
</div>
@endforeach
@else
{!! showError('Сообщений еще нет, будь первым!') !!}
@endif
@if ($topic->isModer)
<span class="float-right">
<button class="btn btn-sm btn-danger">Удалить выбранное</button>
</span>
</form>
@endif
{!! pagination($page) !!}
@if (getUser())
@if (empty($topic->closed))
<div class="form">
<form action="/topics/create/{{ $topic->id }}" method="post" enctype="multipart/form-data">
<input type="hidden" name="token" value="{{ $_SESSION['token'] }}">
<div class="form-group{{ hasError('msg') }}">
<label for="msg">Сообщение:</label>
<textarea class="form-control markItUp" id="msg" rows="5" name="msg" placeholder="Текст сообщения" required>{{ getInput('msg') }}</textarea>
{!! textError('msg') !!}
</div>
@if (getUser('point') >= setting('forumloadpoints'))
<div class="js-attach-form" style="display: none;">
<label class="btn btn-sm btn-secondary" for="files">
<input type="file" id="files" name="files[]" onchange="$('#upload-file-info').html((this.files.length > 1) ? this.files.length + ' файлов' : this.files[0].name);" hidden multiple>
Прикрепить файлы…
</label>
<span class="badge badge-info" id="upload-file-info"></span>
{!! textError('files') !!}
<br>
<p class="text-muted font-italic">
Можно загрузить до {{ setting('maxfiles') }} файлов<br>
Максимальный вес файла: {{ formatSize(setting('forumloadsize')) }}<br>
Допустимые расширения файлов: {{ str_replace(',', ', ', setting('forumextload')) }}
</p>
</div>
<span class="float-right js-attach-button">
<a href="#" onclick="return showAttachForm();">Загрузить файл</a>
</span>
@endif
<button class="btn btn-primary">Написать</button>
</form>
</div><br>
@else
{!! showError('Данная тема закрыта для обсуждения!') !!}
@endif
@else
{!! showError('Для добавления сообщения необходимо авторизоваться') !!}
@endif
<a href="/smiles">Смайлы</a> /
<a href="/tags">Теги</a> /
<a href="/rules">Правила</a> /
<a href="/forums/top/topics">Топ тем</a> /
<a href="/forums/top/posts">Топ постов</a> /
<a href="/forums/search?fid={{ $topic->forum_id }}">Поиск</a><br>
@stop