• Stars
    star
    218
  • Rank 176,930 (Top 4 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 6 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Range date picker with simple usage

VueRangedatePicker

npm vue2 travis codecov Codacy Badge

Date picker with range selection

Demo

https://bliblidotcom.github.io/vue-rangedate-picker/demo/

Installation

npm install --save vue-rangedate-picker

Usage

Bundler (Webpack, Rollup)

import Vue from 'vue'
import VueRangedatePicker from 'vue-rangedate-picker'

Vue.use(VueRangedatePicker)

Browser

<!-- Include after Vue -->
<!-- Local files -->
<script src="vue-rangedate-picker/dist/vue-rangedate-picker.min.js"></script>

<!-- From CDN -->
<script src="https://unpkg.com/vue-rangedate-picker"></script>

Available Events

You can catch these below Events to <rangedate-picker @events="events"></rangedate-picker> template :

  • selected

    Description : function that will $emit when datepicker set value, this function will get parameter response :

    {
      start: dateObjectStart
      end: dateObjectEnd
    }

Available Props

You can pass these below props to <rangedate-picker :props="props"></rangedate-picker> template :

  • configs

    Description : -

    Type : Object

    Default Value : {}

  • i18n

    Description : For text translation (currently: ID/EN)

    Type : String

    Default Value : 'ID'

  • months

    Description : Array of months name

    Type : Array

    Default Value :

    ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli',
     'Agustus', 'September', 'Oktober', 'November', 'Desember']
  • shortDays

    Description : Array of days name in short

    Type : Array

    Default Value :

    ['Min', 'Sen', 'Sel', 'Rab', 'Kam', 'Jum', 'Sab']
  • captions

    Description : Object for text title and OK button

    Type : Object

    Default Value :

    {
      'title': 'Choose Dates',
      'ok_button': 'Apply'
    }
  • format

    Description : Date format

    Type : String

    Default Value : 'DD MMM YYYY'

  • styles

    Description : -

    Type : Object

    Default Value :

    {
      daysWeeks: 'calendar_weeks',
      days: 'calendar_days',
      daysSelected: 'calendar_days_selected',
      daysInRange: 'calendar_days_in-range',
      firstDate: 'calendar_month_left',
      secondDate: 'calendar_month_right',
      presetRanges: 'calendar_preset-ranges'
    }
  • initRange

    Description : -

    Type : Object

    Default Value : null

  • startActiveMonth

    Description : Month will be shown in first launch

    Type : Number

    Default Value : new Date().getMonth()

  • startActiveYear

    Description : Year will be shown in first launch

    Type : Number

    Default Value : new Date().getFullYear()

  • presetRanges

    Description : Set of objects that will shown as quick selection of daterange

    Type : Object

    Example Object :

    {
      today: function () {
        const n = new Date()
        const startToday = new Date(n.getFullYear(), n.getMonth(), n.getDate() + 1, 0, 0)
        const endToday = new Date(n.getFullYear(), n.getMonth(), n.getDate() + 1, 23, 59)
        return {
          label: presetRangeLabel[i18n].today,
          active: false,
          dateRange: {
            start: startToday,
            end: endToday
          }
        }
      }
    }

    Default Value :

    {
      today: function () {
        return {
          // label: 'string', active: 'boolean', dateRange: {start: date, end: end}
        }
      },
      thisMonth: function () {},
      lastMonth: function () {},
      last7days: function () {},
      last30days: function () {}
    }
  • compact

    Description : Set to 'true' if you want to make datepicker always shown in compact mode

    Type : String

    Default Value : 'false'

  • righttoleft

    Description : Set to 'true' if you want datepicker shown align to right

    Type : String

    Default Value : 'false'

Development

Launch visual tests

npm run dev

Launch Karma with coverage

npm run dev:coverage

Build

Bundle the js and css of to the dist folder:

npm run build

Publishing

The prepublish hook will ensure dist files are created before publishing. This way you don't need to commit them in your repository.

# Bump the version first
# It'll also commit it and create a tag
npm version
# Push the bumped package and tags
git push --follow-tags
# Ship it πŸš€
npm publish

License

MIT

More Repositories

1

blibli-backend-framework

Blibli.com Backend Framework
Java
74
star
2

tech-radar

Blibli.com Tech Radar
69
star
3

vue-h-zoom

Native Vue Zoom Image component
JavaScript
29
star
4

spring-design-patterns

Java
23
star
5

blibli-ui-dev-guideline

UI Developers Guidelines
12
star
6

command-plugin

Command Pattern Plugin for Service Layer
Java
7
star
7

swagger-plugin

Swagger Plugin for Spring Boot
Java
5
star
8

kafka-plugin

Kafka Plugin for Spring Boot
Java
5
star
9

jvm-handbook

Buku pembahasan detil tentang cara kerja dan internal JVM
4
star
10

papers

Papers published by blibli.com
4
star
11

blibli-backend-framework-example

Blibli Backend Framework Example Application
Java
4
star
12

data-migration

Blibli Database Migration Framework
Java
3
star
13

vue-h-carousel

JavaScript
3
star
14

seller-api-client-php

An initial project to connect to Blibli Seller API
PHP
3
star
15

common-plugin

Common Library for Spring Boot Web Project
Java
3
star
16

vue-lazyload-akamai

JavaScript
2
star
17

cas-fortress-example

cas fortress integration example
Java
2
star
18

version-plugin

Version Plugin for Spring Boot
Java
2
star
19

cucumber-serenity-testlink-integration

Integration between Cucumber , Serenity and Testlink , It will create automatically testlink test case
Java
2
star
20

api-client

Declarative API Client for Spring Boot
Java
2
star
21

bliblidotcom.github.io

Blibli.com Engineering Blog
CSS
1
star
22

blibli-login-helper

Blibli.com Login-Register Validation Helper in Javascript
JavaScript
1
star
23

seller-api-client-python

Python
1
star
24

seller-api-client-java

It's an initial project to connect to Blibli Seller API with Java. Please feel free to relay your comments, suggestions or corrections through pull request.
Java
1
star
25

data-migration-example

Example Data Migrations Projects
Java
1
star
26

restful-api-guidelines

Blibli RESTful API and Event Scheme Guidelines
1
star