
Enter a search term above to see results...
Enter a search term above to see results...
WebComponentBase
is the base web component class used to create web components with defineComponent
. It handles internal utilities related to component lifecycle and other internals of the framework.
Advanced Use Only It is not recommended to use this base class directly except in use cases where you want to create custom web components without
defineComponent
import { WebComponentBase } from '@semantic-ui/component';
Name | Type | Description |
---|---|---|
shadowRootOptions | Object | Options for the shadow root, including delegatesFocus |
scopedStyleSheet | CSSStyleSheet | Scoped stylesheet for use with light DOM rendering |
Name | Type | Description |
---|---|---|
renderCallbacks | Array | Array of callbacks to be executed after rendering |
static getProperties({ properties, settings, componentSpec })
Defines property configurations for a web component.
Name | Type | Description |
---|---|---|
properties | Object | Initial properties configuration |
settings | Object | Component settings configuration |
componentSpec | Object | Component specification object |
An object containing the configured properties.
const properties = WebComponentBase.getProperties({ properties: { value: String, }, settings: { theme: 'light' }, componentSpec: mySpec});
static getPropertySettings(propertyName, type = String, { propertyOnly = false } = {})
Creates property configuration for a single property.
Name | Type | Description |
---|---|---|
propertyName | string | Name of the property |
type | Function | Constructor for property type |
options | Object | Property configuration options |
Name | Type | Default | Description |
---|---|---|---|
propertyOnly | boolean | false | If true, no attribute created |
Property configuration object.
const propConfig = WebComponentBase.getPropertySettings( 'theme', String, { propertyOnly: false });
addRenderCallback(callback)
Adds a callback to be executed after rendering.
Name | Type | Description |
---|---|---|
callback | Function | The callback to be executed |
this.addRenderCallback(() => { console.log('Render complete');});
setDefaultSettings({settings, componentSpec})
Sets default settings for a component.
Name | Type | Description |
---|---|---|
settings | Object | Default settings values |
componentSpec | Object | Component specification object |
this.setDefaultSettings({ settings: { theme: 'light', size: 'medium' }, componentSpec: mySpec});
getSettingsFromConfig({componentSpec, properties})
Returns current settings including both attributes and properties.
Name | Type | Description |
---|---|---|
componentSpec | Object | Component specification object |
properties | Object | Component properties object |
Current settings object.
const settings = this.getSettingsFromConfig({ componentSpec: mySpec, properties: this.constructor.properties});
createSettingsProxy({componentSpec, properties})
Creates a proxy object for reactive settings access.
Name | Type | Description |
---|---|---|
componentSpec | Object | Component specification object |
properties | Object | Component properties object |
A Proxy object for reactive settings.
this.settings = this.createSettingsProxy({ componentSpec, properties: this.constructor.properties});
getUIClasses({componentSpec, properties})
Generates CSS classes based on component attributes.
Name | Type | Description |
---|---|---|
componentSpec | Object | Component specification object |
properties | Object | Component properties object |
A string of space-separated CSS classes.
const classes = this.getUIClasses({ componentSpec, properties: this.constructor.properties});
getContent({componentSpec})
Retrieves slotted content from a component.
Name | Type | Description |
---|---|---|
componentSpec | Object | Component specification object |
An object containing slotted content.
const content = this.getContent({ componentSpec: mySpec});
isDarkMode()
Checks if the component is in dark mode.
Boolean indicating if dark mode is active, or undefined if server-side.
if (this.isDarkMode()) { this.theme = 'dark';}
$(selector, { root } = {})
Queries the component’s render root.
Name | Type | Description |
---|---|---|
selector | string | CSS selector to query |
options | Object | Query configuration |
Name | Type | Description |
---|---|---|
root | Element | Root to query from |
Query result set.
const buttons = this.$('button');
$$(selector)
Queries the original DOM content.
Name | Type | Description |
---|---|---|
selector | string | CSS selector to query |
Query result set.
const content = this.$$('.content');
call(func, { firstArg, additionalArgs, args } = {})
Calls a function with standard parameters.
Name | Type | Description |
---|---|---|
func | Function | Function to call |
options | Object | Call configuration options |
Name | Type | Default | Description |
---|---|---|---|
firstArg | any | undefined | First argument to pass |
additionalArgs | Array | undefined | Additional arguments |
args | Array | [component, $] | Default arguments |
this.call(callback, { firstArg: 'value', additionalArgs: ['extra'], args: [this.component, this.$]});