fix: devビルドでURLプレビューに失敗した場合に起こる不具合を修正 (MisskeyIO#139)

This commit is contained in:
まっちゃとーにゅ 2023-08-07 23:14:34 +09:00 committed by GitHub
parent 2445f6635c
commit 42a90f56e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

View File

@ -142,8 +142,8 @@ window.fetch(`/url?url=${encodeURIComponent(requestUrl.href)}&lang=${versatileLa
return res.json(); return res.json();
}) })
.then((info: SummalyResult) => { .then((info?: SummalyResult) => {
if (info.url == null) { if (!info?.url) {
fetching = false; fetching = false;
unknownUrl = true; unknownUrl = true;
return; return;

View File

@ -27,12 +27,16 @@ let top = $ref(0);
let left = $ref(0); let left = $ref(0);
onMounted(() => { onMounted(() => {
const rect = props.source.getBoundingClientRect(); try {
const x = Math.max((rect.left + (props.source.offsetWidth / 2)) - (300 / 2), 6) + window.pageXOffset; const rect = props.source.getBoundingClientRect();
const y = rect.top + props.source.offsetHeight + window.pageYOffset; const x = Math.max((rect.left + (props.source.offsetWidth / 2)) - (300 / 2), 6) + window.pageXOffset;
const y = rect.top + props.source.offsetHeight + window.pageYOffset;
top = y; top = y;
left = x; left = x;
} catch (err) {
console.error(err);
}
}); });
</script> </script>