Compare commits

...

18 Commits

Author SHA1 Message Date
layyback
bf9da854c7 release new version 2024-07-18 19:24:32 +08:00
layyback
a2c5bcc90c add new keyboard events 2024-07-18 18:58:34 +08:00
layyback
b9f4333c01 🎨 fix text display issue 2024-07-18 18:47:52 +08:00
layyback
bbeddb3fe6 support #371 2024-07-18 17:53:23 +08:00
layyback
4a2ca33e02 support #371 2024-07-18 17:52:20 +08:00
layyback
0578c7c7eb 🔨 fix #377 2024-07-18 17:41:30 +08:00
layyback
ef34452a4f 🔨 fix #377 2024-07-18 17:40:03 +08:00
layyback
286d9da8d1 🐛 fix hooks triggering issue 2024-07-18 17:25:11 +08:00
layyback
6b9d5182bf 🐛 fix hooks triggering issue 2024-07-18 16:46:33 +08:00
muwoo
2053491782 Update README.md 2024-06-14 19:49:24 +08:00
muwoo
e128d01b81 Merge pull request #184 from qidian99/master
Fix regex match error
2024-06-12 13:52:04 +08:00
木偶
c3bc0bdb9e fix: #352 2024-05-28 20:13:10 +08:00
木偶
f1f4e62177 fix: #352 2024-05-28 20:12:38 +08:00
wangwei1240
c07d4bae55 fix: 更新版本 2024-05-16 20:14:41 +08:00
wangwei1240
c78dd9c4b6 fix: 修复 #364 2024-05-16 20:13:45 +08:00
muwoo
2dd4ed10cc 💚 修复构建报错:https://github.com/electron/electron/issues/41089 2024-02-20 18:16:42 +08:00
muwoo
70ce3dd037 🐛 修复 #338, #345, #340 2024-02-20 18:07:19 +08:00
Dian Qi
472879f9b2 Fix format regex error that will match all inputs 2023-06-04 20:30:06 +08:00
20 changed files with 116 additions and 70 deletions

2
.npmrc
View File

@@ -1 +1 @@
electron_mirror=https://npm.taobao.org/mirrors/electron/ electron_mirror=https://npmmirror.com/mirrors/electron/

View File

