161 lines
5.6 KiB
TypeScript
161 lines
5.6 KiB
TypeScript
// (C) Copyright 2015 Martin Dougiamas
|
|
//
|
|
// 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.
|
|
|
|
import { Injectable, Injector } from '@angular/core';
|
|
import { CoreLoggerProvider } from '@providers/logger';
|
|
import { CoreEventsProvider } from '@providers/events';
|
|
import { CoreSitesProvider } from '@providers/sites';
|
|
import { CoreDelegate, CoreDelegateHandler } from '@classes/delegate';
|
|
import { CoreBlockDefaultHandler } from './default-block-handler';
|
|
import { CoreSite } from '@classes/site';
|
|
|
|
/**
|
|
* Interface that all blocks must implement.
|
|
*/
|
|
export interface CoreBlockHandler extends CoreDelegateHandler {
|
|
/**
|
|
* Name of the block the handler supports. E.g. 'activity_modules'.
|
|
* @type {string}
|
|
*/
|
|
blockName: string;
|
|
|
|
/**
|
|
* Returns the data needed to render the block.
|
|
*
|
|
* @param {Injector} injector Injector.
|
|
* @param {any} block The block to render.
|
|
* @param {string} contextLevel The context where the block will be used.
|
|
* @param {number} instanceId The instance ID associated with the context level.
|
|
* @return {CoreBlockHandlerData|Promise<CoreBlockHandlerData>} Data or promise resolved with the data.
|
|
*/
|
|
getDisplayData?(injector: Injector, block: any, contextLevel: string, instanceId: number)
|
|
: CoreBlockHandlerData | Promise<CoreBlockHandlerData>;
|
|
}
|
|
|
|
/**
|
|
* Data needed to render a block. It's returned by the handler.
|
|
*/
|
|
export interface CoreBlockHandlerData {
|
|
/**
|
|
* Title to display for the block.
|
|
* @type {string}
|
|
*/
|
|
title: string;
|
|
|
|
/**
|
|
* Class to add to the displayed block.
|
|
* @type {string}
|
|
*/
|
|
class?: string;
|
|
|
|
/**
|
|
* The component to render the contents of the block.
|
|
* It's recommended to return the class of the component, but you can also return an instance of the component.
|
|
* @type {any}
|
|
*/
|
|
component: any;
|
|
|
|
/**
|
|
* Data to pass to the component. All the properties in this object will be passed to the component as inputs.
|
|
* @type {any}
|
|
*/
|
|
componentData?: any;
|
|
}
|
|
|
|
/**
|
|
* Delegate to register block handlers.
|
|
*/
|
|
@Injectable()
|
|
export class CoreBlockDelegate extends CoreDelegate {
|
|
|
|
protected handlerNameProperty = 'blockName';
|
|
|
|
protected featurePrefix = 'CoreBlockDelegate_';
|
|
|
|
constructor(logger: CoreLoggerProvider, sitesProvider: CoreSitesProvider, eventsProvider: CoreEventsProvider,
|
|
protected defaultHandler: CoreBlockDefaultHandler) {
|
|
super('CoreBlockDelegate', logger, sitesProvider, eventsProvider);
|
|
}
|
|
|
|
/**
|
|
* Check if blocks are disabled in a certain site.
|
|
*
|
|
* @param {CoreSite} [site] Site. If not defined, use current site.
|
|
* @return {boolean} Whether it's disabled.
|
|
*/
|
|
areBlocksDisabledInSite(site?: CoreSite): boolean {
|
|
site = site || this.sitesProvider.getCurrentSite();
|
|
|
|
return site.isFeatureDisabled('NoDelegate_SiteBlocks');
|
|
}
|
|
|
|
/**
|
|
* Check if blocks are disabled in a certain site.
|
|
*
|
|
* @param {string} [siteId] Site Id. If not defined, use current site.
|
|
* @return {Promise<boolean>} Promise resolved with true if disabled, rejected or resolved with false otherwise.
|
|
*/
|
|
areBlocksDisabled(siteId?: string): Promise<boolean> {
|
|
return this.sitesProvider.getSite(siteId).then((site) => {
|
|
return this.areBlocksDisabledInSite(site);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Get the display data for a certain block.
|
|
*
|
|
* @param {Injector} injector Injector.
|
|
* @param {any} block The block to render.
|
|
* @param {string} contextLevel The context where the block will be used.
|
|
* @param {number} instanceId The instance ID associated with the context level.
|
|
* @return {Promise<CoreBlockHandlerData>} Promise resolved with the display data.
|
|
*/
|
|
getBlockDisplayData(injector: Injector, block: any, contextLevel: string, instanceId: number): Promise<CoreBlockHandlerData> {
|
|
return Promise.resolve(this.executeFunctionOnEnabled(block.name, 'getDisplayData', [injector, block]));
|
|
}
|
|
|
|
/**
|
|
* Check if any of the blocks in a list is supported.
|
|
*
|
|
* @param {any[]} blocks The list of blocks.
|
|
* @return {boolean} Whether any of the blocks is supported.
|
|
*/
|
|
hasSupportedBlock(blocks: any[]): boolean {
|
|
blocks = blocks || [];
|
|
|
|
return !!blocks.find((block) => { return this.isBlockSupported(block.name); });
|
|
}
|
|
|
|
/**
|
|
* Check if a block is supported.
|
|
*
|
|
* @param {string} name Block "name". E.g. 'activity_modules'.
|
|
* @return {boolean} Whether it's supported.
|
|
*/
|
|
isBlockSupported(name: string): boolean {
|
|
return this.hasHandler(name, true);
|
|
}
|
|
|
|
/**
|
|
* Check if feature is enabled or disabled in the site, depending on the feature prefix and the handler name.
|
|
*
|
|
* @param {CoreDelegateHandler} handler Handler to check.
|
|
* @param {CoreSite} site Site to check.
|
|
* @return {boolean} Whether is enabled or disabled in site.
|
|
*/
|
|
protected isFeatureDisabled(handler: CoreDelegateHandler, site: CoreSite): boolean {
|
|
return this.areBlocksDisabledInSite(site) || super.isFeatureDisabled(handler, site);
|
|
}
|
|
}
|