1
0
silverbullet/plugs/index/attributes.ts

187 lines
4.6 KiB
TypeScript
Raw Normal View History

2023-08-01 19:35:19 +00:00
import { index } from "$sb/silverbullet-syscall/mod.ts";
import type { CompleteEvent } from "$sb/app_event.ts";
2023-08-28 15:12:15 +00:00
import { events } from "$sb/syscalls.ts";
2023-08-01 19:35:19 +00:00
export type AttributeContext = "page" | "item" | "task";
type AttributeEntry = {
type: string;
};
2023-08-08 14:35:46 +00:00
export type AttributeCompleteEvent = {
source: string;
prefix: string;
};
export type AttributeCompletion = {
name: string;
source: string;
type: string;
builtin?: boolean;
};
const builtinAttributes: Record<string, Record<string, string>> = {
page: {
name: "string",
lastModified: "number",
perm: "rw|ro",
contentType: "string",
size: "number",
tags: "array",
},
task: {
name: "string",
done: "boolean",
page: "string",
deadline: "string",
pos: "number",
tags: "array",
},
item: {
name: "string",
page: "string",
pos: "number",
tags: "array",
},
tag: {
name: "string",
freq: "number",
},
};
2023-08-01 19:35:19 +00:00
function determineType(v: any): string {
const t = typeof v;
if (t === "object") {
if (Array.isArray(v)) {
return "array";
}
}
return t;
}
const attributeKeyPrefix = "attr:";
export async function indexAttributes(
pageName: string,
attributes: Record<string, any>,
context: AttributeContext,
) {
await index.batchSet(
pageName,
Object.entries(attributes).map(([k, v]) => {
return {
key: `${attributeKeyPrefix}${context}:${k}`,
value: {
type: determineType(v),
} as AttributeEntry,
};
}),
);
}
2023-08-08 14:35:46 +00:00
export async function customAttributeCompleter(
attributeCompleteEvent: AttributeCompleteEvent,
): Promise<AttributeCompletion[]> {
const sourcePrefix = attributeCompleteEvent.source === "*"
? ""
: `${attributeCompleteEvent.source}:`;
const allAttributes = await index.queryPrefix(
`${attributeKeyPrefix}${sourcePrefix}`,
);
return allAttributes.map((attr) => {
const [_prefix, context, name] = attr.key.split(":");
return {
name,
source: context,
type: attr.value.type,
};
});
}
export function builtinAttributeCompleter(
attributeCompleteEvent: AttributeCompleteEvent,
): AttributeCompletion[] {
let allAttributes = builtinAttributes[attributeCompleteEvent.source];
if (attributeCompleteEvent.source === "*") {
allAttributes = {};
for (const [source, attributes] of Object.entries(builtinAttributes)) {
for (const [name, type] of Object.entries(attributes)) {
allAttributes[name] = `${type}|${source}`;
}
}
}
if (!allAttributes) {
return [];
}
return Object.entries(allAttributes).map(([name, type]) => {
return {
name,
source: attributeCompleteEvent.source === "*"
? type.split("|")[1]
: attributeCompleteEvent.source,
type: attributeCompleteEvent.source === "*" ? type.split("|")[0] : type,
builtin: true,
};
});
}
2023-08-01 19:35:19 +00:00
export async function attributeComplete(completeEvent: CompleteEvent) {
2023-08-04 19:35:58 +00:00
const inlineAttributeMatch = /([^\[\{}]|^)\[(\w+)$/.exec(
2023-08-01 19:35:19 +00:00
completeEvent.linePrefix,
);
if (inlineAttributeMatch) {
// console.log("Parents", completeEvent.parentNodes);
let type = "page";
if (completeEvent.parentNodes.includes("Task")) {
type = "task";
} else if (completeEvent.parentNodes.includes("ListItem")) {
type = "item";
}
2023-08-08 14:35:46 +00:00
const completions = (await events.dispatchEvent(
`attribute:complete:${type}`,
{
source: type,
prefix: inlineAttributeMatch[2],
} as AttributeCompleteEvent,
)).flat() as AttributeCompletion[];
2023-08-01 19:35:19 +00:00
return {
from: completeEvent.pos - inlineAttributeMatch[2].length,
2023-08-08 14:35:46 +00:00
options: attributeCompletionsToCMCompletion(
completions.filter((completion) => !completion.builtin),
),
2023-08-01 19:35:19 +00:00
};
}
const attributeMatch = /^(\w+)$/.exec(completeEvent.linePrefix);
if (attributeMatch) {
if (completeEvent.parentNodes.includes("FrontMatterCode")) {
2023-08-08 14:35:46 +00:00
const completions = (await events.dispatchEvent(
`attribute:complete:page`,
{
source: "page",
prefix: attributeMatch[1],
} as AttributeCompleteEvent,
)).flat() as AttributeCompletion[];
2023-08-01 19:35:19 +00:00
return {
from: completeEvent.pos - attributeMatch[1].length,
2023-08-08 14:35:46 +00:00
options: attributeCompletionsToCMCompletion(
completions.filter((completion) => !completion.builtin),
),
2023-08-01 19:35:19 +00:00
};
}
}
return null;
}
2023-08-08 14:35:46 +00:00
export function attributeCompletionsToCMCompletion(
completions: AttributeCompletion[],
) {
return completions.map(
(completion) => ({
label: completion.name,
apply: `${completion.name}: `,
detail: `${completion.type} (${completion.source})`,
type: "attribute",
}),
);
}