瀏覽代碼

Remove deprecated timeline views

Daniel Supernault 6 年之前
父節點
當前提交
1980ec025d

+ 0 - 82
resources/views/timeline/partial/new-form.blade.php

@@ -1,82 +0,0 @@
-    <div class="card card-md-rounded-0 metro-classic-compose">
-      <div class="card-header bg-white font-weight-bold d-inline-flex justify-content-between">
-        <div>{{__('Create New Post')}}</div>
-      </div>
-      <div class="card-body" id="statusForm">
-
-        <form method="post" action="{{route('timeline.personal')}}" enctype="multipart/form-data">
-          @csrf
-          <input type="hidden" name="filter_name" value="">
-          <input type="hidden" name="filter_class" value="">
-          <div class="form-group">
-            <div class="custom-file">
-              <input type="file" class="custom-file-input" id="fileInput" name="photo[]" accept="{{config('pixelfed.media_types')}}" multiple="">
-              <label class="custom-file-label" for="fileInput">Upload Image(s)</label>
-            </div>
-            <small class="form-text text-muted">
-              Max Size: @maxFileSize(). Supported formats: jpeg, png, gif, bmp. Limited to {{config('pixelfed.max_album_length')}} photos per post.
-            </small>
-          </div>
-          <div class="form-group">
-            <textarea class="form-control" name="caption" placeholder="Add optional caption here" autocomplete="off" data-limit="{{config('pixelfed.max_caption_length')}}" rows="1"></textarea>
-            <p class="form-text text-muted small text-right">
-              <span class="caption-counter">0</span>
-              <span>/</span>
-              <span>{{config('pixelfed.max_caption_length')}}</span>
-            </p>
-          </div>
-          <div class="form-group">
-            <button class="btn btn-outline-primary btn-sm px-3 py-1 font-weight-bold" type="button" data-toggle="collapse" data-target="#collapsePreview" aria-expanded="false" aria-controls="collapsePreview">
-              Options &nbsp; <i class="fas fa-chevron-down"></i>
-            </button>
-            <div class="collapse" id="collapsePreview">
-              <div class="form-group pt-3">
-                <label class="font-weight-bold text-muted small">Visibility</label>
-                <div class="switch switch-sm">
-                  <select class="form-control" name="visibility">
-                    @if(Auth::user()->profile->is_private)
-                      <option value="public">Public</option>
-                      <option value="unlisted">Unlisted (hidden from public timelines)</option>
-                      <option value="private" selected="">Followers Only</option>
-                    @else
-                      <option value="public" selected="">Public</option>
-                      <option value="unlisted">Unlisted (hidden from public timelines)</option>
-                      <option value="private">Followers Only</option>
-                    @endif
-                  </select>
-                </div>
-                <small class="form-text text-muted">
-                  Set the visibility of this post.
-                </small>
-              </div>
-              <div class="form-group">
-                <label class="font-weight-bold text-muted small">CW/NSFW</label>
-                <div class="switch switch-sm">
-                  <input type="checkbox" class="switch" id="cw-switch" name="cw">
-                  <label for="cw-switch" class="small font-weight-bold">(Default off)</label>
-                </div>
-                <small class="form-text text-muted">
-                  Please mark all NSFW and controversial content, as per our content policy.
-                </small>
-              </div>
-              <div class="form-group d-none form-preview">
-                <label class="font-weight-bold text-muted small">Photo Preview</label>
-                <figure class="filterContainer">
-                    <img class="filterPreview img-fluid">
-                </figure>
-                <small class="form-text text-muted font-weight-bold">
-                  No filter selected.
-                </small>
-              </div>
-              <div class="form-group d-none form-filters">
-                <label for="filterSelectDropdown" class="font-weight-bold text-muted small">Select Filter</label>
-                <select class="form-control" id="filterSelectDropdown">
-                  <option value="none" selected="">No Filter</option>
-                </select>
-              </div>  
-            </div>
-          </div>  
-          <button type="submit" class="btn btn-outline-primary btn-block font-weight-bold">Create Post</button>
-        </form>
-      </div>  
-    </div>

+ 0 - 68
resources/views/timeline/personal.blade.php

