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

ni-datetime-picker

v0.0.57

Published

Angular month|date|time picker with Persian (Afghanistan, and Iran), Islamic, and Gregorian calendar support.

Downloads

29

Readme

ni-datetime-picker

Angular8 month|date|time picker with Persian (Afghanistan, and Iran), and Gregorian calendar support.

Installation

npm i ni-datetime-picker

Demo

Stackblitz Demo: https://angular-ni-datetime-picker.stackblitz.io

Stackblitz play ground: https://stackblitz.com/edit/angular-ni-datetime-picker

Screenshots

Import the NiDatetimePickerModule

// import module
import { NiDatetimePickerModule } from "ni-datetime-picker";

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    // register module
    NiDatetimePickerModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule {}

Example

Following example shows all the options avaiable in the component:

  • your.component.ts
export class YourComponent implements OnInit {
  disabled = false;
  value = new Date();
  defaultDate = new Date();
  monthPicker = false;
  datePicker = true;
  timePicker = false;
  inline = false;
  showLocaleSwitch = true;
  locale = "fa_AF";
  inputFormat = "YYYY-MM-DD";
  placeholder = "date/time";
  titleFormat = "";
  monthHeaderFormat = "MMMM";
  numberOfMonths = 1;
  disabledDates = [];
  disabledDatesStr = "2020-01-02 00:00:00,2020-01-03 00:00:00";
  disableWeekends = false;
  showWeekNums = false;
  selectionMode = "range";
  selectedSeparator = ", ";
  showPickerIcon = true;
  showTodayBtn = true;
  todayBtnText = "";
  showClearBtn = true;
  clearBtnText = "";
  todayBtnSet = "andValue";
  showYearNavigator = true;
  yearNavigatorRange = "1370,1410";
  showMonthNavigator = true;
  targetTimezoneUTCOffset = 270; // Afghanistan UTC Offset +4:30 hours.

  customLocale: NiDatetimeLocale = {
    name: "Custom",
    new: () => new NiJalaliDatetime(),
    week: "js",
    dir: "ltr",
    firstday: 5,
    weekends: [0, 3, 5],
    daysName: ["Sun__","Mon__","Tues__","Weds__","Thurs__","Fri__","Satur__"],
    daysNameShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
    daysNameMini: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"],
    monthsName: ["January","February","March","April","May","June",
                 "d", "August", "September", "October", "November", "December"],
    monthsNameShort: ["Jan","Feb","Mar","Apr","May","Jun",
                      "Jul","Aug","Sep","Oct","Nov","Dec"],
    ampm: ["**", "__"],
    AMPM: [":)", ":("],
    today: "امروز",
    clear: "پاک"
  };

  // ...
}
  • your.component.html
<ni-datetime-picker
  [appendTo]="parent"
  [(value)]="value"
  [selectionMode]="selectionMode"
  [selectedSeparator]="selectedSeparator"
  [disabledDates]="disabledDates"
  [disableWeekends]="disableWeekends"
  [showWeekNums]="showWeekNums"
  [showPickerIcon]="showPickerIcon"
  [showTodayBtn]="showTodayBtn"
  [todayBtnText]="todayBtnText"
  [showClearBtn]="showClearBtn"
  [clearBtnText]="clearBtnText"
  [todayBtnSet]="todayBtnSet"
  [defaultDate]="defaultDate"
  [monthPicker]="monthPicker"
  [datePicker]="datePicker"
  [timePicker]="timePicker"
  [inline]="inline"
  [targetTimezoneUTCOffset]="targetTimezoneUTCOffset"
  [locales]="localesString"
  [showLocaleSwitch]="showLocaleSwitch"
  [locale]="locale"
  [monthDateLocales]="['en_US', 'ar_SA']"
  [inputFormat]="inputFormat"
  [placeholder]="placeholder"
  [titleFormat]="titleFormat"
  [monthHeaderFormat]="monthHeaderFormat"
  [numberOfMonths]="numberOfMonths"
  [showYearNavigator]="showYearNavigator"
  [yearNavigatorRange]="yearNavigatorRange"
  [showMonthNavigator]="showMonthNavigator"
  [navByScroll]="navByScroll"
  [navByTouch]="navByTouch"
  (showed)="event($event, 'showed')"
  (hidded)="event($event, 'hidded')"
  (focused)="event($event, 'focused')"
  (blurred)="event($event, 'blurred')"
  (valueChanged)="event($event, 'valueChanged')"
  (viewUpdated)="event($event, 'viewUpdated')"
  (localeChanged)="event($event, 'localeChanged')"
  [monthDateTemplate]="template"
  [monthTitleTemplate]="template2"
  [monthFooterTemplate]="template3"
  [titleTemplate]="template4"
>
  <ng-template #template let-date>
    <!-- 
    date: ViewMonth;
    also contains date.xx_xx is monthDateLocales Ymd
    -->
  </ng-template>
  <ng-template #template2 let-date>
    <!-- 
    date: ViewMonth;
    also contains date.xx_xx is monthDateLocales Ymd
    -->
  </ng-template>
  <ng-template #template3 let-date>
    <!-- 
    date: ViewMonth;
    also contains date.xx_xx is monthDateLocales Ymd
    -->
  </ng-template>
  <ng-template #template let-viewMinMax>
    <!-- 
    viewMinMax[0]: viewMonthsMin;
    viewMinMax[1]: viewMonthsMax;
    -->
  </ng-template>
