1.0.3 • Published 6 years ago

ember-pick-time v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

ember-pick-time

This is an Ember addon that uses the wonderful ember-power-select component for allowing the user to select a time am / pm from a picklist.

Installation

Ember Time Picker has the same requirements as ember-power-select. Hence, we need to install ember-power-select as well. This is an ember-cli addon so this will install the addon:

npm install ember-pick-time

Example #1

Following is basic example with selected and disabled proporty.

    {{ember-pick-time
        selected = selectedTime
        interval = 15
        disabled=false
    }}

Example #2

Following is extended example with two timepickers. This is to handle "From Time" and "To time".

    From Time
    {{ember-pick-time
        selected = fromTime
        interval = 30
    }}
    To Time
    {{ember-pick-time
        selected = toTime
        interval = 60
        startTime = fromTime // Ex, '7:00 PM' or '12:15 AM'
        disabled = false // optional
    }}

Attributes

attributeTypeDescription
selectedRequiredThe selected option
startTimeoptionalThis will the time from which user want to display time-list
intervaloptionalThis will the interval in minutes. Should be one of 5, 15,30,60.
disabledbooleanDefault it's false. When truthy the component cannot be interacted