A compose area with support for Emoji, written with Rust + Webassembly.
Demo: https://threema-ch.github.io/compose-area/
This project provides a simple text editor with support for media content (e.g. emoji), implemented on top of a content editable div.
The input handling is done entirely by the browser. The library should be notified every time the caret position is changed, so it can update its internal state. It provides methods to insert text, images or other block elements. Selection and caret position are handled automatically.
This project is published to npmjs.com:
https://www.npmjs.com/package/@threema/compose-area
The published package contains files for two different wasm-pack build targets:
- The root directory contains files for the wasm-pack
bundler
target. You will need a bundler like webpack in order to use the library this way. - In the
web
subdirectory (i.e.node_modules/@threema/compose-area/web/
) you will find files built for the wasm-packweb
target.
Note: A dependency graph that contains any wasm must all be imported asynchronously. This can be done using dynamic imports.
The simplest way is to use a bootstrapping js as the entry point to your entire application:
// bootstrap.js
import('./index.js')
.catch(e => console.error('Error importing `index.js`:', e));
// index.js
import * as ca from '@threema/compose-area';
Alternatively, import the library asynchronously:
import('@threema/compose-area')
.then((ca) => {
// Use the library
});
If you're in an asynchronous context, you can also use the await
keyword.
const ca = await import('@threema/compose-area');
This library requires a wrapper element with white-space
set to pre
or
pre-wrap
in order to work properly.
<div id="wrapper" style="white-space: pre-wrap;"></div>
First, bind to the wrapper element:
const area = ca.ComposeArea.bind_to(document.getElementById('wrapper'));
Because the insertion should work even when there is no selection / focus inside the compose area, the library needs to know about all selection change events. Register them using an event listener:
document.addEventListener('selectionchange', (e) => {
area.store_selection_range();
});
Now you can start typing inside the compose area. It behaves like a regular content editable div.
To insert text or images through code, use the following two functions:
// src alt class
area.insert_image("emoji.jpg", "π", "emoji");
// text
area.insert_text("hello");
You can also insert HTML or a DOM node directly:
area.insert_html("<div></div>");
area.insert_node(document.createElement("span"));
(Note: Due to browser limitations, inserting a node directly will not result
in a new entry in the browser's internal undo stack. This means that the node
insertion cannot be undone using Ctrl+Z. If you need that, use insert_html
instead.)
The insert_image
method returns a reference to the inserted element, so that
you can set custom attributes on it.
const img = area.insert_image(...);
img.draggable = false;
img.ondragstart = (e) => e.preventDefault();
If you want to properly handle pasting of formatted text, intercept the paste
event:
wrapper.addEventListener('paste', (e) => {
e.preventDefault();
const clipboardData = e.clipboardData.getData('text/plain');
if (clipboardData) {
area.insert_text(clipboardData);
}
});
To extract the text from the area, there's also a method:
area.get_text();
By default, leading and trailing white-space is trimmed from the text. To
disable this, pass true
to the get_text
method.
area.get_text(true /* no_trim */);
To test whether the compose area is empty:
area.is_empty();
By default, if the compose area contains purely white-space, this method still
considers the compose area to be empty. If you want a compose area containing
white-space to be treated as non-empty, pass true
to the is_empty
method.
area.is_empty(true /* no_trim */);
To focus the compose area programmatically:
area.focus();
To clear the contents of the compose area:
area.clear();
cargo install wasm-pack
# Debug build
wasm-pack build
# Release build
wasm-pack build --release -- --no-default-features
# Setup npm
cd www
npm install
# Run server
npm run start
# Unit tests
cargo test
# Browser tests (headless)
wasm-pack test --headless --firefox
# ...or if you want to filter tests by name
wasm-pack test --headless --firefox . -- <filter>
# Selenium tests (test server must be started)
cd selenium
npm test firefox
# Setup
rustup component add clippy
# Run linting checks
cargo clean && cargo clippy --all-targets --all-features
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.