2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-01-14 11:31:48 +00:00
|
|
|
<div :class="$style.root">
|
|
|
|
<input v-model="query" :class="$style.input" type="search" :placeholder="q">
|
2023-04-01 05:01:57 +00:00
|
|
|
<button :class="$style.button" @click="search"><i class="ti ti-search"></i> {{ i18n.ts.searchByGoogle }}</button>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-07 05:44:05 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-07 05:44:05 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
q: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const query = ref(props.q);
|
|
|
|
|
|
|
|
const search = () => {
|
|
|
|
window.open(`https://www.google.com/search?q=${query.value}`, '_blank');
|
|
|
|
};
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-14 11:31:48 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 19:37:25 +00:00
|
|
|
display: flex;
|
|
|
|
margin: 8px 0;
|
2023-01-14 11:31:48 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 11:31:48 +00:00
|
|
|
.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;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 11:31:48 +00:00
|
|
|
&:active {
|
|
|
|
box-shadow: 0 2px 4px rgba(#000, 0.15) inset;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|