1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/thumnailManager.service.ts

215 lines
5.6 KiB
TypeScript
Raw Normal View History

2017-03-20 07:01:41 +08:00
import {Injectable} from "@angular/core";
2017-07-26 05:40:07 +08:00
import {
ThumbnailLoaderService,
ThumbnailLoadingListener,
ThumbnailLoadingPriority,
ThumbnailTaskEntity
} from "./thumnailLoader.service";
import {Photo} from "./Photo";
import {IconPhoto} from "./IconPhoto";
2017-03-20 07:01:41 +08:00
@Injectable()
export class ThumbnailManagerService {
constructor(private thumbnailLoader: ThumbnailLoaderService) {
}
2017-03-20 07:01:41 +08:00
2017-06-21 17:33:21 +08:00
public getThumbnail(photo: Photo): Thumbnail {
return new Thumbnail(photo, this.thumbnailLoader);
}
2017-07-24 04:36:53 +08:00
public getLazyThumbnail(photo: Photo): Thumbnail {
return new Thumbnail(photo, this.thumbnailLoader, false);
}
public getIcon(photo: IconPhoto) {
return new IconThumbnail(photo, this.thumbnailLoader);
}
}
export abstract class ThumbnailBase {
protected available: boolean = false;
protected src: string = null;
protected loading: boolean = false;
2017-07-18 05:11:35 +08:00
protected error: boolean = false;
protected onLoad: Function = null;
2017-07-24 04:36:53 +08:00
protected thumbnailTask: ThumbnailTaskEntity = null;
constructor(protected thumbnailService: ThumbnailLoaderService) {
}
abstract set Visible(visible: boolean);
set OnLoad(onLoad: Function) {
this.onLoad = onLoad;
}
2017-07-18 05:11:35 +08:00
get Available(): boolean {
return this.available;
}
2017-07-18 05:11:35 +08:00
get Src(): string {
return this.src;
}
2017-07-18 05:11:35 +08:00
get Loading(): boolean {
return this.loading;
}
2017-07-18 05:11:35 +08:00
get Error(): boolean {
return this.error;
}
destroy() {
if (this.thumbnailTask != null) {
this.thumbnailService.removeTask(this.thumbnailTask);
this.thumbnailTask = null;
}
}
2017-03-20 07:01:41 +08:00
}
export class IconThumbnail extends ThumbnailBase {
2017-03-20 07:01:41 +08:00
constructor(private photo: IconPhoto, thumbnailService: ThumbnailLoaderService) {
super(thumbnailService);
this.src = "";
2017-06-22 03:16:04 +08:00
this.error = false;
if (this.photo.isIconAvailable()) {
this.src = this.photo.getIconPath();
this.available = true;
if (this.onLoad) this.onLoad();
}
if (!this.photo.isIconAvailable()) {
2017-06-11 04:56:23 +08:00
setTimeout(() => {
let listener: ThumbnailLoadingListener = {
onStartedLoading: () => { //onLoadStarted
this.loading = true;
},
onLoad: () => {//onLoaded
this.src = this.photo.getIconPath();
if (this.onLoad) this.onLoad();
this.available = true;
this.loading = false;
this.thumbnailTask = null;
},
onError: (error) => {//onError
this.thumbnailTask = null;
2017-06-22 03:16:04 +08:00
this.loading = false;
this.error = true;
}
};
this.thumbnailTask = this.thumbnailService.loadIcon(this.photo, ThumbnailLoadingPriority.high, listener);
2017-03-20 07:01:41 +08:00
2017-06-11 04:56:23 +08:00
}, 0);
}
}
set Visible(visible: boolean) {
if (!this.thumbnailTask) return;
if (visible === true) {
this.thumbnailTask.priority = ThumbnailLoadingPriority.high;
} else {
this.thumbnailTask.priority = ThumbnailLoadingPriority.medium;
}
}
}
export class Thumbnail extends ThumbnailBase {
2017-07-24 04:36:53 +08:00
constructor(private photo: Photo, thumbnailService: ThumbnailLoaderService, autoLoad: boolean = true) {
super(thumbnailService);
if (this.photo.isThumbnailAvailable()) {
this.src = this.photo.getThumbnailPath();
this.available = true;
if (this.onLoad) this.onLoad();
} else if (this.photo.isReplacementThumbnailAvailable()) {
this.src = this.photo.getReplacementThumbnailPath();
this.available = true;
}
2017-07-24 04:36:53 +08:00
if (autoLoad) {
this.load();
}
}
2017-07-26 05:40:07 +08:00
set CurrentlyWaiting(value: boolean) {
if (!this.thumbnailTask) return;
if (value === true) {
if (this.photo.isReplacementThumbnailAvailable()) {
this.thumbnailTask.priority = ThumbnailLoadingPriority.medium;
} else {
this.thumbnailTask.priority = ThumbnailLoadingPriority.extraHigh;
}
} else {
if (this.photo.isReplacementThumbnailAvailable()) {
this.thumbnailTask.priority = ThumbnailLoadingPriority.low;
} else {
this.thumbnailTask.priority = ThumbnailLoadingPriority.medium;
}
}
}
2017-07-24 04:36:53 +08:00
public load() {
if (!this.photo.isThumbnailAvailable() && this.thumbnailTask == null) {
2017-07-26 05:40:07 +08:00
// setTimeout(() => {
let listener: ThumbnailLoadingListener = {
onStartedLoading: () => { //onLoadStarted
this.loading = true;
},
onLoad: () => {//onLoaded
2017-03-20 07:01:41 +08:00
this.src = this.photo.getThumbnailPath();
if (this.onLoad) this.onLoad();
2017-03-20 07:01:41 +08:00
this.available = true;
this.loading = false;
this.thumbnailTask = null;
},
onError: (error) => {//onError
this.thumbnailTask = null;
2017-07-18 05:11:35 +08:00
this.loading = false;
this.error = true;
}
};
if (this.photo.isReplacementThumbnailAvailable()) {
this.thumbnailTask = this.thumbnailService.loadImage(this.photo, ThumbnailLoadingPriority.medium, listener);
} else {
this.thumbnailTask = this.thumbnailService.loadImage(this.photo, ThumbnailLoadingPriority.high, listener);
2017-03-20 07:01:41 +08:00
}
2017-07-26 05:40:07 +08:00
// }, 0);
2017-03-20 07:01:41 +08:00
}
}
set Visible(visible: boolean) {
if (!this.thumbnailTask) return;
if (visible === true) {
if (this.photo.isReplacementThumbnailAvailable()) {
this.thumbnailTask.priority = ThumbnailLoadingPriority.medium;
} else {
this.thumbnailTask.priority = ThumbnailLoadingPriority.high;
}
} else {
if (this.photo.isReplacementThumbnailAvailable()) {
this.thumbnailTask.priority = ThumbnailLoadingPriority.low;
} else {
this.thumbnailTask.priority = ThumbnailLoadingPriority.medium;
}
2017-03-20 07:01:41 +08:00
}
}
2017-03-20 07:01:41 +08:00
}