mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-05 17:18:50 +01:00
a couple of changes due to refactoring
This commit is contained in:
parent
673e2430c7
commit
4338caec36
5 changed files with 1 additions and 2 deletions
43
src/app/theme/components/baCard/baCardBlur.directive.ts
Normal file
43
src/app/theme/components/baCard/baCardBlur.directive.ts
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
import {Directive, ElementRef, HostListener} from 'angular2/core';
|
||||
import {BaCardBlurHelper} from './baCardBlurHelper.service';
|
||||
|
||||
import {BgMetrics} from './bgMetrics';
|
||||
|
||||
@Directive({
|
||||
selector: '[baCardBlur]',
|
||||
providers: [BaCardBlurHelper]
|
||||
})
|
||||
export class BaCardBlur {
|
||||
private _bodyBgSize:BgMetrics;
|
||||
|
||||
constructor(private _baCardBlurHelper:BaCardBlurHelper, private _el:ElementRef) {
|
||||
this._getBodyImageSizesOnBgLoad();
|
||||
this._recalculateCardStylesOnBgLoad();
|
||||
}
|
||||
|
||||
@HostListener('window:resize')
|
||||
_onWindowResize():void {
|
||||
this._bodyBgSize = this._baCardBlurHelper.getBodyBgImageSizes();
|
||||
this._recalculateCardStyle();
|
||||
}
|
||||
|
||||
private _getBodyImageSizesOnBgLoad():void {
|
||||
this._baCardBlurHelper.bodyBgLoad().subscribe(() => {
|
||||
this._bodyBgSize = this._baCardBlurHelper.getBodyBgImageSizes();
|
||||
});
|
||||
}
|
||||
|
||||
private _recalculateCardStylesOnBgLoad():void {
|
||||
this._baCardBlurHelper.bodyBgLoad().subscribe((event) => {
|
||||
setTimeout(this._recalculateCardStyle.bind(this));
|
||||
})
|
||||
}
|
||||
|
||||
private _recalculateCardStyle():void {
|
||||
if (!this._bodyBgSize) {
|
||||
return;
|
||||
}
|
||||
this._el.nativeElement.style.backgroundSize = Math.round(this._bodyBgSize.width) + 'px ' + Math.round(this._bodyBgSize.height) + 'px';
|
||||
this._el.nativeElement.style.backgroundPosition = Math.floor(this._bodyBgSize.positionX) + 'px ' + Math.floor(this._bodyBgSize.positionY) + 'px';
|
||||
}
|
||||
}
|
||||
54
src/app/theme/components/baCard/baCardBlurHelper.service.ts
Normal file
54
src/app/theme/components/baCard/baCardBlurHelper.service.ts
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
import {Injectable} from 'angular2/core'
|
||||
import {BgMetrics} from './bgMetrics';
|
||||
import {Subject} from 'rxjs/Subject';
|
||||
|
||||
@Injectable()
|
||||
export class BaCardBlurHelper {
|
||||
private image:HTMLImageElement;
|
||||
private imageLoadSubject:Subject<void>;
|
||||
|
||||
constructor() {
|
||||
this._genBgImage();
|
||||
this._genImageLoadSubject();
|
||||
}
|
||||
|
||||
private _genBgImage():void {
|
||||
this.image = new Image();
|
||||
let computedStyle = getComputedStyle(document.body, ':before');
|
||||
this.image.src = computedStyle.backgroundImage.replace(/url\((['"])?(.*?)\1\)/gi, '$2');
|
||||
}
|
||||
|
||||
private _genImageLoadSubject():void {
|
||||
this.imageLoadSubject = new Subject<void>();
|
||||
this.image.onerror = () => {
|
||||
this.imageLoadSubject.error();
|
||||
this.imageLoadSubject.complete();
|
||||
};
|
||||
this.image.onload = () => {
|
||||
this.imageLoadSubject.next(null);
|
||||
this.imageLoadSubject.complete();
|
||||
};
|
||||
}
|
||||
|
||||
public bodyBgLoad():Subject<void> {
|
||||
return this.imageLoadSubject;
|
||||
}
|
||||
|
||||
public getBodyBgImageSizes():BgMetrics {
|
||||
let elemW = document.documentElement.clientWidth;
|
||||
let elemH = document.documentElement.clientHeight;
|
||||
if(elemW <= 640) return;
|
||||
let imgRatio = (this.image.height / this.image.width); // original img ratio
|
||||
let containerRatio = (elemH / elemW); // container ratio
|
||||
|
||||
let finalHeight, finalWidth;
|
||||
if (containerRatio > imgRatio) {
|
||||
finalHeight = elemH;
|
||||
finalWidth = (elemH / imgRatio);
|
||||
} else {
|
||||
finalWidth = elemW;
|
||||
finalHeight = (elemW * imgRatio);
|
||||
}
|
||||
return { width: finalWidth, height: finalHeight, positionX: (elemW - finalWidth)/2, positionY: (elemH - finalHeight)/2};
|
||||
}
|
||||
}
|
||||
6
src/app/theme/components/baCard/bgMetrics.ts
Normal file
6
src/app/theme/components/baCard/bgMetrics.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
export interface BgMetrics {
|
||||
width:number;
|
||||
height:number;
|
||||
positionX:number;
|
||||
positionY:number;
|
||||
}
|
||||
|
|
@ -1 +1,2 @@
|
|||
export * from './baCard.component.ts';
|
||||
export * from './baCardBlur.directive';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue