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

vue-countdown-plus

v1.1.4

Published

A simple countdown component for Vue2.x.

Downloads

539

Readme

vue-countdown-plus

A simple countdown component for Vue2.x.

Live Demo

Installation

npm install vue-countdown-plus --save

Usage

Basic

<countdown-plus :time="30 * 60 * 60 * 1000" />

Custom Format

<countdown-plus
  :time="30 * 60 * 60 * 1000"
  format="DD ~Day, HH:mm:ss"
/>

Custom Style

<countdown-plus
  :time="30 * 60 * 60 * 1000"
  format="HH:mm:ss"
>
  <template v-slot="{ resolved }">
    <span class="countdown-item">{{ resolved.HH }}</span> :
    <span class="countdown-item">{{ resolved.mm }}</span> :
    <span class="countdown-item">{{ resolved.ss }}</span>
  </template>
</countdown-plus>

Masual Control

<div>
  <countdown-plus
    ref="countdown"
    :time="30 * 60 * 60 * 1000"
    :auto-start="false"
  />
  <div class="control-buttons">
    <button @click="start">Start</button>
    <button @click="pause">Pause</button>
    <button @click="reset">Reset</button>
  </div>
</div>
export default {
  methods: {
    start() {
      this.$refs.countdown.start()
    },
    pause() {
      this.$refs.countdown.stop()
    },
    reset() {
      this.$refs.countdown.reset()
    }
  }
}

Second Count Down

<countdown-plus :time="60 * 1000" format="ss" />

Events

<countdown-plus
  :time="5 * 1000"
  format="ss"
  @change="handleChange"
  @finish="handleFinish"
/>
export default {
  methods: {
    handleChange ({ currentTime, resolved, formatted }) {
      console.log(currentTime, resolved, formatted)
    },
    handleFinish () {
      console.log('finished')
    }
  }
}

API

Props

| Prop | Description | Type | Default | | ---------- | -------------------------------- | ------- | -------- | | time | Total time | number | 0 | | format | Time format | string | HH:mm:ss | | auto-start | Whether to auto start count down | boolean | true |

Available formats

| Format | Description | | ------ | -------------------- | | D | Day | | DD | Day, leading zero | | H | Hour | | HH | Hour, leading zero | | m | Minute | | mm | Minute, leading zero | | s | Second | | ss | Second, leading zero | | S | Millisecond, 1-digit | | SS | Millisecond, 2-digit |

If you don't want to convert a unit charactor you can prefixing the character ~ before the unit character.

For example, format prop DD Day HH:mm:ss will be converted to 01 1ay HH:mm:ss, the word Day is incorrectly converted to 1ay. Using DD ~Day HH:mm:ss can solve this problem.

Events

| Event | Description | Arguments | | ------ | -------------------------------- | --------- | | change | Emitted when count down changed | { currentTime, resolved, formatted } | | finish | Emitted when count down finished | - |

Slots

| Name | Description | SlotProps | | ------- | -------------- | ------------------------------ | | default | Custom Content | countdown, resolved, formatted |

SlotProps

| Name | Type | Description | | --------- | ------ | ------------------------------------ | | countdown | number | Remaining countdown | | resolved | object | Remaining countdown after resolving | | formatted | string | Remaining countdown after formatting |

resolved is an object contains resolved countdown according to the format prop.

For example, resolved may be { mm: 10, ss: 10, SS: 10 } when format is mm:ss:SS. So you can custom display according resolved.

If an time unit is not in prop format, it will not be in resolved.

Methods

| Name | Description | Attribute | Return Value | | ----- | ---------------- | --------- | ------------ | | start | Start count down | - | - | | stop | Stop count down | - | - | | reset | Reset count down | - | - |

Attributes

| Name | Type | Description | | ----------- | ------- | ------------------------------------ | | currentTime | number | Remaining countdown | | resolved | object | Remaining countdown after resolving | | formatted | string | Remaining countdown after formatting | | inCountdown | boolean | Whether in countdown |

License

vue-countdown-plus is licensed under The MIT License.