???
This commit is contained in:
parent
bf0e7368ef
commit
917191539d
|
@ -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",
|
||||
|
|
|
@ -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(() => []);
|
||||
|
||||
|
|
Loading…
Reference in New Issue