Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markhilton/vuetify-date-range-picker
Date Range Picker component build with Vuetify.
https://github.com/markhilton/vuetify-date-range-picker
Last synced: about 1 month ago
JSON representation
Date Range Picker component build with Vuetify.
- Host: GitHub
- URL: https://github.com/markhilton/vuetify-date-range-picker
- Owner: markhilton
- License: mit
- Created: 2020-06-18T18:01:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T01:13:28.000Z (almost 2 years ago)
- Last Synced: 2024-04-24T18:08:14.807Z (9 months ago)
- Language: Vue
- Size: 2.71 MB
- Stars: 2
- Watchers: 3
- Forks: 7
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Vuetify Date Range Picker
Date Range Picker component build with Vuetify, optimized for best mobile and desktop user experience.
- [Install](#installation)
- [Usage](#usage)
- [Props](#available-props)
- [Events](#events)## Install
```bash
npm install @nerd305/vuetify-date-range-picker
``````javascript
import DateRangePicker from '@nerd305/vuetify-date-range-picker'export default {
// ...
components: {
DateRangePicker
}
// ...
}
```## Usage
```html
```
example configuration using last 30 days preset and compare to previous period:
```html
import { datePickerStores } from '@nerd305/vuetify-date-range-picker'
import { presets } from '@nerd305/vuetify-date-range-picker'const configuration = {
dark: false,
compare: true,
dateFormat: 'MMM Do, YYYY',
dateStart: presets.LAST_30_DAYS[0],
dateUntil: presets.LAST_30_DAYS[1],
compareStart: presets.PREVIOUS_PERIOD[LAST_30_DAYS][0],
compareUntil: presets.PREVIOUS_PERIOD[LAST_30_DAYS][1],
primaryPreset: LAST_30_DAYS,
comparePreset: PREVIOUS_PERIOD
}```
## Available props
| Prop | Type | Default | Description |
| ----------- | ------ | ------------- | ---------------------------------------------- |
| config | Object | configuration | Date format of the DateRangePicker |
| namespace | String | none | DateRangePicker Pinia Store |
| storeNames | Array | none | Array of Date formats for the DateRangePicker || Object property | Type | Default | Description |
| --------------- | ------- | --------------- | ------------------------------------------------------------------------ |
| dark | Boolean | false | dark theme for DateRangePicker |
| compare | Boolean | false | turn on/off comare period |
| dateFormat | String | MM-DD-YYYY | Date format of the DateRangePicker |
| dateStart | STRING | DAYS_AGO_7 | 7 days ago |
| dateUntil | STRING | TODAY | today |
| compareStart | STRING | DAYS_AGO_15 | 7 prior days from dateStart |
| compareUntil | STRING | DAYS_AGO_8 | 7 prior days from dateuntil |
| primaryPreset | STRING | LAST_WEEK | constant name representing last week |
| comparePreset | STRING | PREVIOUS_PERIOD | constant name representing previous 7 days from primary preset selection |## Events
These events are emitted on actions in the datepicker
| Event | Output | Description |
| ------ | ------- | ----------------------------------------------------------------------------------------------------------------------- |
| change | Object | Date Range Picker date range selections, selected preset, comparison period, as described in above configuration object |
| opened | Boolean | emits true if the component is engaged and false when not |## Date formatting
#### String formatter
Should be parsing and using date string format as in `moment` package.
| Token | Desc | Example |
| ----- | ---------------------- | ----------- |
| d | day | 1 |
| dd | 0 prefixed day | 01 |
| D | abbr day | Mon |
| su | date suffix | st, nd, rd |
| M | month number (1 based) | 1 (for Jan) |
| MM | 0 prefixed month | 01 |
| MMM | abbreviated month name | Jan |
| MMMM | month name | January |
| yy | two digit year | 16 |
| yyyy | four digit year | 2016 |### Presets
#### Static presets
Used for primary date range selection
- LAST_WEEK
- LAST_MONTH
- LAST_7_DAYS
- LAST_30_DAYS#### Computed presets
Used for compare date range selection based on primary date range selection
- PREVIOUS_PERIOD
- PREVIOUS_YEAR