bellhop-iframe

WebJar for bellhop-iframe

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

bellhop-iframe
Last Version

Last Version

3.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

bellhop-iframe
WebJar for bellhop-iframe
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/SpringRoll/Bellhop

Download bellhop-iframe

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/bellhop-iframe/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>bellhop-iframe</artifactId>
    <version>3.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/bellhop-iframe/
implementation 'org.webjars.npm:bellhop-iframe:3.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/bellhop-iframe/
implementation ("org.webjars.npm:bellhop-iframe:3.0.0")
'org.webjars.npm:bellhop-iframe:jar:3.0.0'
<dependency org="org.webjars.npm" name="bellhop-iframe" rev="3.0.0">
  <artifact name="bellhop-iframe" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='bellhop-iframe', version='3.0.0')
)
libraryDependencies += "org.webjars.npm" % "bellhop-iframe" % "3.0.0"
[org.webjars.npm/bellhop-iframe "3.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Bellhop Actions Status Dependency Status

Bellhop is a simple event-based communication layer between the page DOM and an iframe. It doesn't require any additional dependencies. Super easy to use and setup.

Installation

npm install bellhop-iframe

Importing Bellhop

The Bellhop module contains support for ES6 modules, CommonJS and browser global definitions. To import with ES6,

import { Bellhop } from 'bellhop-iframe';

To import with CommonJS, refer instead to the UMD build

const Bellhop = require('bellhop-iframe/dist/bellhop-umd.js');

You can also import the UMD version by using import

import 'bellhop-iframe/dist/bellhop-umd.js';

Lastly, the UMD module can also be directly included on an HTML page. This will declare Bellhop and attach it directly to window

<script src="node_modules/bellhop-iframe/dist/bellhop-umd.js"></script>

Basic Usage

Here's a very simple example to get started. We have two pages index.html and child.html.This is the minimum you need to start get them talking to each other.

Contents of index.html

<iframe src="child.html" id="page" width="200" height="200"></iframe>
<script>

// Create the bellhop object
const bellhop = new Bellhop();

// Pass in the iframe DOM object
bellhop.connect(document.getElementById("page"));

// Listen for the 'init' event from the iframe
bellhop.on('init', function(event){
  // Handle the event here!
});

// Send data to the iframe
bellhop.send('user', {
  "name" : "Dave Smith",
  "age" : 16,
  "city" : "Boston"
});
</script>

Contents of child.html

<script>

// Create the bellhop object
const bellhop = new Bellhop();
bellhop.connect();

// An example event to sent to the parent
bellhop.send('init');

// Handle events from the parent
bellhop.on('user', function(event){
  // Capture the data from the event
  const user = event.data;
});
</script>

Available Methods

new Bellhop

The constructor creates a new Bellhop instance, taking an optional unique identifier for this instance. If no id is provided, a random one is selected

connect

Connects a Bellhop instance to an iframe, or it's containing window. For instance, given a Bellhop instance bellhop:

bellhop.connect();

will connect a child iframe to it's parent, allowing it to emit messages out of the iframe. However,

var iframe = document.querySelector('iframe');
bellhop.connect(iframe);

allows a containing page to connect with an interior iframe and emit message into the iframe.

destroy

disconnect removes any listener for events from another frame, and stops listening for messages altogether

send

Sends a named message to another iframe:

bellhop.send('newHighscore', { value: 100 });

fetch and respond

Convenience methods for automating response of values between the interior and exterior of frames. For instance:

// index.html
var iframe = document.querySelector('iframe');
var bellhop = new Bellhop(iframe);
bellhop.connect();
bellhop.respond('config', { difficulty: 'hard', theme: 'dark' });


// child.html
var bellhop = new Bellhop();
bellhop.connect();
bellhop.fetch('config', function(result) {
  console.log(result); // { difficulty: 'hard', theme: 'dark' }
});

Additionally, object passed to respond() can be a function, whose result will be returned in the callback of the fetch function.

// index.html
var functionExample = function(){
  return "result of functionExample";
};
bellhop.respond('function', functionExample);

// child.html
bellhop.fetch('function', function(result) {
  console.log(result.data); //result of functionExample
});

Furthermore, respond() accepts a plain object, string, or number. If a function is passed, it will be called and the function's return-value sent. If a promise is passed in or returned from a function that was passed in, that promise will be await-ed before it's value returned.

For example, the following all return "data" to bellhop.fetch()

//(example)
bellhop.respond('example', "data");

//OR  (promise example)
let promiseData = new Promise(function(resolve, reject) {
  resolve("data")
});
bellhop.respond('example', promiseData)

//OR  (function example)
var functionExample = function(){
  return "data";
};
bellhop.respond('example', functionExample);

//OR (function that returns a promise)
var functionPromiseExample = function(){
  return new Promise(function(resolve, reject) {
    resolve("data")
  });
};
bellhop.respond('example', functionPromiseExample);

Debug Mode

Bellhop has a debug mode which enables additional logging when an instance sends or receives a message. It can be enabled by simply setting the debug flag to true:

bellhop.debug = true;

By default (above method) it will print a message outlining whether the bellhop instance was a child or parent, whether the message was sent or received, and the contents of the message. If you require additional or custom logging you can also pass a function as the flag.

const log = () => {console.log('Hello World!');}
bellhop.debug = log; // Hello World!

If you pass a function to debug three parameters* are passed to help fill out the log statements if required:

const log = ({isChild, received, message}) => {
  console.log(isChild); // (boolean) whether the instance is a child or parent.
  console.log(received); // (boolean) whether the instance has received a message or sent one.
  console.log(message); // (object) the content of the message.
}

*Note: the names must be identical, but you are able to omit any or all if they're not required.

target

Property for retrieving the iframe element through which this Bellhop instance is communicating:

var iframe = document.querySelector('iframe');
var bellhop = new Bellhop(iframe);

console.log(bellhop.target === iframe.contentWindow); // true

License

Copyright (c) 2018 Springroll

Released under the MIT License.

org.webjars.npm

SpringRoll

Building Portable, Accessible, Educational Experiences

Versions

Version
3.0.0
2.1.2
1.2.0