Skip to content

Commit aaf1cfa

Browse files
committed
prettify bullshit
1 parent e0653c3 commit aaf1cfa

17 files changed

+27
-38
lines changed

.prettierrc

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
2-
"plugins": [
3-
"@trivago/prettier-plugin-sort-imports",
4-
"prettier-plugin-svelte"
5-
],
2+
"plugins": ["@trivago/prettier-plugin-sort-imports", "prettier-plugin-svelte"],
63
"overrides": [
74
{
85
"files": "*.svelte",

.storybook/main.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { StorybookConfig } from "@storybook/sveltekit";
2+
23
const config: StorybookConfig = {
34
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
45
addons: [

.storybook/preview.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type { Preview } from "@storybook/svelte";
2-
import ndkTheme from "./ndk-theme";
3-
42
import "../src/styles/global.css";
3+
import ndkTheme from "./ndk-theme";
54

65
const preview: Preview = {
76
parameters: {

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"lint": "prettier --plugin-search-dir . --check . && eslint .",
1313
"format": "prettier --write .",
1414
"storybook": "storybook dev -p 6006",
15-
"build-storybook": "storybook build"
15+
"build-storybook": "storybook build",
16+
"prettify": "prettier --write ."
1617
},
1718
"exports": {
1819
".": {

src/lib/index.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
export * from "./utils";
2-
1+
import EventCard from "./event/EventCard.svelte";
2+
import EventContent from "./event/content/EventContent.svelte";
33
import RelayList from "./relay/RelayList.svelte";
44
import Avatar from "./user/Avatar.svelte";
55
import Name from "./user/Name.svelte";
66

7-
import EventContent from "./event/content/EventContent.svelte";
8-
import EventCard from "./event/EventCard.svelte";
7+
export * from "./utils";
98

109
export {
1110
// Event

src/lib/stores/ndk.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { writable } from "svelte/store";
21
import NDK from "@nostr-dev-kit/ndk";
2+
import { writable } from "svelte/store";
33

44
const _ndk = new NDK({
55
explicitRelayUrls: [

src/lib/utils/markdown.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1+
import DOMPurify from "isomorphic-dompurify";
12
import { marked } from "marked";
23
import { gfmHeadingId } from "marked-gfm-heading-id";
34
import { mangle } from "marked-mangle";
4-
import DOMPurify from "isomorphic-dompurify";
55

66
export const markdownToHtml = (content: string): string => {
77
marked.use(mangle());
88
marked.use(gfmHeadingId());
99

1010
return DOMPurify.sanitize(
1111
// eslint-disable-next-line no-misleading-character-class
12-
marked.parse(content.replace(/^[\u200B\u200C\u200D\u200E\u200F\uFEFF]/, "")),
12+
marked.parse(content.replace(/^[\u200B\u200C\u200D\u200E\u200F\uFEFF]/, ""))
1313
);
1414
};

src/lib/utils/notes.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { last, pluck, identity } from "ramda";
2-
import { nip19 } from "nostr-tools";
31
import { first } from "hurdak/lib/hurdak";
2+
import { nip19 } from "nostr-tools";
3+
import { last, pluck, identity } from "ramda";
44

55
export const NEWLINE = "newline";
66
export const TEXT = "text";
@@ -71,7 +71,7 @@ export const parseContent = ({ content, tags = [], html = false }) => {
7171

7272
const parseBech32 = () => {
7373
const bech32 = first(
74-
text.match(/^(web\+)?(nostr:)?\/?\/?n(event|ote|profile|pub|addr)1[\d\w]+/i),
74+
text.match(/^(web\+)?(nostr:)?\/?\/?n(event|ote|profile|pub|addr)1[\d\w]+/i)
7575
);
7676

7777
if (bech32) {
@@ -105,7 +105,7 @@ export const parseContent = ({ content, tags = [], html = false }) => {
105105
const parseUrl = () => {
106106
if (html) return;
107107
const raw = first(
108-
text.match(/^([a-z\+:]{2,30}:\/\/)?[^\s]+\.[a-z]{2,6}[^\s]*[^\.!?,:\s]/gi),
108+
text.match(/^([a-z\+:]{2,30}:\/\/)?[^\s]+\.[a-z]{2,6}[^\s]*[^\.!?,:\s]/gi)
109109
);
110110

111111
// Skip url if it's just the end of a filepath
@@ -220,5 +220,5 @@ export const truncateContent = (content, { showEntire, maxLength, showMedia = fa
220220
export const getLinks = (parts) =>
221221
pluck(
222222
"value",
223-
parts.filter((x) => x.type === LINK && x.isMedia),
223+
parts.filter((x) => x.type === LINK && x.isMedia)
224224
);

src/stories/events/EventCard.stories.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK from "@nostr-dev-kit/ndk";
3-
2+
import type { Meta, StoryObj } from "@storybook/svelte";
43
import EventCard from "../../lib/event/EventCard.svelte";
54

65
/**

src/stories/events/EventContent.stories.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK from "@nostr-dev-kit/ndk";
3-
2+
import type { Meta, StoryObj } from "@storybook/svelte";
43
import EventContent from "../../lib/event/content/EventContent.svelte";
4+
55
/**
66
* Renders an event's content
77
*/
@@ -34,7 +34,7 @@ const ndk = new NDK({ explicitRelayUrls: ["wss://nos.lol"] });
3434
await ndk.connect();
3535

3636
const event = await ndk.fetchEvent(
37-
"note194n247lecqgcskk5rmmfgrapt4jx7ppq64xec0eca3s4ta3hwkrsex7pxa",
37+
"note194n247lecqgcskk5rmmfgrapt4jx7ppq64xec0eca3s4ta3hwkrsex7pxa"
3838
);
3939
event.relay = undefined;
4040

src/stories/events/kinds/1.stories.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK from "@nostr-dev-kit/ndk";
3-
2+
import type { Meta, StoryObj } from "@storybook/svelte";
43
import Kind1Component from "../../../lib/event/content/Kind1.svelte";
54

65
/**

src/stories/events/kinds/30023.stories.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK from "@nostr-dev-kit/ndk";
32
import { NDKArticle } from "@nostr-dev-kit/ndk";
4-
3+
import type { Meta, StoryObj } from "@storybook/svelte";
54
import Kind30023Component from "../../../lib/event/content/Kind30023.svelte";
65

76
/**

src/stories/events/kinds/lists/30000.stories.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK, { NDKList } from "@nostr-dev-kit/ndk";
3-
2+
import type { Meta, StoryObj } from "@storybook/svelte";
43
import Kind30000 from "../../../../lib/event/content/Kind30000.svelte";
54

65
/**

src/stories/events/kinds/lists/30001.stories.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK, { NDKList } from "@nostr-dev-kit/ndk";
3-
2+
import type { Meta, StoryObj } from "@storybook/svelte";
43
import Kind30001 from "../../../../lib/event/content/Kind30001.svelte";
54

65
/**

src/stories/relay/RelayList.stories.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK from "@nostr-dev-kit/ndk";
3-
2+
import type { Meta, StoryObj } from "@storybook/svelte";
43
import RelayList from "../../lib/relay/RelayList.svelte";
54

65
const meta = {

src/stories/user/Avatar.stories.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK from "@nostr-dev-kit/ndk";
3-
2+
import type { Meta, StoryObj } from "@storybook/svelte";
43
import Avatar from "../../lib/user/Avatar.svelte";
54

65
/**

src/stories/user/Name.stories.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import type { Meta, StoryObj } from "@storybook/svelte";
21
import NDK from "@nostr-dev-kit/ndk";
3-
2+
import type { Meta, StoryObj } from "@storybook/svelte";
43
import Name from "../../lib/user/Name.svelte";
54

65
/**

0 commit comments

Comments
 (0)