
* Implemented a basic jump bar for the library view. This currently just interacts with existing pagination controls and is not inlined with infinite scroll yet. This is a first pass implementation. * Refactored time estimates into the reading service. * Cleaned up when the jump bar is shown to mimic pagination controls * Cleanup up code in reader service. * Scroll to card when selecting a jump key that is shown on the current page. * Ensure estimated times always has the smaller number on left hand side. * Fixed a bug with a missing vertical rule * Fixed an off by 1 pixel for search overlay
645 lines
22 KiB
TypeScript
645 lines
22 KiB
TypeScript
import { DOCUMENT } from '@angular/common';
|
|
import { Component, ElementRef, EventEmitter, Inject, Input, OnChanges, OnDestroy, OnInit, Output, Renderer2, SimpleChanges } from '@angular/core';
|
|
import { BehaviorSubject, fromEvent, ReplaySubject, Subject } from 'rxjs';
|
|
import { debounceTime, takeUntil } from 'rxjs/operators';
|
|
import { ScrollService } from 'src/app/_services/scroll.service';
|
|
import { ReaderService } from '../../_services/reader.service';
|
|
import { PAGING_DIRECTION } from '../_models/reader-enums';
|
|
import { WebtoonImage } from '../_models/webtoon-image';
|
|
|
|
/**
|
|
* How much additional space should pass, past the original bottom of the document height before we trigger the next chapter load
|
|
*/
|
|
const SPACER_SCROLL_INTO_PX = 200;
|
|
|
|
/**
|
|
* Bitwise enums for configuring how much debug information we want
|
|
*/
|
|
const enum DEBUG_MODES {
|
|
/**
|
|
* No Debug information
|
|
*/
|
|
None = 0,
|
|
/**
|
|
* Turn on debug logging
|
|
*/
|
|
Logs = 2,
|
|
/**
|
|
* Turn on the action bar in UI
|
|
*/
|
|
ActionBar = 4,
|
|
/**
|
|
* Turn on Page outline
|
|
*/
|
|
Outline = 8
|
|
|
|
|
|
}
|
|
|
|
@Component({
|
|
selector: 'app-infinite-scroller',
|
|
templateUrl: './infinite-scroller.component.html',
|
|
styleUrls: ['./infinite-scroller.component.scss']
|
|
})
|
|
export class InfiniteScrollerComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
|
/**
|
|
* Current page number aka what's recorded on screen
|
|
*/
|
|
@Input() pageNum: number = 0;
|
|
/**
|
|
* Number of pages to prefetch ahead of position
|
|
*/
|
|
@Input() bufferPages: number = 5;
|
|
/**
|
|
* Total number of pages
|
|
*/
|
|
@Input() totalPages: number = 0;
|
|
/**
|
|
* Method to generate the src for Image loading
|
|
*/
|
|
@Input() urlProvider!: (page: number) => string;
|
|
@Output() pageNumberChange: EventEmitter<number> = new EventEmitter<number>();
|
|
@Output() loadNextChapter: EventEmitter<void> = new EventEmitter<void>();
|
|
@Output() loadPrevChapter: EventEmitter<void> = new EventEmitter<void>();
|
|
|
|
@Input() goToPage: BehaviorSubject<number> | undefined;
|
|
@Input() bookmarkPage: ReplaySubject<number> = new ReplaySubject<number>();
|
|
@Input() fullscreenToggled: ReplaySubject<boolean> = new ReplaySubject<boolean>();
|
|
|
|
readerElemRef!: ElementRef<HTMLDivElement>;
|
|
|
|
/**
|
|
* Stores and emits all the src urls
|
|
*/
|
|
webtoonImages: BehaviorSubject<WebtoonImage[]> = new BehaviorSubject<WebtoonImage[]>([]);
|
|
|
|
/**
|
|
* Responsible for calculating current page on screen and uses hooks to trigger prefetching.
|
|
* Note: threshold will fire differently due to size of images. 1 requires full image on screen. 0 means 1px on screen. We use 0.01 as 0 does not work currently.
|
|
*/
|
|
intersectionObserver: IntersectionObserver = new IntersectionObserver((entries) => this.handleIntersection(entries), { threshold: 0.01 });
|
|
/**
|
|
* Direction we are scrolling. Controls calculations for prefetching
|
|
*/
|
|
scrollingDirection: PAGING_DIRECTION = PAGING_DIRECTION.FORWARD;
|
|
/**
|
|
* Temp variable to keep track of scrolling position between scrolls to caclulate direction
|
|
*/
|
|
prevScrollPosition: number = 0;
|
|
/**
|
|
* Temp variable to keep track of when the scrollTo() finishes, so we can start capturing scroll events again
|
|
*/
|
|
currentPageElem: Element | null = null;
|
|
/**
|
|
* The minimum width of images in webtoon. On image loading, this is checked and updated. All images will get this assigned to them for rendering.
|
|
*/
|
|
webtoonImageWidth: number = window.innerWidth || this.document.body.clientWidth || this.document.documentElement.clientWidth;
|
|
/**
|
|
* Used to tell if a scrollTo() operation is in progress
|
|
*/
|
|
isScrolling: boolean = false;
|
|
/**
|
|
* Whether all prefetched images have loaded on the screen (not neccesarily in viewport)
|
|
*/
|
|
allImagesLoaded: boolean = false;
|
|
/**
|
|
* Denotes each page that has been loaded or not. If pruning is implemented, the key will be deleted.
|
|
*/
|
|
imagesLoaded: {[key: number]: number} = {};
|
|
/**
|
|
* If the user has scrolled all the way to the bottom. This is used solely for continuous reading
|
|
*/
|
|
atBottom: boolean = false;
|
|
/**
|
|
* If the user has scrolled all the way to the top. This is used solely for continuous reading
|
|
*/
|
|
atTop: boolean = false;
|
|
/**
|
|
* If the manga reader is in fullscreen. Some math changes based on this value.
|
|
*/
|
|
isFullscreenMode: boolean = false;
|
|
/**
|
|
* Keeps track of the previous scrolling height for restoring scroll position after we inject spacer block
|
|
*/
|
|
previousScrollHeightMinusTop: number = 0;
|
|
/**
|
|
* Tracks the first load, until all the initial prefetched images are loaded. We use this to reduce opacity so images can load without jerk.
|
|
*/
|
|
initFinished: boolean = false;
|
|
/**
|
|
* Debug mode. Will show extra information. Use bitwise (|) operators between different modes to enable different output
|
|
*/
|
|
debugMode: DEBUG_MODES = DEBUG_MODES.None;
|
|
/**
|
|
* Debug mode. Will filter out any messages in here so they don't hit the log
|
|
*/
|
|
debugLogFilter: Array<string> = ['[PREFETCH]', '[Intersection]', '[Visibility]', '[Image Load]'];
|
|
|
|
get minPageLoaded() {
|
|
return Math.min(...Object.values(this.imagesLoaded));
|
|
}
|
|
|
|
get maxPageLoaded() {
|
|
return Math.max(...Object.values(this.imagesLoaded));
|
|
}
|
|
|
|
get areImagesWiderThanWindow() {
|
|
let [_, innerWidth] = this.getInnerDimensions();
|
|
return this.webtoonImageWidth > (innerWidth || document.body.clientWidth);
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly onDestroy = new Subject<void>();
|
|
|
|
constructor(private readerService: ReaderService, private renderer: Renderer2, @Inject(DOCUMENT) private document: Document, private scrollService: ScrollService) {
|
|
// This will always exist at this point in time since this is used within manga reader
|
|
const reader = document.querySelector('.reader');
|
|
if (reader !== null) {
|
|
this.readerElemRef = new ElementRef(reader as HTMLDivElement);
|
|
}
|
|
}
|
|
|
|
ngOnChanges(changes: SimpleChanges): void {
|
|
if (changes.hasOwnProperty('totalPages') && changes['totalPages'].previousValue != changes['totalPages'].currentValue) {
|
|
this.totalPages = changes['totalPages'].currentValue;
|
|
this.initWebtoonReader();
|
|
}
|
|
}
|
|
|
|
ngOnDestroy(): void {
|
|
this.intersectionObserver.disconnect();
|
|
this.onDestroy.next();
|
|
this.onDestroy.complete();
|
|
}
|
|
|
|
/**
|
|
* Responsible for binding the scroll handler to the correct event. On non-fullscreen, body is correct. However, on fullscreen, we must use the reader as that is what
|
|
* gets promoted to fullscreen.
|
|
*/
|
|
initScrollHandler() {
|
|
fromEvent(this.isFullscreenMode ? this.readerElemRef.nativeElement : this.document.body, 'scroll')
|
|
.pipe(debounceTime(20), takeUntil(this.onDestroy))
|
|
.subscribe((event) => this.handleScrollEvent(event));
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
this.initScrollHandler();
|
|
|
|
this.recalculateImageWidth();
|
|
|
|
if (this.goToPage) {
|
|
this.goToPage.pipe(takeUntil(this.onDestroy)).subscribe(page => {
|
|
const isSamePage = this.pageNum === page;
|
|
if (isSamePage) { return; }
|
|
this.debugLog('[GoToPage] jump has occured from ' + this.pageNum + ' to ' + page);
|
|
|
|
if (this.pageNum < page) {
|
|
this.scrollingDirection = PAGING_DIRECTION.FORWARD;
|
|
} else {
|
|
this.scrollingDirection = PAGING_DIRECTION.BACKWARDS;
|
|
}
|
|
|
|
this.setPageNum(page, true);
|
|
});
|
|
}
|
|
|
|
if (this.bookmarkPage) {
|
|
this.bookmarkPage.pipe(takeUntil(this.onDestroy)).subscribe(page => {
|
|
const image = document.querySelector('img[id^="page-' + page + '"]');
|
|
if (image) {
|
|
this.renderer.addClass(image, 'bookmark-effect');
|
|
setTimeout(() => {
|
|
this.renderer.removeClass(image, 'bookmark-effect');
|
|
}, 1000);
|
|
}
|
|
});
|
|
}
|
|
|
|
if (this.fullscreenToggled) {
|
|
this.fullscreenToggled.pipe(takeUntil(this.onDestroy)).subscribe(isFullscreen => {
|
|
this.debugLog('[FullScreen] Fullscreen mode: ', isFullscreen);
|
|
this.isFullscreenMode = isFullscreen;
|
|
this.recalculateImageWidth();
|
|
this.initScrollHandler();
|
|
this.setPageNum(this.pageNum, true);
|
|
});
|
|
}
|
|
}
|
|
|
|
recalculateImageWidth() {
|
|
const [_, innerWidth] = this.getInnerDimensions();
|
|
this.webtoonImageWidth = innerWidth || document.body.clientWidth || document.documentElement.clientWidth;
|
|
}
|
|
|
|
getVerticalOffset() {
|
|
const reader = this.isFullscreenMode ? this.readerElemRef.nativeElement : this.document.body;
|
|
|
|
let offset = 0;
|
|
if (reader instanceof Window) {
|
|
offset = reader.scrollY;
|
|
} else {
|
|
offset = reader.scrollTop;
|
|
}
|
|
|
|
return (offset
|
|
|| document.body.scrollTop
|
|
|| document.documentElement.scrollTop
|
|
|| 0);
|
|
}
|
|
|
|
/**
|
|
* On scroll in document, calculate if the user/javascript has scrolled to the current image element (and it's visible), update that scrolling has ended completely,
|
|
* and calculate the direction the scrolling is occuring. This is not used for prefetching.
|
|
* @param event Scroll Event
|
|
*/
|
|
handleScrollEvent(event?: any) {
|
|
// Need a fullscreen handler here too
|
|
let verticalOffset = this.getVerticalOffset();
|
|
|
|
|
|
if (verticalOffset > this.prevScrollPosition) {
|
|
this.scrollingDirection = PAGING_DIRECTION.FORWARD;
|
|
} else {
|
|
this.scrollingDirection = PAGING_DIRECTION.BACKWARDS;
|
|
}
|
|
this.prevScrollPosition = verticalOffset;
|
|
|
|
if (this.isScrolling && this.currentPageElem != null && this.isElementVisible(this.currentPageElem)) {
|
|
this.debugLog('[Scroll] Image is visible from scroll, isScrolling is now false');
|
|
this.isScrolling = false;
|
|
}
|
|
|
|
if (!this.isScrolling) {
|
|
// Use offset of the image against the scroll container to test if the most of the image is visible on the screen. We can use this
|
|
// to mark the current page and separate the prefetching code.
|
|
const midlineImages = Array.from(document.querySelectorAll('img[id^="page-"]'))
|
|
.filter(entry => this.shouldElementCountAsCurrentPage(entry));
|
|
|
|
if (midlineImages.length > 0) {
|
|
this.setPageNum(parseInt(midlineImages[0].getAttribute('page') || this.pageNum + '', 10));
|
|
}
|
|
}
|
|
|
|
|
|
// Check if we hit the last page
|
|
this.checkIfShouldTriggerContinuousReader();
|
|
|
|
}
|
|
|
|
getTotalHeight() {
|
|
let totalHeight = 0;
|
|
document.querySelectorAll('img[id^="page-"]').forEach(img => totalHeight += img.getBoundingClientRect().height);
|
|
return Math.round(totalHeight);
|
|
}
|
|
getTotalScroll() {
|
|
if (this.isFullscreenMode) {
|
|
return this.readerElemRef.nativeElement.offsetHeight + this.readerElemRef.nativeElement.scrollTop;
|
|
}
|
|
return document.body.offsetHeight + document.body.scrollTop;
|
|
}
|
|
getScrollTop() {
|
|
if (this.isFullscreenMode) {
|
|
return this.readerElemRef.nativeElement.scrollTop;
|
|
}
|
|
|
|
return document.body.scrollTop;
|
|
}
|
|
|
|
checkIfShouldTriggerContinuousReader() {
|
|
if (this.isScrolling) return;
|
|
|
|
if (this.scrollingDirection === PAGING_DIRECTION.FORWARD) {
|
|
const totalHeight = this.getTotalHeight();
|
|
const totalScroll = this.getTotalScroll();
|
|
|
|
// If we were at top but have started scrolling down past page 0, remove top spacer
|
|
if (this.atTop && this.pageNum > 0) {
|
|
this.atTop = false;
|
|
}
|
|
|
|
if (totalScroll === totalHeight && !this.atBottom) {
|
|
this.atBottom = true;
|
|
this.setPageNum(this.totalPages);
|
|
|
|
// Scroll user back to original location
|
|
this.previousScrollHeightMinusTop = this.getScrollTop();
|
|
requestAnimationFrame(() => document.body.scrollTop = this.previousScrollHeightMinusTop + (SPACER_SCROLL_INTO_PX / 2));
|
|
} else if (totalScroll >= totalHeight + SPACER_SCROLL_INTO_PX && this.atBottom) {
|
|
// This if statement will fire once we scroll into the spacer at all
|
|
this.loadNextChapter.emit();
|
|
}
|
|
} else {
|
|
// < 5 because debug mode and FF (mobile) can report non 0, despite being at 0
|
|
if (this.getScrollTop() < 5 && this.pageNum === 0 && !this.atTop) {
|
|
this.atBottom = false;
|
|
|
|
this.atTop = true;
|
|
// Scroll user back to original location
|
|
this.previousScrollHeightMinusTop = document.body.scrollHeight - document.body.scrollTop;
|
|
|
|
const reader = this.isFullscreenMode ? this.readerElemRef.nativeElement : this.document.body;
|
|
requestAnimationFrame(() => this.scrollService.scrollTo((SPACER_SCROLL_INTO_PX / 2), reader));
|
|
} else if (this.getScrollTop() < 5 && this.pageNum === 0 && this.atTop) {
|
|
// If already at top, then we moving on
|
|
this.loadPrevChapter.emit();
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @returns Height, Width
|
|
*/
|
|
getInnerDimensions() {
|
|
let innerHeight = window.innerHeight;
|
|
let innerWidth = window.innerWidth;
|
|
|
|
if (this.isFullscreenMode) {
|
|
innerHeight = this.readerElemRef.nativeElement.clientHeight;
|
|
innerWidth = this.readerElemRef.nativeElement.clientWidth;
|
|
}
|
|
return [innerHeight, innerWidth];
|
|
}
|
|
|
|
/**
|
|
* Is any part of the element visible in the scrollport. Does not take into account
|
|
* style properites, just scroll port visibility.
|
|
* @param elem
|
|
* @returns
|
|
*/
|
|
isElementVisible(elem: Element) {
|
|
if (elem === null || elem === undefined) { return false; }
|
|
|
|
this.debugLog('[Visibility] Checking if Page ' + elem.getAttribute('id') + ' is visible');
|
|
// NOTE: This will say an element is visible if it is 1 px offscreen on top
|
|
var rect = elem.getBoundingClientRect();
|
|
|
|
let [innerHeight, innerWidth] = this.getInnerDimensions();
|
|
|
|
return (rect.bottom >= 0 &&
|
|
rect.right >= 0 &&
|
|
rect.top <= (innerHeight || document.body.clientHeight) &&
|
|
rect.left <= (innerWidth || document.body.clientWidth)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Is any part of the element visible in the scrollport and is it above the midline trigger.
|
|
* The midline trigger does not mean it is half of the screen. It may be top 25%.
|
|
* @param elem HTML Element
|
|
* @returns If above midline
|
|
*/
|
|
shouldElementCountAsCurrentPage(elem: Element) {
|
|
if (elem === null || elem === undefined) { return false; }
|
|
|
|
var rect = elem.getBoundingClientRect();
|
|
|
|
let [innerHeight, innerWidth] = this.getInnerDimensions();
|
|
|
|
|
|
if (rect.bottom >= 0 &&
|
|
rect.right >= 0 &&
|
|
rect.top <= (innerHeight || document.body.clientHeight) &&
|
|
rect.left <= (innerWidth || document.body.clientWidth)
|
|
) {
|
|
const topX = (innerHeight || document.body.clientHeight);
|
|
return Math.abs(rect.top / topX) <= 0.25;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
initWebtoonReader() {
|
|
this.initFinished = false;
|
|
this.recalculateImageWidth();
|
|
this.imagesLoaded = {};
|
|
this.webtoonImages.next([]);
|
|
this.atBottom = false;
|
|
this.checkIfShouldTriggerContinuousReader();
|
|
|
|
const [startingIndex, endingIndex] = this.calculatePrefetchIndecies();
|
|
|
|
this.debugLog('[INIT] Prefetching pages ' + startingIndex + ' to ' + endingIndex + '. Current page: ', this.pageNum);
|
|
for(let i = startingIndex; i <= endingIndex; i++) {
|
|
this.loadWebtoonImage(i);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Callback for an image onLoad. At this point the image is already rendered in DOM (may not be visible)
|
|
* This will be used to scroll to current page for intial load
|
|
* @param event
|
|
*/
|
|
onImageLoad(event: any) {
|
|
const imagePage = this.readerService.imageUrlToPageNum(event.target.src);
|
|
this.debugLog('[Image Load] Image loaded: ', imagePage);
|
|
|
|
if (event.target.width < this.webtoonImageWidth) {
|
|
this.webtoonImageWidth = event.target.width;
|
|
}
|
|
|
|
this.renderer.setAttribute(event.target, 'width', this.webtoonImageWidth + '');
|
|
this.renderer.setAttribute(event.target, 'height', event.target.height + '');
|
|
|
|
this.attachIntersectionObserverElem(event.target);
|
|
|
|
if (imagePage === this.pageNum) {
|
|
Promise.all(Array.from(this.document.querySelectorAll('img'))
|
|
.filter((img: any) => !img.complete)
|
|
.map((img: any) => new Promise(resolve => { img.onload = img.onerror = resolve; })))
|
|
.then(() => {
|
|
this.debugLog('[Initialization] All images have loaded from initial prefetch, initFinished = true');
|
|
this.debugLog('[Image Load] ! Loaded current page !', this.pageNum);
|
|
this.currentPageElem = this.document.querySelector('img#page-' + this.pageNum);
|
|
// There needs to be a bit of time before we scroll
|
|
if (this.currentPageElem && !this.isElementVisible(this.currentPageElem)) {
|
|
this.scrollToCurrentPage();
|
|
} else {
|
|
this.initFinished = true;
|
|
}
|
|
|
|
this.allImagesLoaded = true;
|
|
});
|
|
}
|
|
}
|
|
|
|
handleIntersection(entries: IntersectionObserverEntry[]) {
|
|
if (!this.allImagesLoaded || this.isScrolling) {
|
|
this.debugLog('[Intersection] Images are not loaded (or performing scrolling action), skipping any scroll calculations');
|
|
return;
|
|
}
|
|
|
|
entries.forEach(entry => {
|
|
const imagePage = parseInt(entry.target.attributes.getNamedItem('page')?.value + '', 10);
|
|
this.debugLog('[Intersection] Page ' + imagePage + ' is visible: ', entry.isIntersecting);
|
|
if (entry.isIntersecting) {
|
|
this.debugLog('[Intersection] ! Page ' + imagePage + ' just entered screen');
|
|
this.prefetchWebtoonImages(imagePage);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Set the page number, invoke prefetching and optionally scroll to the new page.
|
|
* @param pageNum Page number to set to. Will trigger the pageNumberChange event emitter.
|
|
* @param scrollToPage Optional (default false) parameter to trigger scrolling to the newly set page
|
|
*/
|
|
setPageNum(pageNum: number, scrollToPage: boolean = false) {
|
|
if (pageNum >= this.totalPages) {
|
|
pageNum = this.totalPages - 1;
|
|
} else if (pageNum < 0) {
|
|
pageNum = 0;
|
|
}
|
|
this.pageNum = pageNum;
|
|
this.pageNumberChange.emit(this.pageNum);
|
|
|
|
this.prefetchWebtoonImages();
|
|
|
|
if (scrollToPage) {
|
|
this.scrollToCurrentPage();
|
|
}
|
|
}
|
|
|
|
isScrollingForwards() {
|
|
return this.scrollingDirection === PAGING_DIRECTION.FORWARD;
|
|
}
|
|
|
|
/**
|
|
* Performs the scroll for the current page element. Updates any state variables needed.
|
|
*/
|
|
scrollToCurrentPage() {
|
|
this.currentPageElem = document.querySelector('img#page-' + this.pageNum);
|
|
if (!this.currentPageElem) { return; }
|
|
this.debugLog('[GoToPage] Scrolling to page', this.pageNum);
|
|
|
|
// Update prevScrollPosition, so the next scroll event properly calculates direction
|
|
this.prevScrollPosition = this.currentPageElem.getBoundingClientRect().top;
|
|
this.isScrolling = true;
|
|
|
|
setTimeout(() => {
|
|
if (this.currentPageElem) {
|
|
this.debugLog('[Scroll] Scrolling to page ', this.pageNum);
|
|
this.currentPageElem.scrollIntoView({behavior: 'smooth'});
|
|
this.initFinished = true;
|
|
}
|
|
}, 600);
|
|
}
|
|
|
|
loadWebtoonImage(page: number) {
|
|
let data = this.webtoonImages.value;
|
|
|
|
if (this.imagesLoaded.hasOwnProperty(page)) {
|
|
this.debugLog('\t[PREFETCH] Skipping prefetch of ', page);
|
|
return;
|
|
}
|
|
this.debugLog('\t[PREFETCH] Prefetching ', page);
|
|
|
|
data = data.concat({src: this.urlProvider(page), page});
|
|
|
|
data.sort((a: WebtoonImage, b: WebtoonImage) => {
|
|
if (a.page < b.page) { return -1; }
|
|
else if (a.page > b.page) { return 1; }
|
|
else return 0;
|
|
});
|
|
|
|
this.allImagesLoaded = false;
|
|
this.webtoonImages.next(data);
|
|
|
|
if (!this.imagesLoaded.hasOwnProperty(page)) {
|
|
this.imagesLoaded[page] = page;
|
|
}
|
|
}
|
|
|
|
attachIntersectionObserverElem(elem: HTMLImageElement) {
|
|
if (elem !== null) {
|
|
this.intersectionObserver.observe(elem);
|
|
this.debugLog('[Intersection] Attached Intersection Observer to page', this.readerService.imageUrlToPageNum(elem.src));
|
|
} else {
|
|
console.error('Could not attach observer on elem'); // This never happens
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Finds the ranges of indecies to load from backend. totalPages - 1 is due to backend will automatically return last page for any page number
|
|
* above totalPages. Webtoon reader might ask for that which results in duplicate last pages.
|
|
* @param pageNum
|
|
* @returns
|
|
*/
|
|
calculatePrefetchIndecies(pageNum: number = -1) {
|
|
if (pageNum == -1) {
|
|
pageNum = this.pageNum;
|
|
}
|
|
|
|
let startingIndex = 0;
|
|
let endingIndex = 0;
|
|
if (this.isScrollingForwards()) {
|
|
startingIndex = Math.min(Math.max(pageNum - this.bufferPages, 0), this.totalPages - 1);
|
|
endingIndex = Math.min(Math.max(pageNum + this.bufferPages, 0), this.totalPages - 1);
|
|
|
|
if (startingIndex === this.totalPages) {
|
|
return [0, 0];
|
|
}
|
|
} else {
|
|
startingIndex = Math.min(Math.max(pageNum - this.bufferPages, 0), this.totalPages - 1);
|
|
endingIndex = Math.min(Math.max(pageNum + this.bufferPages, 0), this.totalPages - 1);
|
|
}
|
|
|
|
|
|
if (startingIndex > endingIndex) {
|
|
const temp = startingIndex;
|
|
startingIndex = endingIndex;
|
|
endingIndex = temp;
|
|
}
|
|
|
|
return [startingIndex, endingIndex];
|
|
}
|
|
|
|
range(size: number, startAt: number = 0): ReadonlyArray<number> {
|
|
return [...Array(size).keys()].map(i => i + startAt);
|
|
}
|
|
|
|
prefetchWebtoonImages(pageNum: number = -1) {
|
|
|
|
if (pageNum === -1) {
|
|
pageNum = this.pageNum;
|
|
}
|
|
|
|
const [startingIndex, endingIndex] = this.calculatePrefetchIndecies(pageNum);
|
|
if (startingIndex === 0 && endingIndex === 0) { return; }
|
|
|
|
this.debugLog('\t[PREFETCH] prefetching pages: ' + startingIndex + ' to ' + endingIndex);
|
|
for(let i = startingIndex; i <= endingIndex; i++) {
|
|
this.loadWebtoonImage(i);
|
|
}
|
|
|
|
Promise.all(Array.from(document.querySelectorAll('img'))
|
|
.filter((img: any) => !img.complete)
|
|
.map((img: any) => new Promise(resolve => { img.onload = img.onerror = resolve; })))
|
|
.then(() => {
|
|
this.allImagesLoaded = true;
|
|
});
|
|
}
|
|
|
|
debugLog(message: string, extraData?: any) {
|
|
if (!(this.debugMode & DEBUG_MODES.Logs)) return;
|
|
|
|
if (this.debugLogFilter.filter(str => message.replace('\t', '').startsWith(str)).length > 0) return;
|
|
if (extraData !== undefined) {
|
|
console.log(message, extraData);
|
|
} else {
|
|
console.log(message);
|
|
}
|
|
}
|
|
|
|
showDebugBar() {
|
|
return this.debugMode & DEBUG_MODES.ActionBar;
|
|
}
|
|
|
|
showDebugOutline() {
|
|
return this.debugMode & DEBUG_MODES.Outline;
|
|
}
|
|
}
|