@@ -314,7 +314,7 @@ import { FirstStartupInstaller } from './contributions/first-startup-installer';
314
314
import { OpenSketchFiles } from './contributions/open-sketch-files' ;
315
315
import { InoLanguage } from './contributions/ino-language' ;
316
316
import { SelectedBoard } from './contributions/selected-board' ;
317
- import { CheckForUpdates } from './contributions/check-for-updates' ;
317
+ import { CheckForIDEUpdates } from './contributions/check-for-ide -updates' ;
318
318
import { OpenBoardsConfig } from './contributions/open-boards-config' ;
319
319
import { SketchFilesTracker } from './contributions/sketch-files-tracker' ;
320
320
import { MonacoThemeServiceIsReady } from './utils/window' ;
@@ -323,6 +323,15 @@ import { StatusBarImpl } from './theia/core/status-bar';
323
323
import { StatusBarImpl as TheiaStatusBarImpl } from '@theia/core/lib/browser' ;
324
324
import { EditorMenuContribution } from './theia/editor/editor-file' ;
325
325
import { EditorMenuContribution as TheiaEditorMenuContribution } from '@theia/editor/lib/browser/editor-menu' ;
326
+ import { PreferencesEditorWidget as TheiaPreferencesEditorWidget } from '@theia/preferences/lib/browser/views/preference-editor-widget' ;
327
+ import { PreferencesEditorWidget } from './theia/preferences/preference-editor-widget' ;
328
+ import { PreferencesWidget } from '@theia/preferences/lib/browser/views/preference-widget' ;
329
+ import { createPreferencesWidgetContainer } from '@theia/preferences/lib/browser/views/preference-widget-bindings' ;
330
+ import {
331
+ BoardsFilterRenderer ,
332
+ LibraryFilterRenderer ,
333
+ } from './widgets/component-list/filter-renderer' ;
334
+ import { CheckForUpdates } from './contributions/check-for-updates' ;
326
335
327
336
const registerArduinoThemes = ( ) => {
328
337
const themes : MonacoThemeJson [ ] = [
@@ -364,6 +373,8 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
364
373
365
374
// Renderer for both the library and the core widgets.
366
375
bind ( ListItemRenderer ) . toSelf ( ) . inSingletonScope ( ) ;
376
+ bind ( LibraryFilterRenderer ) . toSelf ( ) . inSingletonScope ( ) ;
377
+ bind ( BoardsFilterRenderer ) . toSelf ( ) . inSingletonScope ( ) ;
367
378
368
379
// Library service
369
380
bind ( LibraryService )
@@ -737,9 +748,10 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
737
748
Contribution . configure ( bind , OpenSketchFiles ) ;
738
749
Contribution . configure ( bind , InoLanguage ) ;
739
750
Contribution . configure ( bind , SelectedBoard ) ;
740
- Contribution . configure ( bind , CheckForUpdates ) ;
751
+ Contribution . configure ( bind , CheckForIDEUpdates ) ;
741
752
Contribution . configure ( bind , OpenBoardsConfig ) ;
742
753
Contribution . configure ( bind , SketchFilesTracker ) ;
754
+ Contribution . configure ( bind , CheckForUpdates ) ;
743
755
744
756
// Disabled the quick-pick customization from Theia when multiple formatters are available.
745
757
// Use the default VS Code behavior, and pick the first one. In the IDE2, clang-format has `exclusive` selectors.
@@ -845,6 +857,18 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
845
857
bind ( DockPanelRenderer ) . toSelf ( ) ;
846
858
rebind ( TheiaDockPanelRenderer ) . toService ( DockPanelRenderer ) ;
847
859
860
+ // Avoid running the "reset scroll" interval tasks until the preference editor opens.
861
+ rebind ( PreferencesWidget )
862
+ . toDynamicValue ( ( { container } ) => {
863
+ const child = createPreferencesWidgetContainer ( container ) ;
864
+ child . bind ( PreferencesEditorWidget ) . toSelf ( ) . inSingletonScope ( ) ;
865
+ child
866
+ . rebind ( TheiaPreferencesEditorWidget )
867
+ . toService ( PreferencesEditorWidget ) ;
868
+ return child . get ( PreferencesWidget ) ;
869
+ } )
870
+ . inSingletonScope ( ) ;
871
+
848
872
// Preferences
849
873
bindArduinoPreferences ( bind ) ;
850
874
0 commit comments