Layer Web eXperience Development Kit
Browser Support Matrix:
Browser | Version | OS Tested Against |
---|
Internet Explorer | 11.0 | Windows 8.1 |
Edge | 16.0 | Windows 10 |
Edge | 13.0 | Windows 10 |
Safari | 11.0 | OSX 10.13 |
Safari | 10.0 | OSX 10.12 |
Safari (IOS) | default | IOS 11.1 |
Safari (IOS) | default | IOS 10.0 |
Chrome | 55 | OSX 11.0 |
Chrome | 48 | Linux |
Firefox | 58 | Windows 10 |
- Older versions of Chrome should work but are not tested
- Older versions of Firefox should work but currently fail unit tests due to how Jasmine 3.0.0 reports IndexedDB errors. While not officially supported, feel free to report issues on recent versions of Firefox.
- Older versions of Safari do not support Websockets and will not be supported
- Older versions of Edge are not supported
- Older versions of IE are not supported
Introduction
The Layer Web XDK provides a library of widgets to simplify adding chat capabilities into your application.
It is implemented using the Webcomponents Polyfill; in particular, this project uses the "light" version of the polyfill which means we do not use Shadow Dom.
Why use the Layer XDK UI Components?
- It handles a lot of capabilities for you:
- Sends read receipts on any message that has scrolled into view, and remained visible for 2.5s
- Sends typing indicators to other participants
- Renders typing indicators from other participants
- Pages your queries as the user scrolls
- Handles a variety of common text processing tasks (emoticons for example), and provides plugins for adding more
- Handles a variety of Message Types and provides plugins for adding more
- It is highly customizable
- You may replace a stylesheet for a given widget with your own stylesheet
- You may replace the HTML Template for a given widget with your own template
- You may replace an entire widget class with your own definition of that class
Installation
CDN
<script src='https://cdn.layer.com/xdk/4.0.0/layer-xdk.min.js'></script>
<link rel='stylesheet' href='https://cdn.layer.com/xdk/4.0.0/themes/layer-basic-blue.css' />
<script>
var client = window.Layer.init({
appId: 'layer:///apps/staging/UUID'
});
</script>
NPM
npm install @layerhq/web-xdk --save
var Layer = require('layer-xdk');
const client = Layer.init({
appId: 'layer:///apps/staging/UUID'
});
<link rel='stylesheet' href='node_modules/xdk/themes/build/layer-basic-blue.css' />
If using npm link
, note that after cloning this repo, run:
npm install
grunt prepublish
cd npm
npm link .
Build Commands
grunt develop
: Starts a webserver for running tests or sample apps, and watches for changes, rebuilding source and theme on any changegrunt docs
: Generate API Reference docs into folder ~/docs
; you may need to run gem install jsduck
first. Warning: Use Ruby 2.0
; later versions log too many errors.grunt theme
: Generate CSS files from the .less
filesgrunt debug
: Generate all lib folders and basic build files.grunt build
: Run's grunt debug
and grunt theme
and then generates all minified filesgrunt coverage
: Generate a coverage test build; additional steps shown below for running a coverage test
Coverage Tests
To run coverage tests:
grunt coverage
will write test/coverage-build.js
with an instrumented version of the build file- Run tests on
http://localhost:8004/test/CoverageRunner.html
- Open the javascript console and modify the test results with:
coverageResults = {};
Object.keys(__coverage__).forEach(key => {
// Simplify reporting paths by taking 'lib' out of the path
var newKey = key;
// Many components have a path of components/component_name/component_name.js;
// simplify reporting of paths to components/component_name.js
newKey = newKey.replace(/components\/.*\//, "components/");
var parts = newKey.split(/\//);
if (parts[parts.length-2] + '.js' == parts[parts.length-1]) {
parts.splice(parts.length-2, 1);
newKey = parts.join('/');
} else if (newKey.match(/\/ui\/cards\/[^/]+\/[^/]+\.js$/)) {
newKey = newKey.replace(/(\/ui\/cards\/)([^/]+\/)([^/]+\.js)$/, "$1$3");
console.log("newKey: " + newKey);
}
coverageResults[newKey] = __coverage__[key];
})
- Copy the results with
copy(JSON.stringify(coverageResults))
- Paste the results into
coverage/coverage.json
- Run the report generation tool with
istanbul report --root coverage --dir coverage/report html
- Open the report with
open coverage/report/index.html
Future Work
- This project does not use Shadow Dom due to performance implications of the Shadow Dom polyfill. The Shadow Dom API provides an ideal
mechanism for passing subcomponents such as buttons for the composer, and other custom elements as inputs. Currently, this can only be done
via dom manipulation; even in the case of
ConversationPanel.composeButtons
one must dom create elements,
put them in an array and then set composeButtons
to refer to them. This is especially bad in React. A better mechanism should be discussed,
and implemented. - Inclusion of standard dom nodes that go between messages, such as Date headers, Headers indicating "read up to here", etc... For now we just include the capability to build your own.
Development Notes
JSDuck is used to document this system. Properties and Methods are flagged as public/protected/private according to rules somewhat different from standard:
- Public: Part of the public API; Public methods whose names follow the form
onXXX
are not for calling publicly, but rather for customizing with mixins. They are public in the sense that they have been explicitly exposed for customization. - Protected: Any method that is not part of the Public API developers building apps would use, but which developers building custom Message Types would use are defined to be
@protected
. These will not always strictly follow rules for what it means to be Protected in Object Oriented terminology - Private: Any method that is neither intended as a public API, nor for developers building Custom Messages are treated as Private. They may in fact be accessed by other components, and are only Private in the sense that they are for internal framework use only.
Getting jsduck build to work:
- It runs with ruby 2.0.0 than ruby 2.4
gem install jsduck