fix: 修复切换引擎时翻译未跟随

This commit is contained in:
imsyy 2023-08-01 18:26:23 +08:00
parent 9c1e8efe42
commit 357c10240b
9 changed files with 2646 additions and 53 deletions

View File

@ -15,6 +15,7 @@
"pinia": "^2.1.4", "pinia": "^2.1.4",
"pinia-plugin-persistedstate": "^3.2.0", "pinia-plugin-persistedstate": "^3.2.0",
"sass": "^1.64.1", "sass": "^1.64.1",
"vite-plugin-pwa": "^0.16.4",
"vue": "^3.3.4", "vue": "^3.3.4",
"vue3-perfect-scrollbar": "^1.6.1" "vue3-perfect-scrollbar": "^1.6.1"
}, },

File diff suppressed because it is too large Load Diff

BIN
public/icon/logo-144.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -2,21 +2,25 @@
"baidu": { "baidu": {
"name": "百度", "name": "百度",
"url": "https://www.baidu.com/s?wd=", "url": "https://www.baidu.com/s?wd=",
"translation": "https://fanyi.baidu.com/#zh/en/",
"icon": "baidu" "icon": "baidu"
}, },
"bing": { "bing": {
"name": "必应", "name": "必应",
"url": "https://www.bing.com/search?q=", "url": "https://www.bing.com/search?q=",
"translation": "https://www.bing.com/translator?text=",
"icon": "bing" "icon": "bing"
}, },
"google": { "google": {
"name": "谷歌", "name": "谷歌",
"url": "https://www.google.com/search?q=", "url": "https://www.google.com/search?q=",
"translation": "https://translate.google.com/?text=",
"icon": "google" "icon": "google"
}, },
"sogou": { "sogou": {
"name": "搜狗", "name": "搜狗",
"url": "https://www.sogou.com/sogou?query=", "url": "https://www.sogou.com/sogou?query=",
"translation": "https://fanyi.sogou.com/text?keyword=",
"icon": "sogou" "icon": "sogou"
}, },
"duckduckgo": { "duckduckgo": {
@ -27,11 +31,13 @@
"yandex": { "yandex": {
"name": "Yandex", "name": "Yandex",
"url": "https://yandex.com/search/?text=", "url": "https://yandex.com/search/?text=",
"translation": "https://translate.yandex.com/?text=",
"icon": "yandex" "icon": "yandex"
}, },
"search-360": { "search-360": {
"name": "360 搜索", "name": "360 搜索",
"url": "https://www.so.com/s?q=", "url": "https://www.so.com/s?q=",
"translation": "https://fanyi.so.com/#",
"icon": "search-360" "icon": "search-360"
}, },
"weibo": { "weibo": {

View File

@ -6,7 +6,7 @@
<div <div
v-for="(item, key) in defaultEngine" v-for="(item, key) in defaultEngine"
:key="key" :key="key"
class="engine" :class="['engine', key === set.searchEngine ? 'choose' : null]"
@click="changeSearchEngine(key)" @click="changeSearchEngine(key)"
> >
<SvgIcon :iconName="`icon-${key}`" /> <SvgIcon :iconName="`icon-${key}`" />
@ -78,9 +78,12 @@ const changeSearchEngine = (key) => {
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
&.choose {
background-color: var(--main-background-hover-color);
}
&:hover { &:hover {
background-color: var(--main-background-hover-color); background-color: var(--main-background-hover-color);
box-shadow: 0 0 0px 2px #ffffff30; box-shadow: 0 0 0px 2px var(--main-background-hover-color);
} }
} }
@media (max-width: 798px) { @media (max-width: 798px) {

View File

@ -13,10 +13,12 @@
@animationend="inputAnimationEnd" @animationend="inputAnimationEnd"
> >
<div class="engine" title="切换搜索引擎" @click="changeEngine"> <div class="engine" title="切换搜索引擎" @click="changeEngine">
<SvgIcon <Transition name="fade" mode="out-in">
:iconName="`icon-${defaultEngine[set.searchEngine].icon}`" <SvgIcon
className="baidu" :iconName="`icon-${defaultEngine[set.searchEngine].icon}`"
/> :key="set.searchEngine"
/>
</Transition>
</div> </div>
<input <input
class="input" class="input"
@ -92,25 +94,33 @@ const toSearch = (val, type = 1) => {
}; };
// //
if (searchValue) { if (searchValue) {
const searchFormat = encodeURIComponent(searchValue);
console.log("前往搜索:" + searchValue, type); console.log("前往搜索:" + searchValue, type);
// 1 / 2 / 3 / 4 访
switch (type) { switch (type) {
//
case 1: case 1:
const engine = defaultEngine[set.searchEngine]; const engine = defaultEngine[set.searchEngine];
const value = encodeURIComponent(searchValue); jumpLink(engine.url + searchFormat);
jumpLink(engine.url + value);
break; break;
//
case 2: case 2:
jumpLink(`https://fanyi.baidu.com/#en/zh/${searchValue}`); const hasTranslation = defaultEngine[set.searchEngine]?.translation;
jumpLink(
hasTranslation
? hasTranslation + searchFormat
: `https://fanyi.baidu.com/#en/zh/${searchFormat}`
);
break; break;
//
case 3: case 3:
jumpLink(`mailto:${searchValue}`); jumpLink(`mailto:${searchFormat}`);
break; break;
// 访
case 4: case 4:
const urlRegex = /^(https?:\/\/)/i; const urlRegex = /^(https?:\/\/)/i;
const url = urlRegex.test(searchValue) const url = urlRegex.test(searchFormat)
? searchValue ? searchFormat
: `//${searchValue}`; : `//${searchFormat}`;
jumpLink(url); jumpLink(url);
break; break;
default: default:

View File

@ -8,9 +8,10 @@ const useSetDataStore = defineStore("setData", {
backgroundType: 0, backgroundType: 0,
// 壁纸遮罩 // 壁纸遮罩
showBackgroundGray: true, showBackgroundGray: true,
// 默认搜索引擎 // 搜索引擎
searchEngine: "bing", searchEngine: "bing",
lastSearchEngine: "bing", lastSearchEngine: "bing",
customEngine: {},
// 清空搜索框 // 清空搜索框
showCleanInput: true, showCleanInput: true,
// 搜索框自动 focus // 搜索框自动 focus

File diff suppressed because one or more lines are too long

View File

@ -1,10 +1,54 @@
import { defineConfig } from "vite"; import { defineConfig } from "vite";
import { VitePWA } from "vite-plugin-pwa";
import vue from "@vitejs/plugin-vue"; import vue from "@vitejs/plugin-vue";
import path from "path"; import path from "path";
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [vue()], plugins: [
vue(),
// PWA
VitePWA({
registerType: "autoUpdate",
workbox: {
clientsClaim: true,
skipWaiting: true,
cleanupOutdatedCaches: true,
runtimeCaching: [
{
urlPattern: /(.*?)\.(woff2|woff|ttf)/,
handler: "CacheFirst",
options: {
cacheName: "file-cache",
},
},
{
urlPattern: /(.*?)\.(webp|png|jpe?g|svg|gif|bmp|psd|tiff|tga|eps)/,
handler: "CacheFirst",
options: {
cacheName: "image-cache",
},
},
],
},
manifest: {
name: "Snavigation",
short_name: "Snavigation",
description: "一个极致简约的导航页",
display: "standalone",
start_url: "/",
theme_color: "#fff",
background_color: "#efefef",
icons: [
{
src: "/icon/logo-144.png",
sizes: "144x144",
type: "image/png",
},
],
},
}),
],
server: { server: {
host: "0.0.0.0", host: "0.0.0.0",
port: 5588, port: 5588,