Skip to content

Commit 7c781c5

Browse files
committed
Slug added back for portability and to prevent needless data. Also autocomplete now redirects to the photo detail page.
1 parent 2c41bd2 commit 7c781c5

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

app/Photo.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getAlgoliaRecord()
5959
return array_merge($elements, [
6060
'img_src' => config('whatthetag.s3_storage_cdn_domain') . config('whatthetag.uploads_folder') . '/' . $this->image,
6161
'thumb_src' => Croppa::url('/' . config('whatthetag.uploads_folder') . '/' . $this->image, 400, 300),
62-
'url' => config('app.url') . '/photo/detail/' . $this->slug,
62+
//'url' => config('app.url') . '/photo/detail/' . $this->slug,
6363
'user_name' => $this->user->name,
6464
'tags' => array_map(function ($data) {
6565
return [
@@ -81,7 +81,7 @@ public function getAlgoliaRecord()
8181
'searchableAttributes' => [
8282
'id',
8383
'title',
84-
'url',
84+
'slug',
8585
'img_src',
8686
'thumb_src',
8787
'user_name',

public/js/app.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/assets/js/autocomplete.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ autocomplete('input[name="q"]', {hint: true}, [
1515
}
1616
}
1717
]).on('autocomplete:selected', function (event, suggestion, dataset) {
18-
console.log(suggestion, dataset);
18+
//console.log(suggestion, dataset);
19+
window.location = '/photo/detail/' + suggestion.slug;
1920
});

resources/assets/js/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function triggerTooltips() {
2929
$('#myModal #modalTagWrapper').html('<h4>' + $(this).closest('.caption').find('.tagsWrapper').html() + '<h4>');
3030
});
3131

32-
console.log('Tooltip triggered!');
32+
//console.log('Tooltip triggered!');
3333
}
3434

3535
triggerTooltips();

0 commit comments

Comments
 (0)