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

ember-stopwatch

v1.2.1

Published

Stopwatches, timers, clocks, oh my!

Downloads

365

Readme

ember-stopwatch

NPM Build Status Ember Observer Score Ember Version Download count Code Climate Test Coverage

This addon provides some utilities and services that make it easier to control timing in your Ember applications.

Installation

ember install ember-stopwatch

Demo

Demo

Usage

Stopwatch

A Stopwatch is a utility that allows you to be notified when ticks occur, making it easy for you to asynchronously take action on time-based boundaries.

The Stopwatch uses @tracked properties so your application can react to changes in time, based on the tick interval.

The stop and reset methods allow you to either stop on the next tick interval, or forcefully ( i.e. immediately).

As an element modifier

The easiest and quickest way to start adding time utilities to your app is by using the stopwatch-tick modifier.

Your action handler will be passed the elapsed time and number of durations (ticks).

Note that the stopwatch will start as soon as your element is inserted and the modifier is instrumented.

<div {{stopwatch-tick 1000 (fn (mut this.finishedLoading) true)}}>
    {{#if this.finishedLoading}}
        Waited 1 second, loaded!
    {{/if}}
</div>

You can also provide a number of ticks as an optional named parameter.

<div {{stopwatch-tick 1000 (fn (mut this.finishedLoading) true) ticks=10}}>
    {{#if this.finishedLoading}}
        Waited 10 seconds, loaded!
    {{/if}}
</div>

There also exists an alias for stopwatch-tick named call-after which may be more intuitive for your use-case.

<div {{call-after 1000 (fn (mut this.finishedLoading) true)}}>
    ...
</div>

As a utility

This allows you to create multiple stopwatches anywhere in your application.

import Stopwatch from "ember-stopwatch/utils/stopwatch";

// ...
let stopwatch = new Stopwatch();
stopwatch.start();
stopwatch.stop();
stopwatch.reset();
stopwatch.on("tick", someHandler);
// ...
{{this.stopwatch.elapsedMillis}}
{{this.stopwatch.numTicks}}

As a Service

A stopwatch service can be used that is shared globally in your application.

export default class extends Component {
    @service stopwatch;

    @action
    start() {
        this.stopwatch.start();
    }

    @action
    stop() {
        this.stopwatch.stop();
    }
}

Timer

A Timer is a utility that extends the Stopwatch behavior described above, except that the use-case is to handle "countdown" eventing. This enables your application to react to a timeout event.

Additionally, the Timer can be paused and restarted and contains reactful state properties ( e.g. remainingMillis and isExpired).

import Timer from "ember-stopwatch/utils/timer";

// ...
let timer = new Timer(60000);
timer.on("expired", this, expirationHandler);
timer.start();
// ...

expirationHandler(){
    console.log('Time is up!');
}
{{this.timer.remainingMillis}}
{{this.timer.isExpired}}

Clock

As an element modifier

The clock-tick modifier can be used to react to various time tick types, which includes second, minute, hour, and day.

Your action handler will be passed the current time (from the clock service), when triggered.

Note that the ticks will be triggered on clock time thresholds, not elapsed time / durations (e.g. when the actual clock rolls over to a new second, minute, hour, etc.).

export default class extends Component {
    @tracked time;
}
<div {{clock-tick "second" (fn (mut this.time))}}>
    {{moment-format this.time}}
</div>

As a utility

A Clock is a utility that tracks time ticks for the current system time.

A Clock triggers events on time ticks, including second, minute, hour, and day. A Clock also provides reactful time, date, second, minute, hour, and day properties.

import Clock from "ember-stopwatch/utils/clock";

// ...
let clock = new Clock();
clock.on("second", myHandler.bind(this, "second"));
clock.on("minute", myHandler.bind(this, "minute"));
clock.start();
// ...

myHandler(type) {
    console.log(`${type} ticked`);
}
{{this.clock.time}}

As a Service

A clock service automatically creates and starts a single instance of the Clock utility and is a proxy for properties and methods of a clock instance. A clock service also has @tracked versions of the clock properties second, minute, hour, and day that can be used by the other reactive getters in your application, including the @computed macros.

export default class extends Component {
    @service clock;
}
{{moment-format this.clock.time}}
export default class extends Component {
    @service clock;

    @computed("clock.minute")
    get timeByTheMinute() {
        return new Date().getTime();
    }

    @computed("clock.hour")
    get timeByTheHour() {
        return new Date().getTime();
    }

    @computed("clock.day")
    get timeByTheDay() {
        return new Date().getTime();
    }
}

Refreshes every second:
{{moment-format this.clock.time}}
Refreshes every minute:
{{moment-format this.timeByTheMinute}}
Refreshes every hour:
{{moment-format this.timeByTheHour}}
Refreshes every day:
{{moment-format this.timeByTheDay}}

Compatibility

  • Ember.js v3.28 or above
  • Ember CLI v3.28 or above
  • Node.js v14 or above

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.