monaco-editor
Version:
A browser based code editor
60 lines (59 loc) • 2.8 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import './countBadge.css';
import { $, append } from '../../dom.js';
import { format } from '../../../common/strings.js';
import { Color } from '../../../common/color.js';
import { mixin } from '../../../common/objects.js';
var defaultOpts = {
badgeBackground: Color.fromHex('#4D4D4D'),
badgeForeground: Color.fromHex('#FFFFFF')
};
var CountBadge = /** @class */ (function () {
function CountBadge(container, options) {
this.options = options || Object.create(null);
mixin(this.options, defaultOpts, false);
this.badgeBackground = this.options.badgeBackground;
this.badgeForeground = this.options.badgeForeground;
this.badgeBorder = this.options.badgeBorder;
this.element = append(container, $('.monaco-count-badge'));
this.countFormat = this.options.countFormat || '{0}';
this.titleFormat = this.options.titleFormat || '';
this.setCount(this.options.count || 0);
}
CountBadge.prototype.setCount = function (count) {
this.count = count;
this.render();
};
CountBadge.prototype.setTitleFormat = function (titleFormat) {
this.titleFormat = titleFormat;
this.render();
};
CountBadge.prototype.render = function () {
this.element.textContent = format(this.countFormat, this.count);
this.element.title = format(this.titleFormat, this.count);
this.applyStyles();
};
CountBadge.prototype.style = function (styles) {
this.badgeBackground = styles.badgeBackground;
this.badgeForeground = styles.badgeForeground;
this.badgeBorder = styles.badgeBorder;
this.applyStyles();
};
CountBadge.prototype.applyStyles = function () {
if (this.element) {
var background = this.badgeBackground ? this.badgeBackground.toString() : null;
var foreground = this.badgeForeground ? this.badgeForeground.toString() : null;
var border = this.badgeBorder ? this.badgeBorder.toString() : null;
this.element.style.backgroundColor = background;
this.element.style.color = foreground;
this.element.style.borderWidth = border ? '1px' : null;
this.element.style.borderStyle = border ? 'solid' : null;
this.element.style.borderColor = border;
}
};
return CountBadge;
}());
export { CountBadge };