Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@weareglow/story-unit

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@weareglow/story-unit

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

Story Unit

An Instagram Story inspired component.

Usage

Add your markup. Start by creating a single element which will contain each chapter of your story. A chapter can be a video element or an image element. Make to include the appropriate video attribtues on your video elements. When using an image element, specify how long the image should be displayed with the data-duration attribute on your img element. Defaults to 1 second. See Below.

<div id="chapters">
  <video muted playsinline src="video.mp4"></video>
  <img data-duration="2" src="image.jpg" alt="" />
  <video muted playsinline src="video.mp4"></video>
  <video muted playsinline src="video.mp4" type="video/mp4"></video>
</div>

Now initialize your story by providing it with an options object.

var story = Story({
  el: '#chapters',
  animate: false // defaults to true. set to false if you want to handle chapter animations yourself.
})

Your story will now have a few methods you can call to get things rolling.

MethodDescription
playbegins the story
endjumps to end of story
replaystarts story from beginning

Now you probably want to know when the story's state changes, right? Get notified of story updates by subscribing to the following events:

EventDescriptionPayload
startfires when the story begins playing.{current, previous}
updatefires when the story's active chapter changes.{current, previous}
last-chapterfires at the start of the last chapter{current, previous}
endfires when the entire story has completed.{current, previous}
skip-to-endfires when the user skips to the end of the story{current, previous}

Event payloads

Each emitted event will send a payload that includes an object with current and previous properties. The current and previous properties each respectively have a ref property which is the DOM element of that chapter. This is useful if you want to handle animations on your own.

So lets subscribe to some events!


story.on('start', function(payload) {
 // payload.current.ref
 // payload.previous.ref
}

story.on('update', function(payload) {
 // payload.current.ref
 // payload.previous.ref
}

story.on('last-chapter', function(payload) {
 // payload.current.ref
 // payload.previous.ref
}

story.on('end', function(payload) {
 // payload.current.ref
 // payload.previous.ref
}

story.on('skip-to-end', function(payload) {
 // payload.current.ref
 // payload.previous.ref
}

So you've subscribed to some events...nice! How about allowing a user to initiate some actions themselves like, replaying the story, or skipping to the end? Easy!

var replayBtn = document.getElementById('replay-btn')
var skipBtn = document.getElementById('skip-btn')

replayBtn.addEventListener('click', story.replay.bind(story)) // notice we're binding our this context to the story, important!

skipBtn.addEventListener('click', story.end.bind(story))

You'll notice we have to bind our DOM event listeners this context to the story like story.replay.bind(this). This is important, as if you don't, the story won't have access to it's methods and properties.

FINALLY. Play the story!

story.play()

FAQs

Package last updated on 18 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc