* update dependencies to latest version * add mising dependencies * Syntax updates and such * Reorganize files and translate login to portuguese * Add i18n to buttons * Error translations and some bug fixes * Add i18n to files * i18n on prompts * update search * Prompts and Sidebar in * i18n to the header * Change to YAML * alphabetical order * # Add simplified Chinese language (#180) * Add Simplified Chinese and sort by alphabet * Add more text to translations * API Updates * Update zh_cn.yaml (#182) * Api Upgrades * Simplify api and clean zh_cn lang file * Improve error logging * Fix some route bugs and separate login styles * better organization * Fix bug on api * Build assets Tue, Aug 1, 2017 11:32:23 AM * Rename users path and fix bug scroll event * Start Portuguese translation and file org * Add more to the PT translation * Add show * Build assets Tue Aug 1 12:01:39 GMTST 2017 * Add locale to cofnig * Update portuguese translation * You can change the language :) * :D * Build assets Tue Aug 1 17:50:31 GMTST 2017 * Update requestContext variable names * Remove assets * Build assets Tue Aug 1 20:48:21 GMTST 2017 Former-commit-id: 08f373725c14990f61dbb00bea43118c496c5d32 [formerly 281e23007c79dac1e9b86424201891a99d20f73a] [formerly b1b73f42debbce06b4f36e4cf97e319789c85b9f [formerly d8bc73390c37409efa60804d94779a7629944caa]] Former-commit-id: 92e99405cbf9935d1cf77b0fe70b122fca552be6 [formerly 3cd365e862f2a54ada60e226a19ac607b8d0c43b] Former-commit-id: cf9815114ac686cdf75a6b1cba15adafe493d083
202 lines
5.5 KiB
Vue
202 lines
5.5 KiB
Vue
<template>
|
|
<div id="search" @click="open" v-bind:class="{ active , ongoing }">
|
|
<div id="input">
|
|
<button v-if="active" class="action" @click="close" :aria-label="$t('buttons.close')" :title="$t('buttons.close')">
|
|
<i class="material-icons">arrow_back</i>
|
|
</button>
|
|
<i v-else class="material-icons">search</i>
|
|
<input type="text"
|
|
@keyup="keyup"
|
|
@keyup.enter="submit"
|
|
ref="input"
|
|
:autofocus="active"
|
|
v-model.trim="value"
|
|
:aria-label="$t('search.writeToSearch')"
|
|
:placeholder="placeholder">
|
|
</div>
|
|
|
|
<div id="result">
|
|
<div>
|
|
<span v-if="search.length === 0 && commands.length === 0">{{ text }}</span>
|
|
<ul v-else-if="search.length > 0">
|
|
<li v-for="s in search">
|
|
<router-link @click.native="close" :to="'./' + s">./{{ s }}</router-link>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul v-else-if="commands.length > 0">
|
|
<li v-for="c in commands">{{ c }}</li>
|
|
</ul>
|
|
</div>
|
|
<p><i class="material-icons spin">autorenew</i></p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
import url from '@/utils/url'
|
|
import api from '@/utils/api'
|
|
|
|
export default {
|
|
name: 'search',
|
|
data: function () {
|
|
return {
|
|
value: '',
|
|
active: false,
|
|
ongoing: false,
|
|
scrollable: null,
|
|
search: [],
|
|
commands: [],
|
|
reload: false
|
|
}
|
|
},
|
|
watch: {
|
|
show (val, old) {
|
|
this.active = (val === 'search')
|
|
|
|
// If the hover was search and now it's something else
|
|
// we should blur the input.
|
|
if (old === 'search' && val !== 'search') {
|
|
if (this.reload) {
|
|
this.$store.commit('setReload', true)
|
|
}
|
|
|
|
this.$refs.input.blur()
|
|
}
|
|
|
|
// If we are starting to show the search box, we should
|
|
// focus the input.
|
|
if (val === 'search') {
|
|
this.reload = false
|
|
this.$refs.input.focus()
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState(['user', 'show']),
|
|
// Placeholder value.
|
|
placeholder: function () {
|
|
if (this.user.allowCommands && this.user.commands.length > 0) {
|
|
return this.$t('search.searchOrCommand')
|
|
}
|
|
|
|
return this.$t('search.search')
|
|
},
|
|
// The text that is shown on the results' box while
|
|
// there is no search result or command output to show.
|
|
text: function () {
|
|
if (this.ongoing) {
|
|
return ''
|
|
}
|
|
|
|
if (this.value.length === 0) {
|
|
if (this.user.allowCommands && this.user.commands.length > 0) {
|
|
return `${this.$t('search.searchOrSupportedCommand')} ${this.user.commands.join(', ')}.`
|
|
}
|
|
|
|
this.$t('search.type')
|
|
}
|
|
|
|
if (!this.supported() || !this.user.allowCommands) {
|
|
return this.$t('search.pressToSearch')
|
|
} else {
|
|
return this.$t('search.pressToExecute')
|
|
}
|
|
}
|
|
},
|
|
mounted: function () {
|
|
// Gets the result div which will be scrollable.
|
|
this.scrollable = document.querySelector('#search #result')
|
|
|
|
// Adds the keydown event on window for the ESC key, so
|
|
// when it's pressed, it closes the search window.
|
|
window.addEventListener('keydown', (event) => {
|
|
if (event.keyCode === 27) {
|
|
this.$store.commit('closeHovers')
|
|
}
|
|
})
|
|
},
|
|
methods: {
|
|
// Sets the search to active.
|
|
open: function (event) {
|
|
this.$store.commit('showHover', 'search')
|
|
},
|
|
// Closes the search and prevents the event
|
|
// of propagating so it doesn't trigger the
|
|
// click event on #search.
|
|
close: function (event) {
|
|
event.stopPropagation()
|
|
event.preventDefault()
|
|
this.$store.commit('closeHovers')
|
|
},
|
|
// Checks if the current input is a supported command.
|
|
supported: function () {
|
|
let pieces = this.value.split(' ')
|
|
|
|
for (let i = 0; i < this.user.commands.length; i++) {
|
|
if (pieces[0] === this.user.commands[i]) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
},
|
|
// When the user presses a key, if it is ESC
|
|
// then it will close the search box. Otherwise,
|
|
// it will set the search box to active and clean
|
|
// the search results, as well as commands'.
|
|
keyup: function (event) {
|
|
if (event.keyCode === 27) {
|
|
this.close(event)
|
|
return
|
|
}
|
|
|
|
this.search.length = 0
|
|
this.commands.length = 0
|
|
},
|
|
// Submits the input to the server and sets ongoing to true.
|
|
submit: function (event) {
|
|
this.ongoing = true
|
|
|
|
let path = this.$route.path
|
|
if (this.$store.state.req.kind !== 'listing') {
|
|
path = url.removeLastDir(path) + '/'
|
|
}
|
|
|
|
// In case of being a command.
|
|
if (this.supported() && this.user.allowCommands) {
|
|
api.command(path, this.value,
|
|
(event) => {
|
|
this.commands.push(event.data)
|
|
this.scrollable.scrollTop = this.scrollable.scrollHeight
|
|
},
|
|
(event) => {
|
|
this.reload = true
|
|
this.ongoing = false
|
|
this.scrollable.scrollTop = this.scrollable.scrollHeight
|
|
}
|
|
)
|
|
|
|
return
|
|
}
|
|
|
|
// In case of being a search.
|
|
api.search(path, this.value,
|
|
(event) => {
|
|
let url = event.data
|
|
if (url[0] === '/') url = url.substring(1)
|
|
|
|
this.search.push(url)
|
|
this.scrollable.scrollTop = this.scrollable.scrollHeight
|
|
},
|
|
(event) => {
|
|
this.ongoing = false
|
|
this.scrollable.scrollTop = this.scrollable.scrollHeight
|
|
}
|
|
)
|
|
}
|
|
}
|
|
}
|
|
</script>
|