summaryrefslogtreecommitdiff
path: root/packages/client/src/components/google.vue
blob: bb4b439ee8beea281ca095fb3e148e93a69f71c2 (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
<template>
<div class="mk-google">
	<input v-model="query" type="search" :placeholder="q">
	<button @click="search"><i class="fas fa-search"></i> {{ $ts.searchByGoogle }}</button>
</div>
</template>

<script lang="ts" setup>
import { ref } from 'vue';

const props = defineProps<{
	q: string;
}>();

const query = ref(props.q);

const search = () => {
	window.open(`https://www.google.com/search?q=${query.value}`, '_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;
		border: solid 1px var(--divider);
		border-radius: 4px 0 0 4px;
		-webkit-appearance: textfield;
	}

	> button {
		flex-shrink: 0;
		margin: 0;
		padding: 0 16px;
		border: solid 1px var(--divider);
		border-left: none;
		border-radius: 0 4px 4px 0;

		&:active {
			box-shadow: 0 2px 4px rgba(#000, 0.15) inset;
		}
	}
}
</style>