mirror of
https://github.com/outline/outline.git
synced 2026-01-30 07:08:51 -06:00
16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
import { Transaction } from "prosemirror-state";
|
|
import { ySyncPluginKey } from "y-prosemirror";
|
|
|
|
/**
|
|
* Checks if a transaction is a remote transaction
|
|
*
|
|
* @param tr The Prosemirror transaction
|
|
* @returns true if the transaction is a remote transaction
|
|
*/
|
|
export function isRemoteTransaction(tr: Transaction): boolean {
|
|
const meta = tr.getMeta(ySyncPluginKey);
|
|
|
|
// This logic seems to be flipped? But it's correct.
|
|
return !!meta?.isChangeOrigin;
|
|
}
|