feat(util): guid方法

This commit is contained in:
roymondchen 2023-04-25 11:32:33 +08:00
parent e5c13e9e76
commit 0295d6f4b5
2 changed files with 14 additions and 15 deletions

View File

@ -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<string> {
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;

View File

@ -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);
});