Compare commits

..

No commits in common. "bf9da854c7d99e9f910ed63b4f1db9c9ca594e66" and "2053491782949b7b904dcfe974126e3a37bf4007" have entirely different histories.

6 changed files with 61 additions and 80 deletions

View File

@ -8,37 +8,37 @@
> >
<a-menu-item key="finder"> <a-menu-item key="finder">
<template #icon> <template #icon>
<StarOutlined style="font-size: 16px" /> <StarOutlined style="font-size: 18px;" />
</template> </template>
{{ $t('feature.market.explore') }} {{ $t('feature.market.explore') }}
</a-menu-item> </a-menu-item>
<a-menu-item key="worker"> <a-menu-item key="worker">
<template #icon> <template #icon>
<SendOutlined style="transform: rotate(-45deg); font-size: 16px" /> <SendOutlined style="transform: rotate(-45deg); font-size: 18px;" />
</template> </template>
{{ $t('feature.market.efficiency') }} {{ $t('feature.market.efficiency') }}
</a-menu-item> </a-menu-item>
<a-menu-item key="tools"> <a-menu-item key="tools">
<template #icon> <template #icon>
<SearchOutlined style="font-size: 16px" /> <SearchOutlined style="font-size: 18px;" />
</template> </template>
{{ $t('feature.market.searchTool') }} {{ $t('feature.market.searchTool') }}
</a-menu-item> </a-menu-item>
<a-menu-item key="image"> <a-menu-item key="image">
<template #icon> <template #icon>
<FileImageOutlined style="font-size: 16px" /> <FileImageOutlined style="font-size: 18px;" />
</template> </template>
{{ $t('feature.market.imageTool') }} {{ $t('feature.market.imageTool') }}
</a-menu-item> </a-menu-item>
<a-menu-item key="devPlugin"> <a-menu-item key="devPlugin">
<template #icon> <template #icon>
<CodeOutlined style="font-size: 16px" /> <CodeOutlined style="font-size: 18px;" />
</template> </template>
{{ $t('feature.market.developTool') }} {{ $t('feature.market.developTool') }}
</a-menu-item> </a-menu-item>
<a-menu-item key="system"> <a-menu-item key="system">
<template #icon> <template #icon>
<DatabaseOutlined style="font-size: 16px" /> <DatabaseOutlined style="font-size: 18px;" />
</template> </template>
{{ $t('feature.market.systemTool') }} {{ $t('feature.market.systemTool') }}
</a-menu-item> </a-menu-item>
@ -72,21 +72,7 @@
</a-sub-menu> </a-sub-menu>
</a-menu> </a-menu>
</div> </div>
<div <div :class="['finder', 'result', 'devPlugin', 'image', 'tools', 'worker', 'system'].includes(active[0]) ? 'container' : 'more'">
:class="
[
'finder',
'result',
'devPlugin',
'image',
'tools',
'worker',
'system',
].includes(active[0])
? 'container'
: 'more'
"
>
<keep-alive> <keep-alive>
<router-view /> <router-view />
</keep-alive> </keep-alive>
@ -117,14 +103,14 @@ const active = computed(() => store.state.active);
const { perf } = localConfig.getConfig(); const { perf } = localConfig.getConfig();
const changeMenu = (key: any) => { const changeMenu = (key: any) => {
store.commit('commonUpdate', { active: [key] }); store.commit('commonUpdate', {active: [key]})
router.push(key); router.push(key);
}; };
window.rubick.onPluginEnter(({ code }: { code: string }) => { window.rubick.onPluginEnter(({ code }: { code: string }) => {
code = code === '已安装插件' ? 'installed' : code; code = code === '已安装插件' ? 'installed' : code;
changeMenu(code); changeMenu(code);
store.commit('commonUpdate', { active: [code] }); store.commit('commonUpdate', {active: [code]})
}); });
window.rubick.setSubInput((e: any) => { window.rubick.setSubInput((e: any) => {
@ -143,7 +129,7 @@ window.rubick.setSubInput((e: any) => {
store.commit('setSearchValue', e.text); store.commit('setSearchValue', e.text);
router.push('result'); router.push('result');
} else { } else {
store.commit('commonUpdate', { active: ['finder'] }); store.commit('commonUpdate', {active: ['finder']})
router.push('finder'); router.push('finder');
} }
} }
@ -158,16 +144,13 @@ init();
background: var(--color-body-bg2) !important; background: var(--color-body-bg2) !important;
height: 100%; height: 100%;
border-right: none; border-right: none;
.ant-menu-item, .ant-menu-item, .ant-menu-submenu, .ant-menu-submenu-arrow {
.ant-menu-submenu,
.ant-menu-submenu-arrow {
color: var(--color-text-content); color: var(--color-text-content);
&:active { &:active {
background: none; background: none;
} }
} }
.ant-menu-item-selected, .ant-menu-item-selected, .ant-menu-submenu-selected {
.ant-menu-submenu-selected {
background-color: var(--color-list-hover); background-color: var(--color-list-hover);
color: var(--ant-primary-color); color: var(--ant-primary-color);
.ant-menu-submenu-arrow { .ant-menu-submenu-arrow {
@ -220,12 +203,9 @@ init();
background: var(--color-body-bg2); background: var(--color-body-bg2);
} }
.left-menu { .left-menu {
padding: 16px; padding: 24px 16px;
position: relative; position: relative;
height: 100vh; height: 100vh;
:deep(.ant-menu) {
width: 100%;
}
:deep(.ant-menu-item) { :deep(.ant-menu-item) {
padding-left: 12px !important; padding-left: 12px !important;
display: flex; display: flex;
@ -239,14 +219,7 @@ init();
} }
:deep(.user-info) { :deep(.user-info) {
position: absolute; position: absolute;
bottom: 16px; bottom: 32px;
width: calc(100% - 32px);
.ant-menu-submenu-title {
padding: 0 32px 0 8px;
.ant-menu-title-content {
margin-left: 8px;
}
}
} }
:deep(.ant-avatar) { :deep(.ant-avatar) {
background: transparent; background: transparent;

View File

@ -1,6 +1,6 @@
{ {
"name": "rubick", "name": "rubick",
"version": "4.2.5", "version": "4.2.4",
"author": "muwoo <2424880409@qq.com>", "author": "muwoo <2424880409@qq.com>",
"private": true, "private": true,
"scripts": { "scripts": {

View File

@ -175,29 +175,31 @@ export default () => {
const removeView = (window: BrowserWindow) => { const removeView = (window: BrowserWindow) => {
if (!view) return; if (!view) return;
window.removeBrowserView(view);
if (!view.inDetach) {
window.setBrowserView(null);
view.webContents?.destroy();
}
// window.setSize(800, 60);
executeHooks('PluginOut', null); executeHooks('PluginOut', null);
setTimeout(() => { window.webContents?.executeJavaScript(`window.initRubick()`);
window.removeBrowserView(view); view = undefined;
if (!view.inDetach) {
window.setBrowserView(null);
view.webContents?.destroy();
}
window.webContents?.executeJavaScript(`window.initRubick()`);
view = undefined;
}, 0);
}; };
const getView = () => view; const getView = () => view;
const executeHooks = (hook, data) => { const executeHooks = (hook, data) => {
if (!view) return; setTimeout(() => {
const evalJs = `if(window.rubick && window.rubick.hooks && typeof window.rubick.hooks.on${hook} === 'function' ) { if (!view) return;
const evalJs = `if(window.rubick && window.rubick.hooks && typeof window.rubick.hooks.on${hook} === 'function' ) {
try { try {
window.rubick.hooks.on${hook}(${data ? JSON.stringify(data) : ''}); window.rubick.hooks.on${hook}(${data ? JSON.stringify(data) : ''});
} catch(e) {} } catch(e) {}
} }
`; `;
view.webContents?.executeJavaScript(evalJs); view.webContents?.executeJavaScript(evalJs);
}, 300);
}; };
return { return {

View File

@ -128,8 +128,8 @@ class API extends DBInstance {
} }
public removePlugin(e, window) { public removePlugin(e, window) {
runnerInstance.removeView(window);
this.currentPlugin = null; this.currentPlugin = null;
runnerInstance.removeView(window);
} }
public openPluginDevTools() { public openPluginDevTools() {
@ -211,10 +211,11 @@ class API extends DBInstance {
if (!Notification.isSupported()) return; if (!Notification.isSupported()) return;
'string' != typeof body && (body = String(body)); 'string' != typeof body && (body = String(body));
const plugin = this.currentPlugin; const plugin = this.currentPlugin;
if (!plugin) return;
const notify = new Notification({ const notify = new Notification({
title: plugin ? plugin.pluginName : null, title: plugin.pluginName,
body, body,
icon: plugin ? plugin.logo : null, icon: plugin.logo,
}); });
notify.show(); notify.show();
} }

View File

@ -1,5 +1,8 @@
<template> <template>
<div id="components-layout" @mousedown="onMouseDown"> <div
id="components-layout"
@mousedown="onMouseDown"
>
<Search <Search
:currentPlugin="currentPlugin" :currentPlugin="currentPlugin"
@changeCurrent="changeIndex" @changeCurrent="changeIndex"
@ -91,9 +94,7 @@ watch(
window.rubick.setExpendHeight( window.rubick.setExpendHeight(
getWindowHeight( getWindowHeight(
options.value, options.value,
pluginLoading.value || !config.value.perf.common.history (pluginLoading.value || !config.value.perf.common.history) ? [] : pluginHistory.value
? []
: pluginHistory.value
) )
); );
}, },
@ -103,15 +104,26 @@ watch(
); );
const changeIndex = (index) => { const changeIndex = (index) => {
const len = options.value.length || pluginHistory.value.length; if (!options.value.length) {
if (!len) return; if (!pluginHistory.value.length) return;
if (currentSelect.value + index > len - 1) { if (
currentSelect.value = 0; currentSelect.value + index > pluginHistory.value.length - 1 ||
} else if (currentSelect.value + index < 0) { currentSelect.value + index < 0
currentSelect.value = len - 1; ) {
} else { currentSelect.value = 0;
return;
}
currentSelect.value = currentSelect.value + index; currentSelect.value = currentSelect.value + index;
return;
} }
if (
currentSelect.value + index > options.value.length - 1 ||
currentSelect.value + index < 0
) {
currentSelect.value = 0;
return;
}
currentSelect.value = currentSelect.value + index;
}; };
const openMenu = (ext) => { const openMenu = (ext) => {
@ -149,9 +161,7 @@ const choosePlugin = (plugin) => {
}); });
if (hasRemove) { if (hasRemove) {
const result = window.rubick.db.get(PLUGIN_HISTORY) || {}; const result = window.rubick.db.get(PLUGIN_HISTORY) || {};
const history = result.data.filter( const history = result.data.filter(item => item.originName !== currentChoose.originName);
(item) => item.originName !== currentChoose.originName
);
setPluginHistory(history); setPluginHistory(history);
return message.warning('插件已被卸载!'); return message.warning('插件已被卸载!');
} }

View File

@ -25,8 +25,6 @@
ref="mainInput" ref="mainInput"
class="main-input" class="main-input"
@input="(e) => changeValue(e)" @input="(e) => changeValue(e)"
@keydown.left="(e) => keydownEvent(e, 'left')"
@keydown.right="(e) => keydownEvent(e, 'right')"
@keydown.down="(e) => keydownEvent(e, 'down')" @keydown.down="(e) => keydownEvent(e, 'down')"
@keydown.tab="(e) => keydownEvent(e, 'down')" @keydown.tab="(e) => keydownEvent(e, 'down')"
@keydown.up="(e) => keydownEvent(e, 'up')" @keydown.up="(e) => keydownEvent(e, 'up')"
@ -43,7 +41,10 @@
> >
<template #suffix> <template #suffix>
<div class="suffix-tool"> <div class="suffix-tool">
<MoreOutlined @click="showSeparate()" class="icon-more" /> <MoreOutlined
@click="showSeparate()"
class="icon-more"
/>
</div> </div>
</template> </template>
</a-input> </a-input>
@ -119,12 +120,6 @@ const keydownEvent = (e, key: string) => {
case 'down': case 'down':
emit('changeCurrent', 1); emit('changeCurrent', 1);
break; break;
case 'left':
emit('changeCurrent', -1);
break;
case 'right':
emit('changeCurrent', 1);
break;
case 'enter': case 'enter':
if (runPluginDisable) return; if (runPluginDisable) return;
emit('choosePlugin'); emit('choosePlugin');