UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

26 lines (25 loc) 708 B
export class IdGenerator { documentRelationId; id = 0; constructor() { this.documentRelationId = this.calcDocumentRelationId(); } generateImageName(modelImageId) { return 'image' + modelImageId.toString(); } generateImageRelationId(modelImageId) { return 'Image' + modelImageId.toString(); } calcDocumentRelationId() { return `R${this.next().toString(16)}`; } calcCorePropertiesDocumentRelationId() { return 'core' + this.documentRelationId; } calcCustomPropertiesDocumentRelationId() { return 'custom' + this.documentRelationId; } next() { return this.id++; } }