-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathFnValue.tsx
201 lines (186 loc) · 6.47 KB
/
FnValue.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
import { KonvaEventObject } from 'konva/lib/Node';
import { Label } from 'konva/lib/shapes/Label';
import React, { RefObject } from 'react';
import {
Circle,
Group,
Label as KonvaLabel,
Tag as KonvaTag,
Text as KonvaText
} from 'react-konva';
import CseMachine from '../../CseMachine';
import { Config, ShapeDefaultProps } from '../../CseMachineConfig';
import { Layout } from '../../CseMachineLayout';
import { IHoverable, NonGlobalFn, ReferenceType } from '../../CseMachineTypes';
import {
defaultStrokeColor,
defaultTextColor,
fadedStrokeColor,
fadedTextColor,
getBodyText,
getParamsText,
getTextWidth,
isMainReference,
isStreamFn,
setHoveredCursor,
setUnhoveredCursor
} from '../../CseMachineUtils';
import { ArrowFromFn } from '../arrows/ArrowFromFn';
import { Binding } from '../Binding';
import { Frame } from '../Frame';
import { Value } from './Value';
/** this class encapsulates a JS Slang function (not from the global frame) that
* contains extra props such as environment and fnName */
export class FnValue extends Value implements IHoverable {
/** name of this function */
readonly radius: number = Config.FnRadius;
readonly innerRadius: number = Config.FnInnerRadius;
readonly fnName: string;
readonly paramsText: string;
readonly bodyText: string;
readonly exportBodyText: string;
readonly tooltip: string;
readonly tooltipWidth: number;
readonly exportTooltip: string;
readonly exportTooltipWidth: number;
readonly labelRef: RefObject<Label> = React.createRef();
centerX: number;
enclosingFrame?: Frame;
private _arrow: ArrowFromFn | undefined;
constructor(
/** underlying JS Slang function (contains extra props) */
readonly data: NonGlobalFn,
/** what this value is being referenced by */
firstReference: ReferenceType
) {
super();
Layout.memoizeValue(data, this);
this.centerX = 0;
this._width = this.radius * 4;
this._height = this.radius * 2;
this.enclosingFrame = Frame.getFrom(this.data.environment);
this.fnName = isStreamFn(this.data) ? '' : this.data.functionName;
this.paramsText = `params: ${getParamsText(this.data)}`;
this.bodyText = `body: ${getBodyText(this.data)}`;
this.exportBodyText =
(this.bodyText.length > 23 ? this.bodyText.slice(0, 20) : this.bodyText)
.split('\n')
.slice(0, 2)
.join('\n') + ' ...';
this.tooltip = `${this.paramsText}\n${this.bodyText}`;
this.exportTooltip = `${this.paramsText}\n${this.exportBodyText}`;
this.tooltipWidth = Math.max(getTextWidth(this.paramsText), getTextWidth(this.bodyText));
this.exportTooltipWidth = Math.max(
getTextWidth(this.paramsText),
getTextWidth(this.exportBodyText)
);
this.addReference(firstReference);
}
handleNewReference(newReference: ReferenceType): void {
if (!isMainReference(this, newReference)) return;
// derive the coordinates from the main reference (binding / array unit)
if (newReference instanceof Binding) {
this._x = newReference.frame.x() + newReference.frame.width() + Config.FrameMarginX;
this._y = newReference.y();
this.centerX = this._x + this.radius * 2;
} else {
if (newReference.isLastUnit) {
this._x = newReference.x() + Config.DataUnitWidth * 2;
this._y = newReference.y() + Config.DataUnitHeight / 2 - this.radius;
} else {
this._x = newReference.x();
this._y = newReference.y() + newReference.parent.height() + Config.DataUnitHeight;
}
this.centerX = this._x + Config.DataUnitWidth / 2;
this._x = this.centerX - this.radius * 2;
}
this._y += this.radius;
}
arrow(): ArrowFromFn | undefined {
return this._arrow;
}
onMouseEnter = ({ currentTarget }: KonvaEventObject<MouseEvent>) => {
if (CseMachine.getPrintableMode()) return;
setHoveredCursor(currentTarget);
this.labelRef.current?.moveToTop();
this.labelRef.current?.show();
};
onMouseLeave = ({ currentTarget }: KonvaEventObject<MouseEvent>) => {
if (CseMachine.getPrintableMode()) return;
setUnhoveredCursor(currentTarget);
this.labelRef.current?.hide();
};
draw(): React.ReactNode {
if (this.fnName === undefined) {
throw new Error('Closure has no main reference and is not initialised!');
}
if (this.enclosingFrame) {
this._arrow = new ArrowFromFn(this).to(this.enclosingFrame) as ArrowFromFn;
}
const textColor = this.isReferenced() ? defaultTextColor() : fadedTextColor();
const strokeColor = this.isReferenced() ? defaultStrokeColor() : fadedStrokeColor();
return (
<React.Fragment key={Layout.key++}>
<Group onMouseEnter={this.onMouseEnter} onMouseLeave={this.onMouseLeave} ref={this.ref}>
<Circle
{...ShapeDefaultProps}
key={Layout.key++}
x={this.centerX - this.radius}
y={this.y()}
radius={this.radius}
stroke={strokeColor}
/>
<Circle
{...ShapeDefaultProps}
key={Layout.key++}
x={this.centerX - this.radius}
y={this.y()}
radius={this.innerRadius}
fill={strokeColor}
/>
<Circle
{...ShapeDefaultProps}
key={Layout.key++}
x={this.centerX + this.radius}
y={this.y()}
radius={this.radius}
stroke={strokeColor}
/>
<Circle
{...ShapeDefaultProps}
key={Layout.key++}
x={this.centerX + this.radius}
y={this.y()}
radius={this.innerRadius}
fill={strokeColor}
/>
</Group>
<KonvaLabel
x={this.x() + this.width() + Config.TextPaddingX * 2}
y={this.y() - Config.TextPaddingY}
visible={CseMachine.getPrintableMode()}
ref={this.labelRef}
>
{CseMachine.getPrintableMode() ? (
<KonvaTag stroke={strokeColor} />
) : (
<KonvaTag
stroke={Config.HoverBgColor}
fill={Config.HoverBgColor}
opacity={Config.FnTooltipOpacity}
/>
)}
<KonvaText
text={CseMachine.getPrintableMode() ? this.exportTooltip : this.tooltip}
fontFamily={Config.FontFamily}
fontSize={Config.FontSize}
fontStyle={Config.FontStyle}
fill={textColor}
padding={5}
/>
</KonvaLabel>
{this._arrow?.draw()}
</React.Fragment>
);
}
}