mirror of
https://github.com/webrecorder/pywb.git
synced 2025-04-04 21:05:49 +02:00
additional client-side replay fixes from feedback:
- pass swScope directly to loadWabac - pass collection name to loadWabac - support running with non-root prefix - support new 'baseUrlAppendReplay' flag in wabac.js - support '$root' collection, both in pywb and wabac.js same path
This commit is contained in:
parent
b8174a5618
commit
1a7daac064
@ -936,7 +936,7 @@ class RewriterApp(object):
|
|||||||
self.frame_mod,
|
self.frame_mod,
|
||||||
self.replay_mod,
|
self.replay_mod,
|
||||||
self.client_side_replay,
|
self.client_side_replay,
|
||||||
coll='',
|
coll=kwargs.get("coll"),
|
||||||
extra_params=extra_params)
|
extra_params=extra_params)
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
@ -427,7 +427,9 @@ class TopFrameView(BaseInsertView):
|
|||||||
'is_proxy': is_proxy,
|
'is_proxy': is_proxy,
|
||||||
'client_side_replay': client_side_replay,
|
'client_side_replay': client_side_replay,
|
||||||
'timestamp': timestamp,
|
'timestamp': timestamp,
|
||||||
'url': wb_url.get_url()
|
'url': wb_url.get_url(),
|
||||||
|
|
||||||
|
'sw_prefix': env.get('pywb.app_prefix', '') + "/"
|
||||||
}
|
}
|
||||||
|
|
||||||
if extra_params:
|
if extra_params:
|
||||||
|
@ -1,18 +1,24 @@
|
|||||||
class WabacReplay
|
class WabacReplay
|
||||||
{
|
{
|
||||||
constructor(prefix, url, ts, staticPrefix) {
|
constructor(prefix, url, ts, staticPrefix, coll, swScopePrefix) {
|
||||||
this.prefix = prefix;
|
this.prefix = prefix;
|
||||||
this.url = url;
|
this.url = url;
|
||||||
this.ts = ts;
|
this.ts = ts;
|
||||||
this.staticPrefix = staticPrefix;
|
this.staticPrefix = staticPrefix;
|
||||||
this.collName = new URL(prefix, "http://dummy").pathname.split('/')[1];
|
this.collName = coll;
|
||||||
|
this.isRoot = coll === "$root";
|
||||||
|
this.archivePrefix = this.isRoot ? "/" : `/${this.collName}/`;
|
||||||
|
this.swScope = swScopePrefix;
|
||||||
this.adblockUrl = undefined;
|
this.adblockUrl = undefined;
|
||||||
|
|
||||||
this.queryParams = {};
|
this.queryParams = {};
|
||||||
|
if (this.isRoot) {
|
||||||
|
this.queryParams["root"] = "$root";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
const scope = "/";
|
const scope = this.swScope;
|
||||||
|
|
||||||
await navigator.serviceWorker.register(
|
await navigator.serviceWorker.register(
|
||||||
`${this.staticPrefix}/sw.js?` + new URLSearchParams(this.queryParams).toString(),
|
`${this.staticPrefix}/sw.js?` + new URLSearchParams(this.queryParams).toString(),
|
||||||
@ -30,24 +36,22 @@ class WabacReplay
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const baseUrl = new URL(window.location);
|
|
||||||
baseUrl.hash = "";
|
|
||||||
|
|
||||||
const proxyPrefix = "";
|
const proxyPrefix = "";
|
||||||
|
|
||||||
const msg = {
|
const msg = {
|
||||||
msg_type: "addColl",
|
msg_type: "addColl",
|
||||||
name: this.collName,
|
name: this.collName,
|
||||||
type: "live",
|
type: "live",
|
||||||
|
root: this.isRoot,
|
||||||
file: {"sourceUrl": `proxy:${proxyPrefix}`},
|
file: {"sourceUrl": `proxy:${proxyPrefix}`},
|
||||||
skipExisting: true,
|
skipExisting: true,
|
||||||
extraConfig: {
|
extraConfig: {
|
||||||
prefix: proxyPrefix,
|
prefix: proxyPrefix,
|
||||||
isLive: false,
|
isLive: false,
|
||||||
baseUrl: baseUrl.href,
|
baseUrl: this.prefix,
|
||||||
baseUrlHashReplay: true,
|
baseUrlAppendReplay: true,
|
||||||
noPostToGet: false,
|
noPostToGet: false,
|
||||||
archivePrefix: `/${this.collName}/`,
|
archivePrefix: this.archivePrefix,
|
||||||
archiveMod: "ir_",
|
archiveMod: "ir_",
|
||||||
adblockUrl: this.adblockUrl
|
adblockUrl: this.adblockUrl
|
||||||
},
|
},
|
||||||
@ -80,6 +84,6 @@ class WabacReplay
|
|||||||
// called by the Vue banner when the timeline is clicked
|
// called by the Vue banner when the timeline is clicked
|
||||||
load_url(url, ts) {
|
load_url(url, ts) {
|
||||||
const iframe = document.querySelector('#replay_iframe');
|
const iframe = document.querySelector('#replay_iframe');
|
||||||
iframe.src = `/w/${this.collName}/${ts}mp_/${url}`;
|
iframe.src = `${this.swScope}w${this.archivePrefix}${ts}mp_/${url}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,7 @@ html, body
|
|||||||
{% if client_side_replay %}
|
{% if client_side_replay %}
|
||||||
<script src='{{ static_prefix }}/loadWabac.js'></script>
|
<script src='{{ static_prefix }}/loadWabac.js'></script>
|
||||||
<script>
|
<script>
|
||||||
new WabacReplay("{{ wb_prefix }}", "{{ url }}", "{{ timestamp }}", "{{ static_prefix }}").init();
|
new WabacReplay("{{ wb_prefix }}", "{{ url }}", "{{ timestamp }}", "{{ static_prefix }}", "{{ coll }}", "{{ sw_prefix }}").init();
|
||||||
</script>
|
</script>
|
||||||
{% else %}
|
{% else %}
|
||||||
<script src='{{ static_prefix }}/wb_frame.js'> </script>
|
<script src='{{ static_prefix }}/wb_frame.js'> </script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user