• This repository has been archived on 24/Nov/2017
  • Stars
    star
    107
  • Rank 323,587 (Top 7 %)
  • Language
    TypeScript
  • Created almost 9 years ago
  • Updated over 7 years ago

Reviews

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

Repository Details

Open modal window (dialog box) for your angular2 applications using bootstrap3.

This repository is for demonstration purposes of how it can be implemented in Angular and is not maintaned. Please fork and maintain your own version of this repository.

ngx-modal

Open modal window (dialog box) for your angular2 applications using bootstrap3. If you don't want to use it without bootstrap - simply create proper css classes. Please star a project if you liked it, or create an issue if you have problems with it.

Installation

  1. Install npm module:

    npm install ngx-modal --save

  2. If you are using system.js you may want to add this into map and package config:

    {
        "map": {
            "ngx-modal": "node_modules/ngx-modal"
        },
        "packages": {
            "ngx-modal": { "main": "index.js", "defaultExtension": "js" }
        }
    }

Simple Modal

Import ModalModule in your app. Then you can use modal component:

<modal  title="Modal title"
        cancelButtonLabel="cancel"
        submitButtonLabel="submit"
        modalClass="modal-lg modal-sm any-other-css-class"
        [hideCloseButton]="true|false"
        [closeOnEscape]="true|false"
        [closeOnOutsideClick]="true|false"
        (onOpen)="actionOnOpen()"
        (onClose)="actionOnClose()"
        (onSubmit)="actionOnSubmit()">

    <modal-header>
        Modal header content goes there.
    </modal-header>

    <modal-content>
        Modal body content goes there.
    </modal-content>

    <modal-footer>
        Modal footer content goes there.
    </modal-footer>
        
</modal>

Router Modal

First, import ModalModule in your app. If you want your modals to be opened within routes, then <route-modal></route-modal> should be used instead.

Sample

import {Component} from "@angular/core";
import {ModalModule} from "ngx-modal";

@Component({
    selector: "app",
    template: `
<div class="row">
    <button (click)="myModal.open()">open my modal</button>
    <modal #myModal>
        <modal-header>
            <h1>Modal header</h1>
        </modal-header>
        <modal-content>
            Hello Modal!
        </modal-content>
        <modal-footer>
            <button class="btn btn-primary" (click)="myModal.close()">close</button>
        </modal-footer>
    </modal>
</div>
    `
})
export class App {

}

@NgModule({
    imports: [
        // ...
        ModalModule
    ],
    declarations: [
        App
    ],
    bootstrap: [
        App
    ]
})
export class AppModule {

}

More samples

<!-- first modal: modal with custom header, content and footer -->
<div class="row">
    <button (click)="firstModal.open()">modal with custom header content and footer</button>
    <modal #firstModal>
        <modal-header>
            <h1>I am first modal</h1>
        </modal-header>
        <modal-content>
            This modal has its own header, content and footer.
        </modal-content>
        <modal-footer>
            <button class="btn btn-primary" (click)="firstModal.close()">okay!</button>
        </modal-footer>
    </modal>
</div>

<!-- second modal: disable close button -->
<div class="row">
    <button (click)="secondModal.open()">modal without close button</button>
    <modal #secondModal [hideCloseButton]="true">
        <modal-header>
            <h1>I am second modal</h1>
        </modal-header>
        <modal-content>
            This modal does not have close button.
        </modal-content>
        <modal-footer>
            <button class="btn btn-primary" (click)="secondModal.close()">okay!</button>
        </modal-footer>
    </modal>
</div>

<!-- third modal: disable close button -->
<div class="row">
    <button (click)="thirdModal.open()">modal that cannot be simply closed</button>
    <modal #thirdModal [closeOnEscape]="false" [closeOnOutsideClick]="false">
        <modal-header>
            <h1>I am third modal</h1>
        </modal-header>
        <modal-content>
            You cannot close this modal by pressing "ESC" button or clicking outside of the modal.
        </modal-content>
        <modal-footer>
            <button class="btn btn-primary" (click)="thirdModal.close()">okay!</button>
        </modal-footer>
    </modal>
</div>

<!-- forth modal: this modal has default title and cancle button -->
<div class="row">
    <button (click)="forthModal.open()">modal that has title and cancel button</button>
    <modal #forthModal title="I am forth modal" cancelButtonLabel="close it">
        <modal-content>
            You can simply use "title" attribute to provide a modal default header.<br/>
            Also you can add default cancel button by providing a label to it.
        </modal-content>
    </modal>
</div>

<!-- fifth modal: this modal uses extra "large class" -->
<div class="row">
    <button (click)="fifthModal.open()">large modal</button>
    <modal #fifthModal title="I am fifth modal" cancelButtonLabel="close it" modalClass="modal-lg">
        <modal-content>
            Very large modal.
        </modal-content>
    </modal>
</div>

<!-- sixth modal: this modal uses extra "small class" -->
<div class="row">
    <button (click)="sixthModal.open()">small modal</button>
    <modal #sixthModal title="I am sixth modal" cancelButtonLabel="close it" modalClass="modal-sm">
        <modal-content>
            Very small modal.
        </modal-content>
    </modal>
</div>

