mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-23 13:33:18 +00:00
Merge pull request #587 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
19a2d8040e
12 changed files with 90 additions and 21 deletions
|
@ -203,6 +203,16 @@ class AccountController extends Controller
|
||||||
'filter_type' => 'mute',
|
'filter_type' => 'mute',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
$pid = $user->id;
|
||||||
|
Cache::remember("user:filter:list:$pid", 1440, function() use($pid) {
|
||||||
|
$private = Profile::whereIsPrivate(true)->where('id', '!=', $pid)->pluck('id');
|
||||||
|
$filters = UserFilter::whereUserId($pid)
|
||||||
|
->whereFilterableType('App\Profile')
|
||||||
|
->whereIn('filter_type', ['mute', 'block'])
|
||||||
|
->pluck('filterable_id')->toArray();
|
||||||
|
return array_merge($private->toArray(), $filters);
|
||||||
|
});
|
||||||
|
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -224,6 +234,9 @@ class AccountController extends Controller
|
||||||
switch ($type) {
|
switch ($type) {
|
||||||
case 'user':
|
case 'user':
|
||||||
$profile = Profile::findOrFail($item);
|
$profile = Profile::findOrFail($item);
|
||||||
|
if ($profile->id == $user->id) {
|
||||||
|
return abort(403);
|
||||||
|
}
|
||||||
$class = get_class($profile);
|
$class = get_class($profile);
|
||||||
$filterable['id'] = $profile->id;
|
$filterable['id'] = $profile->id;
|
||||||
$filterable['type'] = $class;
|
$filterable['type'] = $class;
|
||||||
|
@ -244,6 +257,15 @@ class AccountController extends Controller
|
||||||
'filter_type' => 'block',
|
'filter_type' => 'block',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
$pid = $user->id;
|
||||||
|
Cache::remember("user:filter:list:$pid", 1440, function() use($pid) {
|
||||||
|
$private = Profile::whereIsPrivate(true)->where('id', '!=', $pid)->pluck('id');
|
||||||
|
$filters = UserFilter::whereUserId($pid)
|
||||||
|
->whereFilterableType('App\Profile')
|
||||||
|
->whereIn('filter_type', ['mute', 'block'])
|
||||||
|
->pluck('filterable_id')->toArray();
|
||||||
|
return array_merge($private->toArray(), $filters);
|
||||||
|
});
|
||||||
return redirect()->back();
|
return redirect()->back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -133,9 +133,12 @@ class StatusController extends Controller
|
||||||
if ($status->profile_id === Auth::user()->profile->id || Auth::user()->is_admin == true) {
|
if ($status->profile_id === Auth::user()->profile->id || Auth::user()->is_admin == true) {
|
||||||
StatusDelete::dispatch($status);
|
StatusDelete::dispatch($status);
|
||||||
}
|
}
|
||||||
|
if($request->wantsJson()) {
|
||||||
|
return response()->json(['Status successfully deleted.']);
|
||||||
|
} else {
|
||||||
return redirect(Auth::user()->url());
|
return redirect(Auth::user()->url());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public function storeShare(Request $request)
|
public function storeShare(Request $request)
|
||||||
{
|
{
|
||||||
|
|
|
@ -38,15 +38,12 @@ class StatusDelete implements ShouldQueue
|
||||||
public function handle()
|
public function handle()
|
||||||
{
|
{
|
||||||
$status = $this->status;
|
$status = $this->status;
|
||||||
|
|
||||||
$this->unlinkRemoveMedia($status);
|
$this->unlinkRemoveMedia($status);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function unlinkRemoveMedia($status)
|
public function unlinkRemoveMedia($status)
|
||||||
{
|
{
|
||||||
if ($status->media()->count() == 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($status->media as $media) {
|
foreach ($status->media as $media) {
|
||||||
$thumbnail = storage_path("app/{$media->thumbnail_path}");
|
$thumbnail = storage_path("app/{$media->thumbnail_path}");
|
||||||
$photo = storage_path("app/{$media->media_path}");
|
$photo = storage_path("app/{$media->media_path}");
|
||||||
|
|
|
@ -112,7 +112,9 @@ class Image
|
||||||
try {
|
try {
|
||||||
$img = Intervention::make($file)->orientate();
|
$img = Intervention::make($file)->orientate();
|
||||||
if($thumbnail) {
|
if($thumbnail) {
|
||||||
$img->crop($aspect['width'], $aspect['height']);
|
$img->resize($aspect['width'], $aspect['height'], function ($constraint) {
|
||||||
|
$constraint->aspectRatio();
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
$metadata = $img->exif();
|
$metadata = $img->exif();
|
||||||
$img->resize($aspect['width'], $aspect['height'], function ($constraint) {
|
$img->resize($aspect['width'], $aspect['height'], function ($constraint) {
|
||||||
|
|
BIN
public/js/components.js
vendored
BIN
public/js/components.js
vendored
Binary file not shown.
Binary file not shown.
5
resources/assets/js/components.js
vendored
5
resources/assets/js/components.js
vendored
|
@ -115,3 +115,8 @@ $(document).ready(function() {
|
||||||
$('[data-toggle="tooltip"]').tooltip()
|
$('[data-toggle="tooltip"]').tooltip()
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const warningTitleCSS = 'color:red; font-size:60px; font-weight: bold; -webkit-text-stroke: 1px black;';
|
||||||
|
const warningDescCSS = 'font-size: 18px;';
|
||||||
|
console.log('%cStop!', warningTitleCSS);
|
||||||
|
console.log("%cThis is a browser feature intended for developers. If someone told you to copy and paste something here to enable a Pixelfed feature or \"hack\" someone's account, it is a scam and will give them access to your Pixelfed account.", warningDescCSS);
|
|
@ -37,6 +37,7 @@
|
||||||
<b-dropdown-item class="font-weight-bold" :href="comment.account.url">Profile</b-dropdown-item>
|
<b-dropdown-item class="font-weight-bold" :href="comment.account.url">Profile</b-dropdown-item>
|
||||||
<b-dropdown-divider></b-dropdown-divider>
|
<b-dropdown-divider></b-dropdown-divider>
|
||||||
<b-dropdown-item class="font-weight-bold" :href="'/i/report?type=post&id='+comment.id">Report</b-dropdown-item>
|
<b-dropdown-item class="font-weight-bold" :href="'/i/report?type=post&id='+comment.id">Report</b-dropdown-item>
|
||||||
|
<b-dropdown-item class="font-weight-bold" v-on:click="deleteComment(comment.id, index)" v-if="comment.account.id == user.id">Delete</b-dropdown-item>
|
||||||
</b-dropdown>
|
</b-dropdown>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
|
@ -47,7 +48,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: ['post-id', 'post-username'],
|
props: ['post-id', 'post-username', 'user'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
results: {},
|
results: {},
|
||||||
|
@ -67,6 +68,16 @@ export default {
|
||||||
embed(e) {
|
embed(e) {
|
||||||
pixelfed.embed.build(e);
|
pixelfed.embed.build(e);
|
||||||
},
|
},
|
||||||
|
deleteComment(id, i) {
|
||||||
|
axios.post('/i/delete', {
|
||||||
|
type: 'comment',
|
||||||
|
item: id
|
||||||
|
}).then(res => {
|
||||||
|
this.results.splice(i, 1);
|
||||||
|
}).catch(err => {
|
||||||
|
swal('Something went wrong!', 'Please try again later', 'error');
|
||||||
|
});
|
||||||
|
},
|
||||||
l(e) {
|
l(e) {
|
||||||
let len = e.length;
|
let len = e.length;
|
||||||
if(len < 10) { return e; }
|
if(len < 10) { return e; }
|
||||||
|
|
|
@ -201,7 +201,7 @@
|
||||||
<span class="font-weight-bold pr-1">{{statusUsername}}</span>
|
<span class="font-weight-bold pr-1">{{statusUsername}}</span>
|
||||||
<span class="comment-text"></span>
|
<span class="comment-text"></span>
|
||||||
</p>
|
</p>
|
||||||
<post-comments :post-id="statusId" :post-username="statusUsername"></post-comments>
|
<post-comments :user="this.user" :post-id="statusId" :post-username="statusUsername"></post-comments>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body flex-grow-0 py-1">
|
<div class="card-body flex-grow-0 py-1">
|
||||||
|
@ -266,7 +266,7 @@
|
||||||
pixelfed.postComponent = {};
|
pixelfed.postComponent = {};
|
||||||
pixelfed.presenter = {
|
pixelfed.presenter = {
|
||||||
show: {
|
show: {
|
||||||
image: function(container, media) { console.log(234);
|
image: function(container, media) {
|
||||||
let wrapper = $('<div>');
|
let wrapper = $('<div>');
|
||||||
wrapper.addClass(media[0]['filter_class']);
|
wrapper.addClass(media[0]['filter_class']);
|
||||||
let el = $('<img>');
|
let el = $('<img>');
|
||||||
|
@ -345,9 +345,7 @@ export default {
|
||||||
},
|
},
|
||||||
showMuteBlock() {
|
showMuteBlock() {
|
||||||
let sid = this.status.account.id;
|
let sid = this.status.account.id;
|
||||||
console.log('sid :' + sid);
|
|
||||||
let uid = this.user.id;
|
let uid = this.user.id;
|
||||||
console.log('uid :' + uid);
|
|
||||||
if(sid != uid) {
|
if(sid != uid) {
|
||||||
$('.post-actions').removeClass('d-none');
|
$('.post-actions').removeClass('d-none');
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,10 +38,10 @@
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label for="bio" class="col-sm-3 col-form-label font-weight-bold text-right">Bio</label>
|
<label for="bio" class="col-sm-3 col-form-label font-weight-bold text-right">Bio</label>
|
||||||
<div class="col-sm-9">
|
<div class="col-sm-9">
|
||||||
<textarea class="form-control" id="bio" name="bio" placeholder="Add a bio here" rows="2">{{Auth::user()->profile->bio}}</textarea>
|
<textarea class="form-control" id="bio" name="bio" placeholder="Add a bio here" rows="2" data-max-length="{{config('pixelfed.max_bio_length')}}">{{Auth::user()->profile->bio}}</textarea>
|
||||||
<small class="form-text text-muted">
|
<p class="form-text">
|
||||||
Max length: {{config('pixelfed.max_bio_length')}} characters.
|
<span class="bio-counter float-right small text-muted">0/{{config('pixelfed.max_bio_length')}}</span>
|
||||||
</small>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-5">
|
<div class="pt-5">
|
||||||
|
@ -112,6 +112,25 @@
|
||||||
swal.close();
|
swal.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#bio').on('change keyup paste', function(e) {
|
||||||
|
let el = $(this);
|
||||||
|
let len = el.val().length;
|
||||||
|
let limit = el.data('max-length');
|
||||||
|
|
||||||
|
if(len > 100) {
|
||||||
|
el.attr('rows', '4');
|
||||||
|
}
|
||||||
|
|
||||||
|
let val = len + ' / ' + limit;
|
||||||
|
|
||||||
|
if(len > limit) {
|
||||||
|
let diff = len - limit;
|
||||||
|
val = '<span class="text-danger">-' + diff + '</span> / ' + limit;
|
||||||
|
}
|
||||||
|
|
||||||
|
$('.bio-counter').html(val);
|
||||||
|
});
|
||||||
|
|
||||||
$(document).on('click', '.change-profile-photo', function(e) {
|
$(document).on('click', '.change-profile-photo', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var content = $('<ul>').addClass('list-group');
|
var content = $('<ul>').addClass('list-group');
|
||||||
|
|
|
@ -26,7 +26,19 @@
|
||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<h5 class="mt-0 font-weight-bold">{{$status->profile->username}}</h5>
|
<h5 class="mt-0 font-weight-bold">{{$status->profile->username}}</h5>
|
||||||
<p class="mb-1">{!! $status->rendered !!}</p>
|
<p class="mb-1">{!! $status->rendered !!}</p>
|
||||||
<p class="mb-0"><a href="{{$status->url()}}" class="text-muted">{{$status->created_at->diffForHumans()}}</a></p>
|
<div class="mb-0">
|
||||||
|
<a href="{{$status->url()}}" class="text-muted">
|
||||||
|
{{$status->created_at->diffForHumans()}}
|
||||||
|
</a>
|
||||||
|
@if(Auth::check() && $status->profile_id == Auth::user()->profile->id)
|
||||||
|
<form class="float-right" method="POST" action="/i/delete">
|
||||||
|
@csrf
|
||||||
|
<input type="hidden" name="item" value="{{$status->id}}">
|
||||||
|
<input type="hidden" name="type" value="status">
|
||||||
|
<button class="btn btn-outline-danger small font-weight-bold btn-sm py-1">Delete</button>
|
||||||
|
</form>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -111,15 +111,15 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
|
||||||
Route::redirect('/', '/settings/home');
|
Route::redirect('/', '/settings/home');
|
||||||
Route::get('home', 'SettingsController@home')
|
Route::get('home', 'SettingsController@home')
|
||||||
->name('settings');
|
->name('settings');
|
||||||
Route::post('home', 'SettingsController@homeUpdate')->middleware('throttle:25,1440');
|
Route::post('home', 'SettingsController@homeUpdate')->middleware('throttle:250,1440');
|
||||||
Route::get('avatar', 'SettingsController@avatar')->name('settings.avatar');
|
Route::get('avatar', 'SettingsController@avatar')->name('settings.avatar');
|
||||||
Route::post('avatar', 'AvatarController@store')->middleware('throttle:5,1440');
|
Route::post('avatar', 'AvatarController@store')->middleware('throttle:50,1440');
|
||||||
Route::get('password', 'SettingsController@password')->name('settings.password')->middleware('dangerzone');
|
Route::get('password', 'SettingsController@password')->name('settings.password')->middleware('dangerzone');
|
||||||
Route::post('password', 'SettingsController@passwordUpdate')->middleware(['throttle:2,1440','dangerzone']);
|
Route::post('password', 'SettingsController@passwordUpdate')->middleware(['throttle:2,1440','dangerzone']);
|
||||||
Route::get('email', 'SettingsController@email')->name('settings.email');
|
Route::get('email', 'SettingsController@email')->name('settings.email');
|
||||||
Route::get('notifications', 'SettingsController@notifications')->name('settings.notifications');
|
Route::get('notifications', 'SettingsController@notifications')->name('settings.notifications');
|
||||||
Route::get('privacy', 'SettingsController@privacy')->name('settings.privacy');
|
Route::get('privacy', 'SettingsController@privacy')->name('settings.privacy');
|
||||||
Route::post('privacy', 'SettingsController@privacyStore')->middleware('throttle:50,1440');
|
Route::post('privacy', 'SettingsController@privacyStore')->middleware('throttle:250,1440');
|
||||||
Route::get('privacy/muted-users', 'SettingsController@mutedUsers')->name('settings.privacy.muted-users');
|
Route::get('privacy/muted-users', 'SettingsController@mutedUsers')->name('settings.privacy.muted-users');
|
||||||
Route::post('privacy/muted-users', 'SettingsController@mutedUsersUpdate')->middleware('throttle:100,1440');
|
Route::post('privacy/muted-users', 'SettingsController@mutedUsersUpdate')->middleware('throttle:100,1440');
|
||||||
Route::get('privacy/blocked-users', 'SettingsController@blockedUsers')->name('settings.privacy.blocked-users');
|
Route::get('privacy/blocked-users', 'SettingsController@blockedUsers')->name('settings.privacy.blocked-users');
|
||||||
|
|
Loading…
Reference in a new issue