@@ -1,68 +0,0 @@
-@extends('layouts.app')
-
-@push('scripts')
-<script type="text/javascript" src="{{mix('js/timeline.js')}}"></script>
-@endpush 
-
-@section('content')
-
-<div class="container p-0">
-  <div class="col-md-10 col-lg-8 mx-auto pt-4 px-0">
-    @if ($errors->any())
-      <div class="alert alert-danger">
-          <ul>
-              @foreach ($errors->all() as $error)
-                  <li>{{ $error }}</li>
-              @endforeach
-          </ul>
-      </div>
-    @endif
-
-    @include('timeline.partial.new-form')
-    
-    <div class="timeline-feed my-5" data-timeline="personal">
-    @foreach($timeline as $item)
-
-      @include('status.template')
-
-    @endforeach
-    @if($timeline->count() == 0)
-    <div class="card card-md-rounded-0">
-      <div class="card-body py-5">
-        <div class="d-flex justify-content-center align-items-center">
-          <p class="lead font-weight-bold mb-0">{{ __('timeline.emptyPersonalTimeline') }}</p>
-        </div>
-      </div>
-    </div>
-    @endif
-    </div>
-
-    <div class="page-load-status" style="display: none;">
-      <div class="infinite-scroll-request" style="display: none;">
-        <div class="fixed-top loading-page"></div>
-      </div>
-      <div class="infinite-scroll-last" style="display: none;">
-        <h3>No more content</h3>
-        <p class="text-muted">
-          Maybe you could try 
-          <a href="{{route('discover')}}">discovering</a>
-          more people you can follow.
-        </p>
-      </div>
-      <div class="infinite-scroll-error" style="display: none;">
-        <h3>Whoops, an error</h3>
-        <p class="text-muted">
-          Try reloading the page
-        </p>
-      </div>
-    </div>
-
-    <div class="d-flex justify-content-center">
-      {{$timeline->links()}}
-    </div>
-
-  </div>
-</div>
-
-
-@endsection

+ 0 - 59
resources/views/timeline/public.blade.php

@@ -1,59 +0,0 @@
-@extends('layouts.app')
-
-@push('scripts')
-<script type="text/javascript" src="{{mix('js/timeline.js')}}"></script>
-@endpush 
-
-@section('content')
-
-<div class="container px-0">
-  <div class="col-md-10 col-lg-8 mx-auto pt-4 px-0">
-    @if ($errors->any())
-      <div class="alert alert-danger">
-          <ul>
-              @foreach ($errors->all() as $error)
-                  <li>{{ $error }}</li>
-              @endforeach
-          </ul>
-      </div>
-    @endif
-    
-    @include('timeline.partial.new-form')
-
-    <div class="timeline-feed my-5" data-timeline="public">
-    @foreach($timeline as $item)
-
-      @include('status.template')
-
-    @endforeach
-    </div>
-
-    <div class="page-load-status" style="display: none;">
-      <div class="infinite-scroll-request" style="display: none;">
-        <div class="fixed-top loading-page"></div>
-      </div>
-      <div class="infinite-scroll-last" style="display: none;">
-        <h3>No more content</h3>
-        <p class="text-muted">
-          Maybe you could try 
-          <a href="{{route('discover')}}">discovering</a>
-          more people you can follow.
-        </p>
-      </div>
-      <div class="infinite-scroll-error" style="display: none;">
-        <h3>Whoops, an error</h3>
-        <p class="text-muted">
-          Try reloading the page
-        </p>
-      </div>
-    </div>
-
-    <div class="d-flex justify-content-center">
-      {{$timeline->links()}}
-    </div>
-
-  </div>
-</div>
-
-
-@endsection

+ 0 - 132
resources/views/timeline/template.blade.php

