ng2-flashbox
v0.2.12
Published
Angular2 - FlashBox(ng2-flashbox) component
Downloads
36
Maintainers
Readme
ng2 - flashbox
FlashBox(ng2-flashbox) - angular2 component used to display simple user information messages.
FlashBox(ng2-flashbox) GitHub repo.
FlashBox(ng2-flashbox) development enviroment(Angular4, SystemJS, gulp) repo.
Try online-demo.
Installation
npm install ng2-flashbox --save
How to use FlashBox(ng2-flashbox) component
FlashBox(ng2-flashbox) component is a part of the CommonComponents module.
Configure your module loader. If you use SystemJs add the following mapings:
System.config({
...
paths: {
...
'npm:': 'node_modules/'
...
},
map: {
...
'ng2-flashbox': 'npm:ng2-flashbox/index.js'
...
}
...
})
Import CommonComponents module in your application module.
...
Import { CommonComponentsModule } from 'ng2-flashbox';
...
@NgModule({
...
imports: [ ...
CommonComponentsModule
...
],
...
})
Use FlashBox(ng2-flashbox) component within component template with <flash-box></flash-box>
tags.
Place your HTML based message inside element like this
<flash-box>
<!-- HTML Message -->
<div style="border-type: solid; border-width:2px">
<label style="color: rgb(0,0,0); text-decoration: underline;">Information message</label>
<label>
Any message
</label>
</div>
</flash-box>
Attributes
<flash-box type="typeValue" position="positionValue" max-width="maxWidthValue" setTimeout="setTimeoutValue">
<!-- HTML message -->
</flash-box>
- typeValue: string, default: primary.
Specify FlashBox type. Available values(bootstrap label types): default, primary, success, info, warning, danger.
- positionValue: string, default: tr.
Specify FlashBox position. Available values:
- tr - top-right,
- tm - top-middle,
- tl - top-left,
- cr - center-right,
- cm - center-middle,
- cl - center-left,
- br - bottom-right,
- bm - bottom-middle,
- bl - bottom-left
- maxWidthValue: string, default: 300px
Specify FlashBox maximum width.
- setTimeoutValue: number, default: 2000
Specify the amount of time FlashBox is visible in ms.
Actions
Use angular2 template local variable(TLV) system or invoke a method from a controller.
Template local variable example
<flash-box .... #tlv_name>
....
</flash-box>
<button (click)="tlv_name.available_action()">Cause flashbox action</button>
Controller method invokation example
reference component source
import { FlashBoxComponent } from 'ng2-flashbox';
reference component from template local variable using
@ViewChild("tlv_name") tlv:FlashBoxComponent;
tlv.available_action();
Methods( available_action() ):
- flashOnce():void - show FlashBox once for setTimeout time.
- show():void - show FlashBox.
- hide():void - hide FlashBox.
- startFlashing():void - start flashing. Transition period between unvisible and visible is set to 0,5 sec and is currently unconfigurable. The FlashBox control is shown for setTimeout time.
- stopFlashing():void - stop flashing.
- toogle():void - toggle show/hide control.
- flashTimes(number numOfTimes):void - show FlashBox numOfTimes times.
- version():string - to return the current version of the control
Events:
- busyEvent() - fires when FlashBox is busy. When show() on FlashBox that is already shown. When hide() on FlashBox that is already hidden. When flashOnce() on FlashBox that is already shown or blinking. When startFlashing() on FlashBox that is already shown or blinking. When flashTimes(number numOfTImes) on FlashBox that is alread shown or blinking.
- onStartVisibleEvent() - fires when FlashBox is starting to show.
- onEndVisibleEvent() - fires when FlashBox is completely shown.
- onStartHiddenEvent() - fires when FlashBox is starting to become unvisible.
- onEndHiddenEvent() - fires when FlashBox is completely invisible.
- invalidValueEvent() - fires when setTimeout to number that is less or equal 0.
- onTypeChangedEvent - fires when you change type property of the control.
- onPositionChangedEvent - fires when you change position property of the control.
- onMaxWidthChangedEvent - fires when you change maxwidth property of the control.
- onTimeoutChangedEvent - fires when you change setTimeout property of the control.