Ensure that currentOutlineButton
enabling/disabling won't depend on the exact timing of the "pagesloaded" event (PR 13212 follow-up)
I (unsurprisingly) managed to forget about handling the case where a "pagesloaded" event arrives *before* the outline has been parsed, in which case we'd not actually enable the `currentOutlineButton` as intended. Also, in the "pagesloaded" event handler, we should ensure that there's actually any pages loaded since otherwise the "find current outlineItem"-feature doesn't make any sense.
This commit is contained in:
parent
4ac1082838
commit
f285e41f02
@ -54,13 +54,15 @@ class PDFOutlineViewer extends BaseTreeViewer {
|
||||
this.eventBus._on("pagesloaded", evt => {
|
||||
this._isPagesLoaded = !!evt.pagesCount;
|
||||
|
||||
// If the capability is still pending, note the `_dispatchEvent`-method,
|
||||
// we know that the `currentOutlineItem`-button should be enabled here.
|
||||
// If the capability is still pending, see the `_dispatchEvent`-method,
|
||||
// we know that the `currentOutlineItem`-button can be enabled here.
|
||||
if (
|
||||
this._currentOutlineItemCapability &&
|
||||
!this._currentOutlineItemCapability.settled
|
||||
) {
|
||||
this._currentOutlineItemCapability.resolve(/* enabled = */ true);
|
||||
this._currentOutlineItemCapability.resolve(
|
||||
/* enabled = */ this._isPagesLoaded
|
||||
);
|
||||
}
|
||||
});
|
||||
this.eventBus._on("sidebarviewchanged", evt => {
|
||||
@ -95,6 +97,8 @@ class PDFOutlineViewer extends BaseTreeViewer {
|
||||
this._pdfDocument?.loadingParams.disableAutoFetch
|
||||
) {
|
||||
this._currentOutlineItemCapability.resolve(/* enabled = */ false);
|
||||
} else if (this._isPagesLoaded) {
|
||||
this._currentOutlineItemCapability.resolve(/* enabled = */ true);
|
||||
}
|
||||
|
||||
this.eventBus.dispatch("outlineloaded", {
|
||||
|
Loading…
x
Reference in New Issue
Block a user