blob: 1f840f7868333ed4d62a61a52215f57d5cbad30a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
import {
BookmarkTypes,
ZBookmark,
ZBookmarkedLink,
} from "@karakeep/shared/types/bookmarks";
import { getAssetUrl } from "./assetUtils";
const MAX_LOADING_MSEC = 30 * 1000;
export function getBookmarkLinkImageUrl(bookmark: ZBookmarkedLink) {
if (bookmark.imageAssetId) {
return { url: getAssetUrl(bookmark.imageAssetId), localAsset: true };
}
if (bookmark.screenshotAssetId) {
return { url: getAssetUrl(bookmark.screenshotAssetId), localAsset: true };
}
return bookmark.imageUrl
? { url: bookmark.imageUrl, localAsset: false }
: null;
}
export function isBookmarkStillCrawling(bookmark: ZBookmark) {
return (
bookmark.content.type == BookmarkTypes.LINK &&
!bookmark.content.crawledAt &&
Date.now().valueOf() - bookmark.createdAt.valueOf() < MAX_LOADING_MSEC
);
}
export function isBookmarkStillTagging(bookmark: ZBookmark) {
return (
bookmark.taggingStatus == "pending" &&
Date.now().valueOf() - bookmark.createdAt.valueOf() < MAX_LOADING_MSEC
);
}
export function isBookmarkStillLoading(bookmark: ZBookmark) {
return isBookmarkStillTagging(bookmark) || isBookmarkStillCrawling(bookmark);
}
export function getSourceUrl(bookmark: ZBookmark) {
if (bookmark.content.type === BookmarkTypes.LINK) {
return bookmark.content.url;
}
if (bookmark.content.type === BookmarkTypes.ASSET) {
return bookmark.content.sourceUrl ?? null;
}
if (bookmark.content.type === BookmarkTypes.TEXT) {
return bookmark.content.sourceUrl ?? null;
}
return null;
}
export function getBookmarkTitle(bookmark: ZBookmark) {
let title: string | null = null;
switch (bookmark.content.type) {
case BookmarkTypes.LINK:
title = bookmark.content.title ?? bookmark.content.url;
break;
case BookmarkTypes.TEXT:
title = null;
break;
case BookmarkTypes.ASSET:
title = bookmark.content.fileName ?? null;
break;
}
return bookmark.title ? bookmark.title : title;
}
|