ember-cli-date-textbox

This addon provides textbox components that can be used to choose dates by parsing language, e.g. today, +1 month, jun 1, etc.

Usage no npm install needed!

<script type="module">
  import emberCliDateTextbox from 'https://cdn.skypack.dev/ember-cli-date-textbox';
</script>

README

ember-cli-date-textbox

npm version downloads CircleCI Code Climate

Dependencies ember-observer-badge License

A textbox that will guess the date you want and assign it to your model or query-params.

Built With

ember-cli-2.18.2

Tested Against

ember-lts-2.4 ember-lts-2.8 ember-lts-2.12 ember-lts-2.16

ember-release-2.18 ember-default ember-beta ember-canary

Installation

The following will install this add-on:

ember install ember-cli-date-textbox

Upgrading

When working through the Ember upgrade process, I recommend invoking the ember install ember-cli-date-textbox command once you are done to get the latest version of the add-on.

Bower & JQuery

This add-on does not depend on bower libraries when installed in your application or add-on.

JQuery is still required as of 1.2.x of this addon.

Dependencies

ember-cli-text-support-mixins

The helper mixins from ember-cli-text-support-mixins are used by this textarea add-on to include support for:

  • autofocus
  • CTRL+ENTER submits the closest form
  • textarea focus automatically selects text

ember-moment

Used to format output according the browser locale information.

You should configure ember-moment to include the timezone API (see docs).

For example, in your config/environment.js add the following to the appropriate environment scope:

module.exports = function (/* environment, appConfig */) {
  return {
    moment: {
      // Options:
      // 'all' - all years, all timezones
      // '2010-2020' - 2010-2020, all timezones
      // 'none' - no data, just timezone API
      includeTimezone: 'all'
    }
  }
};

sugar-date

Used to parse your english variation of a date into the actual javascript Date instance.

Demo

The demonstration web application can be found here: http://ember-cli-date-textbox.cybertooth.io/.

What Does This Add-on Do?

This add-on supplies the following components:

  • input-date - a basic HTML textbox that will take your input and try to parse it to a date. If the parse succeeds, the date will be formatted according to your preference. Ideal for binding to your model's date fields (e.g. DS.attr('date')) or to your component or controller's properties.
  • input-iso8601 - another basic HTML textbox that will once again take your input, parse it to a date, and then store the ISO8601 representation of the date. This is a great way for binding your date to Ember's query parameters.

Further information about these items can be found in the Usage section below and in the demo (dummy) application.

Some Bootstrap Love...

If the supplied value can't be parsed to a date, we add the has-error style class to the .form-group that the {{input-date}} and/or {{input-iso8601}} belongs to. This visualizes that the date parse was rejected.

Usage

As mentioned above there are several examples on the demonstration site: http://ember-cli-date-textbox.cybertooth.io/

Components

{{input-date}}

This component makes a textbox. It takes in user input in the form of a date that is swiftly parsed and formatted. The parsed date object is assigned to the component's date property.

Arguments
  • date - REQUIRED. Rather than binding to the value property, this textbox input will be binding to the date attribute.
  • value - DO NOT USE. I mention the value property because you shouldn't bind anything to it. Users type in the textbox, the date they settle on will be formatted in the textbox which is assigned to the value property. In addition...if you supply a valid date attribute to this textbox, it will be formatted for you. Don't go being all clever trying to do things that are already taken care of for you.
  • afterParseFail - OPTIONAL, default undefined. Use this argument to bind an action that accepts this component as an argument. This action will be triggered only when the date parsing fails.
  • afterParseSuccess - OPTIONAL, default undefined. Use this argument to bind an action that accepts this component as an argument. This action will be triggered only when the date parsing succeeds.
  • beforeParse - OPTIONAL, default undefined. Use this argument to bind an action that accepts this component as an argument. This action will be triggered prior to every parsing action.
  • displayFormat - OPTIONAL, DEFAULT LL. Formatting is done using moment.js. The default format of your dates is the localized LL. You can change this however you want. See the demo.
  • endOfDay? - OPTIONAL, DEFAULT false.. When parsing dates, always set them to the last second of the day.
  • future? - OPTIONAL, DEFAULT false. If true, ambiguous dates like Sunday will be parsed as next Sunday. Note that non-ambiguous dates are not guaranteed to be in the future. Default is false.
  • past? - OPTIONAL, DEFAULT false. If true, ambiguous dates like Sunday will be parsed as last Sunday. Note that non-ambiguous dates are not guaranteed to be in the past. Default is false.
  • startOfDay? - OPTIONAL, DEFAULT false. When parsing dates, always set them to the start of the day. If set to true, this will take precedence over the endOfDay property.
  • timezone - OPTIONAL, DEFAULT moment.tz.guess(). Dates will be parsed and formatted in the specified timezone.
  • All the attributes from ember-cli-text-support-mixins' {{input-text}}. See https://github.com/cybertoothca/ember-cli-text-support-mixins#arguments
  • All the standard input attributes that apply to text boxes.

