forked from NorthwoodsSoftware/GoJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenogramScript.js
More file actions
284 lines (284 loc) · 14.7 KB
/
Copy pathgenogramScript.js
File metadata and controls
284 lines (284 loc) · 14.7 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports", "../release/go", "./GenogramLayout"], factory);
}
})(function (require, exports) {
'use strict';
Object.defineProperty(exports, "__esModule", { value: true });
/*
* Copyright (C) 1998-2020 by Northwoods Software Corporation. All Rights Reserved.
*/
var go = require("../release/go");
var GenogramLayout_1 = require("./GenogramLayout");
function init() {
if (window.goSamples)
window.goSamples(); // init for these samples -- you don't need to call this
var $ = go.GraphObject.make;
var myDiagram = $(go.Diagram, 'myDiagramDiv', {
initialAutoScale: go.Diagram.Uniform,
'undoManager.isEnabled': true,
// when a node is selected, draw a big yellow circle behind it
nodeSelectionAdornmentTemplate: $(go.Adornment, 'Auto', { layerName: 'Grid' }, // the predefined layer that is behind everything else
$(go.Shape, 'Circle', { fill: 'yellow', stroke: null }), $(go.Placeholder)),
layout: // use a custom layout, defined below
$(GenogramLayout_1.GenogramLayout, { direction: 90, layerSpacing: 30, columnSpacing: 10 })
});
// determine the color for each attribute shape
function attrFill(a) {
switch (a) {
case 'A': return 'green';
case 'B': return 'orange';
case 'C': return 'red';
case 'D': return 'cyan';
case 'E': return 'gold';
case 'F': return 'pink';
case 'G': return 'blue';
case 'H': return 'brown';
case 'I': return 'purple';
case 'J': return 'chartreuse';
case 'K': return 'lightgray';
case 'L': return 'magenta';
case 'S': return 'red';
default: return 'transparent';
}
}
// determine the geometry for each attribute shape in a male;
// except for the slash these are all squares at each of the four corners of the overall square
var tlsq = go.Geometry.parse('F M1 1 l19 0 0 19 -19 0z');
var trsq = go.Geometry.parse('F M20 1 l19 0 0 19 -19 0z');
var brsq = go.Geometry.parse('F M20 20 l19 0 0 19 -19 0z');
var blsq = go.Geometry.parse('F M1 20 l19 0 0 19 -19 0z');
var slash = go.Geometry.parse('F M38 0 L40 0 40 2 2 40 0 40 0 38z');
function maleGeometry(a) {
switch (a) {
case 'A': return tlsq;
case 'B': return tlsq;
case 'C': return tlsq;
case 'D': return trsq;
case 'E': return trsq;
case 'F': return trsq;
case 'G': return brsq;
case 'H': return brsq;
case 'I': return brsq;
case 'J': return blsq;
case 'K': return blsq;
case 'L': return blsq;
case 'S': return slash;
default: return tlsq;
}
}
// determine the geometry for each attribute shape in a female;
// except for the slash these are all pie shapes at each of the four quadrants of the overall circle
var tlarc = go.Geometry.parse('F M20 20 B 180 90 20 20 19 19 z');
var trarc = go.Geometry.parse('F M20 20 B 270 90 20 20 19 19 z');
var brarc = go.Geometry.parse('F M20 20 B 0 90 20 20 19 19 z');
var blarc = go.Geometry.parse('F M20 20 B 90 90 20 20 19 19 z');
function femaleGeometry(a) {
switch (a) {
case 'A': return tlarc;
case 'B': return tlarc;
case 'C': return tlarc;
case 'D': return trarc;
case 'E': return trarc;
case 'F': return trarc;
case 'G': return brarc;
case 'H': return brarc;
case 'I': return brarc;
case 'J': return blarc;
case 'K': return blarc;
case 'L': return blarc;
case 'S': return slash;
default: return tlarc;
}
}
// two different node templates, one for each sex,
// named by the category value in the node data object
myDiagram.nodeTemplateMap.add('M', // male
$(go.Node, 'Vertical', { locationSpot: go.Spot.Center, locationObjectName: 'ICON' }, $(go.Panel, { name: 'ICON' }, $(go.Shape, 'Square', { width: 40, height: 40, strokeWidth: 2, fill: 'white', portId: '' }), $(go.Panel, {
itemTemplate: $(go.Panel, $(go.Shape, { stroke: null, strokeWidth: 0 }, new go.Binding('fill', '', attrFill), new go.Binding('geometry', '', maleGeometry))),
margin: 1
}, new go.Binding('itemArray', 'a'))), $(go.TextBlock, { textAlign: 'center', maxSize: new go.Size(80, NaN) }, new go.Binding('text', 'n'))));
myDiagram.nodeTemplateMap.add('F', // female
$(go.Node, 'Vertical', { locationSpot: go.Spot.Center, locationObjectName: 'ICON' }, $(go.Panel, { name: 'ICON' }, $(go.Shape, 'Circle', { width: 40, height: 40, strokeWidth: 2, fill: 'white', portId: '' }), $(go.Panel, {
itemTemplate: $(go.Panel, $(go.Shape, { stroke: null, strokeWidth: 0 }, new go.Binding('fill', '', attrFill), new go.Binding('geometry', '', femaleGeometry))),
margin: 1
}, new go.Binding('itemArray', 'a'))), $(go.TextBlock, { textAlign: 'center', maxSize: new go.Size(80, NaN) }, new go.Binding('text', 'n'))));
// the representation of each label node -- nothing shows on a Marriage Link
myDiagram.nodeTemplateMap.add('LinkLabel', $(go.Node, { selectable: false, width: 1, height: 1, fromEndSegmentLength: 20 }));
myDiagram.linkTemplate = // for parent-child relationships
$(go.Link, {
routing: go.Link.Orthogonal, curviness: 15,
layerName: 'Background', selectable: false,
fromSpot: go.Spot.Bottom, toSpot: go.Spot.Top
}, $(go.Shape, { strokeWidth: 2 }));
myDiagram.linkTemplateMap.add('Marriage', // for marriage relationships
$(go.Link, { selectable: false }, $(go.Shape, { strokeWidth: 2, stroke: 'blue' })));
// n: name, s: sex, m: mother, f: father, ux: wife, vir: husband, a: attributes/markers
setupDiagram(myDiagram, [
{ key: 0, n: 'Aaron', s: 'M', m: -10, f: -11, ux: 1, a: ['C', 'F', 'K'] },
{ key: 1, n: 'Alice', s: 'F', m: -12, f: -13, a: ['B', 'H', 'K'] },
{ key: 2, n: 'Bob', s: 'M', m: 1, f: 0, ux: 3, a: ['C', 'H', 'L'] },
{ key: 3, n: 'Barbara', s: 'F', a: ['C'] },
{ key: 4, n: 'Bill', s: 'M', m: 1, f: 0, ux: 5, a: ['E', 'H'] },
{ key: 5, n: 'Brooke', s: 'F', a: ['B', 'H', 'L'] },
{ key: 6, n: 'Claire', s: 'F', m: 1, f: 0, a: ['C'] },
{ key: 7, n: 'Carol', s: 'F', m: 1, f: 0, a: ['C', 'I'] },
{ key: 8, n: 'Chloe', s: 'F', m: 1, f: 0, vir: 9, a: ['E'] },
{ key: 9, n: 'Chris', s: 'M', a: ['B', 'H'] },
{ key: 10, n: 'Ellie', s: 'F', m: 3, f: 2, a: ['E', 'G'] },
{ key: 11, n: 'Dan', s: 'M', m: 3, f: 2, a: ['B', 'J'] },
{ key: 12, n: 'Elizabeth', s: 'F', vir: 13, a: ['J'] },
{ key: 13, n: 'David', s: 'M', m: 5, f: 4, a: ['B', 'H'] },
{ key: 14, n: 'Emma', s: 'F', m: 5, f: 4, a: ['E', 'G'] },
{ key: 15, n: 'Evan', s: 'M', m: 8, f: 9, a: ['F', 'H'] },
{ key: 16, n: 'Ethan', s: 'M', m: 8, f: 9, a: ['D', 'K'] },
{ key: 17, n: 'Eve', s: 'F', vir: 16, a: ['B', 'F', 'L'] },
{ key: 18, n: 'Emily', s: 'F', m: 8, f: 9 },
{ key: 19, n: 'Fred', s: 'M', m: 17, f: 16, a: ['B'] },
{ key: 20, n: 'Faith', s: 'F', m: 17, f: 16, a: ['L'] },
{ key: 21, n: 'Felicia', s: 'F', m: 12, f: 13, a: ['H'] },
{ key: 22, n: 'Frank', s: 'M', m: 12, f: 13, a: ['B', 'H'] },
// "Aaron"'s ancestors
{ key: -10, n: 'Paternal Grandfather', s: 'M', m: -33, f: -32, ux: -11, a: ['A', 'S'] },
{ key: -11, n: 'Paternal Grandmother', s: 'F', a: ['E', 'S'] },
{ key: -32, n: 'Paternal Great', s: 'M', ux: -33, a: ['F', 'H', 'S'] },
{ key: -33, n: 'Paternal Great', s: 'F', a: ['S'] },
{ key: -40, n: 'Great Uncle', s: 'M', m: -33, f: -32, a: ['F', 'H', 'S'] },
{ key: -41, n: 'Great Aunt', s: 'F', m: -33, f: -32, a: ['B', 'I', 'S'] },
{ key: -20, n: 'Uncle', s: 'M', m: -11, f: -10, a: ['A', 'S'] },
// "Alice"'s ancestors
{ key: -12, n: 'Maternal Grandfather', s: 'M', ux: -13, a: ['D', 'L', 'S'] },
{ key: -13, n: 'Maternal Grandmother', s: 'F', m: -31, f: -30, a: ['H', 'S'] },
{ key: -21, n: 'Aunt', s: 'F', m: -13, f: -12, a: ['C', 'I'] },
{ key: -22, n: 'Uncle', s: 'M', ux: -21 },
{ key: -23, n: 'Cousin', s: 'M', m: -21, f: -22 },
{ key: -30, n: 'Maternal Great', s: 'M', ux: -31, a: ['D', 'J', 'S'] },
{ key: -31, n: 'Maternal Great', s: 'F', m: -50, f: -51, a: ['B', 'H', 'L', 'S'] },
{ key: -42, n: 'Great Uncle', s: 'M', m: -30, f: -31, a: ['C', 'J', 'S'] },
{ key: -43, n: 'Great Aunt', s: 'F', m: -30, f: -31, a: ['E', 'G', 'S'] },
{ key: -50, n: 'Maternal Great Great', s: 'F', ux: -51, a: ['D', 'I', 'S'] },
{ key: -51, n: 'Maternal Great Great', s: 'M', a: ['B', 'H', 'S'] }
], 4 /* focus on this person */);
}
exports.init = init;
// create and initialize the Diagram.model given an array of node data representing people
function setupDiagram(diagram, array, focusId) {
diagram.model =
go.GraphObject.make(go.GraphLinksModel, {
linkLabelKeysProperty: 'labelKeys',
// this property determines which template is used
nodeCategoryProperty: 's',
// create all of the nodes for people
nodeDataArray: array
});
setupMarriages(diagram);
setupParents(diagram);
var node = diagram.findNodeForKey(focusId);
if (node !== null) {
diagram.select(node);
// remove any spouse for the person under focus:
// node.linksConnected.each(function(l) {
// if (!l.isLabeledLink) return;
// l.opacity = 0;
// var spouse = l.getOtherNode(node);
// spouse.opacity = 0;
// spouse.pickable = false;
// });
}
}
exports.setupDiagram = setupDiagram;
function findMarriage(diagram, a, b) {
var nodeA = diagram.findNodeForKey(a);
var nodeB = diagram.findNodeForKey(b);
if (nodeA !== null && nodeB !== null) {
var it = nodeA.findLinksBetween(nodeB); // in either direction
while (it.next()) {
var link = it.value;
// Link.data.category === "Marriage" means it's a marriage relationship
if (link.data !== null && link.data.category === 'Marriage')
return link;
}
}
return null;
}
exports.findMarriage = findMarriage;
// now process the node data to determine marriages
function setupMarriages(diagram) {
var model = diagram.model;
var nodeDataArray = model.nodeDataArray;
for (var i = 0; i < nodeDataArray.length; i++) {
var data = nodeDataArray[i];
var key = data.key;
if (data.ux !== undefined) {
var uxs = [];
if (typeof data.ux === 'number')
uxs = [data.ux];
for (var j = 0; j < uxs.length; j++) {
var wife = uxs[j];
if (key === wife) {
// or warn no reflexive marriages
continue;
}
var link = findMarriage(diagram, key, wife);
if (link === null) {
// add a label node for the marriage link
var mlab = { s: 'LinkLabel' };
model.addNodeData(mlab);
// add the marriage link itself, also referring to the label node
var mdata = { from: key, to: wife, labelKeys: [mlab.key], category: 'Marriage' };
model.addLinkData(mdata);
}
}
}
if (data.vir !== undefined) {
var virs = (typeof data.vir === 'number') ? [data.vir] : data.vir;
for (var j = 0; j < virs.length; j++) {
var husband = virs[j];
if (key === husband) {
// or warn no reflexive marriages
continue;
}
var link = findMarriage(diagram, key, husband);
if (link === null) {
// add a label node for the marriage link
var mlab = { s: 'LinkLabel' };
model.addNodeData(mlab);
// add the marriage link itself, also referring to the label node
var mdata = { from: key, to: husband, labelKeys: [mlab.key], category: 'Marriage' };
model.addLinkData(mdata);
}
}
}
}
}
exports.setupMarriages = setupMarriages;
// process parent-child relationships once all marriages are known
function setupParents(diagram) {
var model = diagram.model;
var nodeDataArray = model.nodeDataArray;
for (var i = 0; i < nodeDataArray.length; i++) {
var data = nodeDataArray[i];
var key = data.key;
var mother = data.m;
var father = data.f;
if (mother !== undefined && father !== undefined) {
var link = findMarriage(diagram, mother, father);
if (link === null) {
// or warn no known mother or no known father or no known marriage between them
if (window.console)
window.console.log('unknown marriage: ' + mother + ' & ' + father);
continue;
}
var mdata = link.data;
var mlabkey = mdata.labelKeys[0];
var cdata = { from: mlabkey, to: key };
model.addLinkData(cdata);
}
}
}
exports.setupParents = setupParents;
});