mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
feat(util): guid方法
This commit is contained in:
parent
e5c13e9e76
commit
0295d6f4b5
@ -21,7 +21,7 @@ import { cloneDeep, mergeWith } from 'lodash-es';
|
|||||||
|
|
||||||
import type { FormConfig } from '@tmagic/form';
|
import type { FormConfig } from '@tmagic/form';
|
||||||
import type { MComponent, MNode } from '@tmagic/schema';
|
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 type { PropsState } from '@editor/type';
|
||||||
import { fillConfig } from '@editor/utils/props';
|
import { fillConfig } from '@editor/utils/props';
|
||||||
@ -130,7 +130,7 @@ class Props extends BaseService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async createId(type: string | number): Promise<string> {
|
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.removeAllListeners();
|
||||||
this.removeAllPlugins();
|
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;
|
export type PropsService = Props;
|
||||||
|
@ -144,3 +144,15 @@ export const isSameDomain = (targetUrl = '', source = globalThis.location.host)
|
|||||||
|
|
||||||
return getHost(targetUrl) === source;
|
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);
|
||||||
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user