@opensumi/ide-core-browser 2.21.6 → 2.21.7-next-1670485458.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (317) hide show
  1. package/lib/components/actions/index.d.ts.map +1 -1
  2. package/lib/components/actions/index.js +2 -22
  3. package/lib/components/actions/index.js.map +1 -1
  4. package/lib/components/tree/tree.module.less +1 -0
  5. package/lib/contextkey/testing.d.ts +1 -0
  6. package/lib/contextkey/testing.d.ts.map +1 -1
  7. package/lib/contextkey/testing.js +2 -1
  8. package/lib/contextkey/testing.js.map +1 -1
  9. package/lib/menu/next/menu.contrib.interface.d.ts +3 -2
  10. package/lib/menu/next/menu.contrib.interface.d.ts.map +1 -1
  11. package/lib/menu/next/menu.contrib.interface.js.map +1 -1
  12. package/lib/preferences/preference-configurations.js +1 -1
  13. package/lib/preferences/preference-configurations.js.map +1 -1
  14. package/lib/react-providers/config-provider.d.ts +4 -0
  15. package/lib/react-providers/config-provider.d.ts.map +1 -1
  16. package/lib/react-providers/config-provider.js.map +1 -1
  17. package/lib/services/storage-service.d.ts.map +1 -1
  18. package/lib/services/storage-service.js +7 -1
  19. package/lib/services/storage-service.js.map +1 -1
  20. package/lib/utils/label.d.ts.map +1 -1
  21. package/lib/utils/label.js +16 -9
  22. package/lib/utils/label.js.map +1 -1
  23. package/package.json +7 -6
  24. package/src/application/application-state-service.ts +54 -0
  25. package/src/application/application.service.ts +51 -0
  26. package/src/application/index.ts +2 -0
  27. package/src/authentication/authentication.contribution.ts +35 -0
  28. package/src/authentication/authentication.service.ts +517 -0
  29. package/src/bootstrap/app.ts +745 -0
  30. package/src/bootstrap/app.view.tsx +88 -0
  31. package/src/bootstrap/connection.ts +116 -0
  32. package/src/bootstrap/index.ts +3 -0
  33. package/src/bootstrap/inner-providers.ts +297 -0
  34. package/src/bootstrap/lifecycle.service.ts +19 -0
  35. package/src/browser-module.ts +24 -0
  36. package/src/common/common.command.ts +977 -0
  37. package/src/common/common.contribution.ts +343 -0
  38. package/src/common/common.define.ts +55 -0
  39. package/src/common/common.module.ts +33 -0
  40. package/src/common/common.storage.ts +22 -0
  41. package/src/common/container-id.ts +12 -0
  42. package/src/common/index.ts +4 -0
  43. package/src/components/actions/index.tsx +486 -0
  44. package/src/components/actions/placements.ts +47 -0
  45. package/src/components/actions/styles.module.less +144 -0
  46. package/src/components/badge/index.tsx +1 -0
  47. package/src/components/index.ts +26 -0
  48. package/src/components/layout/box-panel.tsx +88 -0
  49. package/src/components/layout/default-layout.tsx +61 -0
  50. package/src/components/layout/index.ts +4 -0
  51. package/src/components/layout/layout.ts +80 -0
  52. package/src/components/layout/split-panel.service.ts +56 -0
  53. package/src/components/layout/split-panel.tsx +296 -0
  54. package/src/components/layout/styles.module.less +21 -0
  55. package/src/components/loading/index.ts +1 -0
  56. package/src/components/loading/loading.less +14 -0
  57. package/src/components/loading/loading.view.tsx +7 -0
  58. package/src/components/loading/media/loading-dark.svg +52 -0
  59. package/src/components/loading/media/loading-hc.svg +52 -0
  60. package/src/components/loading/media/loading.svg +52 -0
  61. package/src/components/popover/styles.module.less +81 -0
  62. package/src/components/portal/index.tsx +13 -0
  63. package/src/components/progressbar/index.tsx +16 -0
  64. package/src/components/progressbar/styles.module.less +31 -0
  65. package/src/components/recycle-tree/index.ts +1 -0
  66. package/src/components/recycle-tree/recycle-tree.view.tsx +368 -0
  67. package/src/components/resize/resize.module.less +78 -0
  68. package/src/components/resize/resize.tsx +663 -0
  69. package/src/components/scroll/index.tsx +386 -0
  70. package/src/components/scroll/scroll.module.less +108 -0
  71. package/src/components/scrollbar/index.ts +1 -0
  72. package/src/components/scrollbar/scrollbar.less +36 -0
  73. package/src/components/scrollbar/scrollbar.view.ts +8 -0
  74. package/src/components/select/index.tsx +12 -0
  75. package/src/components/select/styles.less +6 -0
  76. package/src/components/tree/index.ts +3 -0
  77. package/src/components/tree/tree-node.view.tsx +546 -0
  78. package/src/components/tree/tree.module.less +297 -0
  79. package/src/components/tree/tree.view.tsx +486 -0
  80. package/src/context-key.ts +48 -0
  81. package/src/contextkey/dialog.ts +3 -0
  82. package/src/contextkey/explorer.ts +26 -0
  83. package/src/contextkey/index.ts +6 -0
  84. package/src/contextkey/outline.ts +4 -0
  85. package/src/contextkey/resource.ts +61 -0
  86. package/src/contextkey/terminal.ts +7 -0
  87. package/src/contextkey/testing.ts +9 -0
  88. package/src/contextkey/workspace.ts +7 -0
  89. package/src/core-preferences.ts +318 -0
  90. package/src/dom/index.ts +176 -0
  91. package/src/encoding-registry.ts +83 -0
  92. package/src/extensions/extensions-point.service.ts +78 -0
  93. package/src/extensions/index.ts +3 -0
  94. package/src/extensions/schema/browserViews.ts +96 -0
  95. package/src/extensions/schema/menu.ts +245 -0
  96. package/src/extensions/schema/opensumiExtensionPackageSchema.ts +12 -0
  97. package/src/extensions/schema/toolbar.ts +338 -0
  98. package/src/extensions/schema/vscodeExtensionPackageSchema.ts +330 -0
  99. package/src/fs/index.ts +12 -0
  100. package/src/hash-calculate/hash-calculate.contribution.ts +19 -0
  101. package/src/index.ts +42 -0
  102. package/src/keybinding/index.ts +1 -0
  103. package/src/keybinding/keybinding.ts +908 -0
  104. package/src/keyboard/index.ts +3 -0
  105. package/src/keyboard/keyboard-layout-provider.ts +412 -0
  106. package/src/keyboard/keyboard-layout-service.ts +449 -0
  107. package/src/keyboard/keys.ts +748 -0
  108. package/src/keyboard/layouts/_.contribution.ts +24 -0
  109. package/src/keyboard/layouts/cz.win.ts +168 -0
  110. package/src/keyboard/layouts/de-swiss.win.ts +168 -0
  111. package/src/keyboard/layouts/de.darwin.ts +131 -0
  112. package/src/keyboard/layouts/de.linux.ts +186 -0
  113. package/src/keyboard/layouts/de.win.ts +168 -0
  114. package/src/keyboard/layouts/dk.win.ts +168 -0
  115. package/src/keyboard/layouts/dvorak.darwin.ts +131 -0
  116. package/src/keyboard/layouts/en-belgian.win.ts +168 -0
  117. package/src/keyboard/layouts/en-ext.darwin.ts +131 -0
  118. package/src/keyboard/layouts/en-in.win.ts +168 -0
  119. package/src/keyboard/layouts/en-intl.darwin.ts +131 -0
  120. package/src/keyboard/layouts/en-intl.win.ts +168 -0
  121. package/src/keyboard/layouts/en-uk.darwin.ts +131 -0
  122. package/src/keyboard/layouts/en-uk.win.ts +168 -0
  123. package/src/keyboard/layouts/en.darwin.ts +139 -0
  124. package/src/keyboard/layouts/en.linux.ts +186 -0
  125. package/src/keyboard/layouts/en.win.ts +173 -0
  126. package/src/keyboard/layouts/es-latin.win.ts +168 -0
  127. package/src/keyboard/layouts/es.darwin.ts +131 -0
  128. package/src/keyboard/layouts/es.linux.ts +186 -0
  129. package/src/keyboard/layouts/es.win.ts +168 -0
  130. package/src/keyboard/layouts/fr.darwin.ts +131 -0
  131. package/src/keyboard/layouts/fr.linux.ts +186 -0
  132. package/src/keyboard/layouts/fr.win.ts +168 -0
  133. package/src/keyboard/layouts/hu.win.ts +168 -0
  134. package/src/keyboard/layouts/it.darwin.ts +131 -0
  135. package/src/keyboard/layouts/it.win.ts +168 -0
  136. package/src/keyboard/layouts/jp-roman.darwin.ts +131 -0
  137. package/src/keyboard/layouts/jp.darwin.ts +131 -0
  138. package/src/keyboard/layouts/ko.darwin.ts +131 -0
  139. package/src/keyboard/layouts/layout.contribution.darwin.ts +23 -0
  140. package/src/keyboard/layouts/layout.contribution.linux.ts +12 -0
  141. package/src/keyboard/layouts/layout.contribution.ts +9 -0
  142. package/src/keyboard/layouts/layout.contribution.win.ts +29 -0
  143. package/src/keyboard/layouts/no.win.ts +168 -0
  144. package/src/keyboard/layouts/pl.darwin.ts +131 -0
  145. package/src/keyboard/layouts/pl.win.ts +168 -0
  146. package/src/keyboard/layouts/pt-br.win.ts +169 -0
  147. package/src/keyboard/layouts/pt.darwin.ts +131 -0
  148. package/src/keyboard/layouts/pt.win.ts +168 -0
  149. package/src/keyboard/layouts/ru.darwin.ts +131 -0
  150. package/src/keyboard/layouts/ru.linux.ts +186 -0
  151. package/src/keyboard/layouts/ru.win.ts +168 -0
  152. package/src/keyboard/layouts/sv.darwin.ts +131 -0
  153. package/src/keyboard/layouts/sv.win.ts +168 -0
  154. package/src/keyboard/layouts/thai.win.ts +168 -0
  155. package/src/keyboard/layouts/tr.win.ts +168 -0
  156. package/src/keyboard/layouts/zh-hans.darwin.ts +131 -0
  157. package/src/layout/accordion/tab-bar-toolbar.tsx +59 -0
  158. package/src/layout/accordion/view-context-key.registry.ts +34 -0
  159. package/src/layout/constants.ts +7 -0
  160. package/src/layout/index.ts +5 -0
  161. package/src/layout/layout-hooks.ts +68 -0
  162. package/src/layout/layout-state.ts +107 -0
  163. package/src/layout/layout.interface.ts +101 -0
  164. package/src/layout/layout.ts +80 -0
  165. package/src/layout/view-id.ts +18 -0
  166. package/src/logger/browser-logger.ts +51 -0
  167. package/src/logger/index.ts +1 -0
  168. package/src/markdown/index.tsx +62 -0
  169. package/src/menu/next/base.ts +513 -0
  170. package/src/menu/next/ctxmenu-service.ts +188 -0
  171. package/src/menu/next/index.ts +10 -0
  172. package/src/menu/next/menu-id.ts +86 -0
  173. package/src/menu/next/menu-service.ts +252 -0
  174. package/src/menu/next/menu-util.ts +77 -0
  175. package/src/menu/next/menu.contrib.interface.ts +79 -0
  176. package/src/menu/next/menu.interface.ts +253 -0
  177. package/src/menu/next/menubar-service.ts +211 -0
  178. package/src/menu/next/renderer/ctxmenu/base.ts +18 -0
  179. package/src/menu/next/renderer/ctxmenu/browser.ts +45 -0
  180. package/src/menu/next/renderer/ctxmenu/electron.ts +207 -0
  181. package/src/menu/next/toolbar-action.service.ts +132 -0
  182. package/src/monaco/index.ts +128 -0
  183. package/src/opener/command-opener.ts +42 -0
  184. package/src/opener/default-opener.ts +31 -0
  185. package/src/opener/http-opener.ts +25 -0
  186. package/src/opener/index.ts +19 -0
  187. package/src/opener/opener.contribution.ts +57 -0
  188. package/src/opener/opener.service.ts +66 -0
  189. package/src/preferences/early-preferences.ts +117 -0
  190. package/src/preferences/index.ts +9 -0
  191. package/src/preferences/preference-configurations.ts +77 -0
  192. package/src/preferences/preference-contribution.ts +401 -0
  193. package/src/preferences/preference-provider.ts +414 -0
  194. package/src/preferences/preference-proxy.ts +292 -0
  195. package/src/preferences/preference-scope.ts +3 -0
  196. package/src/preferences/preference-service.ts +571 -0
  197. package/src/preferences/settings.ts +53 -0
  198. package/src/preferences/types.ts +111 -0
  199. package/src/progress/index.ts +58 -0
  200. package/src/progress/progress-bar.tsx +22 -0
  201. package/src/progress/progress-indicator.ts +90 -0
  202. package/src/progress/progress.module.less +46 -0
  203. package/src/progress/progress.service.tsx +429 -0
  204. package/src/quick-open/index.ts +655 -0
  205. package/src/quick-open/recent-files.ts +68 -0
  206. package/src/raw-context-key.ts +116 -0
  207. package/src/react-hooks/event.tsx +80 -0
  208. package/src/react-hooks/hot-key.tsx +58 -0
  209. package/src/react-hooks/index.ts +3 -0
  210. package/src/react-hooks/injectable-hooks.tsx +35 -0
  211. package/src/react-hooks/portal-hooks.tsx +38 -0
  212. package/src/react-providers/config-provider.tsx +263 -0
  213. package/src/react-providers/index.tsx +2 -0
  214. package/src/react-providers/slot.module.less +19 -0
  215. package/src/react-providers/slot.tsx +242 -0
  216. package/src/services/clipboard.service.ts +97 -0
  217. package/src/services/credentials-service.ts +91 -0
  218. package/src/services/crypto-service.ts +23 -0
  219. package/src/services/external-uri.service.ts +68 -0
  220. package/src/services/index.ts +7 -0
  221. package/src/services/label-service.ts +386 -0
  222. package/src/services/status-bar-service.ts +108 -0
  223. package/src/services/storage-service.ts +197 -0
  224. package/src/style/codicons/README.md +22 -0
  225. package/src/style/codicons/codicon-animations.css +15 -0
  226. package/src/style/codicons/generator.js +15 -0
  227. package/src/style/entry.less +25 -0
  228. package/src/style/icon/fileicons/file-default.svg +1 -0
  229. package/src/style/icon/fileicons/folder-default.svg +1 -0
  230. package/src/style/icon/fileicons.less +20 -0
  231. package/src/style/icon/icon.ts +543 -0
  232. package/src/style/icon/ide-iconfont.ts +13 -0
  233. package/src/style/icon/index.less +54 -0
  234. package/src/style/icon/seti.woff +0 -0
  235. package/src/style/icon/symbol-icons/boolean-dark.svg +3 -0
  236. package/src/style/icon/symbol-icons/boolean-light.svg +3 -0
  237. package/src/style/icon/symbol-icons/class-dark.svg +3 -0
  238. package/src/style/icon/symbol-icons/class-light.svg +3 -0
  239. package/src/style/icon/symbol-icons/constant-dark.svg +4 -0
  240. package/src/style/icon/symbol-icons/constant-light.svg +4 -0
  241. package/src/style/icon/symbol-icons/enumerator-dark.svg +3 -0
  242. package/src/style/icon/symbol-icons/enumerator-item-dark.svg +3 -0
  243. package/src/style/icon/symbol-icons/enumerator-item-light.svg +3 -0
  244. package/src/style/icon/symbol-icons/enumerator-light.svg +3 -0
  245. package/src/style/icon/symbol-icons/event-dark.svg +3 -0
  246. package/src/style/icon/symbol-icons/event-light.svg +3 -0
  247. package/src/style/icon/symbol-icons/field-dark.svg +3 -0
  248. package/src/style/icon/symbol-icons/field-light.svg +3 -0
  249. package/src/style/icon/symbol-icons/file-dark.svg +3 -0
  250. package/src/style/icon/symbol-icons/file-light.svg +3 -0
  251. package/src/style/icon/symbol-icons/indexer-dark.svg +3 -0
  252. package/src/style/icon/symbol-icons/indexer-light.svg +3 -0
  253. package/src/style/icon/symbol-icons/interface-dark.svg +3 -0
  254. package/src/style/icon/symbol-icons/interface-light.svg +3 -0
  255. package/src/style/icon/symbol-icons/keyword-dark.svg +3 -0
  256. package/src/style/icon/symbol-icons/keyword-light.svg +3 -0
  257. package/src/style/icon/symbol-icons/method-dark.svg +3 -0
  258. package/src/style/icon/symbol-icons/method-light.svg +3 -0
  259. package/src/style/icon/symbol-icons/namespace-dark.svg +3 -0
  260. package/src/style/icon/symbol-icons/namespace-light.svg +3 -0
  261. package/src/style/icon/symbol-icons/numeric-dark.svg +3 -0
  262. package/src/style/icon/symbol-icons/numeric-light.svg +3 -0
  263. package/src/style/icon/symbol-icons/operator-dark.svg +3 -0
  264. package/src/style/icon/symbol-icons/operator-light.svg +3 -0
  265. package/src/style/icon/symbol-icons/property-dark.svg +3 -0
  266. package/src/style/icon/symbol-icons/property-light.svg +3 -0
  267. package/src/style/icon/symbol-icons/snippet-dark.svg +3 -0
  268. package/src/style/icon/symbol-icons/snippet-light.svg +3 -0
  269. package/src/style/icon/symbol-icons/string-dark.svg +3 -0
  270. package/src/style/icon/symbol-icons/string-light.svg +3 -0
  271. package/src/style/icon/symbol-icons/structure-dark.svg +3 -0
  272. package/src/style/icon/symbol-icons/structure-light.svg +3 -0
  273. package/src/style/icon/symbol-icons/symbol-icons.css +284 -0
  274. package/src/style/icon/symbol-icons/template-dark.svg +3 -0
  275. package/src/style/icon/symbol-icons/template-light.svg +3 -0
  276. package/src/style/icon/symbol-icons/variable-dark.svg +3 -0
  277. package/src/style/icon/symbol-icons/variable-light.svg +3 -0
  278. package/src/style/icon.less +8 -0
  279. package/src/style/index.less +14 -0
  280. package/src/style/monaco-override.less +116 -0
  281. package/src/style/normalize.less +92 -0
  282. package/src/style/octicons/octicons-cdn.css +720 -0
  283. package/src/style/octicons/octicons.css +714 -0
  284. package/src/style/octicons/octicons.html +1882 -0
  285. package/src/style/octicons/octicons.svg +582 -0
  286. package/src/style/octicons/octicons.ttf +0 -0
  287. package/src/style/override.less +97 -0
  288. package/src/style/toolbar.less +199 -0
  289. package/src/style/utilities.less +8 -0
  290. package/src/style/variable.less +8 -0
  291. package/src/terminal/index.ts +7 -0
  292. package/src/toolbar/components/auto-complete.tsx +0 -0
  293. package/src/toolbar/components/button.tsx +440 -0
  294. package/src/toolbar/components/index.ts +2 -0
  295. package/src/toolbar/components/select.tsx +189 -0
  296. package/src/toolbar/index.ts +3 -0
  297. package/src/toolbar/toolbar.popover.registry.ts +32 -0
  298. package/src/toolbar/toolbar.registry.ts +352 -0
  299. package/src/toolbar/toolbar.tsx +710 -0
  300. package/src/toolbar/types.ts +383 -0
  301. package/src/tree/index.ts +3 -0
  302. package/src/tree/tree-expansion.ts +25 -0
  303. package/src/tree/tree-selection.ts +89 -0
  304. package/src/tree/tree.ts +294 -0
  305. package/src/utils/create-overlay.tsx +53 -0
  306. package/src/utils/electron.ts +92 -0
  307. package/src/utils/env.ts +26 -0
  308. package/src/utils/icon.ts +13 -0
  309. package/src/utils/index.ts +7 -0
  310. package/src/utils/json.ts +251 -0
  311. package/src/utils/label.tsx +36 -0
  312. package/src/utils/parse.ts +72 -0
  313. package/src/utils/react-hooks.ts +118 -0
  314. package/src/variable/index.ts +1 -0
  315. package/src/variable/variable.ts +84 -0
  316. package/src/window/index.ts +34 -0
  317. package/src/window/window.service.ts +100 -0