Examples

{{input-date date=myModel.createdOn displayFormat="llll"}}

{{input-date date=someComponentProperty}}

<div class="form-group">
  <label for="js-updated-on" class="control-label">Updated</label>
  {{input-date classNames="form-control" elementId="js-updated-on" date=anotherModel.updatedOn}}
  <p class="help-block">Use with bootstrap!</p>
</div>

(Check out the demo...)

{{input-iso8601}}

What's iso8601? Go read: https://en.wikipedia.org/wiki/ISO_8601

Just like {{input-date}}, {{input-iso8601}} also makes a simple textbox. It takes in user input in the form of a date that is swiftly parsed and formatted.

Arguments
  • iso8601 - REQUIRED & MUST BE A STRING. Like the {{input-date}} component we do not use the textbox's value property and instead bind to the iso8601 attribute. This iso8601 attribute expects a String and it should be in ISO format (e.g. yyyy-MM-ddTHH:mm:ssZ).
  • value - DO NOT USE. I mention the value property because you shouldn't bind anything to it. Users type in the textbox, the date they settle on will be formatted in the textbox which is assigned to the value property. In addition...if you supply a valid date attribute to this textbox, it will be formatted for you. Don't go being all clever trying to do things that are already taken care of for you.
  • afterParseFail - OPTIONAL, default undefined. Use this argument to bind an action that accepts this component as an argument. This action will be triggered only when the date parsing fails.
  • afterParseSuccess - OPTIONAL, default undefined. Use this argument to bind an action that accepts this component as an argument. This action will be triggered only when the date parsing succeeds.
  • beforeParse - OPTIONAL, default undefined. Use this argument to bind an action that accepts this component as an argument. This action will be triggered prior to every parsing action.
  • displayFormat - OPTIONAL, DEFAULT LL. Formatting is done using moment.js. The default format of your dates is the localized LL. You can change this however you want. See the demo.
  • endOfDay? - OPTIONAL, DEFAULT false.. When parsing dates, always set them to the last second of the day.
  • future? - OPTIONAL, DEFAULT false. If true, ambiguous dates like Sunday will be parsed as next Sunday. Note that non-ambiguous dates are not guaranteed to be in the future. Default is false.
  • past? - OPTIONAL, DEFAULT false. If true, ambiguous dates like Sunday will be parsed as last Sunday. Note that non-ambiguous dates are not guaranteed to be in the past. Default is false.
  • startOfDay? - OPTIONAL, DEFAULT false. When parsing dates, always set them to the start of the day. If set to true, this will take precedence over the endOfDay property.
  • timezone - OPTIONAL, DEFAULT moment.tz.guess(). Dates will be parsed and formatted in the specified timezone.
  • All the attributes from ember-cli-text-support-mixins' {{input-text}}. See https://github.com/cybertoothca/ember-cli-text-support-mixins#arguments
  • All the standard input attributes that apply to text boxes.

Examples

{{input-iso8601 iso8601=myControllerProperty displayFormat="llll"}}

<div class="form-group">
  <label for="js-from" class="control-label">Date From</label>
  {{input-iso8601 classNames="form-control" elementId="js-from" iso8601=anotherControllerProperty}}
  <p class="help-block">Use with bootstrap!</p>
</div>

(Check out the demo...)

Troubleshooting And Tips

None...at least that I can think of.


Ember Add-on Building And Testing

Setup

Checkout

git clone git@github.com:cybertoothca/ember-cli-date-textbox.git

With Yarn

yarn

Running The Dummy Application

  • ember server
  • Visit your app at http://localhost:4200.

Running Add-on Tests

  • npm test (Runs ember try:testall to test your add-on against multiple Ember versions)
  • ember test
  • ember test --server

Building The Add-on

  • ember build

For more information on using ember-cli, visit http://ember-cli.com/.

Linking This Add-on For Local Testing

Linking

Use yarn.

# from this add-on project
$ yarn link
# from the other project that depends on this add-on
$ yarn link ember-cli-date-textbox

Unlinking

Again, use yarn.

# from the other project that linked to this add-on
$ yarn unlink ember-cli-date-textbox
# from this add-on project
$ yarn unlink

Deploying The Dummy Application

Make sure your ~/.aws/credentials file has a profile named cybertooth with a valid key and secret,

[cybertooth]
aws_access_key_id = <KEY>
aws_secret_access_key = <SECRET>

Deploy by invoking the following command: ember deploy production

Confirm your changes are showing up in our S3 container: http://ember-cli-date-textbox.cybertooth.io/

Releasing & Publishing To NPM

npm version x.y.z-sub.#
git push
git push --tags
npm publish
ember deploy production