<!-- seventh modal: this modal can listen close event -->
<div class="row">
    <button (click)="seventhModal.open()">it opens first modal after you close it</button>
    <modal #seventhModal title="I am seventh modal" cancelButtonLabel="close it" (onClose)="firstModal.open()">
        <modal-content>
            Now try to close it and it will open you first modal.
        </modal-content>
    </modal>
</div>

<!-- eighth modal: this modal can listen open event -->
<div class="row">
    <button (click)="eighthModal.open()">it opens first modal right after you open it</button>
    <modal #eighthModal title="I am eighth modal" cancelButtonLabel="close it" (onOpen)="firstModal.open()">
        <modal-content>
            This modal opened first modal right after you opened it.
        </modal-content>
    </modal>
</div>

<!-- ninth modal: this modal can do something after you click submit button -->
<div class="row">
    <button (click)="ninthModal.open()">it opens first modal after you click submit button</button>
    <modal #ninthModal title="I am ninth modal" submitButtonLabel="submit" (onSubmit)="firstModal.open()">
        <modal-content>
            This modal has a submit button with your custom label. Also it can make an action after you
            click that submit button. Here it will open you first modal after you click submit.
        </modal-content>
    </modal>
</div>

Take a look on samples in ./sample for more examples of usages.

More Repositories

1

gulpclass

Make a beautiful class-based gulpfiles with TypeScript and Gulpclass.
TypeScript
158
star
2

ngx-popover

Simple popover control for your angular2 applications using bootstrap3. Does not depend of jquery.
TypeScript
114
star
3

ngx-tooltip

Simple tooltip control for your angular2 applications using bootstrap3. Does not depend of jquery.
TypeScript
85
star
4

ngx-dropdown

Simple dropdown for your angular2 applications using bootstrap3.
TypeScript
65
star
5

ngx-rating

Simple rating control for your angular2 applications using bootstrap3
TypeScript
55
star
6

ngx-select-controls

Checkbox group and radio group control for your angular2 applications using bootstrap3.
TypeScript
45
star
7

event-dispatch

Dispatching and listening for application events in Typescript
TypeScript
44
star
8

routing-controllers-express-demo

Example of express + typescript project using routing-controllers
TypeScript
41
star
9

ngx-accordion

Simple accordion control for your angular2 applications using bootstrap3.
TypeScript
39
star
10

ngx-tabs

Simple tabs control for your angular2 applications using bootstrap3
TypeScript
36
star
11

routing-controllers-koa-demo

Example of koa + typescript project using routing-controllers
TypeScript
36
star
12

ngx-paginator

Simple pagination control for your angular2 applications using bootstrap3
TypeScript
30
star
13

angular-disable-all

Angular directive that allows to disable any element (for example DIV) contents and disable clicks on the given element
JavaScript
21
star
14

ngx-progress-bar

Simple progress bar control for your angular2 applications using bootstrap3.
TypeScript
21
star
15

framework

TypeScript
16
star
16

frameworkx

TypeScript
14
star
17

ngx-loading-bar

Angular 2 loading bar on the top of the page to indicate page loading process.
TypeScript
13
star
18

typeodm

MongoDB ODM for Typescript
TypeScript
11
star
19

routing-controllers-angular2-demo

Example of angular2 + express + typescript project using routing-controllers
TypeScript
7
star
20

ngx-prevent-parent-scroll

Prevents scrolling in the parent container when child container already has a scroll.
TypeScript
4
star
21

configuration-manager

Allows to manage configuration files in your project
TypeScript
3
star
22

class-transformer-demo

Example how to use class-transformer with Angular 2
TypeScript
3
star
23

ngx-notification-center

Allows to globally dispatch notification messages.
TypeScript
3
star
24

microframework-express

Express.js integration with microframework
TypeScript
2
star
25

no-need-in-di

An example why there is no DI need in JavaScript/TypeScript.
TypeScript
2
star
26

gulp-parameters-generator

Asks user to input paramaters from your configuration file
JavaScript
2
star
27

angular-select-options

A special angular directive that works like angular's ng-options but can be used in along with any element and has several specific abilities
JavaScript
2
star
28

angular-auto-grow-input

This directive allows your inputs to grow as soon as user types. The input's width always fit the text user typed in the input.
JavaScript
2
star
29

microframework-winston

Winston logging tool to use it with microframework
TypeScript
1
star
30

angular-open-dropdown

A directive that allows to open dropdown when user clicks on button or anything else
JavaScript
1
star
31

angular-select-autocomplete

Angular autocomplete
JavaScript
1
star
32

rabbit.ts

Wrapper over rabbit.js library that provides some extra convinent functionality to work with rabbit.js in Typescript
TypeScript
1
star
33

select-items

This component allows to use ng-model with multiple checkboxes and radio boxes in an angular-way.
JavaScript
1
star
34

angular-select-dropdown

A special angular directive that allows to select items from the dropdown
JavaScript
1
star
35

microframework-redis

Redis integration with microframework
TypeScript
1
star
36

angular-select-items

A special angular directive used with input to make input to grow as soon as user types text.
JavaScript
1
star
37

ng2-days-slider

Simple days calendar slider control for your angular2 applications using bootstrap3.
TypeScript
1
star
38

angular-tags-input

Angular directive that allows to type into input small tags and store their values in ng-model.
JavaScript
1
star
39

angular-select-tags

A directive that allows user to add a tokens in the input box and select items from the dropdown
JavaScript
1
star