@@ -1,132 +0,0 @@
-@extends('layouts.app')
-
-@section('content')
-
-<noscript>
-  <div class="container">
-    <div class="card border-left-blue mt-5">
-      <div class="card-body">
-        <p class="mb-0 font-weight-bold">Javascript is required for an optimized experience, please enable it to use this site.</p>
-        <p class="mb-0 font-weight-bold text-muted">(We are working on a lite version that does not require javascript)</p>
-      </div>
-    </div>
-  </div>
-</noscript>
-
-<div class="container d-none timeline-container">
-  <div class="row">
-    <div class="col-md-8 col-lg-8 pt-4 px-0 my-3">
-        @if (session('status'))
-            <div class="alert alert-success">
-                <span class="font-weight-bold">{!! session('status') !!}</span>
-            </div>
-        @endif
-        @if (session('error'))
-            <div class="alert alert-danger">
-                <span class="font-weight-bold">{!! session('error') !!}</span>
-            </div>
-        @endif
-
-      
-      <div class="timeline-feed" data-timeline="{{$type}}">
-
-      @foreach($timeline as $item)
-        @if(is_null($item->in_reply_to_id))
-        @include('status.template')
-        @endif
-      @endforeach
-      
-      @if($timeline->count() == 0)
-      <div class="card card-md-rounded-0">
-        <div class="card-body py-5">
-          <div class="d-flex justify-content-center align-items-center">
-            <p class="lead font-weight-bold mb-0">{{ __('timeline.emptyPersonalTimeline') }}</p>
-          </div>
-        </div>
-      </div>
-      @endif
-      </div>
-
-      <div class="page-load-status" style="display: none;">
-        <div class="infinite-scroll-request" style="display: none;">
-          <div class="fixed-top loading-page"></div>
-        </div>
-        <div class="infinite-scroll-last" style="display: none;">
-          <h3>No more content</h3>
-          <p class="text-muted">
-            Maybe you could try 
-            <a href="{{route('discover')}}">discovering</a>
-            more people you can follow.
-          </p>
-        </div>
-        <div class="infinite-scroll-error" style="display: none;">
-          <h3>Whoops, an error</h3>
-          <p class="text-muted">
-            Try reloading the page
-          </p>
-        </div>
-      </div>
-
-      <div class="d-flex justify-content-center">
-        {{$timeline->links()}}
-      </div>
-
-    </div>
-    <div class="col-md-4 col-lg-4 pt-4 my-3">
-        <div class="media d-flex align-items-center mb-4">
-          <a href="{{Auth::user()->profile->url()}}">
-            <img class="mr-3 rounded-circle box-shadow" src="{{Auth::user()->profile->avatarUrl()}}" alt="{{Auth::user()->username}}'s avatar" width="64px">
-          </a>
-          <div class="media-body">
-            <p class="mb-0 px-0 font-weight-bold"><a href="{{Auth::user()->profile->url()}}">&commat;{{Auth::user()->username}}</a></p>
-            <p class="mb-0 text-muted text-truncate pb-0">{{Auth::user()->name}}</p>
-          </div>
-        </div>
-
-        <div class="mb-4">
-          <ul class="nav nav-pills flex-column timeline-sidenav" style="max-width: 240px;">
-            <li class="nav-item">
-              <a class="nav-link font-weight-bold" href="/" data-type="personal">
-                <i class="far fa-user pr-1"></i> My Timeline
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link font-weight-bold" href="/timeline/public" data-type="local">
-                <i class="fas fa-bars pr-1"></i> Local Timeline
-              </a>
-            </li>
-            <li class="nav-item" data-toggle="tooltip" data-placement="bottom" title="The network timeline is not available yet.">
-              <span class="nav-link font-weight-bold">
-                <i class="fas fa-globe pr-1"></i> Network Timeline
-              </span>
-            </li>
-          </ul>
-        </div>
-
-        {{-- <follow-suggestions></follow-suggestions> --}}
-
-        <footer>
-          <div class="container pb-5">
-              <p class="mb-0 text-uppercase font-weight-bold text-muted small">
-                <a href="{{route('site.about')}}" class="text-dark pr-2">About Us</a>
-                <a href="{{route('site.help')}}" class="text-dark pr-2">Support</a>
-                <a href="{{route('site.opensource')}}" class="text-dark pr-2">Open Source</a>
-                <a href="{{route('site.language')}}" class="text-dark pr-2">Language</a>
-                <a href="{{route('site.terms')}}" class="text-dark pr-2">Terms</a>
-                <a href="{{route('site.privacy')}}" class="text-dark pr-2">Privacy</a>
-                <a href="{{route('site.platform')}}" class="text-dark pr-2">API</a>
-              </p>
-              <p class="mb-0 text-uppercase font-weight-bold text-muted small">
-                <a href="http://pixelfed.org" class="text-muted" rel="noopener" title="version {{config('pixelfed.version')}}" data-toggle="tooltip">Powered by Pixelfed</a>
-              </p>
-          </div>
-        </footer>
-    </div>
-  </div>
-</div>
-
-@endsection
-
-@push('scripts')
-<script type="text/javascript" src="{{mix('js/timeline.js')}}"></script>
-@endpush