Table of Contents |
---|
Design
...
Default Behaviour(s)
...
How it works
Access, and composition of the page
User access the asset details page by clicking on an asset thumbnail from :
The search page,
A board.
Asset details page is composed of :
Asset Details area,
Asset Actions list
...
Related Asset
...
Related Keywords
,
Feedback popin,
Help popin.
Those points are detailed in the next chapters.
Asset details area
...
Back button
...
Design |
---|
Composition
Out of the box, user can access the asset details page by clicking on the asset thumbnail from the search page. The asset details page is composed of :
How it works | |
---|---|
Back link redirects user to the page he was before |
...
Title for the asset (next to Back button)
...
The header corresponds to the following metadata : Name + Photograph. The configuration can be changed with the metadata of your choice. | |
Next / Previous button |
...
allow navigation to the next |
...
Metadata section
or previous asset details following the order of the search results |
...
Metadata
...
Suggested IA
...
Player for the asset
...
Number of View and download for the asset
Out of the box, Metadata section contains 3 sections :
|
...
|
...
Caption
...
Keywords
...
Folder
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
Properties display depends on the property type. |
...
Info |
---|
AI Insights section All AI Keywords related with the asset are listed in this section. |
...
The configuration can be changed with the sections and metadata of your choice. | |
Contains all information calculated by Artificial Intelligence : Keywords, and specific information for video like transcript of the video, identified objects and concepts. | |
In this area, the user can see the asset and play it (if it is a video, an audio file, or 3D). It has several additional options: zoom, full screen. | |
Number of Views and downloads for the asset. The configuration can be modified to hide these information. |
Asset Actions list
Actions for an asset are :
Additionnal actions can be activated in the configuration :
|
Asset Relations
Assets can be linked with multiple options :
None of these sections come with the starter kit. The configuration can be changed to activate these sections which are displayed under the asset. |
Feedback popin
No documentation available yet.
Help popin
No documentation available yet.
Advanced Configuration
Disabling the asset detail page
Access to the asset detail page can be disabled by switching the value of $features.canViewAssetDetails
to false.
Configuring the details sections (Asset details area)
The configuration of the details section is placed under $dam.details.defaultCursorConfig.defaultAssetDetailMeta.column
. You can then configure some tabs to display details informations.
Tabs is an array containing objects :
Config path | Default value | Description | ||
---|---|---|---|---|
|
| I18n label to display as a tab title | ||
|
| Sets the different section displayed in a tab | ||
|
| Set the title (first element) and the field to display in a section |
Each field can be configured and by default if there is no data to display, the field is not displayed.
Asset Actions list
...
Info |
---|
Default actions for a media are :
|
...
Changing the header defaults (Name + Photograph)
The displayed header is set in $dam.details.defaultCursorConfig.defaultAssetDetailMeta.header
Config path | Default value | Description | ||
---|---|---|---|---|
|
| An array of fields to be displayed in the header section of a detail page. A field can be either a string for simple configuration or referencing a |
Configuring the actions list
The action “Where is this asset published ?” required the plugin “PACKAGED_ReverseSearch” to be activated.
...
The default value for $dam.explore.items.actions.maxDisplayedActions
is 3
. And the default configuration is 8
.
...
Configuring the Asset
...
Relations
The configuration of the details section is placed under $dam.details.defaultCursorConfig.defaultAssetDetailMeta.body
which did not exists by default (hence the body is empty and nothing is displayed under the asset).
Config path | Default value | Description |
---|---|---|
|
| An array containing sections to display in the body. |
|
| An object or a string representing the field to display. |
Feedback popin
See : https://crossmedia.atlassian.net/wiki/spaces/WD/pages/2139553801
Help popin
To complete
Advanced Configuration
Disabling the asset detail page
Access to the asset detail page can be disabled by switching the value of $features.canViewAssetDetails
to false.
Changing the header defaults (name + Photograph)
The displayed header is set in $dam.details.defaultCursorConfig.defaultAssetDetailMeta.header
...
Config path
...
Default value
...
Description
...
$dam.details.defaultCursorConfig.defaultAssetDetailMeta.header.config
...
Code Block |
---|
[
"name",
{
"field": "photograph",
"withoutLabel": true
}
] |
...
An array of fields to be displayed in the header section of a detail page.
A field can be either a string for simple configuration or referencing a named config
. You can use an object for more precise configuration.
...
Disabling Views and Downloads count
Set $dam.details.disableAnalytics
to true
.
...