2020-06-29 18:23:56 +00:00
|
|
|
<template>
|
2020-09-23 15:25:27 +00:00
|
|
|
<header id="search" aria-label="searchbar">
|
2020-06-29 18:23:56 +00:00
|
|
|
<div class="search__icon">
|
|
|
|
<i class="material-icons">search</i>
|
|
|
|
</div>
|
2020-10-16 21:02:34 +00:00
|
|
|
|
2020-06-29 18:23:56 +00:00
|
|
|
<input
|
|
|
|
id="searchbar"
|
2020-10-16 21:02:34 +00:00
|
|
|
class="w-full"
|
2020-06-29 18:23:56 +00:00
|
|
|
autocomplete="off"
|
|
|
|
type="search"
|
|
|
|
name="searchbar"
|
|
|
|
value=""
|
2020-07-18 20:44:27 +00:00
|
|
|
:placeholder="$t('searchbar')"
|
2020-06-29 18:23:56 +00:00
|
|
|
autofocus
|
2020-07-06 19:55:28 +00:00
|
|
|
ref="searchbar"
|
2020-11-23 20:37:18 +00:00
|
|
|
@keyup="performSearch($event)"
|
2020-06-29 18:23:56 +00:00
|
|
|
/>
|
2020-09-17 21:55:57 +00:00
|
|
|
<!-- @keyup.enter.exact="onEnter"
|
2020-09-16 16:59:25 +00:00
|
|
|
@keyup.ctrl.enter="onCTRLEnter" -->
|
2020-06-29 18:23:56 +00:00
|
|
|
</header>
|
|
|
|
</template>
|
|
|
|
|
2020-09-26 19:48:55 +00:00
|
|
|
<style lang="scss">
|
|
|
|
$icon-dimension: 2rem;
|
|
|
|
$searchbar-height: 45px;
|
|
|
|
|
2020-10-28 21:21:41 +00:00
|
|
|
input[type='search']::-webkit-search-cancel-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
background-color: var(--foreground);
|
|
|
|
-webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='28' viewBox='0 0 24 24' width='28'%3E%%3Cpath fill='%23ffffff' d='M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z'/%3E3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
|
|
|
|
mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='28' viewBox='0 0 24 24' width='28'%3E%%3Cpath fill='%23ffffff' d='M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z'/%3E3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
|
|
|
|
}
|
|
|
|
|
2020-09-26 19:48:55 +00:00
|
|
|
#search {
|
|
|
|
background-color: var(--secondary-background);
|
|
|
|
padding: 0 1em;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
transition: border 200ms ease-in-out;
|
|
|
|
border-radius: 15px;
|
|
|
|
margin: 10px 10px 20px 10px;
|
|
|
|
|
|
|
|
.search__icon {
|
|
|
|
width: $icon-dimension;
|
|
|
|
height: $icon-dimension;
|
|
|
|
|
|
|
|
i {
|
|
|
|
font-size: $icon-dimension;
|
|
|
|
color: var(--foreground);
|
2020-10-14 20:18:13 +00:00
|
|
|
|
|
|
|
&::selection {
|
|
|
|
background: none;
|
|
|
|
}
|
2020-09-26 19:48:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchbar {
|
|
|
|
height: $searchbar-height;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
border: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
background-color: var(--secondary-background);
|
|
|
|
color: var(--foreground);
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-family: 'Open Sans';
|
|
|
|
font-weight: 300;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-10-28 21:21:41 +00:00
|
|
|
&::-webkit-search-cancel-button {
|
|
|
|
appearance: none;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
background-color: var(--foreground);
|
|
|
|
mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='28' viewBox='0 0 24 24' width='28'%3E%%3Cpath fill='%23ffffff' d='M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z'/%3E3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
|
|
|
|
}
|
|
|
|
|
2020-09-26 19:48:55 +00:00
|
|
|
// Removing Chrome autofill color
|
|
|
|
&:-webkit-autofill,
|
|
|
|
&:-webkit-autofill:hover,
|
|
|
|
&:-webkit-autofill:focus,
|
|
|
|
&:-webkit-autofill:active {
|
|
|
|
box-shadow: 0 0 0 $searchbar-height var(--secondary-background) inset !important;
|
|
|
|
}
|
|
|
|
}
|
2020-10-28 21:21:41 +00:00
|
|
|
|
|
|
|
&:focus-within {
|
|
|
|
border: 1px solid var(--foreground);
|
|
|
|
}
|
2020-09-26 19:48:55 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2020-06-29 18:23:56 +00:00
|
|
|
<script>
|
2020-11-23 20:37:18 +00:00
|
|
|
import { defineComponent, ref } from '@vue/composition-api'
|
2020-07-16 22:11:28 +00:00
|
|
|
import { isValidURL } from '@/utils/utils'
|
2020-09-26 15:53:25 +00:00
|
|
|
import { sendAddToQueue } from '@/utils/downloads'
|
2020-07-16 22:11:28 +00:00
|
|
|
import { socket } from '@/utils/socket'
|
2020-07-06 19:55:28 +00:00
|
|
|
|
2020-11-23 20:37:18 +00:00
|
|
|
export default defineComponent({
|
|
|
|
setup() {
|
2020-09-15 20:44:29 +00:00
|
|
|
return {
|
2020-11-23 20:37:18 +00:00
|
|
|
lastTextSearch: ref('')
|
2020-09-15 20:44:29 +00:00
|
|
|
}
|
|
|
|
},
|
2020-09-26 15:53:25 +00:00
|
|
|
created() {
|
|
|
|
const focusSearchBar = keyEvent => {
|
|
|
|
if (keyEvent.keyCode === 70 && keyEvent.ctrlKey) {
|
|
|
|
keyEvent.preventDefault()
|
|
|
|
this.$refs.searchbar.focus()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const deleteSearchBarContent = keyEvent => {
|
2020-09-23 15:02:26 +00:00
|
|
|
if (!(keyEvent.key == 'Backspace' && keyEvent.ctrlKey && keyEvent.shiftKey)) return
|
2020-09-17 21:55:57 +00:00
|
|
|
|
|
|
|
this.$refs.searchbar.value = ''
|
|
|
|
this.$refs.searchbar.focus()
|
2020-09-26 15:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
document.addEventListener('keydown', focusSearchBar)
|
|
|
|
document.addEventListener('keyup', deleteSearchBarContent)
|
|
|
|
|
|
|
|
this.$on('hook:destroyed', () => {
|
|
|
|
document.removeEventListener('keydown', focusSearchBar)
|
|
|
|
document.removeEventListener('keyup', deleteSearchBarContent)
|
2020-09-17 21:55:57 +00:00
|
|
|
})
|
|
|
|
},
|
2020-07-06 19:55:28 +00:00
|
|
|
methods: {
|
2020-11-23 20:37:18 +00:00
|
|
|
async performSearch(keyEvent) {
|
2020-09-15 20:44:29 +00:00
|
|
|
let isEnterPressed = keyEvent.keyCode === 13
|
|
|
|
|
|
|
|
if (!isEnterPressed) return
|
2020-07-06 19:55:28 +00:00
|
|
|
|
|
|
|
let term = this.$refs.searchbar.value
|
2020-09-15 20:44:29 +00:00
|
|
|
let isEmptySearch = term === ''
|
|
|
|
|
|
|
|
if (isEmptySearch) return
|
|
|
|
|
|
|
|
let isSearchingURL = isValidURL(term)
|
|
|
|
let isCtrlPressed = keyEvent.ctrlKey
|
|
|
|
let isShowingAnalyzer = this.$route.name === 'Link Analyzer'
|
|
|
|
let isShowingSearch = this.$route.name === 'Search'
|
2020-11-23 20:37:18 +00:00
|
|
|
let isSameAsLastSearch = term === this.lastTextSearch
|
2020-07-06 19:55:28 +00:00
|
|
|
|
2020-09-15 20:44:29 +00:00
|
|
|
if (isSearchingURL) {
|
|
|
|
if (isCtrlPressed) {
|
2020-12-16 17:17:42 +00:00
|
|
|
this.$root.$emit('ContextMenu:searchbar', term)
|
2020-11-23 20:37:18 +00:00
|
|
|
return
|
2020-07-06 19:55:28 +00:00
|
|
|
}
|
2020-11-23 20:37:18 +00:00
|
|
|
|
|
|
|
if (isShowingAnalyzer) {
|
|
|
|
socket.emit('analyzeLink', term)
|
2020-09-24 11:48:37 +00:00
|
|
|
return
|
|
|
|
}
|
2020-09-15 20:44:29 +00:00
|
|
|
|
2020-11-23 20:37:18 +00:00
|
|
|
// ? Open downloads tab maybe?
|
|
|
|
sendAddToQueue(term)
|
|
|
|
} else {
|
|
|
|
// The user is searching a normal string
|
|
|
|
if (isShowingSearch && isSameAsLastSearch) return
|
|
|
|
|
2020-11-28 13:18:36 +00:00
|
|
|
/*
|
|
|
|
isShowing isSame
|
|
|
|
false false Loading
|
|
|
|
false true Loading (because component Search is not loaded)
|
|
|
|
true false Loading
|
|
|
|
true true Never
|
|
|
|
*/
|
2020-07-06 19:55:28 +00:00
|
|
|
|
2020-11-24 21:17:47 +00:00
|
|
|
this.lastTextSearch = term
|
|
|
|
await this.$router.push({
|
|
|
|
name: 'Search',
|
|
|
|
query: {
|
|
|
|
term
|
|
|
|
}
|
|
|
|
})
|
2020-07-06 19:55:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-23 20:37:18 +00:00
|
|
|
})
|
2020-06-29 18:23:56 +00:00
|
|
|
</script>
|