npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@financial-times/ads-embed

v5.8.0

Published

Facilitate communication between advertising creatives in iframes and the main o-ads library via post message

Downloads

96

Readme

ads-embed

This module facilitates communication between advertising creatives in iframes and the @financial-times/ads-legacy-o-ads library via post message. It requires an instance of ads-legacy-o-ads's module to be existing in the top window to listen for the message.

This module is designed to be included in advertising creatives and not installed as a dependency.

Touch Events

On touch screen devices touch events are captured by iframes and not passed on to the parent page, this can be an issue under some circumstances such as an ad included in a gallery where swiping is required to move forwards.

To mitigate these circumstances ads-embed will detect when a touch screen is present and post the touchstart, touchend and touchmove events to ads-legacy-o-ads via post message. You can listen for oAds.touch events in the top window if you need to react to these events.

Usage

Initialising

In a creative wrapper, include the following:

<script src="https://www.ft.com/__origami/service/build/v3/bundles/js?components=o-ads-embed@^3.0.0&system_code=advertising"></script>
if (window !== window.top) {
	window.Origami['o-ads-embed'].init();
}

Collapsing

In a creative in DFP, include the following:

<div data-o-ads-collapse></div>
<script src="https://www.ft.com/__origami/service/build/v3/bundles/js?components=o-ads-embed@^3.0.0&system_code=advertising"></script>
if (window !== window.top) {
	window.Origami['o-ads-embed'].init();
}

This will collapse any ad slot that serves the creative with this code inside it.

Send a 'slotClass' message

Since v4 ads-embed will send a postMessage to the top browsing context (usually the main window in a production setup) whenever an html element is found in its browsing context (i.e. the creative wrapper) that contains a data-o-ads-class attribute.

The postMessage will contain an object containing type: "oAds.slotClass". Additionally it will contain a property slotClass with the value of the data-o-ads-class attribute.

Example:

If the creative wrapper contains an element like this <div data-o-ads-class="sticky"></div>, a postMessage will be sent with a payload object like this:

{
  type: "oAds.slotClass",
  slotClass: "sticky"
}

Developers

Demos

There are two demos that demonstrate the two uses mentioned above. In order to get things running, you'll need to add the following lines at the bottom of main.js and run obt build.

window.Origami = {
	'o-ads-embed': oAdsEmbed
}

The reason for this is that in a creative wrapper, we would load o-ads-embed through the Origami registry, which places a global Origmai object on the page with all of the modules requested. When we run the demos, we simply include a built version of the module from /build/main.js.

Run the demo with obt demo --runServer.

Run the o-ads demos alongside (npm run demo-server), then visit http://localhost:3002/demos/local/o-ads-embed.html. You should see both the o-ads-embed demos load up in iframes on this page.