Skip to content

vladimirpavk/Angular4-FlashBoxComponent

Repository files navigation

Angular4-FlashBoxComponent

Based on Angular2-Skeleton - complete Angular4 build enviroment using Angular4 frmework, SystemJS module loader, gulp build system, browser-sync and node expressjs backend server.

ng2 - flashbox

npm version npm downloads-monthly npm downloads-total

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.

Download from npm.

Prerequisites

Must have node, npm and gulp installed

How to use

Install node dependencies in your project root directory (this is where the 'package.json' file is located) using:

$ npm install

Start application with

$ gulp

Wait untill application is fully compiled and backend server is started (notified by message).

Navigate to

http://localhost:3000/index.html

to start application. If everything is ok Angular4-FlashBoxComponent sample application will start.

You can now user FlashBox component with <flash-box> element in app.component.html or define FlashBoxComponent component in the controller.

From ng2-flashbox README.md:

Place your HTML based user information message inside element.

<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>    
  1. typeValue: string, default: primary.

Specify FlashBox type. Available values(bootstrap label types): default, primary, success, info, warning, danger.

  1. 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
  1. maxWidthValue: string, default: 300px

Specify FlashBox maximum width.

  1. 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() ):

  1. flashOnce():void - show FlashBox once for setTimeout time.
  2. show():void - show FlashBox.
  3. hide():void - hide FlashBox.
  4. 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.
  5. stopFlashing():void - stop flashing.
  6. toogle():void - toggle show/hide control.
  7. flashTimes(number numOfTimes):void - show FlashBox numOfTimes times.
  8. version():string - to return the current version of the control

Events:

  1. 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.
  2. onStartVisibleEvent() - fires when FlashBox is starting to show.
  3. onEndVisibleEvent() - fires when FlashBox is completely shown.
  4. onStartHiddenEvent() - fires when FlashBox is starting to become unvisible.
  5. onEndHiddenEvent() - fires when FlashBox is completely invisible.
  6. invalidValueEvent() - fires when setTimeout to number that is less or equal 0.
  7. onTypeChangedEvent - fires when you change type property of the control.
  8. onPositionChangedEvent - fires when you change position property of the control.
  9. onMaxWidthChangedEvent - fires when you change maxwidth property of the control.
  10. onTimeoutChangedEvent - fires when you change setTimeout property of the control.