Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rajasegar/ember-dayjs-helpers

Ember Template helpers based on day.js
https://github.com/rajasegar/ember-dayjs-helpers

date datetime dayjs ember-addon format

Last synced: 13 days ago
JSON representation

Ember Template helpers based on day.js

Awesome Lists containing this project

README

        

ember-dayjs-helpers
==============================================================================
![Build and Deploy](https://github.com/rajasegar/ember-dayjs-helpers/workflows/Build%20and%20Deploy/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/rajasegar/ember-dayjs-helpers/badge.svg?branch=master)](https://coveralls.io/github/rajasegar/ember-dayjs-helpers?branch=master)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![npm version](http://img.shields.io/npm/v/ember-dayjs-helpers.svg?style=flat)](https://npmjs.org/package/ember-dayjs-helpers "View this project on npm")
[![EmberObserver](http://emberobserver.com/badges/ember-dayjs-helpers.svg?branch=master)](http://emberobserver.com/addons/ember-dayjs-helpers)

30+ Ember.js template helpers based on [day.js](https://day.js.org/en), a fast 2kB alternative to Moment.js with the same modern API

Installation
------------------------------------------------------------------------------

```
ember install ember-dayjs-helpers
```

Usage
------------------------------------------------------------------------------

View the [Demo](https://rajasegar.github.io/ember-dayjs-helpers) page for more examples.

Using in templates
```hbs
{{ day-js }} => Display today's date
{{ day-js date='2019-01-25' format='DD-MM-YYYY'}} => 25-01-2019
{{ day-js date='2019-01-25' format='DD MMMM YYYY'}} => 25 January 2019
```

Using inside Javascript
```js
import dayjs from 'dayjs';
...
const yesterday = dayjs().subtract(1, 'day').toString()
const tomorrow = dayjs().add(1, 'day').toString()
const lastWeek = dayjs().subtract(1, 'week').toString()
const nextWeek = dayjs().add(1, 'week').toString()
const lastMonth = dayjs().subtract(1, 'month').toString()
const nextMonth = dayjs().add(1, 'month').toString()
const lastYear = dayjs().subtract(1, 'year').toString()
const nextYear = dayjs().add(1, 'year').toString()
```

## Helpers

### Display Helpers
- day-js
- dayjs-format
- dayjs-from
- dayjs-from-now
- dayjs-to
- dayjs-to-now
- dayjs-calendar
- dayjs-diff
- days-in-month
- dayjs-date
- dayjs-day-of-week
- dayjs-weekday
- dayjs-day-of-year
- dayjs-week-of-year

### Manipulate Helpers
- dayjs-add
- dayjs-subtract
- dayjs-start-of
- dayjs-end-of

### Query Helpers
- dayjs-is-before
- dayjs-is-same
- dayjs-is-after
- dayjs-is-same-or-before
- dayjs-is-same-or-after
- dayjs-is-between
- dayjs-is-leap-year

### i18n Helpers
- dayjs-weekdays
- dayjs-weekdays-short
- dayjs-weekdays-min
- dayjs-months
- dayjs-months-short

Compatibility
------------------------------------------------------------------------------

* Ember.js v3.12 or above
* Ember CLI v2.13 or above
* Node.js v10 or above

Contributing
------------------------------------------------------------------------------

See the [Contributing](CONTRIBUTING.md) guide for details.

License
------------------------------------------------------------------------------

This project is licensed under the [MIT License](LICENSE.md).