2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-google">
|
|
|
|
<input type="search" v-model="query" :placeholder="q">
|
2020-02-27 07:13:46 +01:00
|
|
|
<button @click="search"><fa :icon="faSearch"/> {{ $t('search') }}</button>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-02-27 07:13:46 +01:00
|
|
|
import { faSearch } from '@fortawesome/free-solid-svg-icons';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['q'],
|
|
|
|
data() {
|
|
|
|
return {
|
2020-02-27 07:13:46 +01:00
|
|
|
query: null,
|
|
|
|
faSearch
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.query = this.q;
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
search() {
|
|
|
|
const engine = this.$store.state.settings.webSearchEngine ||
|
|
|
|
'https://www.google.com/?#q={{query}}';
|
|
|
|
const url = engine.replace('{{query}}', this.query)
|
|
|
|
window.open(url, '_blank');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-google {
|
|
|
|
display: flex;
|
|
|
|
margin: 8px 0;
|
|
|
|
|
|
|
|
> input {
|
|
|
|
flex-shrink: 1;
|
|
|
|
padding: 10px;
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
font-size: 16px;
|
2020-02-27 07:13:46 +01:00
|
|
|
border: solid 1px var(--divider);
|
2020-01-29 20:37:25 +01:00
|
|
|
border-radius: 4px 0 0 4px;
|
2020-07-11 17:43:17 +02:00
|
|
|
-webkit-appearance: textfield;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
|
|
|
flex-shrink: 0;
|
2020-07-11 17:43:17 +02:00
|
|
|
margin: 0;
|
2020-01-29 20:37:25 +01:00
|
|
|
padding: 0 16px;
|
2020-02-27 07:13:46 +01:00
|
|
|
border: solid 1px var(--divider);
|
2020-01-29 20:37:25 +01:00
|
|
|
border-left: none;
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
box-shadow: 0 2px 4px rgba(#000, 0.15) inset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|