</ni-datetime-picker>

Options:

  • [(value)]: a date|date[] specifies the selected value(s). the value will be a single date if selectionMode is 'single', an array if selectionModel is 'multiple', and an array of 1 (start) or 2 (start and end) dates will be emitted for 'range' selectionMode.

  • [defaultDate]: value to be used when 'value' is null to prepare the datepicker view. current time will be used by default.

  • [disabled]: set true to disable the datepicker.

  • [(locale)]: by default 'fa_AF'. availables are: fa_AF, fa_IR, en_US. provide a NiDatetimeLocale for custom locale.

  • [showLocaleSwitch]: show/hide the locale switcher. note: your custom calendarLocale will be ignored during in switching.

  • [targetTimezoneUTCOffset]: timezone offset in minutes (this is only used in finding the today's date). eg: 270 (+4:30 hours - Afghanistan UTC Offset)

  • [locales]: a list of locale name (string) which will be used in LocaleSwitch section. eg: ['fa_AF', 'en_US']

  • [inputFormat]: datepicker input format. check the formatting for more information.

  • [placeholder]: datepicker input placeholder.

  • [titleFormat]: datepicker dialog title format. check the formatting for more information.

  • [numberOfMonths]: ranging from [1-12] specifies the number of visible month in datepicker view

  • [monthHeaderFormat]: if numberOfMonths > 1, this specifies the format for each month header. check the formatting for m re information.

  • [monthPicker]: is a month picker

  • [datePicker]: is a date picker. it is overrided if monthPicker is true.

  • [timePicker]: is a time picker.

  • [inline]: is inline

  • [disableWeekends]: weekends should be disabled

  • [disabledDates]: an array of Date object specifying the disabled dates

  • [showWeekNums]: show the week nums

  • [selectionMode]: a string specifying the selection mode. 'single' by default. possible values: 'single', 'multiple', 'range'.

  • [selectedSeparator]: a string specifying selected values separator. by default ', ' is used for 'multiple' and ' - ' is used for range selection.

  • [showPickerIcon]: show the picker icon. by default false.

  • [showTodayBtn]: show today button. by default false.

  • [todayBtnText]: today btutton text. by default uses NiDatetimeLocale.___.today.

  • [showClearBtn]: show clear button. by default false.

  • [clearBtnText]: clean button text. by default uses NiDatetimeLocale.___.clear.

  • [todayBtnSet]: whether the today button update 'onlyView', or view 'andValue'. 'andValue'by default. possible values: 'onlyView', 'andValue', ''.

  • [showYearNavigator]: show year navigator, by default false.

  • [yearNavigatorRange]: year navigator range 'start,end', or 'year1,year2,year3...'. by default ''.

  • [showMonthNavigator]: show month navigator, by default false.

  • [navByScroll]: navigate by scroll, by default true.

  • [navByTouch]: navigate by touch, by default true.

  • [monthDateLocales]: a list of locale name that should be pass while rendering month date. eg: ['en_US', 'ar_SA']

  • [titleTemplate]: specifies the ng-template reference to be used for rendering dialog title.

    <ng-template #template let-viewMinMax>
      <!-- 
      viewMinMax[0]: viewMonthsMin;
      viewMinMax[1]: viewMonthsMax;
      -->
    </ng-template>
  • [monthDateTemplate]: specifies the ng-template reference to be used for rendering month date.

    <ng-template #template let-date>
      <!-- 
      date: ViewMonth;
      date also contains Ymd value for spcifies monthDateLocales
      -->
    </ng-template>
  • [monthFooterTemplate]: specifies the ng-template reference to be used for rendering month footer.

    <ng-template #template let-date>
      <!-- 
      date: ViewMonth;
      date also contains Ymd value for spcifies monthDateLocales
      -->
    </ng-template>
  • [monthTitleTemplate]: specifies the ng-template reference to be used for rendering month title.

    <ng-template #template let-date>
      <!-- 
      date: ViewMonth;
      date also contains Ymd value for spcifies monthDateLocales
      -->
    </ng-template>
  • [appendTo]: specifies the element to attach the view month modal to that.

  • (showed): trigger when a show event is happened. {} is passed as the emit value.

  • (hidded): trigger when a hide event is happened. {} is passed as the emit value.

  • (focused): trigger when a Focus event is happened. {} is passed as the emit value.

  • (blurred): trigger when a Blur event is happened. {} is passed as the emit value.

  • (valueChanged): trigger when value is change. ValueChange|ValueChange[] will be emitted.

    export interface ValueChange {
      date?: Date;
      viewDate?: ViewDate; // locale specific values
      viewDateFormatted?: string; // formatted as inputFormat
    }
  • (viewUpdated): trigger when a view update event is happened.

    interface ViewUpdateEvent {
      viewMinDate: Date; // smallest visible (except previous month's date) date in the view
      viewMaxDate: Date; // biggest visible (except next month's date) date in the view
    }
  • (localeChanged): trigger when a locale change event is happened.

    interface LocaleChangeEvent {
      previous: string; // fa_AF|fa_IR|en_US;
      locale: string; // fa_AF|fa_IR|en_US;
    }

Formats

Check NiDatetime for available formats.