Edit in GitHubLog an issue

Environment Settings

Detecting Theme

When you want to detect the theme of the environment where your add-on is running or if you want to be notified if it changes, you can use the following example. This is useful for knowing what theme is currently set in Adobe Express, so you can use the same in your add-on UI or keep it in synch when the user changes their Adobe Express theme.

Example

Copied to your clipboard
import addOnUISdk from "https://new.express.adobe.com/static/add-on-sdk/sdk.js";
function applyTheme(theme) {
document.querySelector("sp-theme").setAttribute("color", theme);
}
applyTheme(addOnUISdk.app.ui.theme);
addOnUISdk.app.on("themechange", (data) => { applyTheme(data.theme); });
addOnUISdk.app.on("themechange", (data) => {
applyTheme(data.theme == "dark" ? darkTheme : lightTheme);
});

Detecting Locale and Supported Locales

If you want to find out the user's current locale, the list of supported locales, or detect when the locale changes (e.g., to set the language in your add-on), you can do so with the addOnUISdk.app.ui object in the add-on SDK. A simple example is shown below.

Example

Copied to your clipboard
import addOnUISdk from "https://new.express.adobe.com/static/add-on-sdk/sdk.js";
function setLanguage(language) {
/* Set the language in your UI strings based on the change detected */
}
addOnUISdk.ready.then(() => {
console.log(addOnUISdk.app.ui.locales);
setLanguage(addOnUISdk.app.ui.locale);
});
addOnUISdk.app.on("localechange", data => {
setLanguage(data.locale);
});
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.