parent
88ebfd2f74
commit
5ded5c3428
@ -0,0 +1,94 @@
|
||||
import { IEditorOption, IElement } from '../../..'
|
||||
import { DeepRequired } from '../../../interface/Common'
|
||||
import { IElementPosition } from '../../../interface/Element'
|
||||
import { IRow } from '../../../interface/Row'
|
||||
import { formatElementList } from '../../../utils/element'
|
||||
import { Position } from '../../position/Position'
|
||||
import { Draw } from '../Draw'
|
||||
|
||||
export class Placeholder {
|
||||
|
||||
private draw: Draw
|
||||
private position: Position
|
||||
private options: DeepRequired<IEditorOption>
|
||||
|
||||
private elementList: IElement[]
|
||||
private rowList: IRow[]
|
||||
private positionList: IElementPosition[]
|
||||
|
||||
constructor(draw: Draw) {
|
||||
this.draw = draw
|
||||
this.position = draw.getPosition()
|
||||
this.options = <DeepRequired<IEditorOption>>draw.getOptions()
|
||||
|
||||
this.elementList = []
|
||||
this.rowList = []
|
||||
this.positionList = []
|
||||
}
|
||||
|
||||
private _recovery() {
|
||||
this.elementList = []
|
||||
this.rowList = []
|
||||
this.positionList = []
|
||||
}
|
||||
|
||||
public _compute() {
|
||||
this._computeRowList()
|
||||
this._computePositionList()
|
||||
}
|
||||
|
||||
private _computeRowList() {
|
||||
const innerWidth = this.draw.getInnerWidth()
|
||||
this.rowList = this.draw.computeRowList(innerWidth, this.elementList)
|
||||
}
|
||||
|
||||
private _computePositionList() {
|
||||
const headerExtraHeight = this.draw.getHeader().getExtraHeight()
|
||||
const innerWidth = this.draw.getInnerWidth()
|
||||
const margins = this.draw.getMargins()
|
||||
const startX = margins[3]
|
||||
const startY = margins[0] + headerExtraHeight
|
||||
this.position.computePageRowPosition({
|
||||
positionList: this.positionList,
|
||||
rowList: this.rowList,
|
||||
pageNo: 0,
|
||||
startRowIndex: 0,
|
||||
startIndex: 0,
|
||||
startX,
|
||||
startY,
|
||||
innerWidth
|
||||
})
|
||||
}
|
||||
|
||||
public render(ctx: CanvasRenderingContext2D) {
|
||||
const { placeholder: { data, font, size, color, opacity } } = this.options
|
||||
if (!data) return
|
||||
this._recovery()
|
||||
// 构建元素列表并格式化
|
||||
this.elementList = [{
|
||||
value: data,
|
||||
font,
|
||||
size,
|
||||
color
|
||||
}]
|
||||
formatElementList(this.elementList, {
|
||||
editorOptions: this.options
|
||||
})
|
||||
// 计算
|
||||
this._compute()
|
||||
const innerWidth = this.draw.getInnerWidth()
|
||||
// 绘制
|
||||
ctx.save()
|
||||
ctx.globalAlpha = opacity
|
||||
this.draw.drawRow(ctx, {
|
||||
elementList: this.elementList,
|
||||
positionList: this.positionList,
|
||||
rowList: this.rowList,
|
||||
pageNo: 0,
|
||||
startIndex: 0,
|
||||
innerWidth
|
||||
})
|
||||
ctx.restore()
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,9 @@
|
||||
import { IPlaceholder } from '../../interface/Placeholder'
|
||||
|
||||
export const defaultPlaceholderOption: Readonly<Required<IPlaceholder>> = {
|
||||
data: '',
|
||||
color: '#DCDFE6',
|
||||
opacity: 1,
|
||||
size: 16,
|
||||
font: 'Yahei'
|
||||
}
|
||||
@ -0,0 +1,7 @@
|
||||
export interface IPlaceholder {
|
||||
data: string;
|
||||
color?: string;
|
||||
opacity?: number;
|
||||
size?: number;
|
||||
font?: string;
|
||||
}
|
||||
Loading…
Reference in new issue