Changed attachment link behavior
parent
03daf92ba4
commit
61d5f9d460
|
@ -1,3 +1,4 @@
|
||||||
|
import type { CommandDef } from "@silverbulletmd/web/hooks/command";
|
||||||
import { syscall } from "./syscall";
|
import { syscall } from "./syscall";
|
||||||
|
|
||||||
export async function invokeFunction(
|
export async function invokeFunction(
|
||||||
|
@ -8,10 +9,16 @@ export async function invokeFunction(
|
||||||
return syscall("system.invokeFunction", env, name, ...args);
|
return syscall("system.invokeFunction", env, name, ...args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Only available on the client
|
||||||
export async function invokeCommand(name: string): Promise<any> {
|
export async function invokeCommand(name: string): Promise<any> {
|
||||||
return syscall("system.invokeCommand", name);
|
return syscall("system.invokeCommand", name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Only available on the client
|
||||||
|
export async function listCommands(): Promise<{ [key: string]: CommandDef }> {
|
||||||
|
return syscall("system.listCommands");
|
||||||
|
}
|
||||||
|
|
||||||
export async function getVersion(): Promise<string> {
|
export async function getVersion(): Promise<string> {
|
||||||
return syscall("system.getVersion");
|
return syscall("system.getVersion");
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
import { queryPrefix } from "@silverbulletmd/plugos-silverbullet-syscall";
|
||||||
|
import { matchBefore } from "@silverbulletmd/plugos-silverbullet-syscall/editor";
|
||||||
|
import { listCommands } from "@silverbulletmd/plugos-silverbullet-syscall/system";
|
||||||
|
import { applyQuery, QueryProviderEvent } from "../query/engine";
|
||||||
|
|
||||||
|
export async function commandComplete() {
|
||||||
|
let prefix = await matchBefore("\\{\\[[^\\]]*");
|
||||||
|
if (!prefix) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
let allCommands = await listCommands();
|
||||||
|
|
||||||
|
return {
|
||||||
|
from: prefix.from + 2,
|
||||||
|
options: Object.keys(allCommands).map((commandName) => ({
|
||||||
|
label: commandName,
|
||||||
|
type: "command",
|
||||||
|
})),
|
||||||
|
};
|
||||||
|
}
|
|
@ -74,6 +74,12 @@ functions:
|
||||||
events:
|
events:
|
||||||
- page:complete
|
- page:complete
|
||||||
|
|
||||||
|
# Commands
|
||||||
|
commandComplete:
|
||||||
|
path: "./command.ts:commandComplete"
|
||||||
|
events:
|
||||||
|
- page:complete
|
||||||
|
|
||||||
# Item indexing
|
# Item indexing
|
||||||
indexItem:
|
indexItem:
|
||||||
path: "./item.ts:indexItems"
|
path: "./item.ts:indexItems"
|
||||||
|
|
|
@ -11,6 +11,14 @@ import { parseMarkdown } from "@silverbulletmd/plugos-silverbullet-syscall/markd
|
||||||
import { nodeAtPos, ParseTree } from "@silverbulletmd/common/tree";
|
import { nodeAtPos, ParseTree } from "@silverbulletmd/common/tree";
|
||||||
import { invokeCommand } from "@silverbulletmd/plugos-silverbullet-syscall/system";
|
import { invokeCommand } from "@silverbulletmd/plugos-silverbullet-syscall/system";
|
||||||
|
|
||||||
|
// Checks if the URL contains a protocol, if so keeps it, otherwise assumes an attachment
|
||||||
|
function patchUrl(url: string): string {
|
||||||
|
if (url.indexOf("://") === -1) {
|
||||||
|
return `attachment/${url}`;
|
||||||
|
}
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
|
||||||
async function actionClickOrActionEnter(mdTree: ParseTree | null) {
|
async function actionClickOrActionEnter(mdTree: ParseTree | null) {
|
||||||
if (!mdTree) {
|
if (!mdTree) {
|
||||||
return;
|
return;
|
||||||
|
@ -33,10 +41,10 @@ async function actionClickOrActionEnter(mdTree: ParseTree | null) {
|
||||||
break;
|
break;
|
||||||
case "URL":
|
case "URL":
|
||||||
case "NakedURL":
|
case "NakedURL":
|
||||||
await openUrl(mdTree.children![0].text!);
|
await openUrl(patchUrl(mdTree.children![0].text!));
|
||||||
break;
|
break;
|
||||||
case "Link":
|
case "Link":
|
||||||
const url = mdTree.children![4].children![0].text!;
|
const url = patchUrl(mdTree.children![4].children![0].text!);
|
||||||
if (url.length <= 1) {
|
if (url.length <= 1) {
|
||||||
return flashNotification("Empty link, ignoring", "error");
|
return flashNotification("Empty link, ignoring", "error");
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,6 +41,13 @@ export async function cleanMarkdown(
|
||||||
text: `__${n.children![0].text}__`,
|
text: `__${n.children![0].text}__`,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
if (n.type === "URL") {
|
||||||
|
const url = n.children![0].text!;
|
||||||
|
if (url.indexOf("://") === -1) {
|
||||||
|
n.children![0].text = `attachment/${url}`;
|
||||||
|
}
|
||||||
|
console.log("Link", url);
|
||||||
|
}
|
||||||
if (n.type === "FencedCode") {
|
if (n.type === "FencedCode") {
|
||||||
let codeInfoNode = findNodeOfType(n, "CodeInfo");
|
let codeInfoNode = findNodeOfType(n, "CodeInfo");
|
||||||
if (!codeInfoNode) {
|
if (!codeInfoNode) {
|
||||||
|
|
|
@ -119,9 +119,9 @@ export function attachmentExtension(editor: Editor) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await editor.space.writeAttachment(finalFileName, data!);
|
await editor.space.writeAttachment(finalFileName, data!);
|
||||||
let attachmentMarkdown = `[${finalFileName}](attachment/${finalFileName})`;
|
let attachmentMarkdown = `[${finalFileName}](${finalFileName})`;
|
||||||
if (mimeType.startsWith("image/")) {
|
if (mimeType.startsWith("image/")) {
|
||||||
attachmentMarkdown = `![](attachment/${finalFileName})`;
|
attachmentMarkdown = `![](${finalFileName})`;
|
||||||
}
|
}
|
||||||
editor.editorView!.dispatch({
|
editor.editorView!.dispatch({
|
||||||
changes: [
|
changes: [
|
||||||
|
|
|
@ -20,7 +20,11 @@ class InlineImageWidget extends WidgetType {
|
||||||
|
|
||||||
toDOM() {
|
toDOM() {
|
||||||
const img = document.createElement("img");
|
const img = document.createElement("img");
|
||||||
img.src = this.url;
|
if (this.url.startsWith("http")) {
|
||||||
|
img.src = this.url;
|
||||||
|
} else {
|
||||||
|
img.src = `attachment/${this.url}`;
|
||||||
|
}
|
||||||
img.alt = this.title;
|
img.alt = this.title;
|
||||||
img.title = this.title;
|
img.title = this.title;
|
||||||
img.style.display = "block";
|
img.style.display = "block";
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import { SysCallMapping } from "@plugos/plugos/system";
|
import { SysCallMapping } from "@plugos/plugos/system";
|
||||||
import type { Editor } from "../editor";
|
import type { Editor } from "../editor";
|
||||||
|
import { AppCommand, CommandDef } from "../hooks/command";
|
||||||
import { version } from "../package.json";
|
import { version } from "../package.json";
|
||||||
|
|
||||||
export function systemSyscalls(editor: Editor): SysCallMapping {
|
export function systemSyscalls(editor: Editor): SysCallMapping {
|
||||||
|
@ -23,6 +24,15 @@ export function systemSyscalls(editor: Editor): SysCallMapping {
|
||||||
"system.invokeCommand": async (ctx, name: string) => {
|
"system.invokeCommand": async (ctx, name: string) => {
|
||||||
return editor.runCommandByName(name);
|
return editor.runCommandByName(name);
|
||||||
},
|
},
|
||||||
|
"system.listCommands": async (
|
||||||
|
ctx
|
||||||
|
): Promise<{ [key: string]: CommandDef }> => {
|
||||||
|
let allCommands: { [key: string]: CommandDef } = {};
|
||||||
|
for (let [cmd, def] of editor.commandHook.editorCommands) {
|
||||||
|
allCommands[cmd] = def.command;
|
||||||
|
}
|
||||||
|
return allCommands;
|
||||||
|
},
|
||||||
"system.getVersion": async () => {
|
"system.getVersion": async () => {
|
||||||
return version;
|
return version;
|
||||||
},
|
},
|
||||||
|
|
|
@ -3,7 +3,9 @@ An attempt at documenting of the changes/new features introduced in each release
|
||||||
|
|
||||||
---
|
---
|
||||||
## 0.0.34
|
## 0.0.34
|
||||||
|
* Change to attachment handling: the `attachment/` prefix for links and images is no longer used, if you have links to attachments in your notes, you will need to remove the `attachment/` prefix manually. Sorry about that.
|
||||||
* Improved styling for completion (especially slash commands)
|
* Improved styling for completion (especially slash commands)
|
||||||
|
* Completion for commands using the (undocumented) `{[Command Syntax]}` — yep, that exists.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ Silver Bullet (SB) is highly-extensible, [open source](https://github.com/silver
|
||||||
|
|
||||||
Here is a screenshot:
|
Here is a screenshot:
|
||||||
|
|
||||||
![Silver Bullet PWA screenshot](attachment/silverbullet-pwa.png)
|
![Silver Bullet PWA screenshot](silverbullet-pwa.png)
|
||||||
|
|
||||||
At its core, SB is a Markdown editor that stores _pages_ (notes) as plain markdown files in a folder referred to as a _space_. Pages can be cross-linked using the `[[link to other page]]` syntax. However, once you leverage its various extensions (called _plugs_) it can feel more like a _knowledge platform_, allowing you to annotate, combine and query your accumulated knowledge in creative ways, specific to you. To get a good feel for it, [watch this video](https://youtu.be/RYdc3UF9gok).
|
At its core, SB is a Markdown editor that stores _pages_ (notes) as plain markdown files in a folder referred to as a _space_. Pages can be cross-linked using the `[[link to other page]]` syntax. However, once you leverage its various extensions (called _plugs_) it can feel more like a _knowledge platform_, allowing you to annotate, combine and query your accumulated knowledge in creative ways, specific to you. To get a good feel for it, [watch this video](https://youtu.be/RYdc3UF9gok).
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 316 KiB After Width: | Height: | Size: 144 KiB |
Loading…
Reference in New Issue