/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { Component, HostBinding, Input } from '@angular/core';
import { NbStatusService } from '../../services/status.service';
import { NbComponentSize } from '../component-size';
import { NbComponentOrCustomStatus } from '../component-status';
/**
* Progress Bar is a component for indicating progress.
*
* Simple usage:
*
* ```html
*
* ```
* ### Installation
*
* Import `NbProgressBarModule` to your feature module.
* ```ts
* @NgModule({
* imports: [
* // ...
* NbProgressBarModule,
* ],
* })
* export class PageModule { }
* ```
* ### Usage
*
* Progress bar accepts property `value` in range 0-100
* @stacked-example(Progress bar, progress-bar/progress-bar-showcase.component)
*
* Progress bar background could be configured by providing a `status` property:
* @stacked-example(Progress bar status, progress-bar/progress-bar-status.component)
*
* Progress bar size (height and font-size) could be configured by providing a `size` property:
* @stacked-example(Progress bar size, progress-bar/progress-bar-size.component)
*
* `displayValue` property shows current value inside progress bar. It's also possible to add custom text inside:
* @stacked-example(Progress bar value, progress-bar/progress-bar-value.component)
*
* Progress bar supports `width` and `background-color` transition:
* @stacked-example(Progress bar interactive, progress-bar/progress-bar-interactive.component)
*
* @styles
*
* progress-bar-animation-duration:
* progress-bar-border-radius:
* progress-bar-text-font-family:
* progress-bar-tiny-height:
* progress-bar-tiny-text-font-size:
* progress-bar-tiny-text-font-weight:
* progress-bar-tiny-text-line-height:
* progress-bar-small-height:
* progress-bar-small-text-font-size:
* progress-bar-small-text-font-weight:
* progress-bar-small-text-line-height:
* progress-bar-medium-height:
* progress-bar-medium-text-font-size:
* progress-bar-medium-text-font-weight:
* progress-bar-medium-text-line-height:
* progress-bar-large-height:
* progress-bar-large-text-font-size:
* progress-bar-large-text-font-weight:
* progress-bar-large-text-line-height:
* progress-bar-giant-height:
* progress-bar-giant-text-font-size:
* progress-bar-giant-text-font-weight:
* progress-bar-giant-text-line-height:
* progress-bar-basic-background-color:
* progress-bar-basic-filled-background-color:
* progress-bar-basic-text-color:
* progress-bar-primary-background-color:
* progress-bar-primary-filled-background-color:
* progress-bar-primary-text-color:
* progress-bar-success-background-color:
* progress-bar-success-filled-background-color:
* progress-bar-success-text-color:
* progress-bar-info-background-color:
* progress-bar-info-filled-background-color:
* progress-bar-info-text-color:
* progress-bar-warning-background-color:
* progress-bar-warning-filled-background-color:
* progress-bar-warning-text-color:
* progress-bar-danger-background-color:
* progress-bar-danger-filled-background-color:
* progress-bar-danger-text-color:
* progress-bar-control-background-color:
* progress-bar-control-filled-background-color:
* progress-bar-control-text-color:
*/
@Component({
selector: 'nb-progress-bar',
styleUrls: ['./progress-bar.component.scss'],
template: `
`,
})
export class NbProgressBarComponent {
/**
* Progress bar value in percent (0 - 100)
*/
@Input() value: number = 0;
/**
* Progress bar background (`basic` (default), `primary`, `info`, `success`, `warning`, `danger`, `control`)
*/
@Input() status: NbComponentOrCustomStatus = 'basic';
/**
* Progress bar size (`tiny`, `small`, `medium` (default), `large`, `giant`)
*/
@Input() size: NbComponentSize = 'medium';
/**
* Displays value inside progress bar
*/
@Input() displayValue: boolean = false;
@HostBinding('class.size-tiny')
get tiny(): boolean {
return this.size === 'tiny';
}
@HostBinding('class.size-small')
get small(): boolean {
return this.size === 'small';
}
@HostBinding('class.size-medium')
get medium(): boolean {
return this.size === 'medium';
}
@HostBinding('class.size-large')
get large(): boolean {
return this.size === 'large';
}
@HostBinding('class.size-giant')
get giant(): boolean {
return this.size === 'giant';
}
@HostBinding('class.status-primary')
get primary(): boolean {
return this.status === 'primary';
}
@HostBinding('class.status-success')
get success(): boolean {
return this.status === 'success';
}
@HostBinding('class.status-info')
get info(): boolean {
return this.status === 'info';
}
@HostBinding('class.status-warning')
get warning(): boolean {
return this.status === 'warning';
}
@HostBinding('class.status-danger')
get danger(): boolean {
return this.status === 'danger';
}
@HostBinding('class.status-basic')
get basic(): boolean {
return this.status === 'basic';
}
@HostBinding('class.status-control')
get control(): boolean {
return this.status === 'control';
}
@HostBinding('class')
get additionalClasses(): string[] {
if (this.statusService.isCustomStatus(this.status)) {
return [this.statusService.getStatusClass(this.status)];
}
return [];
}
constructor(protected statusService: NbStatusService) {
}
}