1.0.2 • Published 4 years ago

@smithalan2/vue-countdown v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Vue Countdown

A simple countdown timer component for Vue 3 written using the composition API.

Demo https://smithalan92.github.io/vue-countdown/


Installation

Install with npm

npm i --save @smithalan2/vue-countdown

Props

NameTypeRequiredDefaultNotes
startDateTimeDatenonew Date() on each tickPassing a start date time will result in only 1 calc being made.
endDateTimeDateyesn/a----
startImmediatelyBooleanfalsetrueIf passed as false, you need to call run on the component ref.
tickDelayNumberno1000ms to run each recalculation.

Events

NameArgsNotes
startNoneEmitted the first time a countdown starts
finishedNoneEmitted when the countdown has reached the end time
cancelledNoneEmitted when the countdown has been cancelled
tickCountdownThe newely calculated countdown values

Slot props

If the component is passed a default slot. The slot will recieve a prop with Countdown data


Exposed Properties

The component instance exposes a number of properties that can be used if required.

NameNotes
runA function to manually start the countdown.
cancelA function to cancel the countdown
countdownThe actual reactive countdown data

Countdown Data

The countdown data is a reactive object. It is passed as a slot prop and also given as a param to the tick event.

The countdown prop contains the values for the countown, as well as formatted text that can be used for display. The countdown data object is structured as follows

{
  remainingSeconds: { value: Number, text: String },
  remainingMinutes: { value: Number, text: String },
  remainingHours: { value: Number, text: String },
  remainingDays: { value: Number, text: String },
  remainingWeeks: { value: Number, text: String },
  remainingMonths: { value: Number, text: String },
  remainingYears: { value: Number, text: String },
}

Sample key values may are

remainingYears: { value: 0, text: '0 years' },
remainingDays: { value: 1, text: '1 day' },
remainingSeconds: { value: 54, text: '54 seconds' },

Sample Usage

vue-countdown can be used in 2 ways. You can either use slots to render out the countdown, or provide no slot and listen to the tick event to get countdown updates and do whatever you need to.

With slots

<vue-countdown
  :end-date-time="endDateTime">
  <template
    v-slot:default="{ countdown }">
    {{ countdown }}
  </template>
</vue-countdown>

With event

<vue-countdown
  :end-date-time="endDateTime"
  @tick="onTick">
...
onTick(countdown) {
  ...
}

License

See License.md

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago