Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Latest commit

 

History

History
574 lines (379 loc) · 20.6 KB

README.md

File metadata and controls

574 lines (379 loc) · 20.6 KB

PlayUI API

Individual Functions Documentation

PlayUI is designed as a collection of standalone functions organized in categories.

  • The DOM - DOM manipulation utilities.
  • CSS - CSS-processing utilities.
  • Animation - Animation utilities.
  • Event - Utilities for binding events and gestures.
  • The UI - Utilities for manipulating the rendered UI.

Constructible Build Documentation

PlayUI is also implemented as a constructible function (like the jQuery function). An instance can be created by using the new operator or by calling the function statically.

// Import PlayUI
import PlayUI from '@web-native-js/play-ui';
// Or, if loaded via a script tag...
const PlayUI = window.WebNative.PlayUI;

// Create an instance with the new operator
let instance = new PlayUI(element);
// Or by calling the function statically
let instance = PlayUI(element);

And we can delegate PlayUI to the shorter $ variable.

// Import PlayUI to the $ variable locally
import $ from '@web-native-js/play-ui';
// Or, if loaded via a script tag...
const $ = window.WebNative.PlayUI;

// Create an instance as before...
let instance = $(element); // or new $(element)

Instances of PlayUI are built from the same PlayUI utility functions above. Each instance method thus has the same function definition as its corresponding utility function.

The .htmlSync() instance method, for example, is based on the utility function at ./src/dom/htmlSync.js.

// The .htmlSync() instance method
let instance = $(element).htmlSync(content);

// --------------------------

// The actual standalone htmlSync() function
import htmlSync from './src/dom/htmlSync.js';
let element = htmlSync(element, content);

Notice that where the utility function would return the same subject element as recieved, the instance method would return the PlayUI instance itself for easy method chaining.

Also, where the returned promise of an async utility function resolves to the same subject element as recieved, the returned promise of the corresponding instance method would resolve to the PlayUI instance itself.

// The .htmlAsync() instance method
$(element).htmlAsync(content).then(instance => {
    // instance.somethingElse()
});
// Or within an async function
let instance = await $(element).htmlAsync(content);

// --------------------------

// The actual standalone htmlAsync() function
import htmlAsync from './src/dom/htmlAsync.js';
htmlAsync(element, content).then(element => {
    // somethingElse(element)
});
// Or within an async function
let element = await htmlAsync(element, content);

DOM Manipulation Methods

DOM manipulation methods. The most of these methods come in a sync and async flavour, and a third unsiffixed flavour that is an alias to the async method.

instance.htmlAsync()

This method asynchronously sets or gets the HTML content for the current matched element. It uses the dom/htmlAsync() function.

This method asynchronously sets or gets the HTML content for the current matched element. It uses the dom/htmlAsync() function.

// Set the HTML content, do something else afterward
$('#el').htmlAsync('Hello player!').then(instance => {
    // Do something else
});

// Get the HTML content, log it to the console when available
$('#el').htmlAsync().then(content => {
    console.log(content);
});

See dom/htmlAsync() for details.

instance.htmlSync()

This method synchronously sets or gets the HTML content for the current matched element. It uses the dom/htmlSync() function.

This method synchronously sets or gets the HTML content for the current matched element. It uses the dom/htmlSync() function.

// Set the HTML content
let instance = $('#el').htmlSync('Hello player!');

// Get the HTML content, log it to the console
let content = $('#el').htmlSync();
console.log(content);

See dom/htmlSync() for details.

instance.html()

This is an alias of the instance.htmlAsync() method.

instance.textAsync()

This method asynchronously sets or gets the text content for the current matched element. It uses the dom/textAsync() function.

This method asynchronously sets or gets the text content for the current matched element. It uses the dom/textAsync() function.

// Set the text content, do something else afterward
$('#el').textAsync('Hello player!').then(instance => {
    // Do something else
});

// Get the text content, log it to the console when available
$('#el').textAsync().then(content => {
    console.log(content);
});

See dom/textAsync() for details.

instance.textSync()

This method synchronously sets or gets the text content for the current matched element. It uses the dom/textSync() function.

This method synchronously sets or gets the text content for the current matched element. It uses the dom/textSync() function.

// Set the text content
let instance = $('#el').textSync('Hello player!');

// Get the text content, log it to the console
let content = $('#el').textSync();
console.log(content);

See dom/textSync() for details.

instance.text()

This is an alias of the instance.textAsync() method.

instance.appendAsync()

This method asynchronously appends text content to the current matched element. It uses the dom/appendAsync() function.

This method asynchronously appends text content to the current matched element. It uses the dom/appendAsync() function.

// Append content, do something else afterward
$('#el').appendAsync('Hello player!').then(instance => {
    // Do something else
});

