UNPKG

@theia/navigator

Version:
62 lines 2.75 kB
"use strict"; // ***************************************************************************** // Copyright (C) 2022 Ericsson and others. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** Object.defineProperty(exports, "__esModule", { value: true }); exports.AbstractNavigatorTreeWidget = void 0; const tslib_1 = require("tslib"); const inversify_1 = require("@theia/core/shared/inversify"); const navigator_preferences_1 = require("./navigator-preferences"); const browser_1 = require("@theia/filesystem/lib/browser"); let AbstractNavigatorTreeWidget = class AbstractNavigatorTreeWidget extends browser_1.FileTreeWidget { init() { super.init(); this.toDispose.push(this.preferenceService.onPreferenceChanged(preference => { if (preference.preferenceName === 'explorer.decorations.colors') { this.update(); } })); } decorateCaption(node, attrs) { const attributes = super.decorateCaption(node, attrs); if (this.navigatorPreferences.get('explorer.decorations.colors')) { return attributes; } else { return { ...attributes, style: { ...attributes.style, color: undefined, } }; } } }; exports.AbstractNavigatorTreeWidget = AbstractNavigatorTreeWidget; tslib_1.__decorate([ (0, inversify_1.inject)(navigator_preferences_1.FileNavigatorPreferences), tslib_1.__metadata("design:type", Object) ], AbstractNavigatorTreeWidget.prototype, "navigatorPreferences", void 0); tslib_1.__decorate([ (0, inversify_1.postConstruct)(), tslib_1.__metadata("design:type", Function), tslib_1.__metadata("design:paramtypes", []), tslib_1.__metadata("design:returntype", void 0) ], AbstractNavigatorTreeWidget.prototype, "init", null); exports.AbstractNavigatorTreeWidget = AbstractNavigatorTreeWidget = tslib_1.__decorate([ (0, inversify_1.injectable)() ], AbstractNavigatorTreeWidget); //# sourceMappingURL=abstract-navigator-tree-widget.js.map