This commit is contained in:
ThatOneCalculator 2022-11-21 21:08:03 -08:00
parent bf0e7368ef
commit 917191539d
2 changed files with 10 additions and 6 deletions

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "12.119.0-calc.16.10",
"version": "12.119.0-calc.16.11",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -107,14 +107,18 @@ function fetchPage() {
username: props.username,
}).then(_page => {
page = _page;
if (_page.eyeCatchingImage != null) {
bgImg = `url(${_page.eyeCatchingImage.url})`;
}
getBgImg();
}).catch(err => {
error = err;
});
}
function getBgImg() {
if (page.eyeCatchingImage != null) {
bgImg = `url(${page.eyeCatchingImage.url})`;
}
}
function share() {
navigator.share({
title: page.title ?? page.name,
@ -130,7 +134,7 @@ function shareWithNote() {
}
function like() {
os.apiWithDialog('pages/like', {
os.api('pages/like', {
pageId: page.id,
}).then(() => {
page.isLiked = true;
@ -158,7 +162,7 @@ function pin(pin) {
});
}
watch(() => path, fetchPage, bgImg, { immediate: true });
watch(() => path, fetchPage, { immediate: true });
const headerActions = $computed(() => []);