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

essence-ng2-datetimepicker

v1.1.3

Published

essence-ng2-datetimepicker is a datetimepicker directive for Angular.

Downloads

7

Readme

essence-ng2-datetimepicker

essence-ng2-datetimepicker is a datetimepicker directive for Angular.

依赖的第三方插件:bootstrap-datetimepicker

Usage

  1. Install

    npm install --save essence-ng2-datetimepicker@latest
  2. Set in the .angular-cli.json(@angular/cli)

    "styles": [
        "../node_modules/bootstrap/dist/css/bootstrap.min.css",
        "../node_modules/essence-ng2-datetimepicker/dist/assets/css/bootstrap-datetimepicker.min.css"
    ],
    "scripts": [
        "../node_modules/jquery/dist/jquery.min.js",
        "../node_modules/moment/min/moment.min.js",
        "../node_modules/moment/min/moment-with-locales.min.js",
        "../node_modules/essence-ng2-datetimepicker/dist/assets/js/bootstrap-datetimepicker.min.js",
        "../node_modules/bootstrap/dist/js/bootstrap.min.js"
    ]
  3. Add the EssenceNg2DatetimepickerModule

    import {EssenceNg2DatetimepickerModule} from "essence-ng2-datetimepicker";
    @NgModule({
        imports: [
            EssenceNg2DatetimepickerModule
        ]
    })
  4. Use in Template

    父元素必须设置position: relative

    <form class="form-group" #form="ngForm">
    	<div class="form-group" style="position: relative;">
    		<label>
    			选择日期:
    			<input type="text" class="form-control"
    				   essence-ng2-datetimepicker
    				   #eNgDTPicker="eNgDTPicker"
    				   name="time"
    				   [(ngModel)]="datetime"
    				   [options]="options"
    				   required
    				   readonly
    				   (ready)="onReady($event)"
    				   (changeDate)="onChangeDate($event)">
    		</label>
    	</div>
    </form>
    <button class="btn btn-primary" (click)="eNgDTPicker.getFn('minDate')('2017-05-01')">设置最小时间(模板调用)</button>
    <button class="btn btn-primary" (click)="setMinDate()">设置最小时间(组件类调用)</button>
    <button class="btn btn-danger" (click)="clearDate()">清空数据</button>
  5. Use in Component

    datetimepicker: EssenceNg2DatetimepickerDirective;
    datetime: any;
    options: any = {
        format: 'YYYY-MM-DD hh:mm:ss'
    };
    
    constructor() {}
    
    onReady($event: EssenceNg2DatetimepickerDirective) {
        this.datetimepicker = $event;
    }
    
    onChangeDate($event: any) {
        // console.log($event);
    }
    
    setMinDate() {
        this.datetimepicker.getFn('minDate')('2017-05-01');
    }
    
    clearDate() {
        this.datetime = null;
    }

API

exportAs

  • eNgDTPicker - 导出的指令变量,可在模板获取指令类并调用(#eNgDTPicker="eNgDTPicker")。

Inputs

Outputs

  • ready - return ($event); datetimepicker初始化完成的事件,$event为当前EssenceNg2DatetimepickerDirective实例

  • changeDate - return ($event); 时间改变触发的事件,$event为改变之后的时间(由于这个事件触发的频率低,建议使用这个事件来获取改变之后的时间)

  • updateDate - return ($event); 时间视图(比如年视图切换到月视图)改变触发的事件,$event为改变之后的时间

Instance Method

  • getFn(fnName: string): Function - 根据函数名称获取bootstrap-datetimepicker函数

  • show(): void - 显示日期控件

  • hide(): void - 隐藏日期控件

  • destroy(): void - 销毁日期控件

Develop

```shell
npm install // 安装依赖包

npm start // 启动项目
```

License

MIT License