From 12230c2f4ee93c3387be59e66c86f0fc312cb7bc Mon Sep 17 00:00:00 2001 From: roymondchen Date: Tue, 3 Dec 2024 14:57:11 +0800 Subject: [PATCH] =?UTF-8?q?feat(utils):=20=E6=96=B0=E5=A2=9EgetGlobalThis?= =?UTF-8?q?=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.cjs | 1 + packages/utils/src/index.ts | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 12505be9..3751e8b3 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -50,6 +50,7 @@ module.exports = { [ "^(assert|buffer|child_process|cluster|console|constants|crypto|dgram|dns|domain|events|fs|http|https|module|net|os|path|punycode|querystring|readline|repl|stream|string_decoder|sys|timers|tls|tty|url|util|vm|zlib|freelist|v8|process|async_hooks|http2|perf_hooks)(/.*|$)", ], + ["^(node)(:.*|$)"], // Packages. `react|vue` related packages come first. ["^(react|vue|vite)", "^@?\\w"], ["^(@tmagic)(/.*|$)"], diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index b68fae24..6e545de8 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-nested-ternary */ /* * Tencent is pleased to support the open source community by making TMagicEditor available. * @@ -36,6 +37,23 @@ import type { EditorNodeInfo } from '@editor/type'; export * from './dom'; +// for typeof global checks without @types/node +declare let global: {}; + +let _globalThis: any; +export const getGlobalThis = (): any => + _globalThis || + (_globalThis = + typeof globalThis !== 'undefined' + ? globalThis + : typeof self !== 'undefined' + ? self + : typeof window !== 'undefined' + ? window + : typeof global !== 'undefined' + ? global + : {}); + export const sleep = (ms: number): Promise => new Promise((resolve) => { const timer = setTimeout(() => {