-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(modals): added declarative modals component (#564)
closes #29
- Loading branch information
Showing
16 changed files
with
752 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export * from './modal/modal-backdrop.component'; | ||
export * from './modal/modal-options.class'; | ||
export * from './modal/modal.component'; | ||
|
||
import {ModalBackdropComponent} from './modal/modal-backdrop.component'; | ||
import {ModalDirective} from './modal/modal.component'; | ||
|
||
export const MODAL_DIRECTVES = [ | ||
ModalDirective, ModalBackdropComponent | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import {Component, ElementRef} from '@angular/core'; | ||
import {NgClass} from '@angular/common'; | ||
import {ClassName} from './modal-options.class'; | ||
|
||
export class ModalBackdropOptions { | ||
public animate:boolean = true; | ||
|
||
public constructor(options:ModalBackdropOptions) { | ||
Object.assign(this, options); | ||
} | ||
} | ||
|
||
@Component({ | ||
selector: 'bs-modal-backdrop', | ||
directives: [NgClass], | ||
template: ` | ||
<div class="${ClassName.BACKDROP}" | ||
[class.${ClassName.IN}]="isShown" | ||
[class.${ClassName.FADE}]="isAnimated"></div>` | ||
}) | ||
export class ModalBackdropComponent { | ||
public isAnimated:boolean = true; | ||
public isShown:boolean = false; | ||
|
||
public element:ElementRef; | ||
|
||
public constructor(options:ModalBackdropOptions, element:ElementRef) { | ||
this.isAnimated = options.animate; | ||
this.element = element; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
export interface ModalOptions { | ||
/** | ||
* Includes a modal-backdrop element. Alternatively, specify static for a backdrop which doesn't close the modal on click. | ||
*/ | ||
backdrop:boolean | 'static'; | ||
/** | ||
* Closes the modal when escape key is pressed. | ||
*/ | ||
keyboard:boolean; | ||
|
||
focus:boolean; | ||
/** | ||
* Shows the modal when initialized. | ||
*/ | ||
show:boolean; | ||
} | ||
|
||
export const modalConfigDefaults:ModalOptions = { | ||
backdrop: true, | ||
keyboard: true, | ||
focus: true, | ||
show: true | ||
}; | ||
|
||
export const ClassName:any = { | ||
SCROLLBAR_MEASURER: 'modal-scrollbar-measure', | ||
BACKDROP: 'modal-backdrop', | ||
OPEN: 'modal-open', | ||
FADE: 'fade', | ||
IN: 'in' | ||
}; | ||
|
||
export const Selector:any = { | ||
DIALOG: '.modal-dialog', | ||
DATA_TOGGLE: '[data-toggle="modal"]', | ||
DATA_DISMISS: '[data-dismiss="modal"]', | ||
FIXED_CONTENT: '.navbar-fixed-top, .navbar-fixed-bottom, .is-fixed' | ||
}; |
Oops, something went wrong.