MM5.7 Unified DAM UI

The Embedded Unified DAM Connector requires MM 5.5.4

Integration Digizuite DAM into almost any other application using the Unified DAM Connector. It will give you a head start on development efforts and reduce both implementation time and risk.

Examples of use-cases

Use the embedded UI to integrate Digizuite assets directly into Umbraco, Contentful, HubSpot and more more applications where you need to easily find, search and assets to use.

Insert into any Host Application

The Unified DAM Connector can be inserted into any host application as an iframe to easily provide access to assets from your single source of truth. If you have the proper roles then you are able to access and login to the Unified DAM Connector from https://customer-mediamanager-url/embedded/ and then see the below view.

 

Navigate assets by searching, folders or simply using the filters you are so use to from your Media Manager, Creative Cloud Connector and Office Connector. Find all asset info and then select the asset you need for your host application by simple button click.

You can choose to place an asset in two ways:

  1. Either click ‘Place’ from the home page as shown in above screenshot.

  2. Click on an asset to see asset info and then click ‘Use’ to select specific quality as shown here.

     

When an asset is clicked then it returns an asset message with type ‘AssetMessage’ with an asset containing an asset URL to the selected asset. In that asset message, one can also find itemId, assetId, title, description and a link to the thumbnail.

Besides from asset message, then the Unified DAM Connector also posts a message when trying to change the URL from menu (wanting to change MM URL) and then when the Unified DAM Connector is initialized properly so that the host application knows. The 3 important message types are:

  1. DigizuiteInitPostMessage - So you know it is the Digizuite Iframe

  2. DigizuiteChangeUrlPostMessage - If the user tries to change URL

  3. DigizuiteAssetPostMessage - When a user clicks on asset. When multi-select you receive more.

export enum MessageType { AssetMessage = 'AssetMessage', ChangeUrl = 'ChangeUrl', SmartPickerInitialized = 'SmartPickerInitialized', } export interface DigizuitePostMessage { messageType: MessageType; } export class DigizuiteInitPostMessage implements DigizuitePostMessage { messageType = MessageType.SmartPickerInitialized; } export class DigizuiteChangeUrlPostMessage implements DigizuitePostMessage { messageType = MessageType.ChangeUrl; mmUrl: string; constructor(mmUrl: string) { this.mmUrl = mmUrl; } } export class DigizuiteAssetPostMessage implements DigizuitePostMessage { messageType = MessageType.AssetMessage; asset: AssetMessage; constructor(asset: AssetMessage) { this.asset = asset; } } export interface AssetMessage { assetId: number; itemId: number; title: string; description: string; downloadUrl: string; thumb: string; extension: string; }

 

Add the iframe to your html:

<iframe       class="digizuite-unified-dam-connector"       height="100%"       width="100%"       frameBorder="0"       src="https://yourmediamanager.com/embedded"     ></iframe>

 

 

Listening to events

As mentioned above, the iframe will post messages to its parent / host application. Listening to these events are what makes the magic. It can be done in different ways and most modern frameworks have ways for handling it. But since all are JavaScript frameworks then the most basic way in any kind of application would be to use ‘addEventListener’.

 

window.addEventListener("message", (event) => { if (event && event.data && event.data.messageType) { ....... } }, false);

 

An example from Angular: