Improved search, linking results to scenes page, updating on input clear.
This commit is contained in:
parent
68f15d4f74
commit
77b9acea32
|
|
@ -8,7 +8,7 @@
|
||||||
type="search"
|
type="search"
|
||||||
placeholder="Search actors"
|
placeholder="Search actors"
|
||||||
class="input search"
|
class="input search"
|
||||||
@keydown.enter="search"
|
@search="search"
|
||||||
>
|
>
|
||||||
|
|
||||||
<Icon
|
<Icon
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
type="search"
|
type="search"
|
||||||
placeholder="Search scenes"
|
placeholder="Search scenes"
|
||||||
class="search input"
|
class="search input"
|
||||||
@keydown.enter="search"
|
@search="search"
|
||||||
>
|
>
|
||||||
|
|
||||||
<Icon
|
<Icon
|
||||||
|
|
|
||||||
|
|
@ -66,9 +66,10 @@ function toggleTag(tag, isChecked) {
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.dialog-body {
|
.dialog-body {
|
||||||
padding: 1rem;
|
|
||||||
width: 30rem;
|
width: 30rem;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 1rem;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
Found {{ sceneTotal }} {{ sceneTotal > 1 ? 'scenes' : 'scene' }}
|
Found {{ sceneTotal }} {{ sceneTotal > 1 ? 'scenes' : 'scene' }}
|
||||||
|
|
||||||
<a
|
<a
|
||||||
:href="`/updates/results/?q=${query}`"
|
:href="`/scenes/results/?q=${query}`"
|
||||||
class="link"
|
class="link"
|
||||||
>Full scene results</a>
|
>Full scene results</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,8 @@ export async function fetchEntities(options = {}) {
|
||||||
.where((subBuilder) => {
|
.where((subBuilder) => {
|
||||||
subBuilder
|
subBuilder
|
||||||
.whereILike('entities.name', `%${options.query}%`)
|
.whereILike('entities.name', `%${options.query}%`)
|
||||||
.orWhereILike('entities.slug', `%${options.query}%`);
|
.orWhereILike('entities.slug', `%${options.query}%`)
|
||||||
|
.orWhereILike(knex.raw('array_to_string(entities.alias, \',\', \'*\')'), `%${options.query}%`);
|
||||||
})
|
})
|
||||||
.whereNot('entities.type', 'info');
|
.whereNot('entities.type', 'info');
|
||||||
});
|
});
|
||||||
|
|
|
||||||
2
static
2
static
|
|
@ -1 +1 @@
|
||||||
Subproject commit 9b190cb9c7114b0bbb51b90672526022143bf33b
|
Subproject commit c3a287bfae05a7bb92d028c4036ec418b7efe5c5
|
||||||
Loading…
Reference in New Issue