@@ -0,0 +1,88 @@
1
+ import React from 'react';
2
+ import ReactDom from 'react-dom';
3
+
4
+ import { ComponentContextProvider, IIconResourceOptions } from '@opensumi/ide-components';
5
+ import { getDebugLogger, IEventBus, URI, localize } from '@opensumi/ide-core-common';
6
+
7
+ import { IClientApp } from '../browser-module';
8
+ import { DefaultLayout } from '../components/layout/default-layout';
9
+ import { ResizeEvent } from '../layout';
10
+ import { ConfigProvider } from '../react-providers/config-provider';
11
+ import { allSlot } from '../react-providers/slot';
12
+ import { LabelService } from '../services';
13
+ import { getIcon } from '../style/icon/icon';
14
+
15
+ export interface AppProps {
16
+ app: IClientApp;
17
+ main: React.ComponentType;
18
+ overlays?: React.ComponentType[];
19
+ }
20
+
21
+ export function App(props: AppProps) {
22
+ const injector = props.app.injector;
23
+ const eventBus: IEventBus = injector.get(IEventBus);
24
+ const labelService: LabelService = injector.get(LabelService);
25
+ const getResourceIcon = React.useCallback(
26
+ (uri: string, options: IIconResourceOptions) => labelService.getIcon(URI.parse(uri), options),
27
+ [],
28
+ );
29
+ React.useEffect(() => {
30
+ let lastFrame: number | null;
31
+ const handle = () => {
32
+ if (lastFrame) {
33
+ window.cancelAnimationFrame(lastFrame);
34
+ }
35
+ lastFrame = window.requestAnimationFrame(() => {
36
+ lastFrame = null;
37
+ allSlot.forEach((item) => {
38
+ eventBus.fire(new ResizeEvent({ slotLocation: item.slot }));
39
+ });
40
+ });
41
+ };
42
+ window.addEventListener('resize', handle);
43
+ return () => {
44
+ window.removeEventListener('resize', handle);
45
+ };
46
+ }, []);
47
+ return (
48
+ <ComponentContextProvider value={{ getIcon, localize, getResourceIcon }}>
49
+ <ConfigProvider value={props.app.config}>
50
+ {<props.main />}
51
+ {props.overlays && props.overlays.map((Component, index) => <Component key={index} />)}
52
+ </ConfigProvider>
53
+ </ComponentContextProvider>
54
+ );
55
+ }
56
+
57
+ export type IAppRenderer = (app: React.ReactElement) => Promise<void>;
58
+
59
+ const defaultAppRender =
60
+ (dom: HTMLElement, onDidRendered?: () => void): IAppRenderer =>
61
+ (app) =>
62
+ new Promise((resolve) => {
63
+ ReactDom.render(app, dom, () => {
64
+ if (onDidRendered && typeof onDidRendered === 'function') {
65
+ onDidRendered();
66
+ }
67
+ resolve();
68
+ });
69
+ });
70
+
71
+ export function renderClientApp(app: IClientApp, container: HTMLElement | IAppRenderer) {
72
+ const Layout = app.config.layoutComponent || DefaultLayout;
73
+ const overlayComponents = app.browserModules
74
+ .filter((module) => module.isOverlay)
75
+ .map((module) => {
76
+ if (!module.component) {
77
+ getDebugLogger().warn('Overlay module does not have component', module);
78
+ return () => <></>;
79
+ }
80
+ return module.component;
81
+ });
82
+
83
+ const IdeApp = <App app={app} main={Layout} overlays={overlayComponents} />;
84
+
85
+ const render = typeof container === 'function' ? container : defaultAppRender(container, app.config.didRendered);
86
+
87
+ return render(IdeApp);
88
+ }
@@ -0,0 +1,116 @@
1
+ import { Injector, Provider } from '@opensumi/di';
2
+ import { RPCServiceCenter, initRPCService, RPCMessageConnection } from '@opensumi/ide-connection';
3
+ import { WSChannelHandler } from '@opensumi/ide-connection/lib/browser';
4
+ import { createWebSocketConnection } from '@opensumi/ide-connection/lib/common/message';
5
+ import {
6
+ getDebugLogger,
7
+ IReporterService,
8
+ BasicModule,
9
+ BrowserConnectionCloseEvent,
10
+ BrowserConnectionOpenEvent,
11
+ BrowserConnectionErrorEvent,
12
+ IEventBus,
13
+ UrlProvider,
14
+ } from '@opensumi/ide-core-common';
15
+ import { BackService } from '@opensumi/ide-core-common/lib/module';
16
+
17
+ import { ClientAppStateService } from '../application';
18
+
19
+ import { ModuleConstructor } from './app';
20
+
21
+ // 建立连接之前,无法使用落盘的 logger
22
+ // 初始化时使用不落盘的 logger
23
+ const initialLogger = getDebugLogger();
24
+
25
+ export async function createClientConnection2(
26
+ injector: Injector,
27
+ modules: ModuleConstructor[],
28
+ wsPath: UrlProvider,
29
+ onReconnect: () => void,
30
+ protocols?: string[],
31
+ clientId?: string,
32
+ ) {
33
+ const reporterService: IReporterService = injector.get(IReporterService);
34
+ const eventBus = injector.get(IEventBus);
35
+ const stateService = injector.get(ClientAppStateService);
36
+
37
+ const wsChannelHandler = new WSChannelHandler(wsPath, initialLogger, protocols, clientId);
38
+ wsChannelHandler.setReporter(reporterService);
39
+ wsChannelHandler.connection.addEventListener('open', async () => {
40
+ await stateService.reachedState('core_module_initialized');
41
+ eventBus.fire(new BrowserConnectionOpenEvent());
42
+ });
43
+
44
+ wsChannelHandler.connection.addEventListener('close', async () => {
45
+ await stateService.reachedState('core_module_initialized');
46
+ eventBus.fire(new BrowserConnectionCloseEvent());
47
+ });
48
+
49
+ wsChannelHandler.connection.addEventListener('error', async (e) => {
50
+ await stateService.reachedState('core_module_initialized');
51
+ eventBus.fire(new BrowserConnectionErrorEvent(e));
52
+ });
53
+
54
+ await wsChannelHandler.initHandler();
55
+
56
+ injector.addProviders({
57
+ token: WSChannelHandler,
58
+ useValue: wsChannelHandler,
59
+ });
60
+ // 重连不会执行后面的逻辑
61
+ const channel = await wsChannelHandler.openChannel('RPCService');
62
+ channel.onReOpen(() => onReconnect());
63
+
64
+ bindConnectionService(injector, modules, createWebSocketConnection(channel));
65
+ }
66
+
67
+ export async function bindConnectionService(
68
+ injector: Injector,
69
+ modules: ModuleConstructor[],
70
+ connection: RPCMessageConnection,
71
+ ) {
72
+ const clientCenter = new RPCServiceCenter();
73
+ clientCenter.setConnection(connection);
74
+
75
+ connection.onClose(() => {
76
+ clientCenter.removeConnection(connection);
77
+ });
78
+
79
+ const { getRPCService } = initRPCService(clientCenter);
80
+
81
+ const backServiceArr: BackService[] = [];
82
+ // 存放依赖前端后端服务,后端服务实例化后再去实例化这些 token
83
+ const dependClientBackServices: BackService[] = [];
84
+
85
+ for (const module of modules) {
86
+ const moduleInstance = injector.get(module) as BasicModule;
87
+ if (moduleInstance.backServices) {
88
+ for (const backService of moduleInstance.backServices) {
89
+ backServiceArr.push(backService);
90
+ }
91
+ }
92
+ }
93
+
94
+ for (const backService of backServiceArr) {
95
+ const { servicePath } = backService;
96
+ const rpcService = getRPCService(servicePath);
97
+
98
+ const injectService = {
99
+ token: servicePath,
100
+ useValue: rpcService,
101
+ } as Provider;
102
+
103
+ injector.addProviders(injectService);
104
+ // 这里不进行初始化,先收集依赖,等所有 servicePath 实例化完后在做实例化,防止循环依赖
105
+ if (backService.clientToken) {
106
+ dependClientBackServices.push(backService);
107
+ }
108
+ }
109
+
110
+ for (const backService of dependClientBackServices) {
111
+ const { servicePath } = backService;
112
+ const rpcService = getRPCService(servicePath);
113
+ const clientService = injector.get(backService.clientToken!);
114
+ rpcService.onRequestService(clientService);
115
+ }
116
+ }
@@ -0,0 +1,3 @@
1
+ export * from './app';
2
+ export * from './app.view';
3
+ export * from './connection';
@@ -0,0 +1,297 @@
1
+ import { Provider, Injector } from '@opensumi/di';
2
+ import {
3
+ IEventBus,
4
+ EventBusImpl,
5
+ CommandService,
6
+ CommandRegistryImpl,
7
+ CommandContribution,
8
+ createContributionProvider,
9
+ CommandServiceImpl,
10
+ CommandRegistry,
11
+ IElectronMainMenuService,
12
+ ReporterMetadata,
13
+ IReporter,
14
+ IReporterService,
15
+ DefaultReporter,
16
+ ReporterService,
17
+ REPORT_HOST,
18
+ IProblemPatternRegistry,
19
+ ProblemPatternRegistryImpl,
20
+ IProblemMatcherRegistry,
21
+ ProblemMatchersRegistryImpl,
22
+ ITaskDefinitionRegistry,
23
+ TaskDefinitionRegistryImpl,
24
+ IApplicationService,
25
+ IAuthenticationService,
26
+ AppLifeCycleServiceToken,
27
+ IExtensionsSchemaService,
28
+ } from '@opensumi/ide-core-common';
29
+ import {
30
+ IElectronMainUIService,
31
+ IElectronMainLifeCycleService,
32
+ IElectronURLService,
33
+ } from '@opensumi/ide-core-common/lib/electron';
34
+ import {
35
+ HashCalculateServiceImpl,
36
+ IHashCalculateService,
37
+ } from '@opensumi/ide-core-common/lib/hash-calculate/hash-calculate';
38
+ import {
39
+ KeyboardNativeLayoutService,
40
+ KeyboardLayoutChangeNotifierService,
41
+ } from '@opensumi/ide-core-common/lib/keyboard/keyboard-layout-provider';
42
+
43
+ import { ClientAppStateService } from '../application/application-state-service';
44
+ import { ApplicationService } from '../application/application.service';
45
+ import { AuthenticationService } from '../authentication/authentication.service';
46
+ import { ClientAppContribution } from '../common';
47
+ import { ExtensionsPointServiceImpl } from '../extensions';
48
+ import { FsProviderContribution } from '../fs';
49
+ import { KeybindingContribution, KeybindingService, KeybindingRegistryImpl, KeybindingRegistry } from '../keybinding';
50
+ import { BrowserKeyboardLayoutImpl, KeyValidator } from '../keyboard';
51
+ import { ComponentRegistry, ComponentRegistryImpl, ComponentContribution, TabBarToolbarContribution } from '../layout';
52
+ import { Logger, ILogger } from '../logger';
53
+ import {
54
+ AbstractMenuService,
55
+ MenuServiceImpl,
56
+ AbstractMenubarService,
57
+ MenubarServiceImpl,
58
+ IMenuRegistry,
59
+ MenuRegistryImpl,
60
+ MenuContribution,
61
+ AbstractContextMenuService,
62
+ ContextMenuServiceImpl,
63
+ } from '../menu/next';
64
+ import { ICtxMenuRenderer } from '../menu/next/renderer/ctxmenu/base';
65
+ import { BrowserCtxMenuRenderer } from '../menu/next/renderer/ctxmenu/browser';
66
+ import {
67
+ ElectronCtxMenuRenderer,
68
+ ElectronMenuBarService,
69
+ IElectronMenuFactory,
70
+ IElectronMenuBarService,
71
+ ElectronMenuFactory,
72
+ } from '../menu/next/renderer/ctxmenu/electron';
73
+ import { ToolbarActionService, IToolbarActionService } from '../menu/next/toolbar-action.service';
74
+ import { IOpenerService } from '../opener';
75
+ import { OpenerService } from '../opener/opener.service';
76
+ import { PreferenceContribution } from '../preferences';
77
+ import { IProgressService } from '../progress';
78
+ import { ProgressService } from '../progress/progress.service';
79
+ import { AppConfig } from '../react-providers/config-provider';
80
+ import { SlotRendererContribution } from '../react-providers/slot';
81
+ import { CredentialsService, ICredentialsService, CryptoService, ICryptoService } from '../services';
82
+ import { IClipboardService, BrowserClipboardService } from '../services/clipboard.service';
83
+ import { IExternalUriService, ExternalUriService } from '../services/external-uri.service';
84
+ import { IToolbarPopoverRegistry, IToolbarRegistry, ToolBarActionContribution } from '../toolbar';
85
+ import { ToolbarPopoverRegistry } from '../toolbar/toolbar.popover.registry';
86
+ import { NextToolbarRegistryImpl, ToolbarClientAppContribution } from '../toolbar/toolbar.registry';
87
+ import { useNativeContextMenu } from '../utils';
88
+ import { createElectronMainApi } from '../utils/electron';
89
+ import { VariableRegistry, VariableRegistryImpl, VariableContribution } from '../variable';
90
+ import { IWindowService } from '../window';
91
+ import { WindowService } from '../window/window.service';
92
+
93
+ import { AppLifeCycleService } from './lifecycle.service';
94
+
95
+ export function injectInnerProviders(injector: Injector) {
96
+ // 生成 ContributionProvider
97
+ createContributionProvider(injector, ClientAppContribution);
98
+ createContributionProvider(injector, CommandContribution);
99
+ createContributionProvider(injector, FsProviderContribution);
100
+ createContributionProvider(injector, KeybindingContribution);
101
+ createContributionProvider(injector, MenuContribution);
102
+ createContributionProvider(injector, ComponentContribution);
103
+ createContributionProvider(injector, SlotRendererContribution);
104
+ createContributionProvider(injector, PreferenceContribution);
105
+ createContributionProvider(injector, VariableContribution);
106
+ createContributionProvider(injector, TabBarToolbarContribution);
107
+ createContributionProvider(injector, ToolBarActionContribution);
108
+
109
+ // 一些内置抽象实现
110
+ const providers: Provider[] = [
111
+ {
112
+ token: IEventBus,
113
+ useClass: EventBusImpl,
114
+ },
115
+ {
116
+ token: CommandService,
117
+ useClass: CommandServiceImpl,
118
+ },
119
+ {
120
+ token: CommandRegistry,
121
+ useClass: CommandRegistryImpl,
122
+ },
123
+ {
124
+ token: KeybindingRegistry,
125
+ useClass: KeybindingRegistryImpl,
126
+ },
127
+ {
128
+ token: KeybindingService,
129
+ useFactory: (inject: Injector) => inject.get(KeybindingRegistry),
130
+ },
131
+ {
132
+ token: KeyboardNativeLayoutService,
133
+ useClass: BrowserKeyboardLayoutImpl,
134
+ },
135
+ {
136
+ token: KeyboardLayoutChangeNotifierService,
137
+ useFactory: (inject: Injector) => inject.get(KeyboardNativeLayoutService),
138
+ },
139
+ {
140
+ token: KeyValidator,
141
+ useFactory: (inject: Injector) => inject.get(KeyboardNativeLayoutService),
142
+ },
143
+ ClientAppStateService,
144
+ {
145
+ token: ILogger,
146
+ useClass: Logger,
147
+ },
148
+ {
149
+ token: ComponentRegistry,
150
+ useClass: ComponentRegistryImpl,
151
+ },
152
+ {
153
+ token: VariableRegistry,
154
+ useClass: VariableRegistryImpl,
155
+ },
156
+ // next version menu
157
+ {
158
+ token: AbstractMenuService,
159
+ useClass: MenuServiceImpl,
160
+ },
161
+ {
162
+ token: AbstractContextMenuService,
163
+ useClass: ContextMenuServiceImpl,
164
+ },
165
+ {
166
+ token: IMenuRegistry,
167
+ useClass: MenuRegistryImpl,
168
+ },
169
+ {
170
+ token: IToolbarActionService,
171
+ useClass: ToolbarActionService,
172
+ },
173
+ {
174
+ token: ICtxMenuRenderer,
175
+ useClass: useNativeContextMenu() ? ElectronCtxMenuRenderer : BrowserCtxMenuRenderer,
176
+ },
177
+ {
178
+ token: AbstractMenubarService,
179
+ useClass: MenubarServiceImpl,
180
+ },
181
+ {
182
+ token: IReporter,
183
+ useClass: DefaultReporter,
184
+ },
185
+ {
186
+ token: IReporterService,
187
+ useClass: ReporterService,
188
+ },
189
+ {
190
+ token: ReporterMetadata,
191
+ useValue: {
192
+ host: REPORT_HOST.BROWSER,
193
+ },
194
+ },
195
+ {
196
+ token: IProgressService,
197
+ useClass: ProgressService,
198
+ },
199
+ {
200
+ token: IToolbarRegistry,
201
+ useClass: NextToolbarRegistryImpl,
202
+ },
203
+ {
204
+ token: IToolbarPopoverRegistry,
205
+ useClass: ToolbarPopoverRegistry,
206
+ },
207
+ ToolbarClientAppContribution,
208
+ {
209
+ token: IProblemPatternRegistry,
210
+ useClass: ProblemPatternRegistryImpl,
211
+ },
212
+ {
213
+ token: IProblemMatcherRegistry,
214
+ useClass: ProblemMatchersRegistryImpl,
215
+ },
216
+ {
217
+ token: ITaskDefinitionRegistry,
218
+ useClass: TaskDefinitionRegistryImpl,
219
+ },
220
+ {
221
+ token: IOpenerService,
222
+ useClass: OpenerService,
223
+ },
224
+ {
225
+ token: IWindowService,
226
+ useClass: WindowService,
227
+ },
228
+ {
229
+ token: IApplicationService,
230
+ useClass: ApplicationService,
231
+ },
232
+ {
233
+ token: IClipboardService,
234
+ useClass: BrowserClipboardService,
235
+ },
236
+ {
237
+ token: IExternalUriService,
238
+ useClass: ExternalUriService,
239
+ },
240
+ {
241
+ token: IAuthenticationService,
242
+ useClass: AuthenticationService,
243
+ },
244
+ {
245
+ token: ICryptoService,
246
+ useClass: CryptoService,
247
+ },
248
+ {
249
+ token: ICredentialsService,
250
+ useClass: CredentialsService,
251
+ },
252
+ {
253
+ token: IHashCalculateService,
254
+ useClass: HashCalculateServiceImpl,
255
+ },
256
+ {
257
+ token: IExtensionsSchemaService,
258
+ useClass: ExtensionsPointServiceImpl,
259
+ },
260
+ {
261
+ token: AppLifeCycleServiceToken,
262
+ useClass: AppLifeCycleService,
263
+ },
264
+ ];
265
+ injector.addProviders(...providers);
266
+
267
+ const appConfig: AppConfig = injector.get(AppConfig);
268
+ // 为electron添加独特的api服务,主要是向electron-main进行调用的服务
269
+ if (appConfig.isElectronRenderer) {
270
+ injector.addProviders(
271
+ {
272
+ token: IElectronMainMenuService,
273
+ useValue: createElectronMainApi(IElectronMainMenuService),
274
+ },
275
+ {
276
+ token: IElectronMainUIService,
277
+ useValue: createElectronMainApi(IElectronMainUIService),
278
+ },
279
+ {
280
+ token: IElectronMainLifeCycleService,
281
+ useValue: createElectronMainApi(IElectronMainLifeCycleService),
282
+ },
283
+ {
284
+ token: IElectronURLService,
285
+ useValue: createElectronMainApi(IElectronURLService),
286
+ },
287
+ {
288
+ token: IElectronMenuFactory,
289
+ useClass: ElectronMenuFactory,
290
+ },
291
+ {
292
+ token: IElectronMenuBarService,
293
+ useClass: ElectronMenuBarService,
294
+ },
295
+ );
296
+ }
297
+ }
@@ -0,0 +1,19 @@
1
+ import { Injectable } from '@opensumi/di';
2
+ import { Emitter, IAppLifeCycleService, LifeCyclePhase } from '@opensumi/ide-core-common';
3
+
4
+ @Injectable()
5
+ export class AppLifeCycleService implements IAppLifeCycleService {
6
+ private onDidChangeLifecyclePhaseEmitter: Emitter<LifeCyclePhase> = new Emitter();
7
+ public onDidLifeCyclePhaseChange = this.onDidChangeLifecyclePhaseEmitter.event;
8
+
9
+ private lifeCyclePhase: LifeCyclePhase;
10
+
11
+ set phase(value: LifeCyclePhase) {
12
+ this.lifeCyclePhase = value;
13
+ this.onDidChangeLifecyclePhaseEmitter.fire(this.lifeCyclePhase);
14
+ }
15
+
16
+ get phase() {
17
+ return this.lifeCyclePhase;
18
+ }
19
+ }
@@ -0,0 +1,24 @@
1
+ import { Injector, Autowired } from '@opensumi/di';
2
+ import { BasicModule, CommandRegistry, Deferred } from '@opensumi/ide-core-common';
3
+
4
+ import { AppConfig } from './react-providers/config-provider';
5
+
6
+ export const IClientApp = Symbol('CLIENT_APP_TOKEN');
7
+
8
+ export interface IClientApp {
9
+ appInitialized: Deferred<void>;
10
+ browserModules: BrowserModule<any>[];
11
+ injector: Injector;
12
+ config: AppConfig;
13
+ commandRegistry: CommandRegistry;
14
+ fireOnReload: (forcedReload?: boolean) => void;
15
+ }
16
+
17
+ export abstract class BrowserModule<T = any> extends BasicModule {
18
+ @Autowired(IClientApp)
19
+ protected app: IClientApp;
20
+ public preferences?: (inject: Injector) => void;
21
+ public component?: React.ComponentType<T>;
22
+ // 脱离于layout渲染的模块
23
+ public isOverlay?: boolean;
24
+ }