summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/components/google.vue
blob: dab2e6824a3876dd71efd8211daf1c25b915a7d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<template>
<div class="mk-google">
	<input type="search" v-model="query" :placeholder="q">
	<button @click="search"><fa icon="search"/> {{ $t('@.search') }}</button>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';

export default Vue.extend({
	i18n: i18n(),
	props: ['q'],
	data() {
		return {
			query: null
		};
	},
	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="stylus" scoped>
.mk-google
	display flex
	margin 8px 0

	> input
		flex-shrink 1
		padding 10px
		width 100%
		height 40px
		font-family sans-serif
		font-size 16px
		color var(--googleSearchFg)
		background var(--googleSearchBg)
		border solid 1px var(--googleSearchBorder)
		border-radius 4px 0 0 4px

		&:hover
			border-color var(--googleSearchHoverBorder)

	> button
		flex-shrink 0
		padding 0 16px
		border solid 1px var(--googleSearchBorder)
		border-left none
		border-radius 0 4px 4px 0

		&:hover
			background-color var(--googleSearchHoverButton)

		&:active
			box-shadow 0 2px 4px rgba(#000, 0.15) inset

</style>