See dom/appendAsync() for details.

instance.appendSync()

This method synchronously appends text content to the current matched element. It uses the dom/appendSync() function.

This method synchronously appends text content to the current matched element. It uses the dom/appendSync() function.

// Append content
let instance = $('#el').appendSync('Hello player!');

See dom/appendSync() for details.

instance.append()

This is an alias of the instance.appendAsync() method.

instance.prependAsync()

This method asynchronously prepends text content to the current matched element. It uses the dom/prependAsync() function.

This method asynchronously prepends text content to the current matched element. It uses the dom/prependAsync() function.

// Prepend content, do something else afterward
$('#el').prependAsync('Hello player!').then(instance => {
    // Do something else
});

See dom/prependAsync() for details.

instance.prependSync()

This method synchronously prepends text content to the current matched element. It uses the dom/prependSync() function.

This method synchronously prepends text content to the current matched element. It uses the dom/prependSync() function.

// Prepend content
let instance = $('#el').prependSync('Hello player!');

See dom/prependSync() for details.

instance.prepend()

This is an alias of the instance.prependAsync() method.

instance.attrAsync()

This method asynchronously sets or gets an attribute for the current matched element. It uses the dom/attrAsync() function.

This method asynchronously sets or gets an attribute for the current matched element. It uses the dom/attrAsync() function.

// Set an attribute, do something else afterward
$('#el').attrAsync('name', 'value').then(instance => {
    // Do something else
});

// Get an attribute, log it to the console when available
$('#el').attrAsync('name').then(value => {
    console.log(value);
});

See dom/attrAsync() for details.

instance.attrSync()

This method synchronously sets or gets an attribute for the current matched element. It uses the dom/attrSync() function.

This method synchronously sets or gets an attribute for the current matched element. It uses the dom/attrSync() function.

// Set an attribute
let instance = $('#el').attrSync('name', 'value');

// Get an attribute, log it to the console
let value = $('#el').attrSync('name');
console.log(value);

See dom/attrSync() for details.

instance.attr()

This is an alias of the instance.attrAsync() method.

instance.classAsync()

This method is used to asynchronously set/unset the class attribute or add/remove entries on the class list for the current matched element. It uses the dom/classAsync() function.

This method is used to asynchronously set/unset the class attribute or add/remove entries on the class list for the current matched element. It uses the dom/classAsync() function.

// Add a class, do something else afterward
$('#el').classAsync('class1', true).then(instance => {
    // Do something else
});

// Remove a class
$('#el').classAsync('class1', false).then(instance => {
    // Do something else
});

See dom/classAsync() for details.

instance.classSync()

This method is used to synchronously set/unset the class attribute or add/remove entries on the class list for the current matched element. It uses the dom/classSync() function.

This method is used to synchronously set/unset the class attribute or add/remove entries on the class list for the current matched element. It uses the dom/classSync() function.

// Add a class
let instance = $('#el').classAsync('class1', true);

// Remove a class
let instance = $('#el').classAsync('class1', false);

See dom/classSync() for details.

instance.class()

This is an alias of the instance.classAsync() method.

CSS-Processing Methods

CSS-processing methods. A few of these methods come in a sync and async flavour, and a third unsiffixed flavour that is an alias to the async method.

instance.cssAsync()

This method asynchronously sets or gets CSS rules for the current matched element. It uses the css/cssAsync() function.

This method asynchronously sets or gets CSS rules for the current matched element. It uses the css/cssAsync() function.

// Set a CSS rule, do something else afterward
$('#el').cssAsync('color', 'blue').then(instance => {
    // Do something else
});

// Get a CSS rule, log it to the console when available
$('#el').cssAsync('color').then(value => {
    console.log(value);
});

See css/cssAsync() for details.

instance.cssSync()

This method synchronously sets or gets CSS rules for the current matched element. It uses the css/cssSync() function.

This method synchronously sets or gets CSS rules for the current matched element. It uses the css/cssSync() function.

// Set a CSS rule
let instance = $('#el').cssSync('color', 'blue');

// Get a CSS rule, log it to the console
let value = $('#el').cssSync('color');
console.log(value);

See css/cssSync() for details.

instance.css()

This is an alias of the instance.cssAsync() method.

instance.cssInline()

This method returns one or more style properties from the current matched element's style attribute. It uses the css/readInline() function.

This method returns one or more style properties from the current matched element's style attribute. It uses the css/readInline() function.

// Read an inline CSS rule
let value = $('#el').cssInline('color');
console.log(value);

See css/readInline() for details.

instance.cssStylesheet()

This method returns one or more style properties associated with the current matched element accross the document's stylesheets. It uses the css/readStylesheet() function.

