You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Action factories should implement Presentable interface
Add .revive() (or .createAction) method to UiActionsService, which constructs an instance of an action from its serialized form. "revive" was added to DynamicActionManager instead. Drilldown events 3 #59854
"Destinations registry" is a virtual registry, in reality we will re-use actions registry to store all drilldown destinations. UI actions that have type set to {type: 'destination'} are said to be "destinations" and subset of all actions in actions registry with {type: 'destination'} is "destinations registry". Those actions will also be of type IDynamicActionFactory.
Any plugin can register any number of possible destinations. This destination list is presented to the user when configuring a drilldown.
Extend ui_actions plugin to allow filtering actions by type.
Make sure type is used correctly in all existing action implementations. (for example, that nobody uses destination type or in some other incorrect way.)
ui_actions
e145241 Drilldown factory #59823Presentable
interfaceAdd. "revive" was added to.revive()
(or.createAction
) method toUiActionsService
, which constructs an instance of an action from its serialized formDynamicActionManager
instead. Drilldown events 3 #59854"Destinations registry" is a virtual registry, in reality we will re-use actions registry to store all drilldown destinations. UI actions that have type set to{type: 'destination'}
are said to be "destinations" and subset of all actions in actions registry with{type: 'destination'}
is "destinations registry". Those actions will also be of typeIDynamicActionFactory
.Any plugin can register any number of possible destinations. This destination list is presented to the user when configuring a drilldown.Extend.ui_actions
plugin to allow filtering actions bytype
Make suretype
is used correctly in all existing action implementations. (for example, that nobody usesdestination
type or in some other incorrect way.)Parent issue: #55349
The text was updated successfully, but these errors were encountered: