The Shell.User component is intended to for use as a Shell.Menubar item that offers access to app user details and related functionality. It is part of the default Shell 3 pattern. It has sub-components to create content zones for user details, links to administration, account management, and sign out functionality.
Below is an example of menu content:
Show MarkupSee the complete Shell3 documentation for more detail on the default use of the components in this pattern.
Coral.Shell.User API
Constructor
JavaScript:
-
new Coral.Shell.User()ordocument.createElement('coral-shell-user') HTML Tag:
-
<coral-shell-user>
Extends
Sub-components
- Coral.Shell.User.Content
- Coral.Shell.User.Footer
- Coral.Shell.User.Heading
- Coral.Shell.User.Name
- Coral.Shell.User.Subheading
Instance Properties
-
instance.avatar {String}
-
- Default Value:
- user (Shows a placeholder user icon from the icon font)
- HTML Attribute:
- avatar
- See:
-
instance.avatar {String}
-
Properties:
Name Type Value Description DEFAULT String user Default avatar, show user icon from icon font. -
instance.content {HTMLElement}
-
-
instance.footer {HTMLElement}
-
-
instance.heading {HTMLElement}
-
-
instance.hidden {Boolean}
Reflected -
- Inherited From:
- Default Value:
- false
- HTML Attribute:
- hidden
-
instance.name {HTMLElement}
-
-
instance.subheading {HTMLElement}
-
Specifies the asset used inside the avatar view.
See Coral.Icon for valid usage and icon names.
Avatar assets should use one of those provided, when no asset is set
The main content zone of the user-menu.
The footer content zone of the user-menu.
The heading content zone of the user-menu.
Whether this component is hidden or not.
The name content zone of the user-menu.
The subheading content zone of the user-menu.
Methods
-
instance.get
-
- Parameters:
-
Name Type Description property String The name of the property to fetch the value of. - Returns:
-
Property value. {*}
- Inherited From:
-
instance.hide
-
- Returns:
-
this, chainable {Coral.Component}
- Inherited From:
-
instance.off
-
- Parameters:
-
Name Type Optional Description eventName String No
The event name to stop listening for. selector String Yes
The selector that was used for event delegation. func function No
The function that was passed to on().useCapture Boolean Yes
Only remove listeners with useCaptureset to the value passed in. - Returns:
-
this, chainable. {Coral.Component}
- Inherited From:
-
instance.on
-
- Parameters:
-
Name Type Optional Default Description eventName String No
The event name to listen for. selector String Yes
The selector to use for event delegation. func function No
The function that will be called when the event is triggered. useCapture Boolean Yes
Whether or not to listen during the capturing or bubbling phase. - Returns:
-
this, chainable. {Coral.Component}
- Inherited From:
-
instance.remove
-
- Inherited From:
-
instance.set
-
- Parameters:
-
Name Type Description property String The name of the property to set. value * The value to set the property to. silent Boolean If true, events should not be triggered as a result of this set. - Returns:
-
this, chainable. {Coral.Component}
- Inherited From:
-
instance.show
-
- Returns:
-
this, chainable {Coral.Component}
- Inherited From:
-
instance.trigger
-
- Parameters:
-
Name Type Optional Default Description eventName String No
The event name to trigger. props Object Yes
Additional properties to make available to handlers as event.detail.bubbles Boolean Yes
Set to falseto prevent the event from bubbling.cancelable Boolean Yes
Set to falseto prevent the event from being cancelable. - Returns:
-
CustomEvent object {CustomEvent}
- Inherited From:
Get the value of a property.
Hide this component.
Remove an event listener.
Add an event listener.
Non-destructively remove this element. It can be re-added by simply appending it to the document again.
It will be garbage collected if there are no more references to it.
Set a single property.
Show this component.
Trigger an event.
Events
-
coral-component:attached
-
- Callback Parameters:
-
Name Type Description event Object Event object.
- Inherited From:
- Deprecated:
- since 1.14.0, use
MutationObserverinstead.
- since 1.14.0, use
-
coral-component:detached
-
- Callback Parameters:
-
Name Type Description event Object Event object.
- Inherited From:
- Deprecated:
- since 1.14.0, use
MutationObserverinstead.
- since 1.14.0, use
-
coral-component:ready
-
- Callback Parameters:
-
Name Type Description event Object Event object.
- Inherited From:
- Deprecated:
- since 1.9.0, use
Coral.commons.ready()instead.
- since 1.9.0, use
Triggered when the component is attached to the DOM.
Triggered when the component is detached to the DOM.
Triggerred when the component has been upgraded and is ready for use.