Files
outline/shared/editor/nodes/Emoji.tsx
T
dependabot[bot] fc01deeefd chore(deps-dev): bump oxlint-tsgolint from 0.14.2 to 0.22.1 (#12320)
* chore(deps-dev): bump oxlint-tsgolint from 0.14.2 to 0.22.1

Bumps [oxlint-tsgolint](https://github.com/oxc-project/tsgolint) from 0.14.2 to 0.22.1.
- [Release notes](https://github.com/oxc-project/tsgolint/releases)
- [Commits](https://github.com/oxc-project/tsgolint/compare/v0.14.2...v0.22.1)

---
updated-dependencies:
- dependency-name: oxlint-tsgolint
  dependency-version: 0.22.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: Switch tsconfig to bundler resolution for tsgolint 0.22.1

oxlint-tsgolint 0.22.1 removed support for moduleResolution=node10
(the alias for "node"). Switch to "bundler" with resolvePackageJsonExports
disabled so packages whose exports field omits a types condition still
resolve. Update markdown-it type imports to sub-paths since the package's
.d.mts entry only re-exports a subset of named types.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

* fix: Resolve type-aware lint errors caught by tsgolint 0.22.1

oxlint-tsgolint 0.22.1 catches several await-thenable, no-floating-promises,
and no-meaningless-void-operator cases the prior 0.14.2 missed:

- Drop redundant inner `await` from Promise.all([await x, await y]) call sites
  so the array entries are real Promises rather than already-resolved values.
- Replace Promise.all wrappers around synchronous presenters (presentEvent,
  presentTemplate, presentPublicTeam) with plain map / direct calls.
- Wrap non-promise branches of ternaries inside Promise.all with
  Promise.resolve so the array remains thenable across both arms.
- Add `void` to the unawaited provider.connect() in the auth-failed retry
  chain, and remove `void` from the disconnect() call which returns void.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom Moor <tom@getoutline.com>
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-12 07:59:13 -04:00

169 lines
4.5 KiB
TypeScript

import type Token from "markdown-it/lib/token.mjs";
import type {
NodeSpec,
Node as ProsemirrorNode,
NodeType,
Schema,
} from "prosemirror-model";
import type { Command } from "prosemirror-state";
import { Plugin, TextSelection } from "prosemirror-state";
import type { Primitive } from "utility-types";
import Extension from "../lib/Extension";
import { getEmojiFromName, loadEmojiData } from "../lib/emoji";
import type { MarkdownSerializerState } from "../lib/markdown/serializer";
import emojiRule from "../rules/emoji";
import { isUUID } from "validator";
import type { ComponentProps } from "../types";
import { CustomEmoji } from "../../components/CustomEmoji";
export default class Emoji extends Extension {
constructor() {
super();
// Begin loading emoji data as soon as this extension is instantiated so
// it is available by the time the editor renders emoji nodes.
void loadEmojiData();
}
get type() {
return "node";
}
get name() {
return "emoji";
}
get schema(): NodeSpec {
return {
attrs: {
"data-name": {
default: "grey_question",
validate: "string",
},
},
inline: true,
content: "text*",
marks: "",
group: "inline",
selectable: false,
parseDOM: [
{
priority: 100,
tag: "strong.emoji",
preserveWhitespace: "full",
getAttrs: (dom: HTMLElement) =>
dom.dataset.name
? {
"data-name": dom.dataset.name,
}
: false,
},
],
toDOM: (node) => {
const name = node.attrs["data-name"];
return [
"strong",
{
class: `emoji ${name}`,
"data-name": name,
},
getEmojiFromName(name),
];
},
leafText: (node) => {
const name = node.attrs["data-name"];
// Custom emojis are stored as UUIDs, preserve the shortcode format
// so they can be rendered by EmojiText component
if (isUUID(name)) {
return `:${name}:`;
}
return getEmojiFromName(name);
},
};
}
get rulePlugins() {
return [emojiRule];
}
get plugins() {
return [
new Plugin({
props: {
// Placing the caret infront of an emoji is tricky as click events directly
// on the emoji will not behave the same way as clicks on text characters, this
// plugin ensures that clicking on an emoji behaves more naturally.
handleClickOn: (view, _pos, node, nodePos, event) => {
if (node.type.name === this.name) {
const element = event.target as HTMLElement;
const rect = element.getBoundingClientRect();
const clickX = event.clientX - rect.left;
const side = clickX < rect.width / 2 ? -1 : 1;
// If the click is in the left half of the emoji, place the caret before it
const tr = view.state.tr.setSelection(
TextSelection.near(
view.state.doc.resolve(
side === -1 ? nodePos : nodePos + node.nodeSize
),
side
)
);
view.dispatch(tr);
return true;
}
return false;
},
},
}),
];
}
component = (props: ComponentProps) => {
const name = props.node.attrs["data-name"];
return (
<strong className="emoji" data-name={name}>
{isUUID(name) ? (
<CustomEmoji value={name} size="1em" />
) : (
getEmojiFromName(name)
)}
</strong>
);
};
commands({ type }: { type: NodeType; schema: Schema }) {
return (attrs: Record<string, Primitive>): Command =>
(state, dispatch) => {
const { selection } = state;
const position =
selection instanceof TextSelection
? selection.$cursor?.pos
: selection.$to.pos;
if (position === undefined) {
return false;
}
const node = type.create(attrs);
const transaction = state.tr.insert(position, node);
dispatch?.(transaction);
return true;
};
}
toMarkdown(state: MarkdownSerializerState, node: ProsemirrorNode) {
const name = node.attrs["data-name"];
if (name) {
state.write(`:${name}:`);
}
}
parseMarkdown() {
return {
node: "emoji",
getAttrs: (tok: Token) => ({ "data-name": tok.markup.trim() }),
};
}
}