@@ -109,6 +109,8 @@ Those who are interested in this project or want to exchange and learn can scan
![image](https://user-images.githubusercontent.com/21073039/127327603-9796f246-ee4b-4950-a69d-ce3205ec9569.png) ![image](https://user-images.githubusercontent.com/21073039/127327603-9796f246-ee4b-4950-a69d-ce3205ec9569.png)
<a href="https://hellogithub.com/repository/0a3e2484b44e481e9dcf1850e45193cd" target="_blank"><img src="https://api.hellogithub.com/v1/widgets/recommend.svg?rid=0a3e2484b44e481e9dcf1850e45193cd&claim_uid=vXGwjpmYNsBex0C" alt="FeaturedHelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
## Contribute ## Contribute
This project exists thanks to all the people who contribute. [[Contribute](https://github.com/rubickCenter/rubick/graphs/contributors)]. <a href="https://github.com/rubickCenter/rubick/graphs/contributors"><img src="https://opencollective.com/rubick/contributors.svg?width=890&button=false" /></a> This project exists thanks to all the people who contribute. [[Contribute](https://github.com/rubickCenter/rubick/graphs/contributors)]. <a href="https://github.com/rubickCenter/rubick/graphs/contributors"><img src="https://opencollective.com/rubick/contributors.svg?width=890&button=false" /></a>

View File

@@ -8,37 +8,37 @@
> >
<a-menu-item key="finder"> <a-menu-item key="finder">
<template #icon> <template #icon>
<StarOutlined style="font-size: 18px;" /> <StarOutlined style="font-size: 16px" />
</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: 18px;" /> <SendOutlined style="transform: rotate(-45deg); font-size: 16px" />
</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: 18px;" /> <SearchOutlined style="font-size: 16px" />
</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: 18px;" /> <FileImageOutlined style="font-size: 16px" />
</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: 18px;" /> <CodeOutlined style="font-size: 16px" />
</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: 18px;" /> <DatabaseOutlined style="font-size: 16px" />
</template> </template>
{{ $t('feature.market.systemTool') }} {{ $t('feature.market.systemTool') }}
</a-menu-item> </a-menu-item>
@@ -72,7 +72,21 @@
</a-sub-menu> </a-sub-menu>
</a-menu> </a-menu>
</div> </div>
<div :class="['finder', 'result', 'devPlugin', 'image', 'tools', 'worker', 'system'].includes(active[0]) ? 'container' : 'more'"> <div
: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>
@@ -103,14 +117,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) => {
@@ -129,7 +143,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');
} }
} }
@@ -144,13 +158,16 @@ 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-submenu, .ant-menu-submenu-arrow { .ant-menu-item,
.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-submenu-selected { .ant-menu-item-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 {
@@ -203,9 +220,12 @@ init();
background: var(--color-body-bg2); background: var(--color-body-bg2);
} }
.left-menu { .left-menu {
padding: 24px 16px; padding: 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;
@@ -219,7 +239,14 @@ init();
} }
:deep(.user-info) { :deep(.user-info) {
position: absolute; position: absolute;
bottom: 32px; bottom: 16px;
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

@@ -67,6 +67,7 @@ export default {
changeLang: 'Change Language', changeLang: 'Change Language',
cn: '简体中文', cn: '简体中文',
en: 'English', en: 'English',
history: 'keywords search history',
}, },
global: { global: {
title: 'Global Shortcut Key', title: 'Global Shortcut Key',

View File

@@ -65,6 +65,7 @@ export default {
changeLang: '切换语言', changeLang: '切换语言',
cn: '简体中文', cn: '简体中文',
en: 'English', en: 'English',
history: '关键词搜索记录',
}, },
global: { global: {
title: '全局快捷键', title: '全局快捷键',

View File

@@ -31,9 +31,9 @@ const searchValue = computed(() => store.state.searchValue);
const result = computed(() => { const result = computed(() => {
if (searchValue.value.trim().length > 0) { if (searchValue.value.trim().length > 0) {
const pattern = new RegExp(searchValue.value); const pattern = new RegExp(searchValue.value.toLowerCase());
return totalPlugins.value.filter((plugin) => { return totalPlugins.value.filter((plugin) => {
if (plugin.pluginName.match(pattern)) { if (plugin.pluginName.toLowerCase().match(pattern)) {
return true; return true;
} else { } else {
return false; return false;

View File

@@ -119,6 +119,16 @@
:un-checked-children="$t('feature.settings.basic.off')" :un-checked-children="$t('feature.settings.basic.off')"
></a-switch> ></a-switch>
</div> </div>
<div class="settings-item-li">
<div class="label">
{{ $t('feature.settings.basic.history') }}
</div>
<a-switch
v-model:checked="common.history"
:checked-children="$t('feature.settings.basic.on')"
:un-checked-children="$t('feature.settings.basic.off')"
></a-switch>
</div>
</div> </div>
<div class="setting-item"> <div class="setting-item">
<div class="title">{{ $t('feature.settings.basic.theme') }}</div> <div class="title">{{ $t('feature.settings.basic.theme') }}</div>

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 131 KiB

View File

@@ -1,5 +1,5 @@
export default { export default {
version: 6, version: 7,
perf: { perf: {
custom: { custom: {
theme: 'SPRING', theme: 'SPRING',
@@ -25,6 +25,7 @@ export default {
autoPast: false, autoPast: false,
darkMode: false, darkMode: false,
guide: false, guide: false,
history: true,
lang: 'zh-CN', lang: 'zh-CN',
}, },
local: { local: {

View File

@@ -25,7 +25,7 @@ export default () => {
height: WINDOW_HEIGHT, height: WINDOW_HEIGHT,
minHeight: WINDOW_MIN_HEIGHT, minHeight: WINDOW_MIN_HEIGHT,
useContentSize: true, useContentSize: true,
resizable: true, resizable: false,
width: WINDOW_WIDTH, width: WINDOW_WIDTH,
frame: false, frame: false,
title: '拉比克', title: '拉比克',

View File

@@ -175,22 +175,21 @@ export default () => {
const removeView = (window: BrowserWindow) => { const removeView = (window: BrowserWindow) => {
if (!view) return; if (!view) return;
executeHooks('PluginOut', null);
setTimeout(() => {
window.removeBrowserView(view); window.removeBrowserView(view);
if (!view.inDetach) { if (!view.inDetach) {
window.setBrowserView(null); window.setBrowserView(null);
view.webContents?.destroy(); view.webContents?.destroy();
} }
// window.setSize(800, 60);
executeHooks('PluginOut', null);
window.webContents?.executeJavaScript(`window.initRubick()`); window.webContents?.executeJavaScript(`window.initRubick()`);
view = undefined; view = undefined;
}, 0);
}; };
const getView = () => view; const getView = () => view;
const executeHooks = (hook, data) => { const executeHooks = (hook, data) => {
setTimeout(() => {
if (!view) return; if (!view) return;
const evalJs = `if(window.rubick && window.rubick.hooks && typeof window.rubick.hooks.on${hook} === 'function' ) { const evalJs = `if(window.rubick && window.rubick.hooks && typeof window.rubick.hooks.on${hook} === 'function' ) {
try { try {
@@ -199,7 +198,6 @@ export default () => {
} }
`; `;
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) {
this.currentPlugin = null;
runnerInstance.removeView(window); runnerInstance.removeView(window);
this.currentPlugin = null;
} }
public openPluginDevTools() { public openPluginDevTools() {
@@ -211,11 +211,10 @@ 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.pluginName, title: plugin ? plugin.pluginName : null,
body, body,
icon: plugin.logo, icon: plugin ? plugin.logo : null,
}); });
notify.show(); notify.show();
} }

View File

@@ -1,8 +1,5 @@
<template> <template>
<div <div id="components-layout" @mousedown="onMouseDown">
id="components-layout"
@mousedown="onMouseDown"
>
<Search <Search
:currentPlugin="currentPlugin" :currentPlugin="currentPlugin"
@changeCurrent="changeIndex" @changeCurrent="changeIndex"
@@ -44,6 +41,7 @@ import useDrag from '../common/utils/dragWindow';
import { getGlobal } from '@electron/remote'; import { getGlobal } from '@electron/remote';
import { PLUGIN_HISTORY } from '@/common/constans/renderer'; import { PLUGIN_HISTORY } from '@/common/constans/renderer';
import { message } from 'ant-design-vue'; import { message } from 'ant-design-vue';
import localConfig from './confOp';
const { onMouseDown } = useDrag(); const { onMouseDown } = useDrag();
const remote = window.require('@electron/remote'); const remote = window.require('@electron/remote');
@@ -74,6 +72,8 @@ initPlugins();
const currentSelect = ref(0); const currentSelect = ref(0);
const menuPluginInfo: any = ref({}); const menuPluginInfo: any = ref({});
const config: any = ref(localConfig.getConfig());
getPluginInfo({ getPluginInfo({
pluginName: 'feature', pluginName: 'feature',
// eslint-disable-next-line no-undef // eslint-disable-next-line no-undef
@@ -91,7 +91,9 @@ watch(
window.rubick.setExpendHeight( window.rubick.setExpendHeight(
getWindowHeight( getWindowHeight(
options.value, options.value,
pluginLoading.value ? [] : pluginHistory.value pluginLoading.value || !config.value.perf.common.history
? []
: pluginHistory.value
) )
); );
}, },
@@ -101,26 +103,15 @@ watch(
); );
const changeIndex = (index) => { const changeIndex = (index) => {
if (!options.value.length) { const len = options.value.length || pluginHistory.value.length;
if (!pluginHistory.value.length) return; if (!len) return;
if ( if (currentSelect.value + index > len - 1) {
currentSelect.value + index > pluginHistory.value.length - 1 ||
currentSelect.value + index < 0
) {
currentSelect.value = 0; currentSelect.value = 0;
return; } else if (currentSelect.value + index < 0) {
} currentSelect.value = len - 1;
} else {
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) => {
@@ -158,7 +149,9 @@ 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(item => item.originName !== currentChoose.originName); const history = result.data.filter(
(item) => item.originName !== currentChoose.originName
);
setPluginHistory(history); setPluginHistory(history);
return message.warning('插件已被卸载!'); return message.warning('插件已被卸载!');
} }

View File

@@ -1,5 +1,5 @@
<template> <template>
<div v-show="!currentPlugin.name" class="options"> <div v-show="!currentPlugin.name && config.perf.common.history" class="options">
<div <div
class="history-plugins" class="history-plugins"
v-if="!options.length || !(searchValue || !!clipboardFile.length)" v-if="!options.length || !(searchValue || !!clipboardFile.length)"
@@ -44,12 +44,16 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import {defineEmits, defineProps, reactive, toRaw, watch} from 'vue'; import { defineEmits, defineProps, reactive, ref, toRaw, watch } from 'vue';
import localConfig from '../confOp';
const path = window.require('path'); const path = window.require('path');
const remote = window.require('@electron/remote'); const remote = window.require('@electron/remote');
declare const __static: string; declare const __static: string;
const config: any = ref(localConfig.getConfig());
const props: any = defineProps({ const props: any = defineProps({
searchValue: { searchValue: {
type: [String, Number], type: [String, Number],

View File

@@ -25,6 +25,8 @@
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')"
@@ -41,10 +43,7 @@
> >
<template #suffix> <template #suffix>
<div class="suffix-tool"> <div class="suffix-tool">
<MoreOutlined <MoreOutlined @click="showSeparate()" class="icon-more" />
@click="showSeparate()"
class="icon-more"
/>
</div> </div>
</template> </template>
</a-input> </a-input>
@@ -96,6 +95,7 @@ const emit = defineEmits([
]); ]);
const keydownEvent = (e, key: string) => { const keydownEvent = (e, key: string) => {
key !== 'space' && e.preventDefault();
const { ctrlKey, shiftKey, altKey, metaKey } = e; const { ctrlKey, shiftKey, altKey, metaKey } = e;
const modifiers: Array<string> = []; const modifiers: Array<string> = [];
ctrlKey && modifiers.push('control'); ctrlKey && modifiers.push('control');
@@ -119,12 +119,19 @@ 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');
break; break;
case 'space': case 'space':
if (runPluginDisable || !config.value.perf.common.space) return; if (runPluginDisable || !config.value.perf.common.space) return;
e.preventDefault();
emit('choosePlugin'); emit('choosePlugin');
break; break;
default: default:

View File

@@ -77,6 +77,10 @@ const createPluginManager = (): any => {
}; };
const openPlugin = async (plugin, option) => { const openPlugin = async (plugin, option) => {
ipcRenderer.send('msg-trigger', {
type: 'removePlugin',
});
window.initRubick();
if (plugin.pluginType === 'ui' || plugin.pluginType === 'system') { if (plugin.pluginType === 'ui' || plugin.pluginType === 'system') {
if (state.currentPlugin && state.currentPlugin.name === plugin.name) { if (state.currentPlugin && state.currentPlugin.name === plugin.name) {
window.rubick.showMainWindow(); window.rubick.showMainWindow();
@@ -103,7 +107,6 @@ const createPluginManager = (): any => {
message.error('启动应用出错,请确保启动应用存在!'); message.error('启动应用出错,请确保启动应用存在!');
} }
} }
window.initRubick();
changePluginHistory({ changePluginHistory({
...plugin, ...plugin,
...option, ...option,

View File

@@ -8,7 +8,7 @@ import useFocus from './clipboardWatch';
function formatReg(regStr) { function formatReg(regStr) {
const flags = regStr.replace(/.*\/([gimy]*)$/, '$1'); const flags = regStr.replace(/.*\/([gimy]*)$/, '$1');
const pattern = flags.replace(new RegExp('^/(.*?)/' + flags + '$'), '$1'); const pattern = regStr.replace(new RegExp('^/(.*?)/' + flags + '$'), '$1');
return new RegExp(pattern, flags); return new RegExp(pattern, flags);
} }