forked from mirror/pixelfed
commit
5f680bc097
|
@ -122,6 +122,8 @@
|
||||||
- Updated StatusController, add interstitial logic. ([003caf7e](https://github.com/pixelfed/pixelfed/commit/003caf7e))
|
- Updated StatusController, add interstitial logic. ([003caf7e](https://github.com/pixelfed/pixelfed/commit/003caf7e))
|
||||||
- Updated middleware, add AccountInterstitial support. ([19d6e7df](https://github.com/pixelfed/pixelfed/commit/19d6e7df))
|
- Updated middleware, add AccountInterstitial support. ([19d6e7df](https://github.com/pixelfed/pixelfed/commit/19d6e7df))
|
||||||
- Updated BaseApiController, add favourites method. ([76353ca9](https://github.com/pixelfed/pixelfed/commit/76353ca9))
|
- Updated BaseApiController, add favourites method. ([76353ca9](https://github.com/pixelfed/pixelfed/commit/76353ca9))
|
||||||
|
- Updated dockerfile, fix composer issue. ([ef45c4b21](https://github.com/pixelfed/pixelfed/commit/ef45c4b21))
|
||||||
|
- Updated reply/comment view, improve layout and include child reply. ([2eca670e](https://github.com/pixelfed/pixelfed/commit/2eca670e))
|
||||||
|
|
||||||
## [v0.10.9 (2020-04-17)](https://github.com/pixelfed/pixelfed/compare/v0.10.8...v0.10.9)
|
## [v0.10.9 (2020-04-17)](https://github.com/pixelfed/pixelfed/compare/v0.10.8...v0.10.9)
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -92,11 +92,9 @@ RUN curl -o /tmp/composer-setup.php https://getcomposer.org/installer \
|
||||||
COPY . /var/www/
|
COPY . /var/www/
|
||||||
# for detail why storage is copied this way, pls refer to https://github.com/pixelfed/pixelfed/pull/2137#discussion_r434468862
|
# for detail why storage is copied this way, pls refer to https://github.com/pixelfed/pixelfed/pull/2137#discussion_r434468862
|
||||||
RUN cp -r storage storage.skel \
|
RUN cp -r storage storage.skel \
|
||||||
&& composer global require hirak/prestissimo --prefer-dist --no-interaction --no-ansi --no-suggest \
|
|
||||||
&& composer install --prefer-dist --no-interaction --no-ansi --optimize-autoloader \
|
&& composer install --prefer-dist --no-interaction --no-ansi --optimize-autoloader \
|
||||||
&& composer update --prefer-dist --no-interaction --no-ansi \
|
&& rm -rf html && ln -s public html \
|
||||||
&& composer global remove hirak/prestissimo --no-interaction --no-ansi \
|
&& chown -R www-data:www-data /var/www
|
||||||
&& rm -rf html && ln -s public html
|
|
||||||
VOLUME /var/www/storage /var/www/bootstrap
|
VOLUME /var/www/storage /var/www/bootstrap
|
||||||
|
|
||||||
CMD ["/var/www/contrib/docker/start.apache.sh"]
|
CMD ["/var/www/contrib/docker/start.apache.sh"]
|
||||||
|
|
|
@ -4,27 +4,62 @@
|
||||||
|
|
||||||
<div class="container reply-container">
|
<div class="container reply-container">
|
||||||
<div class="col-12 col-md-8 offset-md-2 mt-4">
|
<div class="col-12 col-md-8 offset-md-2 mt-4">
|
||||||
<div class="card">
|
<div class="card shadow-none border">
|
||||||
<div class="card-body p-0 m-0 bg-light">
|
@if($status->parent()->parent())
|
||||||
|
<div class="card-body p-0 m-0 bg-light border-bottom">
|
||||||
<div class="d-flex p-0 m-0 align-items-center">
|
<div class="d-flex p-0 m-0 align-items-center">
|
||||||
<img src="{{$status->parent()->thumb()}}" width="150px" height="150px" class="post-thumbnail">
|
@if($status->parent()->parent()->media()->count())
|
||||||
|
<img src="{{$status->parent()->parent()->thumb()}}" width="150px" height="150px" class="post-thumbnail">
|
||||||
|
@endif
|
||||||
<div class="p-4 w-100">
|
<div class="p-4 w-100">
|
||||||
<div class="d-flex justify-content-between align-items-center">
|
|
||||||
<div>
|
|
||||||
<img src="{{$status->parent()->profile->avatarUrl()}}" class="rounded-circle img-thumbnail mb-1 mr-1" width="30px">
|
|
||||||
<span class="h5 font-weight-bold" v-pre>{{$status->parent()->profile->username}}</span>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<a class="" href="{{$status->parent()->url()}}"><i class="far fa-share-square"></i></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="">
|
<div class="">
|
||||||
<p class="mb-0 w-100" v-pre>{{ str_limit($status->parent()->caption, 125) }}</p>
|
<div class="media">
|
||||||
|
<img src="{{$status->parent()->parent()->profile->avatarUrl()}}" class="rounded-circle img-thumbnail mb-1 mr-3" width="30px">
|
||||||
|
<div class="media-body">
|
||||||
|
<span class="font-weight-bold" v-pre>{{$status->parent()->parent()->profile->username}}</span>
|
||||||
|
<div class="">
|
||||||
|
<p class="w-100 text-break" v-pre>{!!$status->parent()->parent()->rendered!!}</p>
|
||||||
|
</div>
|
||||||
|
<div class="mb-0 small">
|
||||||
|
<a href="{{$status->parent()->parent()->url()}}" class="text-muted">
|
||||||
|
{{$status->parent()->parent()->created_at->diffForHumans()}}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="float-right" href="{{$status->parent()->parent()->url()}}"><i class="far fa-share-square"></i></a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
@endif
|
||||||
|
<div class="card-body p-0 m-0 bg-light border-bottom">
|
||||||
|
<div class="d-flex p-0 m-0 align-items-center">
|
||||||
|
@if($status->parent()->media()->count())
|
||||||
|
<img src="{{$status->parent()->thumb()}}" width="150px" height="150px" class="post-thumbnail">
|
||||||
|
@endif
|
||||||
|
<div class="p-4 w-100">
|
||||||
|
<div class="">
|
||||||
|
<div class="media">
|
||||||
|
<img src="{{$status->parent()->profile->avatarUrl()}}" class="rounded-circle img-thumbnail mb-1 mr-3" width="30px">
|
||||||
|
<div class="media-body">
|
||||||
|
<span class="font-weight-bold" v-pre>{{$status->parent()->profile->username}}</span>
|
||||||
|
<div class="">
|
||||||
|
<p class="w-100 text-break" v-pre>{!!$status->parent()->rendered!!}</p>
|
||||||
|
</div>
|
||||||
|
<div class="mb-0 small">
|
||||||
|
<a href="{{$status->parent()->url()}}" class="text-muted">
|
||||||
|
{{$status->parent()->created_at->diffForHumans()}}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="float-right" href="{{$status->parent()->url()}}"><i class="far fa-share-square"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body border-bottom">
|
||||||
@if($status->is_nsfw)
|
@if($status->is_nsfw)
|
||||||
<details class="cw">
|
<details class="cw">
|
||||||
<summary class="px-3 px-md-5">
|
<summary class="px-3 px-md-5">
|
||||||
|
@ -34,8 +69,8 @@
|
||||||
<img class="mr-3 rounded-circle img-thumbnail" src="{{$status->profile->avatarUrl()}}" width="60px">
|
<img class="mr-3 rounded-circle img-thumbnail" src="{{$status->profile->avatarUrl()}}" width="60px">
|
||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<h5 class="mt-0 font-weight-bold" v-pre>{{$status->profile->username}}</h5>
|
<h5 class="mt-0 font-weight-bold" v-pre>{{$status->profile->username}}</h5>
|
||||||
<p class="mb-1" v-pre>{!! $status->rendered !!}</p>
|
<p class="" v-pre>{!! $status->rendered !!}</p>
|
||||||
<div class="mb-0">
|
<div class="mb-0 small">
|
||||||
<a href="{{$status->url()}}" class="text-muted">
|
<a href="{{$status->url()}}" class="text-muted">
|
||||||
{{$status->created_at->diffForHumans()}}
|
{{$status->created_at->diffForHumans()}}
|
||||||
</a>
|
</a>
|
||||||
|
@ -48,8 +83,8 @@
|
||||||
<img class="mr-3 rounded-circle img-thumbnail" src="{{$status->profile->avatarUrl()}}" width="60px">
|
<img class="mr-3 rounded-circle img-thumbnail" src="{{$status->profile->avatarUrl()}}" width="60px">
|
||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<h5 class="mt-0 font-weight-bold" v-pre>{{$status->profile->username}}</h5>
|
<h5 class="mt-0 font-weight-bold" v-pre>{{$status->profile->username}}</h5>
|
||||||
<p class="mb-1" v-pre>{!! $status->rendered !!}</p>
|
<p class="" v-pre>{!! $status->rendered !!}</p>
|
||||||
<div class="mb-0">
|
<div class="mb-0 small">
|
||||||
<a href="{{$status->url()}}" class="text-muted">
|
<a href="{{$status->url()}}" class="text-muted">
|
||||||
{{$status->created_at->diffForHumans()}}
|
{{$status->created_at->diffForHumans()}}
|
||||||
</a>
|
</a>
|
||||||
|
@ -66,6 +101,34 @@
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
@if($status->comments->count())
|
||||||
|
<div class="card-body p-0 m-0 bg-light border-bottom">
|
||||||
|
<div class="d-flex p-0 m-0 align-items-center">
|
||||||
|
@if($status->comments()->first()->media()->count())
|
||||||
|
<img src="{{$status->comments()->first()->thumb()}}" width="150px" height="150px" class="post-thumbnail">
|
||||||
|
@endif
|
||||||
|
<div class="p-4 w-100">
|
||||||
|
<div class="">
|
||||||
|
<div class="media">
|
||||||
|
<img src="{{$status->comments()->first()->profile->avatarUrl()}}" class="rounded-circle img-thumbnail mb-1 mr-3" width="30px">
|
||||||
|
<div class="media-body">
|
||||||
|
<span class="font-weight-bold" v-pre>{{$status->comments()->first()->profile->username}}</span>
|
||||||
|
<div class="">
|
||||||
|
<p class="w-100 text-break" v-pre>{!!$status->comments()->first()->rendered!!}</p>
|
||||||
|
</div>
|
||||||
|
<div class="mb-0 small">
|
||||||
|
<a href="{{$status->comments()->first()->url()}}" class="text-muted">
|
||||||
|
{{$status->comments()->first()->created_at->diffForHumans()}}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="float-right" href="{{$status->comments()->first()->url()}}"><i class="far fa-share-square"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -108,7 +171,6 @@
|
||||||
@endpush
|
@endpush
|
||||||
|
|
||||||
@push('scripts')
|
@push('scripts')
|
||||||
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('.reactions').hide();
|
$('.reactions').hide();
|
||||||
|
|
Loading…
Reference in New Issue