JavaScript

Once you have installed Gloss, include the JavaScript files on your page by adding them to the <head> section. You can also choose to use the defer attribute to delay script execution.

<script src="js/gloss.min.js"></script>
<script src="js/gloss-icons.min.js"></script>

Gloss and reactive JavaScript frameworks

Gloss is listening for DOM manipulations and will automatically initialize, connect and disconnect components as they are inserted or removed from the DOM. That way it can easily be used with JavaScript frameworks like Vue.js and React.


Component usage

You can use Gloss components by adding gls-* or data-gls-* attributes to your HTML elements without writing a single line of JavaScript. This is Gloss’s best practice of using its components and should always be considered first.

<div gls-sticky="offset: 50;"></div>

<div data-gls-sticky="offset: 50;"></div>

Note React will work with data-gls-* prefixes only.

You can also initialize components via JavaScript and apply them to elements in your document.

var sticky = Gloss.sticky('#sticky', {
    offset: 50
});

You can retrieve an already initialized component by passing a selector or an element as a first Argument to the component function.

var sticky = Gloss.sticky('#sticky');

Omitting the second parameter will not re-initialize the component but serve as a getter function.


Component configuration

Each component comes with a set of configuration options that let you customize their behavior. You can set the options on a per instance level or globally.

Instance

Options can be set:

with the key: value; format,

<div gls-sticky="start: 100; offset: 50;"></div>

in valid JSON format,

<div gls-sticky='{"start": 100, "offset": 50}'></div>

with single attributes,

<div gls-sticky start="100" offset="50"></div>

or as single attributes prefixed with data-.

<div gls-sticky data-start="100" data-offset="50"></div>

For Primary options, its key may be omitted, if it’s the only option in the attribute value. Please take a look at the specific component documentation to find which option is the Primary option.

<span gls-icon="home"></span>

You can also pass options to the component constructor programmatically.

// Passing an options object.
Gloss.sticky('.sticky', {
    offset: 50,
    top: 100
});

// If the component supports Primary options.
Gloss.drop('#drop', 'top-left');

Precedence

Options passed via the component attribute will have the highest precedence, followed by single attributes and then JavaScript.

<div gls-sticky="offset: 50;" offset="100"></div>

<!-- The offset will be 50 -->

Globally

Component options can be changed globally by extending a component.

Gloss.mixin({
    data: {
        offset: 50,
        top: 100
    }
}, 'sticky');

Programmatic use

Programmatically, components may be initialized with the element, options arguments format in JavaScript. The element argument may be any Node, selector or jQuery object. You’ll receive the initialized component as return value. Functional Components (e.g. Notification) should omit the element parameter.

// Passing a selector and an options object.
var sticky = Gloss.sticky('.sticky', {
    offset: 50,
    top: 100
});

// Functional components should omit the 'element' argument.
var notifications = Gloss.notification('MyMessage', 'danger');

Note The options names must be in their camel cased representation, e.g. show-on-up becomes showOnUp.

After initialisation, you can get your component by calling the same initialisation function, omitting the options parameter.

// Sticky is now the prior initialised components
var sticky = Gloss.sticky('.sticky');

Note Using Gloss[componentName](selector) with css selectors will always return the first occurrence only! If you need to access all instances do query the elements first. Then apply the getter to each element separately - Gloss[componentName](element).

Initializing your components programmatically gives you the possibility to invoke their functions directly.

Gloss.offcanvas('#offcanvas').toggle();

Any component functions and variables prefixed with an underscore are considered as part of the internal API, which may change at any given time.

Each component triggers DOM events that you can react to. For example when a Modal is shown or a Scrollspy element becomes visible.

Gloss.util.on('#offcanvas', 'show', function () {
    // do something
});

The component’s documentation page lists its events.

Note Components often trigger event with the same name (e.g. ‘show’). Usually events bubble through the DOM. Check the event target, to ensure the event was triggered by the desired component.

Sometimes, components like Grid or Tab are hidden in the markup. This may happen when used in combination with the Switcher, Modal or Dropdown. Once they become visible, they need to adjust or fix their height and other dimensions.

Gloss offers several ways of updating a component. Omitting the type parameter will trigger an update event.

// Calls the update hook on components registered on the element itself, its parents and children.
Gloss.update(element = document.body, type = 'update');

// Updates the component itself.
component.$emit(type = 'update');

If you need to make sure a component is properly destroyed, for example upon removal from the DOM, you can call its $destroy function.

// Destroys the component. For example unbind its event listeners.
component.$destroy();

// Also destroys the component, but also removes the element from the DOM.
component.$destroy(true);