123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- import { uniqueId, getFromCache } from 'utils/utils'
- import vec from 'utils/vec'
- import TextAreaUtils from 'utils/text-area'
- import { TextShape, ShapeType } from 'types'
- import {
- defaultStyle,
- getFontSize,
- getFontStyle,
- getShapeStyle,
- } from 'state/shape-styles'
- import styled from 'styles'
- import state from 'state'
- import { registerShapeUtils } from './register'
-
- // A div used for measurement
- document.getElementById('__textMeasure')?.remove()
-
- const mdiv = document.createElement('pre')
- mdiv.id = '__textMeasure'
-
- Object.assign(mdiv.style, {
- whiteSpace: 'pre',
- width: 'auto',
- border: '1px solid red',
- padding: '4px',
- margin: '0px',
- opacity: '0',
- position: 'absolute',
- top: '-500px',
- left: '0px',
- zIndex: '9999',
- pointerEvents: 'none',
- userSelect: 'none',
- alignmentBaseline: 'mathematical',
- dominantBaseline: 'mathematical',
- })
-
- mdiv.tabIndex = -1
-
- document.body.appendChild(mdiv)
-
- function normalizeText(text: string) {
- return text.replace(/\r?\n|\r/g, '\n')
- }
-
- const text = registerShapeUtils<TextShape>({
- isForeignObject: true,
- canChangeAspectRatio: false,
- canEdit: true,
- boundsCache: new WeakMap([]),
-
- defaultProps: {
- id: uniqueId(),
- type: ShapeType.Text,
- name: 'Text',
- parentId: 'page1',
- childIndex: 0,
- point: [0, 0],
- rotation: 0,
- style: defaultStyle,
- text: '',
- scale: 1,
- },
-
- shouldRender(shape, prev) {
- return (
- shape.text !== prev.text ||
- shape.scale !== prev.scale ||
- shape.style !== prev.style
- )
- },
-
- render(shape, { isEditing, isDarkMode, ref }) {
- const { id, text, style } = shape
- const styles = getShapeStyle(style, isDarkMode)
- const font = getFontStyle(shape.scale, shape.style)
-
- const bounds = this.getBounds(shape)
-
- function handleChange(e: React.ChangeEvent<HTMLTextAreaElement>) {
- state.send('EDITED_SHAPE', {
- id,
- change: { text: normalizeText(e.currentTarget.value) },
- })
- }
-
- function handleKeyDown(e: React.KeyboardEvent<HTMLTextAreaElement>) {
- if (e.key === 'Escape') return
-
- e.stopPropagation()
-
- if (e.key === 'Tab') {
- e.preventDefault()
- if (e.shiftKey) {
- TextAreaUtils.unindent(e.currentTarget)
- } else {
- TextAreaUtils.indent(e.currentTarget)
- }
-
- state.send('EDITED_SHAPE', {
- id,
- change: {
- text: normalizeText(e.currentTarget.value),
- },
- })
- }
- }
-
- function handleBlur(e: React.FocusEvent<HTMLTextAreaElement>) {
- if (isEditing) {
- e.currentTarget.focus()
- e.currentTarget.select()
- return
- }
-
- setTimeout(() => state.send('BLURRED_EDITING_SHAPE', { id }), 0)
- }
-
- function handleFocus(e: React.FocusEvent<HTMLTextAreaElement>) {
- e.currentTarget.select()
- state.send('FOCUSED_EDITING_SHAPE', { id })
- }
-
- function handlePointerDown() {
- if (ref.current.selectionEnd !== 0) {
- ref.current.selectionEnd = 0
- }
- }
-
- const fontSize = getFontSize(shape.style.size) * shape.scale
- const lineHeight = fontSize * 1.4
-
- if (!isEditing) {
- return (
- <>
- {text.split('\n').map((str, i) => (
- <text
- key={i}
- x={4}
- y={4 + fontSize / 2 + i * lineHeight}
- fontFamily="Verveine Regular"
- fontStyle="normal"
- fontWeight="500"
- fontSize={fontSize}
- width={bounds.width}
- height={bounds.height}
- fill={styles.stroke}
- color={styles.stroke}
- stroke="none"
- xmlSpace="preserve"
- dominantBaseline="mathematical"
- alignmentBaseline="mathematical"
- >
- {str}
- </text>
- ))}
- </>
- )
- }
-
- if (ref === undefined) {
- throw Error('This component should receive a ref when editing.')
- }
-
- return (
- <foreignObject
- width={bounds.width}
- height={bounds.height}
- pointerEvents="none"
- onPointerDown={(e) => e.stopPropagation()}
- >
- <StyledTextArea
- ref={ref as React.RefObject<HTMLTextAreaElement>}
- style={{
- font,
- color: styles.stroke,
- }}
- name="text"
- defaultValue={text}
- tabIndex={-1}
- autoComplete="false"
- autoCapitalize="false"
- autoCorrect="false"
- autoSave="false"
- placeholder=""
- color={styles.stroke}
- autoFocus={true}
- onFocus={handleFocus}
- onBlur={handleBlur}
- onKeyDown={handleKeyDown}
- onChange={handleChange}
- onPointerDown={handlePointerDown}
- />
- </foreignObject>
- )
- },
-
- getBounds(shape) {
- const bounds = getFromCache(this.boundsCache, shape, (cache) => {
- mdiv.innerHTML = `${shape.text}‍`
- mdiv.style.font = getFontStyle(shape.scale, shape.style)
-
- const [minX, minY] = shape.point
- const [width, height] = [mdiv.offsetWidth, mdiv.offsetHeight]
-
- cache.set(shape, {
- minX,
- maxX: minX + width,
- minY,
- maxY: minY + height,
- width,
- height,
- })
- })
-
- return bounds
- },
-
- hitTest() {
- return true
- },
-
- transform(shape, bounds, { initialShape, scaleX, scaleY }) {
- if (shape.rotation === 0 && !shape.isAspectRatioLocked) {
- shape.point = [bounds.minX, bounds.minY]
- shape.scale = initialShape.scale * Math.abs(scaleX)
- } else {
- shape.point = [bounds.minX, bounds.minY]
-
- shape.rotation =
- (scaleX < 0 && scaleY >= 0) || (scaleY < 0 && scaleX >= 0)
- ? -initialShape.rotation
- : initialShape.rotation
-
- shape.scale = initialShape.scale * Math.abs(Math.min(scaleX, scaleY))
- }
-
- return this
- },
-
- transformSingle(shape, bounds, { initialShape, scaleX }) {
- shape.point = [bounds.minX, bounds.minY]
- shape.scale = initialShape.scale * Math.abs(scaleX)
-
- return this
- },
-
- onBoundsReset(shape) {
- const center = this.getCenter(shape)
-
- this.boundsCache.delete(shape)
-
- shape.scale = 1
-
- const newCenter = this.getCenter(shape)
-
- shape.point = vec.add(shape.point, vec.sub(center, newCenter))
-
- return this
- },
-
- applyStyles(shape, style) {
- const center = this.getCenter(shape)
-
- this.boundsCache.delete(shape)
-
- Object.assign(shape.style, style)
-
- const newCenter = this.getCenter(shape)
-
- shape.point = vec.add(shape.point, vec.sub(center, newCenter))
-
- return this
- },
-
- shouldDelete(shape) {
- return shape.text.length === 0
- },
- })
-
- export default text
-
- const StyledTextArea = styled('textarea', {
- zIndex: 1,
- width: '100%',
- height: '100%',
- border: 'none',
- padding: '4px',
- whiteSpace: 'pre',
- alignmentBaseline: 'mathematical',
- dominantBaseline: 'mathematical',
- resize: 'none',
- minHeight: 1,
- minWidth: 1,
- lineHeight: 1.4,
- outline: 0,
- fontWeight: '500',
- backgroundColor: '$boundsBg',
- overflow: 'hidden',
- pointerEvents: 'all',
- backfaceVisibility: 'hidden',
- display: 'inline-block',
- userSelect: 'text',
- WebkitUserSelect: 'text',
- WebkitTouchCallout: 'none',
- })
|