opensumi / core

🚀 A framework helps you quickly build AI Native IDE products.
https://opensumi.com
MIT License
2.98k stars 382 forks source link

[FEATURE] 支持离线安装插件 #2873

Open jinglong-sjtu opened 1 year ago

jinglong-sjtu commented 1 year ago

如果你的需求与问题相关,请在下面描述一下(Is your feature request related to a problem? Please describe.) 插件市场有一些vscode插件找不到,还有本地自己开发的插件测试等等都想用到从本地导入插件的功能,目前只能通过插件市场

描述你预期的功能表现(Describe the solution you'd like) 增加导入本地插件的功能,类似于theia

image 类似的位置加个加载按钮 描述你考虑过的替代方案(Describe alternatives you've considered)

补充信息(Additional context)

erha19 commented 1 year ago

这里可以考虑引入 InlineActionBar 组件来引入顶部菜单 (自定义一个新的 MenuId 注册位置) https://github.com/opensumi/core/blob/0df83bd0de4b58f582dda58163ea68edffa382d9/packages/core-browser/src/components/actions/index.tsx#465

同时对于文件的选择可以通过 IWindowDialogService 去调用文件窗口获取本地插件路径,进而实现对 .vsix , .zip 插件的解压及解析实现该功能。