mirror of
https://github.com/google/blockly.git
synced 2026-01-08 09:30:06 +01:00
* Google changed from an Inc to an LLC. This happened back in 2017 but we didn’t notice. Officially we should update files from Inc to LLC when they are changed as part of regular edits, but this is a nightmare to remember for the next decade. * Remove project description/titles from licenses This is no longer part of Google’s header requirements. Our existing descriptions were useless (“Visual Blocks Editor”) or grossly obselete (“Visual Blocks Language”). * License no longer requires URL. * Fix license regexps.
194 lines
5.5 KiB
JavaScript
194 lines
5.5 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Object in charge of storing and updating a workspace theme
|
|
* and UI components.
|
|
* @author aschmiedt@google.com (Abby Schmiedt)
|
|
* @author samelh@google.com (Sam El-Husseini)
|
|
*/
|
|
'use strict';
|
|
|
|
goog.provide('Blockly.ThemeManager');
|
|
|
|
goog.require('Blockly.Theme');
|
|
|
|
|
|
/**
|
|
* Class for storing and updating a workspace's theme and UI components.
|
|
* @param {!Blockly.Theme} theme The workspace theme.
|
|
* @constructor
|
|
* @package
|
|
*/
|
|
Blockly.ThemeManager = function(theme) {
|
|
|
|
/**
|
|
* The Blockly theme to use.
|
|
* @type {!Blockly.Theme}
|
|
* @private
|
|
*/
|
|
this.theme_ = theme;
|
|
|
|
/**
|
|
* A list of workspaces that are subscribed to this theme.
|
|
* @type {!Array.<Blockly.Workspace>}
|
|
* @private
|
|
*/
|
|
this.subscribedWorkspaces_ = [];
|
|
|
|
/**
|
|
* A map of subscribed UI components, keyed by component name.
|
|
* @type {!Object.<string, !Array.<!Blockly.ThemeManager.Component>>}
|
|
* @private
|
|
*/
|
|
this.componentDB_ = Object.create(null);
|
|
};
|
|
|
|
/**
|
|
* A Blockly UI component type.
|
|
* @typedef {{
|
|
* element:!Element,
|
|
* propertyName:string
|
|
* }}
|
|
*/
|
|
Blockly.ThemeManager.Component;
|
|
|
|
/**
|
|
* Get the workspace theme.
|
|
* @return {!Blockly.Theme} The workspace theme.
|
|
* @package
|
|
*/
|
|
Blockly.ThemeManager.prototype.getTheme = function() {
|
|
return this.theme_;
|
|
};
|
|
|
|
/**
|
|
* Set the workspace theme, and refresh the workspace and all components.
|
|
* @param {!Blockly.Theme} theme The workspace theme.
|
|
* @package
|
|
*/
|
|
Blockly.ThemeManager.prototype.setTheme = function(theme) {
|
|
if (this.theme_ === theme) {
|
|
// No change.
|
|
return;
|
|
}
|
|
|
|
this.theme_ = theme;
|
|
|
|
// Refresh all subscribed workspaces.
|
|
for (var i = 0, workspace; (workspace = this.subscribedWorkspaces_[i]); i++) {
|
|
workspace.refreshTheme();
|
|
}
|
|
|
|
// Refresh all registered Blockly UI components.
|
|
for (var i = 0, keys = Object.keys(this.componentDB_),
|
|
key; key = keys[i]; i++) {
|
|
for (var j = 0, component; (component = this.componentDB_[key][j]); j++) {
|
|
var element = component.element;
|
|
var propertyName = component.propertyName;
|
|
var style = this.theme_ && this.theme_.getComponentStyle(key);
|
|
element.style[propertyName] = style || '';
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Subscribe a workspace to changes to the selected theme. If a new theme is
|
|
* set, the workspace is called to refresh its blocks.
|
|
* @param {!Blockly.Workspace} workspace The workspace to subscribe.
|
|
* @package
|
|
*/
|
|
Blockly.ThemeManager.prototype.subscribeWorkspace = function(workspace) {
|
|
this.subscribedWorkspaces_.push(workspace);
|
|
};
|
|
|
|
/**
|
|
* Unsubscribe a workspace to changes to the selected theme.
|
|
* @param {!Blockly.Workspace} workspace The workspace to unsubscribe.
|
|
* @package
|
|
*/
|
|
Blockly.ThemeManager.prototype.unsubscribeWorkspace = function(workspace) {
|
|
var index = this.subscribedWorkspaces_.indexOf(workspace);
|
|
if (index < 0) {
|
|
throw Error('Cannot unsubscribe a workspace that hasn\'t been subscribed.');
|
|
}
|
|
this.subscribedWorkspaces_.splice(index, 1);
|
|
};
|
|
|
|
/**
|
|
* Subscribe an element to changes to the selected theme. If a new theme is
|
|
* selected, the element's style is refreshed with the new theme's style.
|
|
* @param {!Element} element The element to subscribe.
|
|
* @param {string} componentName The name used to identify the component. This
|
|
* must be the same name used to configure the style in the Theme object.
|
|
* @param {string} propertyName The inline style property name to update.
|
|
* @package
|
|
*/
|
|
Blockly.ThemeManager.prototype.subscribe = function(element, componentName,
|
|
propertyName) {
|
|
if (!this.componentDB_[componentName]) {
|
|
this.componentDB_[componentName] = [];
|
|
}
|
|
|
|
// Add the element to our component map.
|
|
this.componentDB_[componentName].push({
|
|
element: element,
|
|
propertyName: propertyName
|
|
});
|
|
|
|
// Initialize the element with its corresponding theme style.
|
|
var style = this.theme_ && this.theme_.getComponentStyle(componentName);
|
|
element.style[propertyName] = style || '';
|
|
};
|
|
|
|
/**
|
|
* Unsubscribe an element to changes to the selected theme.
|
|
* @param {Element} element The element to unsubscribe.
|
|
* @package
|
|
*/
|
|
Blockly.ThemeManager.prototype.unsubscribe = function(element) {
|
|
if (!element) {
|
|
return;
|
|
}
|
|
// Go through all component, and remove any references to this element.
|
|
var componentNames = Object.keys(this.componentDB_);
|
|
for (var c = 0, componentName; (componentName = componentNames[c]); c++) {
|
|
var elements = this.componentDB_[componentName];
|
|
for (var i = elements.length - 1; i >= 0; i--) {
|
|
if (elements[i].element === element) {
|
|
elements.splice(i, 1);
|
|
}
|
|
}
|
|
// Clean up the component map entry if the list is empty.
|
|
if (!this.componentDB_[componentName].length) {
|
|
delete this.componentDB_[componentName];
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Dispose of this theme manager.
|
|
* @package
|
|
* @suppress {checkTypes}
|
|
*/
|
|
Blockly.ThemeManager.prototype.dispose = function() {
|
|
this.owner_ = null;
|
|
this.theme_ = null;
|
|
this.subscribedWorkspaces_ = null;
|
|
this.componentDB_ = null;
|
|
};
|