Faster profile showing when profile data is due a refresh
This commit is contained in:
parent
d316407627
commit
bd08c72c9e
|
@ -62,6 +62,8 @@
|
||||||
<a class="btn" @click="openProfileInBrowser"><i class="fa fa-external-link-alt"/></a>
|
<a class="btn" @click="openProfileInBrowser"><i class="fa fa-external-link-alt"/></a>
|
||||||
<a class="btn" @click="openConversation"><i class="fa fa-comment"></i></a>
|
<a class="btn" @click="openConversation"><i class="fa fa-comment"></i></a>
|
||||||
<a class="btn" @click="reloadCharacter"><i class="fa fa-sync" /></a>
|
<a class="btn" @click="reloadCharacter"><i class="fa fa-sync" /></a>
|
||||||
|
|
||||||
|
<i class="fas fa-circle-notch fa-spin profileRefreshSpinner" v-show="isRefreshingProfile()"></i>
|
||||||
</template>
|
</template>
|
||||||
</modal>
|
</modal>
|
||||||
<modal :action="l('fixLogs.action')" ref="fixLogsModal" @submit="fixLogs" buttonClass="btn-danger">
|
<modal :action="l('fixLogs.action')" ref="fixLogsModal" @submit="fixLogs" buttonClass="btn-danger">
|
||||||
|
@ -308,6 +310,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
isRefreshingProfile(): boolean {
|
||||||
|
const cp = this.$refs.characterPage as CharacterPage;
|
||||||
|
|
||||||
|
return cp && cp.refreshing;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
reloadCharacter(): void {
|
reloadCharacter(): void {
|
||||||
// tslint:disable-next-line: no-any no-unsafe-any
|
// tslint:disable-next-line: no-any no-unsafe-any
|
||||||
(this.$refs.characterPage as any).reload();
|
(this.$refs.characterPage as any).reload();
|
||||||
|
@ -346,4 +355,10 @@
|
||||||
-webkit-user-drag: none;
|
-webkit-user-drag: none;
|
||||||
-webkit-app-region: no-drag;
|
-webkit-app-region: no-drag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.profileRefreshSpinner {
|
||||||
|
font-size: 12pt;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
import { CharacterImage, SimpleCharacter } from '../../interfaces';
|
import { CharacterImage, SimpleCharacter } from '../../interfaces';
|
||||||
|
|
||||||
const CHARACTER_CACHE_EXPIRE = 7 * 24 * 60 * 60 * 1000; // 7 days (milliseconds)
|
const CHARACTER_CACHE_EXPIRE = 7 * 24 * 60 * 60 * 1000; // 7 days (milliseconds)
|
||||||
const CHARACTER_META_CACHE_EXPIRE = 10 * 24 * 60 * 60 * 1000; // 10 days (milliseconds)
|
const CHARACTER_META_CACHE_EXPIRE = 7 * 24 * 60 * 60 * 1000; // 10 days (milliseconds)
|
||||||
|
|
||||||
interface ShowableVueTab extends Vue {
|
interface ShowableVueTab extends Vue {
|
||||||
show?(): void
|
show?(): void
|
||||||
|
@ -128,9 +128,11 @@
|
||||||
readonly oldApi?: true;
|
readonly oldApi?: true;
|
||||||
@Prop
|
@Prop
|
||||||
readonly imagePreview?: true;
|
readonly imagePreview?: true;
|
||||||
|
|
||||||
shared: SharedStore = Store;
|
shared: SharedStore = Store;
|
||||||
character: Character | undefined;
|
character: Character | undefined;
|
||||||
loading = true;
|
loading = true;
|
||||||
|
refreshing = false;
|
||||||
error = '';
|
error = '';
|
||||||
tab = '0';
|
tab = '0';
|
||||||
|
|
||||||
|
@ -200,6 +202,7 @@
|
||||||
|
|
||||||
async load(mustLoad: boolean = true, skipCache: boolean = false): Promise<void> {
|
async load(mustLoad: boolean = true, skipCache: boolean = false): Promise<void> {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
this.refreshing = false;
|
||||||
this.error = '';
|
this.error = '';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -337,15 +340,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// tslint:disable-next-line: await-promise
|
// tslint:disable-next-line: await-promise
|
||||||
const cachedCharacter = await core.cache.profileCache.get(this.name);
|
return (await core.cache.profileCache.get(this.name)) || null;
|
||||||
|
|
||||||
if (cachedCharacter) {
|
|
||||||
if (Date.now() - cachedCharacter.lastFetched.getTime() <= CHARACTER_CACHE_EXPIRE) {
|
|
||||||
return cachedCharacter;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private async _getCharacter(skipCache: boolean = false): Promise<void> {
|
private async _getCharacter(skipCache: boolean = false): Promise<void> {
|
||||||
|
@ -371,20 +366,53 @@
|
||||||
(cache && !skipCache)
|
(cache && !skipCache)
|
||||||
&& (cache.meta)
|
&& (cache.meta)
|
||||||
&& (cache.meta.lastFetched)
|
&& (cache.meta.lastFetched)
|
||||||
&& (Date.now() - cache.meta.lastFetched.getTime() < CHARACTER_META_CACHE_EXPIRE)
|
&& (Date.now() - cache.meta.lastFetched.getTime() > CHARACTER_META_CACHE_EXPIRE)
|
||||||
) {
|
) {
|
||||||
this.guestbook = cache.meta.guestbook;
|
this.guestbook = cache.meta.guestbook;
|
||||||
this.friends = cache.meta.friends;
|
this.friends = cache.meta.friends;
|
||||||
this.groups = cache.meta.groups;
|
this.groups = cache.meta.groups;
|
||||||
this.images = cache.meta.images;
|
this.images = cache.meta.images;
|
||||||
} else {
|
} else {
|
||||||
// No awaits on these on purpose:
|
// No await on purpose:
|
||||||
// tslint:disable-next-line no-floating-promises
|
// tslint:disable-next-line no-floating-promises
|
||||||
this.updateMeta(this.name);
|
this.updateMeta(this.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
// console.log('LoadChar', this.name, this.character);
|
// console.log('LoadChar', this.name, this.character);
|
||||||
this.updateMatches();
|
this.updateMatches();
|
||||||
|
|
||||||
|
|
||||||
|
// old profile cache, let's refresh
|
||||||
|
if ((cache) && (cache.lastFetched)) {
|
||||||
|
if (Date.now() - cache.lastFetched.getTime() >= CHARACTER_CACHE_EXPIRE) {
|
||||||
|
// No await on purpose:
|
||||||
|
// tslint:disable-next-line no-floating-promises
|
||||||
|
this.refreshCharacter();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private async refreshCharacter(): Promise<void> {
|
||||||
|
this.refreshing = true;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const character = await methods.characterData(this.name, this.id, false);
|
||||||
|
|
||||||
|
if ((!this.refreshing) || (this.name !== character.character.name)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.character = character;
|
||||||
|
|
||||||
|
this.updateMatches();
|
||||||
|
|
||||||
|
// No awaits on these on purpose:
|
||||||
|
// tslint:disable-next-line no-floating-promises
|
||||||
|
this.updateMeta(this.name);
|
||||||
|
} finally {
|
||||||
|
this.refreshing = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue