From 05a6e046c2fd67fe5b55260a946b017bddff1880 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Thu, 10 Sep 2020 15:41:09 +0300 Subject: [PATCH] Only reload packs instead of whole page --- web/index.js | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/web/index.js b/web/index.js index 6a90d54..8cab2f0 100644 --- a/web/index.js +++ b/web/index.js @@ -41,6 +41,7 @@ class App extends Component { this.navRef = null this.sendSticker = this.sendSticker.bind(this) this.navScroll = this.navScroll.bind(this) + this.reloadPacks = this.reloadPacks.bind(this) } _getStickersByID(ids) { @@ -60,8 +61,16 @@ class App extends Component { localStorage.mauFrequentlyUsedStickerCache = JSON.stringify(stickers.map(sticker => [sticker.id, sticker])) } - componentDidMount() { - fetch(`${PACKS_BASE_URL}/index.json`).then(async indexRes => { + reloadPacks() { + this.imageObserver.disconnect() + this.sectionObserver.disconnect() + this.setState({ packs: [] }) + this._loadPacks(true) + } + + _loadPacks(disableCache = false) { + const cache = disableCache ? "no-cache" : undefined + fetch(`${PACKS_BASE_URL}/index.json`, { cache }).then(async indexRes => { if (indexRes.status >= 400) { this.setState({ loading: false, @@ -73,7 +82,7 @@ class App extends Component { HOMESERVER_URL = indexData.homeserver_url || HOMESERVER_URL // TODO only load pack metadata when scrolled into view? for (const packFile of indexData.packs) { - const packRes = await fetch(`${PACKS_BASE_URL}/${packFile}`) + const packRes = await fetch(`${PACKS_BASE_URL}/${packFile}`, { cache }) const packData = await packRes.json() for (const sticker of packData.stickers) { this.stickersByID.set(sticker.id, sticker) @@ -85,7 +94,10 @@ class App extends Component { } this.updateFrequentlyUsed() }, error => this.setState({ loading: false, error })) + } + componentDidMount() { + this._loadPacks() this.imageObserver = new IntersectionObserver(this.observeImageIntersections, { rootMargin: "100px", }) @@ -118,6 +130,9 @@ class App extends Component { } componentDidUpdate() { + if (this.packListRef === null) { + return + } for (const elem of this.packListRef.getElementsByClassName("sticker")) { this.imageObserver.observe(elem) } @@ -163,19 +178,17 @@ class App extends Component {
this.packListRef = elem}> <${Pack} pack=${this.state.frequentlyUsed} send=${this.sendSticker} /> ${this.state.packs.map(pack => html`<${Pack} id=${pack.id} pack=${pack} send=${this.sendSticker} />`)} - <${Settings} /> + <${Settings} app=${this}/>
` } } -const reload = () => isMobileSafari ? (window.location.href = window.location.href) : window.location.reload() - -const Settings = () => html` +const Settings = ({ app }) => html`

Settings

- +
`