@@ -19,7 +19,9 @@ import {
19
19
getAssociatedPolygon , getPointsForVertexAngle , getPolygonEdges
20
20
} from "../../../models/tools/geometry/jxg-polygon" ;
21
21
import {
22
- isAxis , isAxisLabel , isComment , isFreePoint , isPoint , isPolygon , isVertexAngle , isVisibleEdge , isVisiblePoint
22
+ isAxis , isAxisLabel , isComment , isFreePoint , isGeometryElement , isImage , isLine , isMovableLine ,
23
+ isMovableLineControlPoint , isMovableLineLabel , isPoint , isPolygon , isVertexAngle , isVisibleEdge ,
24
+ isVisibleMovableLine , isVisiblePoint
23
25
} from "../../../models/tools/geometry/jxg-types" ;
24
26
import {
25
27
getVertexAngle , updateVertexAngle , updateVertexAnglesFromObjects
@@ -33,9 +35,6 @@ import { getUrlFromImageContent } from "../../../utilities/image-utils";
33
35
import { safeJsonParse , uniqueId } from "../../../utilities/js-utils" ;
34
36
import { hasSelectionModifier } from "../../../utilities/event-utils" ;
35
37
import { assign , castArray , debounce , each , filter , find , keys as _keys , throttle , values } from "lodash" ;
36
- import {
37
- isVisibleMovableLine , isMovableLine , isMovableLineControlPoint , isMovableLineLabel ,
38
- } from "../../../models/tools/geometry/jxg-movable-line" ;
39
38
import { Logger , LogEventName , LogEventMethod } from "../../../lib/logger" ;
40
39
import { getDataSetBounds , IDataSet } from "../../../models/data/data-set" ;
41
40
import AxisSettingsDialog from "./axis-settings-dialog" ;
@@ -109,7 +108,7 @@ function syncBoardChanges(board: JXG.Board, content: GeometryContentModelType,
109
108
try {
110
109
const change : JXGChange = JSON . parse ( content . changes [ i ] ) ;
111
110
const result = content . syncChange ( board , change ) ;
112
- const elts = castArray ( result ) . filter ( elt => elt instanceof JXG . GeometryElement ) as JXG . GeometryElement [ ] ;
111
+ const elts = castArray ( result ) . filter ( isGeometryElement ) ;
113
112
newElements . push ( ...elts ) ;
114
113
if ( change . operation === "update" ) {
115
114
const ids = castArray ( change . targetID ) ;
@@ -578,10 +577,9 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
578
577
private getBackgroundImage ( _board ?: JXG . Board ) {
579
578
const board = _board || this . state . board ;
580
579
if ( ! board ) return ;
581
- const images = this . getContent ( )
582
- . findObjects ( board , ( obj : JXG . GeometryElement ) => obj . elType === "image" ) ;
580
+ const images = this . getContent ( ) . findObjects ( board , isImage ) as JXG . Image [ ] ;
583
581
return images . length > 0
584
- ? images [ images . length - 1 ] as JXG . Image
582
+ ? images [ images . length - 1 ]
585
583
: undefined ;
586
584
}
587
585
@@ -648,8 +646,8 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
648
646
private handleToggleVertexAngle = ( ) => {
649
647
const { board } = this . state ;
650
648
const selectedObjects = board && this . getContent ( ) . selectedObjects ( board ) ;
651
- const selectedPoints = selectedObjects && selectedObjects . filter ( isPoint ) ;
652
- const selectedPoint = selectedPoints && selectedPoints [ 0 ] as JXG . Point ;
649
+ const selectedPoints = selectedObjects ? .filter ( isPoint ) ;
650
+ const selectedPoint = selectedPoints ?. [ 0 ] ;
653
651
if ( board && selectedPoint ) {
654
652
const vertexAngle = getVertexAngle ( selectedPoint ) ;
655
653
if ( ! vertexAngle ) {
@@ -724,7 +722,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
724
722
if ( commentAnchor ) {
725
723
this . applyChange ( ( ) => {
726
724
const elems = content . addComment ( board , commentAnchor . id ) ;
727
- const comment = elems && elems . find ( ( elem : JXG . GeometryElement ) => isComment ( elem ) ) as JXG . Text ;
725
+ const comment = elems ? .find ( isComment ) ;
728
726
if ( comment ) {
729
727
this . handleCreateText ( comment ) ;
730
728
this . setState ( { selectedComment : comment } ) ;
@@ -1062,7 +1060,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1062
1060
} ) ;
1063
1061
this . updateImageUrl ( contentUrl ) ;
1064
1062
if ( this . props . size . height && image . height ! > this . props . size . height ) {
1065
- this . props . onRequestRowHeight ( this . props . model . id , image . height ! ) ;
1063
+ this . props . onRequestRowHeight ( this . props . model . id , image . height ) ;
1066
1064
}
1067
1065
}
1068
1066
@@ -1111,22 +1109,22 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1111
1109
elt . setAttribute ( { fixed : true } ) ;
1112
1110
}
1113
1111
if ( isPoint ( elt ) ) {
1114
- this . handleCreatePoint ( elt as JXG . Point ) ;
1112
+ this . handleCreatePoint ( elt ) ;
1115
1113
}
1116
1114
else if ( isPolygon ( elt ) ) {
1117
- this . handleCreatePolygon ( elt as JXG . Polygon ) ;
1115
+ this . handleCreatePolygon ( elt ) ;
1118
1116
}
1119
1117
else if ( isVertexAngle ( elt ) ) {
1120
- this . handleCreateVertexAngle ( elt as JXG . Angle ) ;
1118
+ this . handleCreateVertexAngle ( elt ) ;
1121
1119
}
1122
1120
else if ( isMovableLine ( elt ) ) {
1123
- this . handleCreateLine ( elt as JXG . Line ) ;
1121
+ this . handleCreateLine ( elt ) ;
1124
1122
}
1125
1123
else if ( isComment ( elt ) || isMovableLineLabel ( elt ) ) {
1126
- this . handleCreateText ( elt as JXG . Text ) ;
1124
+ this . handleCreateText ( elt ) ;
1127
1125
}
1128
1126
else if ( isAxis ( elt ) ) {
1129
- this . handleCreateAxis ( elt as JXG . Line ) ;
1127
+ this . handleCreateAxis ( elt ) ;
1130
1128
}
1131
1129
} ) ;
1132
1130
}
@@ -1212,7 +1210,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1212
1210
if ( board && ! hasSelectionModifier ( evt || { } ) ) {
1213
1211
content . metadata . selection . forEach ( ( isSelected : boolean , id : string ) => {
1214
1212
const obj = board . objects [ id ] ;
1215
- const pt = isPoint ( obj ) ? obj as JXG . Point : undefined ;
1213
+ const pt = isPoint ( obj ) ? obj : undefined ;
1216
1214
if ( pt && isSelected && ! pt . getAttribute ( "fixed" ) ) {
1217
1215
this . dragPts [ id ] = {
1218
1216
initial : copyCoords ( pt . coords ) ,
@@ -1230,7 +1228,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1230
1228
each ( this . dragPts , ( entry , id ) => {
1231
1229
if ( entry ) {
1232
1230
const obj = board . objects [ id ] ;
1233
- const pt = isPoint ( obj ) ? obj as JXG . Point : undefined ;
1231
+ const pt = isPoint ( obj ) ? obj : undefined ;
1234
1232
// move the points not dragged by JSXGraph
1235
1233
if ( pt && ! isDragTargetOrAncestor ( pt , dragTarget ) ) {
1236
1234
const newUsrCoords = JXG . Math . Statistics . add ( entry . initial . usrCoords , usrDiff ) as number [ ] ;
@@ -1267,7 +1265,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1267
1265
each ( this . dragPts , ( entry , id ) => {
1268
1266
if ( entry && content ) {
1269
1267
const obj = board . objects [ id ] ;
1270
- const pt = isPoint ( obj ) ? obj as JXG . Point : undefined ;
1268
+ const pt = isPoint ( obj ) ? obj : undefined ;
1271
1269
if ( pt ) {
1272
1270
const newUsrCoords = JXG . Math . Statistics . add ( entry . initial . usrCoords , usrDiff ) as number [ ] ;
1273
1271
ids . push ( id ) ;
@@ -1295,7 +1293,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1295
1293
( dragEntry . final . usrCoords [ 2 ] === dragEntry . initial . usrCoords [ 2 ] ) ) return ;
1296
1294
1297
1295
const position = dragEntry . final . usrCoords . slice ( 1 ) as JXGCoordPair ;
1298
- this . applyChange ( ( ) => content . updateObjects ( board ! , dragTarget . id , { position } ) ) ;
1296
+ this . applyChange ( ( ) => content . updateObjects ( board , dragTarget . id , { position } ) ) ;
1299
1297
}
1300
1298
1301
1299
private handleCreateBoard = ( board : JXG . Board ) => {
@@ -1359,7 +1357,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1359
1357
if ( ! hasSelectionModifier ( evt ) ) {
1360
1358
const props = { snapToGrid : true , snapSizeX : kSnapUnit , snapSizeY : kSnapUnit } ;
1361
1359
this . applyChange ( ( ) => {
1362
- const point = geometryContent . addPoint ( board , [ x , y ] , props ) as JXG . Point ;
1360
+ const point = geometryContent . addPoint ( board , [ x , y ] , props ) ;
1363
1361
if ( point ) {
1364
1362
this . handleCreatePoint ( point ) ;
1365
1363
}
@@ -1428,7 +1426,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1428
1426
if ( isFreePoint ( point ) && this . isDoubleClick ( this . lastPointDown , { evt, coords } ) ) {
1429
1427
if ( board ) {
1430
1428
this . applyChange ( ( ) => {
1431
- const polygon = geometryContent . createPolygonFromFreePoints ( board , tableId , columnId ) as JXG . Polygon ;
1429
+ const polygon = geometryContent . createPolygonFromFreePoints ( board , tableId , columnId ) ;
1432
1430
if ( polygon ) {
1433
1431
this . handleCreatePolygon ( polygon ) ;
1434
1432
this . props . onContentChange ( ) ;
@@ -1449,7 +1447,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1449
1447
1450
1448
if ( isMovableLineControlPoint ( point ) ) {
1451
1449
// When a control point is clicked, deselect the rest of the line so the line slope can be changed
1452
- const line = find ( point . descendants , el => isMovableLine ( el ) ) ;
1450
+ const line = find ( point . descendants , isMovableLine ) ;
1453
1451
if ( line ) {
1454
1452
geometryContent . deselectElement ( undefined , line . id ) ;
1455
1453
each ( line . ancestors , ( parentPoint , parentId ) => {
@@ -1517,7 +1515,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1517
1515
private handleCreateLine = ( line : JXG . Line ) => {
1518
1516
1519
1517
function getVertices ( ) {
1520
- return filter ( line . ancestors , ancestor => isPoint ( ancestor ) ) as JXG . Point [ ] ;
1518
+ return filter ( line . ancestors , isPoint ) ;
1521
1519
}
1522
1520
1523
1521
const isInVertex = ( evt : any ) => {
@@ -1605,8 +1603,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1605
1603
const coords = getEventCoords ( board , evt , scale ) ;
1606
1604
let inVertex = false ;
1607
1605
each ( polygon . ancestors , point => {
1608
- const pt = point as JXG . Point ;
1609
- if ( pt . hasPoint ( coords . scrCoords [ 1 ] , coords . scrCoords [ 2 ] ) ) {
1606
+ if ( isPoint ( point ) && point . hasPoint ( coords . scrCoords [ 1 ] , coords . scrCoords [ 2 ] ) ) {
1610
1607
inVertex = true ;
1611
1608
}
1612
1609
} ) ;
@@ -1617,8 +1614,7 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1617
1614
const geometryContent = this . props . model . content as GeometryContentModelType ;
1618
1615
let allSelected = true ;
1619
1616
each ( polygon . ancestors , point => {
1620
- const pt = point as JXG . Point ;
1621
- if ( ! geometryContent . isSelected ( pt . id ) ) {
1617
+ if ( isPoint ( point ) && ! geometryContent . isSelected ( point . id ) ) {
1622
1618
allSelected = false ;
1623
1619
}
1624
1620
} ) ;
@@ -1651,9 +1647,8 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1651
1647
if ( selectPolygon ) {
1652
1648
geometryContent . selectElement ( board , polygon . id ) ;
1653
1649
each ( polygon . ancestors , point => {
1654
- const pt = point as JXG . Point ;
1655
- if ( board && ! inVertex ) {
1656
- geometryContent . selectElement ( board , pt . id ) ;
1650
+ if ( board && isPoint ( point ) && ! inVertex ) {
1651
+ geometryContent . selectElement ( board , point . id ) ;
1657
1652
}
1658
1653
} ) ;
1659
1654
}
@@ -1751,8 +1746,8 @@ export class GeometryContentComponent extends BaseComponent<IProps, IState> {
1751
1746
// Extended clicks/drags don't open the movable line dialog
1752
1747
const clickTimeThreshold = 500 ;
1753
1748
if ( evt . timeStamp - this . lastBoardDown . evt . timeStamp < clickTimeThreshold ) {
1754
- const parentLine = values ( text . ancestors ) [ 0 ] as JXG . Line ;
1755
- if ( parentLine && ! readOnly ) {
1749
+ const parentLine = values ( text . ancestors ) [ 0 ] ;
1750
+ if ( isLine ( parentLine ) && ! readOnly ) {
1756
1751
this . setState ( { selectedLine : parentLine } ) ;
1757
1752
}
1758
1753
}
0 commit comments