Global Context

Global contexts in Umbraco provide a clean, type-safe way to share functionality across the backoffice.

The Global Context extension type allows developers to create a custom context of data and functions and make it available across the entire backoffice. Unlike other contexts that might be scoped to a specific workspace or view, global contexts are available everywhere for the duration of the backoffice session.

Consider using a global context when you need to:

  • Share state across multiple extensions – for example, tracking user preferences or application-wide settings.

  • Manage centralized services – such as API clients, notification handlers, or data repositories.

  • Coordinate between different extensions – for instance, acting as a communication layer between dashboards and other components.

  • Share functionality with other extensions – allowing other package developers to access features and functionality within your package.

  • Provide a fallback context – serving as the fallback context when no other contexts match the consumer’s scope.

Prefer other context types such as Workspace Contexts over Global Contexts. Umbraco itself uses Global Contexts sparingly, for example, for clipboard data, the current user, and icons.

Registration of a Global Context

Global Context extensions are registered using a umbraco-package.json manifest file.

Key fields:

  • type: Must be "globalContext", see: ManifestGlobalContext

  • alias: A unique identifier for the context

  • name: A human-readable name

  • api: The path to the compiled JavaScript file

umbraco-package.json
{
    "$schema": "../../umbraco-package-schema.json",
    "name": "My Global Context Package",
    "version": "1.0.0",
    "extensions": [
        {
            "type": "globalContext",
            "alias": "My.GlobalContext",
            "name": "My Global Context",
            "api": "/App_Plugins/my-global-context/dist/my-context.context.js"
        }
    ]
}

Creating Your Global Context

1. Define a Context Token

First, create a context token. This is how other parts of your extension will reference the context.

src/my-context.ts
import { UmbContextToken } from '@umbraco-cms/backoffice/context-api';

export interface MyGlobalContextInterface {
    getCurrentUser(): Promise<string>;
    setPreference(key: string, value: any): void;
    getPreference(key: string): any;
}

export const MY_GLOBAL_CONTEXT = new UmbContextToken<MyGlobalContext>(
    'MyGlobalContext'
);

When defining the context token, use the context class rather than the interface as the generic type. For example: UmbContextToken<MyGlobalContext> instead of UmbContextToken<MyGlobalContextInterface>.

%}

The string passed into the contextAlias parameter does not need to match the alias registered in the manifest.

%}

2. Implement the Context Class

Next, implement the context class.

src/my-context.ts
import { UmbContextBase } from '@umbraco-cms/backoffice/class-api';
import { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';

export class MyGlobalContext
    extends UmbContextBase
    implements MyGlobalContextInterface
{
    #preferences: Map<string, any> = new Map();

    constructor(host: UmbControllerHost) {
        super(host, MY_GLOBAL_CONTEXT);
    }

    async getCurrentUser(): Promise<string> {
        // In a real implementation, you'd fetch this from the API
        return "Current User";
    }

    setPreference(key: string, value: any): void {
        this.#preferences.set(key, value);
        console.log(`Preference set: ${key} = ${value}`);
    }

    getPreference(key: string): any {
        return this.#preferences.get(key);
    }
}

export default MyGlobalContext;

Using Global Contexts

Once the global context extension is registered, it can be consumed in any web component throughout the backoffice.

src/my-custom-dashboard.ts
import {
    LitElement,
    html,
    customElement,
} from "@umbraco-cms/backoffice/external/lit";
import { UmbElementMixin } from "@umbraco-cms/backoffice/element-api";
import {
    MY_GLOBAL_CONTEXT,
    MyGlobalContextInterface,
} from "./service-status-context.ts";

@customElement("my-custom-dashboard")
export class MyCustomDashboard extends UmbElementMixin(LitElement) {
    #myContext?: MyGlobalContextInterface;

    constructor() {
        super();

        // Consume the global context
        this.consumeContext(MY_GLOBAL_CONTEXT, (instance) => {
            this.#myContext = instance;
        });
    }

    async #handleClick() {
        if (!this.#myContext) return;

        // Use the context
        const user = await this.#myContext.getCurrentUser();
        this.#myContext.setPreference("lastVisit", new Date().toISOString());

        console.log(`Welcome back, ${user}!`);
    }

    render() {
        return html`
      <uui-button @click=${this.#handleClick} look="primary">
        Check User
      </uui-button>
    `;
    }
}

Last updated

Was this helpful?