diff --git a/packages/editor/src/services/props.ts b/packages/editor/src/services/props.ts index d48e40a2..bee3bae3 100644 --- a/packages/editor/src/services/props.ts +++ b/packages/editor/src/services/props.ts @@ -21,7 +21,7 @@ import { cloneDeep, mergeWith } from 'lodash-es'; import type { FormConfig } from '@tmagic/form'; import type { MComponent, MNode } from '@tmagic/schema'; -import { toLine } from '@tmagic/utils'; +import { guid, toLine } from '@tmagic/utils'; import type { PropsState } from '@editor/type'; import { fillConfig } from '@editor/utils/props'; @@ -130,7 +130,7 @@ class Props extends BaseService { } public async createId(type: string | number): Promise { - return `${type}_${this.guid()}`; + return `${type}_${guid()}`; } /** @@ -181,19 +181,6 @@ class Props extends BaseService { this.removeAllListeners(); this.removeAllPlugins(); } - - /** - * 生成指定位数的GUID,无【-】格式 - * @param digit 位数,默认值8 - * @returns - */ - private guid(digit = 8): string { - return 'x'.repeat(digit).replace(/[xy]/g, (c) => { - const r = (Math.random() * 16) | 0; - const v = c === 'x' ? r : (r & 0x3) | 0x8; - return v.toString(16); - }); - } } export type PropsService = Props; diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 3987daab..b86bdafe 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -144,3 +144,15 @@ export const isSameDomain = (targetUrl = '', source = globalThis.location.host) return getHost(targetUrl) === source; }; + +/** + * 生成指定位数的GUID,无【-】格式 + * @param digit 位数,默认值8 + * @returns + */ +export const guid = (digit = 8): string => + 'x'.repeat(digit).replace(/[xy]/g, (c) => { + const r = (Math.random() * 16) | 0; + const v = c === 'x' ? r : (r & 0x3) | 0x8; + return v.toString(16); + });