Skip to content

Commit 5e2bb0a

Browse files
author
Famaxis
committed
enabled delete confirmation in settings, post queries optimized, ext-mbstring required
1 parent a59d6ac commit 5e2bb0a

17 files changed

+58
-36
lines changed

app/Http/Controllers/Backend/SettingController.php

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public function update()
2020
$settings->update([
2121
'site_name' => request('site_name'),
2222
'comments_allowed' => request('comments_allowed'),
23+
'confirm_deletion' => request('confirm_deletion'),
2324
'main_template' => request('main_template'),
2425
]);
2526

app/Http/Controllers/Frontend/PostController.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function index()
1414
$currentPage = isset($_GET['page']) ? (int)$_GET['page'] : 1;
1515
$posts = cache()->remember('index-posts-' . $currentPage, 86400, function () {
1616
return Post::published()
17-
->with('comments:post_id')
17+
->withCount('comments')
1818
->with('tagged')
1919
->orderBy('created_at', 'desc')
2020
->paginate(5)
@@ -33,11 +33,12 @@ public function fetchByTag(Tag $tag)
3333
{
3434
$slug = $tag->slug;
3535
$posts = Post::withAnyTag([$slug])
36-
->with('comments:post_id')
36+
->withCount('comments')
3737
->published()
3838
->orderBy('created_at', 'desc')
3939
->with('tagged')
40-
->paginate(5);
40+
->paginate(5)
41+
->onEachSide(1);
4142

4243
return view('frontend.posts.index', compact('posts', 'tag'));
4344
}

app/Http/Controllers/Frontend/ResourceController.php

+10-13
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88

99
class ResourceController extends Controller
1010
{
11+
// is requested slug relevant to post or page?
1112
public function show($request)
1213
{
1314
if (Post::where('slug', $request)->first()) {
1415
$resource = Post::where('slug', $request)
1516
->with('comments.user')
17+
->with('tagged')
1618
->first();
1719
return $this->showPost($resource);
1820
}
@@ -22,33 +24,29 @@ public function show($request)
2224
return $this->showPage($resource);
2325
}
2426

27+
// if there is no resource with this slug
2528
return abort('404');
2629
}
2730

2831
public function showPost($resource)
2932
{
30-
// optimizing queries number
31-
if ($resource->tagNames()) {
32-
$tags = Post::existingTags()->pluck('name');
33-
} else {
34-
$tags = [];
35-
}
36-
37-
$next = Post::where('id', '>', $resource->id)
33+
$next = Post::select(['slug'])
34+
->where('id', '>', $resource->id)
3835
->published()
3936
->oldest('id')
4037
->first();
41-
$prev = Post::where('id', '<', $resource->id)
38+
$prev = Post::select(['slug'])
39+
->where('id', '<', $resource->id)
4240
->published()
4341
->latest('id')
4442
->first();
4543

4644
// view for custom template
4745
if ($resource->custom_template) {
48-
return view('frontend.posts.single-custom', compact('resource', 'next', 'prev', 'tags'));
46+
return view('frontend.posts.single-custom', compact('resource', 'next', 'prev'));
4947
}
5048
// view for default template
51-
return view('frontend.posts.single', compact('resource', 'next', 'prev', 'tags'));
49+
return view('frontend.posts.single', compact('resource', 'next', 'prev'));
5250
}
5351

5452
public function showPage($resource)
@@ -58,8 +56,7 @@ public function showPage($resource)
5856
// for common templates
5957
$next = null;
6058
$prev = null;
61-
$tags = null;
62-
return view('frontend.pages.single-custom', compact('resource', 'next', 'prev', 'tags'));
59+
return view('frontend.pages.single-custom', compact('resource', 'next', 'prev'));
6360
}
6461
// view for default template
6562
return view('frontend.pages.single', compact('resource'));

app/Services/MetadataHandler.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ public static function generateFirstSentence($contents, $description)
5050
}
5151
// if there is nothing that we can extract, set the default value
5252
return 'Post';
53-
5453
}
5554

5655
public static function prepareFirstSentence ($contents, $description)
@@ -66,9 +65,7 @@ public static function prepareFirstSentence ($contents, $description)
6665
$contents = strip_tags($contents);
6766

6867
// removing some possible misprints
69-
$contents = str_replace(" .", ".", $contents);
70-
$contents = str_replace(" ?", "?", $contents);
71-
$contents = str_replace(" !", "!", $contents);
68+
$contents = str_replace([" .", " ?", " !"], [".", "?", "!"], $contents);
7269

7370
// first sentence from the content
7471
if (preg_match('/^.*[^\s](\.|\?|\!)/U', $contents, $match)) {

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"license": "MIT",
1111
"require": {
1212
"php": "^7.4|^8.0",
13+
"ext-mbstring": "*",
1314
"fideloper/proxy": "^4.4",
1415
"fruitcake/laravel-cors": "^2.0",
1516
"guzzlehttp/guzzle": "^7.0.1",

database/migrations/2021_01_26_124947_create_settings_table.php

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public function up()
1818
$table->string('site_name')->default('My blog');
1919
$table->string('main_template')->default('blue');
2020
$table->boolean('comments_allowed')->default(true)->nullable();
21+
$table->boolean('confirm_deletion')->default(false)->nullable();
2122
});
2223
}
2324

database/seeders/SettingSeeder.php

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public function run()
1313
'site_name' => 'My blog',
1414
'main_template' => 'blue',
1515
'comments_allowed' => true,
16+
'confirm_deletion' => false,
1617
]);
1718
}
1819
}

