123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- @extends('settings.template')
- @section('section')
- <div class="title">
- <h3 class="font-weight-bold">Relationships</h3>
- </div>
- <hr>
- <ul class="nav nav-pills">
- <li class="nav-item">
- <a class="nav-link font-weight-bold {{!request()->has('mode') || $mode == 'followers' ? 'active' : ''}}" href="?mode=followers&page=1">Followers</a>
- </li>
- <li class="nav-item">
- <a class="nav-link font-weight-bold {{$mode == 'following' ? 'active' : ''}}" href="?mode=following&page=1">Following</a>
- </li>
- <li class="nav-item">
- <a class="nav-link font-weight-bold {{$mode == 'hashtags' ? 'active' : ''}}" href="?mode=hashtags&page=1">Hashtags</a>
- </li>
- </ul>
- <hr>
- @if(empty($data))
- <p class="text-center lead pt-5 mt-5">You are not {{$mode == 'hashtags' ? 'following any hashtags.' : ($mode == 'following' ? 'following anyone.' : 'followed by anyone.')}}</p>
- @else
- <div class="table-responsive">
- <table class="table table-bordered table-hover">
- @if($mode == 'hashtags')
- <thead>
- <tr>
- {{-- <th scope="col" class="pt-0 pb-1 mt-0">
- <input type="checkbox" name="check" class="form-control check-all">
- </th> --}}
- <th scope="col">Hashtag</th>
- <th scope="col">Action</th>
- </tr>
- </thead>
- <tbody>
- @foreach($data as $hashtag)
- <tr>
- <td class="font-weight-bold">
- <a href="{{$hashtag->hashtag->url('?src=relset')}}" class="text-decoration-none text-dark">
- <p class="mb-0 pb-0">#{{$hashtag->hashtag->name}}</p>
- </a>
- </td>
- <td class="text-center">
- <a class="btn btn-outline-danger btn-sm py-0 action-btn" href="#" data-id="{{$hashtag->hashtag->name}}" data-action="unfollowhashtag">Unfollow</a>
- </td>
- </tr>
- @endforeach
- @else
- <thead>
- <tr>
- {{-- <th scope="col" class="pt-0 pb-1 mt-0">
- <input type="checkbox" name="check" class="form-control check-all">
- </th> --}}
- <th scope="col">Username</th>
- <th scope="col">Action</th>
- </tr>
- </thead>
- <tbody>
- @foreach($data as $follower)
- <tr>
- {{-- <th scope="row" class="pb-0 pt-1 my-0">
- <input type="checkbox" class="form-control mr-1 check-row">
- </th> --}}
- <td class="font-weight-bold">
- <a href="{{$follower->url()}}" class="text-decoration-none text-dark">
- <p class="mb-0 pb-0 text-truncate" title="{{$follower->username}}">{{$follower->username}}</p>
- </a>
- </td>
- @if($mode == 'following')
- <td class="text-center">
- <a class="btn btn-outline-danger btn-sm py-0 action-btn" href="#" data-id="{{$follower->id}}" data-action="unfollow">Unfollow</a>
- </td>
- @else
- <td class="text-center">
- <a class="btn btn-outline-primary btn-sm py-0 action-btn" href="#" data-id="{{$follower->id}}" data-action="mute">Mute</a>
- <a class="btn btn-outline-danger btn-sm py-0 action-btn" href="#" data-id="{{$follower->id}}" data-action="block">Block</a>
- </td>
- @endif
- </tr>
- @endforeach
- @endif
- </tbody>
- </table>
- </div>
- <div class="d-flex justify-content-center">{{$data->appends(['mode' => $mode])->links()}}</div>
- @endif
- @endsection
- @push('styles')
- <style type="text/css">
- .table-hover tbody tr:hover {
- color: #718096;
- background-color: #F7FAFC;
- }
- </style>
- @endpush
- @push('scripts')
- <script type="text/javascript">
- $(document).ready(() => {
- $('.action-btn').on('click', e => {
- e.preventDefault();
- let action = e.target.getAttribute('data-action');
- let id = e.target.getAttribute('data-id');
- switch(action) {
- case 'mute':
- axios.post('/i/mute', {
- type: 'user',
- item: id
- }).then(res => {
- swal(
- 'Mute Successful',
- 'You have successfully muted that user',
- 'success'
- );
- });
- break;
- case 'block':
- axios.post('/i/block', {
- type: 'user',
- item: id
- }).then(res => {
- swal(
- 'Block Successful',
- 'You have successfully blocked that user',
- 'success'
- );
- });
- break;
- case 'unfollow':
- axios.post('/api/v1/accounts/' + id + '/unfollow')
- .then(res => {
- swal(
- 'Unfollow Successful',
- 'You have successfully unfollowed that user',
- 'success'
- );
- })
- .catch(err => {
- swal(
- 'Error',
- 'An error occured when attempting to unfollow this user',
- 'error'
- );
- });
- break;
- case 'unfollowhashtag':
- axios.post('/api/local/discover/tag/subscribe', {
- name: id
- }).then(res => {
- swal(
- 'Unfollow Successful',
- 'You have successfully unfollowed that hashtag',
- 'success'
- );
- });
- }
- setTimeout(function() {
- window.location.href = window.location.href;
- }, 3000);
- });
- $('.check-all').on('click', e => {
- })
- });
- </script>
- @endpush
|