This method returns one or more style properties associated with the current matched element accross the document's stylesheets. It uses the css/readStylesheet() function.

// Read a CSS rule from stylesheet
let value = $('#el').cssStylesheet('color');
console.log(value);

See css/readStylesheet() for details.

instance.cssTransaction()

This method establishes a CSS operation on the current matched element that can be rolledback safely. It uses the css/transaction() function.

This method establishes a CSS operation on the current matched element that can be rolledback safely. It uses the css/transaction() function.

// Obtaine a Transaction instance
let transaction = $('#el').cssTransaction('color');

// Create a savepoint - savepoint1
// We can rollback to this point later
transaction.save();

// Restyle the element
$('#el').css('color', 'green');

// Rollback to anypoint after some time
setTimeout(() => {
    // Rollback all the way to the element's initial state
    transaction.rollback(0);
}, 2000);

See css/transaction() for details.

Animation Methods

Methods for animation.

instance.play()

This method creates and play an animation on the current matched element. It uses the ani/play() function.

This method creates and play an animation on the current matched element. It uses the ani/play() function.

// Play fadeout
$('#el').play([{opacity:1}, {opacity:0}], {duration:600}).then(instance => {
    console.log('The end!');
});

See ani/play() for details.

Event Methods

Methods for binding events and gestures.

instance.on()

This method binds an event/gesture handler to the current matched element. It uses the evt/on() function.

This method binds an event/gesture handler to the current matched element. It uses the evt/on() function.

// Bind a "doubletap" gesture handler
$('#el').on('doubletap', event => {
    alert('You doubletapped me!');
});

See evt/on() for details.

instance.off()

This method unbinds event/gesture handlers oreviously bound using the instance.on() method. It uses the evt/off() function.

This method unbinds event/gesture handlers oreviously bound using the instance.on() method. It uses the evt/off() function.

// Unbind "doubletap" gesture handlers
$('#el').off('doubletap';

See evt/off() for details.

instance.trigger()

This method triggers event/gesture handlers oreviously bound using the instance.on() method. It uses the evt/trigger() function.

This method triggers event/gesture handlers oreviously bound using the instance.on() method. It uses the evt/trigger() function.

// Unbind "doubletap" gesture handlers
$('#el').trigger('doubletap';

See evt/trigger() for details.

Other Methods

Methods on cross-cutting concerns.

instance.data()

This method sets or gets custom data/values associated with the current matched element. It uses the dom/data() function.

This method sets or gets custom data/values associated with the current matched element. It uses the dom/data() function.

// Set a value
let instance = $('#el').data('key', value);

// Get a value
let value = $('#el').data('key');
console.log(value);

See dom/data() for details.

Observers

Observer APIs.

instance.onconnected()

This method observes when the current matched element is added to the document or given context. It uses the dom/connectedCallback() function.

This method observes when the current matched element is added to the document or given context. It uses the dom/connectedCallback() function.

// Observe "onconnected"
$('#el').onconnected(() => {
    console.log('I am now connected to the DOM!');
});

See dom/connectedCallback() for details.

instance.ondisonconnected()

This method observes when the current matched element is removed from the document or given context. It uses the dom/disonconnectedCallback() function.

This method observes when the current matched element is removed from the document or given context. It uses the dom/disonconnectedCallback() function.

// Observe "ondisonconnected"
$('#el').ondisonconnected(() => {
    console.log('I am now disconnected from the DOM!');
});

See dom/disconnectedCallback() for details.

instance.onmutated()

This method observes when the current matched element is added to, or removed from the document or given context. It uses the dom/mutationCallback() function.

This method observes when the current matched element is added to, or removed from the document or given context. It uses the dom/mutationCallback() function.

// Observe "onmutated"
$('#el').onmutated(connectedState => {
    // If connectedState === 1, connected else if connectedState === 0, disconnected
    console.log('I am now ' + (connectedState ? 'connected to' : 'disconnected from') + ' the DOM!');
});

See dom/mutationCallback() for details.

instance.onattrchange()

This method observes changes on attributes of the current matched element. It uses the dom/attrChangeCallback() function.

This method observes changes on attributes of the current matched element. It uses the dom/attrChangeCallback() function.

// Observe "onattrchange"
$('#el').onattrchange(changes => {
    changes.forEach(change => {
        console.log(change);
    });
}, 'attrName');

See dom/attrChangeCallback() for details.

instance.onresize()

This method observes changes on the size of the current matched element. It uses the ui/resizeCallback() function.

This method observes changes on the size of the current matched element. It uses the ui/resizeCallback() function.

// Observe "onresize"
$('#el').onresize(newSize => {
    console.log(newSize);
});

See ui/resizeCallback() for details.