npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sebarkar/vue3-hotel-datepicker

v1.0.1

Published

A [Vue.js](https://vuejs.org/) date range picker oriented on hotel, apartment and other accommodations. Its just picker and not include modals or other implementations to prevent size overload, in most cases you already have modals implementation and can

Downloads

1,145

Readme

vue3-hotel-datepicker

A Vue.js date range picker oriented on hotel, apartment and other accommodations. Its just picker and not include modals or other implementations to prevent size overload, in most cases you already have modals implementation and can easy use it with this picker. Vue hotel datepicker provide date range selecting, minimum and maximum night limitation, custom methods for date restriction, and disabled dates. Ssr supported nuxt3 friendly.

Demo

Live demo

https://vue3-hotel-datepicker.sebarkar.tech/

Desktop screen preview

Mobile screen preview

Installation

Use npm or yarn for installation

$ npm install @sebarkar/vue3-hotel-datepicker
# OR
$ yarn add @sebarkar/vue3-hotel-datepicker

Usage

Method 1: Import component in .vue file

<template>
    <Vue3HotelDatePicker />
</template>

<script>
    import Vue3HotelDatePicker from "@sebarkar/vue3-hotel-datepicker";
    import '@sebarkar/vue3-hotel-datepicker/dist/style.css' // Can be overrided by your own css
</script>

Props/Options

format

  • Type: String
  • Default: 'YYYY-MM-DD'

Format for all props date values that you pass to the component.

startOfWeek

  • Type: String
  • Default: 'monday'

Start day of the week. Possible values: 'sunday', 'monday'.

selectedDates

  • Type: Array or Boolean
  • Default: false

Add a range of dates to be selected by default. The array must contain two dates in the format specified by the format prop. Example []

['2024-01-01', '2024-01-10']

minDate

  • Type: Date or String
  • Default: today midnight.

The start view date. All the dates before this date will be disabled.

maxDate

  • Type: Date or String or Boolean
  • Default: false

The end view date. All the dates after this date will be disabled.

disabledDaysOfWeek

  • Type: Array
  • Default: 0

Disabled check in days of the week. Possible values:

['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']

moveBothMonths

Not implemented yet

  • Type: Boolean
  • Default: false Move both month by clicking on the button change month.

noCheckOutDates

  • Type: Array
  • Default: [] Disabled check out dates. All the dates passed to the list can not be selected as a end range.

noCheckInDates

  • Type: Array
  • Default: [] Disabled check in dates. All the dates passed to the list can not be selected as a start range. Example []
['2024-01-01', '2024-01-10']

noCheckInDaysOfWeek

  • Type: Array
  • Default: [] Disabled check in weekdays. All the dates passed to the list can not be selected as a start range. Example []
['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']

noCheckOutDaysOfWeek

  • Type: Array
  • Default: [] Disabled check in weekdays. All the weekdays passed to the list can not be selected as a end range. Example []
['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']

disabledDates

  • Type: Array
  • Default: []

Useful for reservation dates. An array of strings by props format value, default 'YYYY-MM-DD' (as same as default format). All the dates passed to the list can not be selected as a start and end date. Example []

['2024-01-01', '2024-01-10']

maxNights

  • Type: Number
  • Default: 0
  • Maximum nights that can be selected.

minNights

  • Type: Number
  • Default: 1
  • Minimum nights that can be selected.

singleMonthBreakpoint

// Works for detect button next and prev display and display months (for ssr needs additional css settings)

  • Type: Number or String
  • Default: 768
  • Example 768 - after 768px width of window, the date picker will show 2 months.
  • Available only in browser.
  • For SSR prevent Node mismatch buttons and months display will load only in onMounted hook.
  • Component use css properties set 768 and less hide second month to prevent jumping content.

selectForward

  • Type: Boolean
  • Default: false
  • Available selection forward only.

showSingleMonth

  • Type: Boolean
  • Default: false Show only one month mode

enableCheckout

  • Type: Boolean
  • Default: false Enable checkout first day disabledDates.

weekDays

  • Type: Array
  • Default: ["sun", "mon", "tue", "wed", "thu", "fri", "sat"]
  • Can be used for i18n

monthNames

  • Type: Array
  • Default: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
  • Can be used for i18n

i18n

  • Type: Object
  • Default:
  {
    'not selected' : 'Not selected',
    'night': 'Night',
    'nights': 'Nights',
  }
  • i18n Object for the component

Events

selected

When a new date is selected, Vue3HotelDatepicker will emit an event update, passing the Timestamp range array of strings to parent component.

Date range Object example: Timestamp format can be easy converted to date format by using new Date(1713906000)

{
    start: '1713906000',
    end: '1714078800'
}

Slots

weekday

  • Return: String
  • example: thu

popup

  • Return: Number // Days count selected
  • default: << or >>

prev or next

  • Custom btn control implementation

day

  • Return: Object
  • example:
    {
        date: Date, 
        type: 'visibleMonth'
        day: Date.getDate(), // 1-31
        time: Date.getTime(), // timestamp
        isCurrentMonth: true, // is current month
        isValid: true, // is valid for selection
        disabled: false, // disabled for selection
        isNoCheckIn: false, // not valid check in date
        isNoCheckOut: false, // not valid check out date
    }
  • example implimentation:
<script setup>
    const prices = [
        ...Array.from({length: 70}, (_, i) => i + 1).map(i => (Math.floor(Math.random() * (100 - 80) + 80)))
    ]
</script>

<Vue3HotelDatePicker>
    <template v-slot:day="{ day }">
          <div class="calendar_day">
            {{day.day}}
            <span
                v-if="day.isValid && !day.disabled"
                :class="prices[day.day] < 85 ? 'text-green' : 'text-red'"
                class="text-small"
            >{{ prices[day.day] }}$</span>
          </div>
    </template>
</Vue3HotelDatePicker>

weekday

reset (Not implemented yet)

When the reset button is clicked, Vue3HotelDatepicker will emit an event reset.

License

MIT License