public/css/style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ header.container {
130130
.settings {
131131
border-bottom: 1px solid var(--darker-optional) !important;
132132
width: fit-content;
133-
padding: 1rem !important;
133+
padding: 0.5rem !important;
134134
}
135135

136136
.mini-heading {

resources/views/backend/pages/index.blade.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
<form action="{{route('pages.destroy', $page->slug)}}" method="POST">
2727
@method('DELETE')
2828
@csrf
29-
<button type="submit" class="paper-btn btn-danger-outline">Delete</button>
29+
<button type="submit" class="paper-btn btn-danger-outline"
30+
@if($settings->confirm_deletion)
31+
onclick="return confirm('Are you sure?')"
32+
@endif
33+
>Delete</button>
3034
</form>
3135
</td>
3236
</tr>

resources/views/backend/posts/index.blade.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ class="unpublished"
3737
<form action="{{route('posts.destroy', $post->slug)}}" method="POST">
3838
@method('DELETE')
3939
@csrf
40-
<button type="submit" class="paper-btn btn-danger-outline" onclick="return confirm('Are you sure?')">Delete</button>
40+
<button type="submit" class="paper-btn btn-danger-outline"
41+
@if($settings->confirm_deletion)
42+
onclick="return confirm('Are you sure?')"
43+
@endif
44+
>Delete</button>
4145
</form>
4246
</td>
4347
</tr>

resources/views/backend/settings.blade.php

+16-4
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,31 @@
1313
<fieldset class="form-group settings">
1414
<label class="paper-switch-2">
1515
<input id="comments_allowed" name="comments_allowed" type="checkbox" value="1"
16-
@if($settings->comments_allowed)
17-
checked
18-
@endif
16+
{{ ($settings->comments_allowed) ? 'checked' : '' }}
1917
/>
2018
<span class="paper-switch-slider round"></span>
2119
</label>
2220
<label for="comments_allowed" class="paper-switch-2-label">
2321
Allow comments?
2422
</label>
23+
<p class="annotation">Existing comments still will be shown.</p>
2524
</fieldset>
2625

2726
<fieldset class="form-group settings">
28-
<legend>Pick a color theme:</legend>
27+
<label class="paper-switch-2">
28+
<input id="confirm_deletion" name="confirm_deletion" type="checkbox" value="1"
29+
{{ ($settings->confirm_deletion) ? 'checked' : '' }}
30+
/>
31+
<span class="paper-switch-slider round"></span>
32+
</label>
33+
<label for="confirm_deletion" class="paper-switch-2-label">
34+
Confirm deletion?
35+
</label>
36+
<p class="annotation">This is about posts, pages and templates. Not the comments.</p>
37+
</fieldset>
38+
39+
<fieldset class="form-group settings">
40+
<legend>Pick a main color theme:</legend>
2941
<label for="blue" class="paper-radio">
3042
<input type="radio" name="main_template" id="blue" value="blue" {{ ($settings->main_template==='blue')? "checked" : "" }} >
3143
<span>Blue</span>

resources/views/backend/templates/index.blade.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@
2828
<form action="{{route('templates.destroy', $template->id)}}" method="POST">
2929
@method('DELETE')
3030
@csrf
31-
<button type="submit" class="paper-btn btn-danger-outline">Delete</button>
31+
<button type="submit" class="paper-btn btn-danger-outline"
32+
@if($settings->confirm_deletion)
33+
onclick="return confirm('Are you sure?')"
34+
@endif
35+
>Delete</button>
3236
</form>
3337
</td>
3438
</tr>

resources/views/frontend/pages/single-custom.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@endsection
1515

1616
@section('content')
17-
@include('templates/' . $resource->template->file, compact('resource', 'tags', 'next', 'prev'))
17+
@include('templates/' . $resource->template->file, compact('resource', 'next', 'prev'))
1818
@endsection
1919

2020
@section('scripts')

resources/views/frontend/posts/index.blade.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
@if(Route::current()->getName() === 'front.posts.fetch')
66
<h2>Posts tagged with {!! $tag->name !!}</h2>
77
@endif
8+
89
@foreach($posts as $post)
910

1011
<div class="border border-primary row flex-edges margin padding-large
@@ -45,9 +46,8 @@
4546
</p>
4647

4748

48-
@if($post->comments->count())
49-
<p><a href="{{ route('front.resource.show', $post->slug) . '#comments' }}">Comments: {{ $post->comments->count() }}</a></p>
50-
49+
@if($post->comments_count)
50+
<p><a href="{{ route('front.resource.show', $post->slug) . '#comments' }}">Comments: {{ $post->comments_count }}</a></p>
5151
@endif
5252

5353

resources/views/frontend/posts/single-custom.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@endsection
1515

1616
@section('content')
17-
@include('templates/' . $resource->template->file, compact('resource', 'tags', 'next', 'prev'))
17+
@include('templates/' . $resource->template->file, compact('resource', 'next', 'prev'))
1818
@endsection
1919

2020
@section('scripts')

resources/views/frontend/posts/single.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
<a href="{{ route('front.posts') }}">On main page</a>
4343
</p>
4444

45-
@foreach($resource->tags as $tag)
45+
@foreach($resource->tagged as $tagged)
4646
<a class="paper-btn btn-small"
47-
href="{{ route('front.posts.fetch', $tag->slug) }}">{{ $tag->name }}</a>
47+
href="{{ route('front.posts.fetch', $tagged->tag_slug) }}">{{ $tagged->tag_name }}</a>
4848
@endforeach
4949
<hr class="margin-large">
5050

resources/views/layouts/frontend.blade.php

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
6-
76
@yield('meta')
87

98
<!-- CSRF Token -->

0 commit comments

Comments
 (0)