DiscordMention
Extends
Section titled “Extends”LitElement
Implements
Section titled “Implements”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new DiscordMention():
DiscordMention
Returns
Section titled “Returns”DiscordMention
Inherited from
Section titled “Inherited from”LitElement.constructor
highlight
Section titled “highlight”Whether this entire message block should be highlighted (to emulate the “logged in user” being pinged).
lightTheme
Section titled “lightTheme”Implementation of
Section titled “Implementation of”The type of mention this should be. This will prepend the proper prefix character. Valid values:
'user'
'channel'
'role'
'voice'
'locked'
'thread'
'forum'
'slash'
'server-guide'
'channels-and-roles'
'customize-community'
resetHoverColor()
Section titled “resetHoverColor()”resetHoverColor():
void
Returns
Section titled “Returns”void
setHoverColor()
Section titled “setHoverColor()”setHoverColor():
void
Returns
Section titled “Returns”void
lifecycle
Section titled “lifecycle”connectedCallback()
Section titled “connectedCallback()”connectedCallback():
void
Invoked when the component is added to the document’s DOM.
In connectedCallback()
you should setup tasks that should only occur when
the element is connected to the document. The most common of these is
adding event listeners to nodes external to the element, like a keydown
event handler added to the window.
connectedCallback() { super.connectedCallback(); addEventListener('keydown', this._handleKeydown);}
Typically, anything done in connectedCallback()
should be undone when the
element is disconnected, in disconnectedCallback()
.
Returns
Section titled “Returns”void
Overrides
Section titled “Overrides”LitElement.connectedCallback
disconnectedCallback()
Section titled “disconnectedCallback()”disconnectedCallback():
void
Invoked when the component is removed from the document’s DOM.
This callback is the main signal to the element that it may no longer be
used. disconnectedCallback()
should ensure that nothing is holding a
reference to the element (such as event listeners added to nodes external
to the element), so that it is free to be garbage collected.
disconnectedCallback() { super.disconnectedCallback(); window.removeEventListener('keydown', this._handleKeydown);}
An element may be re-connected after being disconnected.
Returns
Section titled “Returns”void
Overrides
Section titled “Overrides”LitElement.disconnectedCallback