548 lines
22 KiB
HTML
548 lines
22 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Org Chart Editor with Assistants</title>
|
|
<meta name="description" content="An organization chart editor -- edit details and change relationships." />
|
|
<!-- Copyright 1998-2017 by Northwoods Software Corporation. -->
|
|
<meta charset="UTF-8">
|
|
<script src="../release/go.js"></script>
|
|
<script src="../assets/js/goSamples.js"></script> <!-- this is only for the GoJS Samples framework -->
|
|
|
|
<link rel="stylesheet" href="../extensions/dataInspector.css" />
|
|
<script src="../extensions/dataInspector.js"></script>
|
|
|
|
<script id="code">
|
|
function init() {
|
|
if (window.goSamples) goSamples(); // init for these samples -- you don't need to call this
|
|
var $ = go.GraphObject.make; // for conciseness in defining templates
|
|
|
|
myDiagram =
|
|
$(go.Diagram, "myDiagramDiv", // must be the ID or reference to div
|
|
{
|
|
initialContentAlignment: go.Spot.Center,
|
|
initialAutoScale: go.Diagram.Uniform,
|
|
maxSelectionCount: 1, // users can select only one part at a time
|
|
validCycle: go.Diagram.CycleDestinationTree, // make sure users can only create trees
|
|
"clickCreatingTool.archetypeNodeData": {}, // allow double-click in background to create a new node
|
|
"clickCreatingTool.insertPart": function(loc) { // customize the data for the new node
|
|
this.archetypeNodeData = {
|
|
key: getNextKey(), // assign the key based on the number of nodes
|
|
name: "(new person)",
|
|
title: ""
|
|
};
|
|
return go.ClickCreatingTool.prototype.insertPart.call(this, loc);
|
|
},
|
|
layout:
|
|
$(SideTreeLayout,
|
|
{
|
|
treeStyle: go.TreeLayout.StyleLastParents,
|
|
arrangement: go.TreeLayout.ArrangementHorizontal,
|
|
// properties for most of the tree:
|
|
angle: 90,
|
|
layerSpacing: 35,
|
|
// properties for the "last parents":
|
|
alternateAngle: 90,
|
|
alternateLayerSpacing: 35,
|
|
alternateAlignment: go.TreeLayout.AlignmentBus,
|
|
alternateNodeSpacing: 20
|
|
}),
|
|
"undoManager.isEnabled": true // enable undo & redo
|
|
});
|
|
|
|
// when the document is modified, add a "*" to the title and enable the "Save" button
|
|
myDiagram.addDiagramListener("Modified", function(e) {
|
|
var button = document.getElementById("SaveButton");
|
|
if (button) button.disabled = !myDiagram.isModified;
|
|
var idx = document.title.indexOf("*");
|
|
if (myDiagram.isModified) {
|
|
if (idx < 0) document.title += "*";
|
|
} else {
|
|
if (idx >= 0) document.title = document.title.substr(0, idx);
|
|
}
|
|
});
|
|
|
|
// manage boss info manually when a node or link is deleted from the diagram
|
|
myDiagram.addDiagramListener("SelectionDeleting", function(e) {
|
|
var part = e.subject.first(); // e.subject is the myDiagram.selection collection,
|
|
// so we'll get the first since we know we only have one selection
|
|
myDiagram.startTransaction("clear boss");
|
|
if (part instanceof go.Node) {
|
|
var it = part.findTreeChildrenNodes(); // find all child nodes
|
|
while(it.next()) { // now iterate through them and clear out the boss information
|
|
var child = it.value;
|
|
var bossText = child.findObject("boss"); // since the boss TextBlock is named, we can access it by name
|
|
if (bossText === null) return;
|
|
bossText.text = "";
|
|
}
|
|
} else if (part instanceof go.Link) {
|
|
var child = part.toNode;
|
|
var bossText = child.findObject("boss"); // since the boss TextBlock is named, we can access it by name
|
|
if (bossText === null) return;
|
|
bossText.text = "";
|
|
}
|
|
myDiagram.commitTransaction("clear boss");
|
|
});
|
|
|
|
var levelColors = ["#AC193D", "#2672EC", "#8C0095", "#5133AB",
|
|
"#008299", "#D24726", "#008A00", "#094AB2"];
|
|
|
|
// override TreeLayout.commitNodes to also modify the background brush based on the tree depth level
|
|
myDiagram.layout.commitNodes = function() {
|
|
go.TreeLayout.prototype.commitNodes.call(myDiagram.layout); // do the standard behavior
|
|
// then go through all of the vertexes and set their corresponding node's Shape.fill
|
|
// to a brush dependent on the TreeVertex.level value
|
|
myDiagram.layout.network.vertexes.each(function(v) {
|
|
if (v.node) {
|
|
var level = v.level % (levelColors.length);
|
|
var color = levelColors[level];
|
|
var shape = v.node.findObject("SHAPE");
|
|
if (shape) shape.fill = $(go.Brush, "Linear", { 0: color, 1: go.Brush.lightenBy(color, 0.05), start: go.Spot.Left, end: go.Spot.Right });
|
|
}
|
|
});
|
|
};
|
|
|
|
// This function is used to find a suitable ID when modifying/creating nodes.
|
|
// We used the counter combined with findNodeDataForKey to ensure uniqueness.
|
|
function getNextKey() {
|
|
var key = nodeIdCounter;
|
|
while (myDiagram.model.findNodeDataForKey(key) !== null) {
|
|
key = nodeIdCounter--;
|
|
}
|
|
return key;
|
|
}
|
|
|
|
var nodeIdCounter = -1; // use a sequence to guarantee key uniqueness as we add/remove/modify nodes
|
|
|
|
// when a node is double-clicked, add a child to it
|
|
function nodeDoubleClick(e, obj) {
|
|
var clicked = obj.part;
|
|
if (clicked !== null) {
|
|
var thisemp = clicked.data;
|
|
myDiagram.startTransaction("add employee");
|
|
var newemp = { key: getNextKey(), name: "(new person)", title: "", parent: thisemp.key };
|
|
myDiagram.model.addNodeData(newemp);
|
|
myDiagram.commitTransaction("add employee");
|
|
}
|
|
}
|
|
|
|
// this is used to determine feedback during drags
|
|
function mayWorkFor(node1, node2) {
|
|
if (!(node1 instanceof go.Node)) return false; // must be a Node
|
|
if (node1 === node2) return false; // cannot work for yourself
|
|
if (node2.isInTreeOf(node1)) return false; // cannot work for someone who works for you
|
|
return true;
|
|
}
|
|
|
|
// This function provides a common style for most of the TextBlocks.
|
|
// Some of these values may be overridden in a particular TextBlock.
|
|
function textStyle() {
|
|
return { font: "9pt Segoe UI,sans-serif", stroke: "white" };
|
|
}
|
|
|
|
// This converter is used by the Picture.
|
|
function findHeadShot(key) {
|
|
if (key < 0 || key > 16) return "images/HSnopic.png"; // There are only 16 images on the server
|
|
return "images/HS" + key + ".png"
|
|
}
|
|
|
|
// define the Node template
|
|
myDiagram.nodeTemplate =
|
|
$(go.Node, "Auto",
|
|
{ doubleClick: nodeDoubleClick },
|
|
{ // handle dragging a Node onto a Node to (maybe) change the reporting relationship
|
|
mouseDragEnter: function (e, node, prev) {
|
|
var diagram = node.diagram;
|
|
var selnode = diagram.selection.first();
|
|
if (!mayWorkFor(selnode, node)) return;
|
|
var shape = node.findObject("SHAPE");
|
|
if (shape) {
|
|
shape._prevFill = shape.fill; // remember the original brush
|
|
shape.fill = "darkred";
|
|
}
|
|
},
|
|
mouseDragLeave: function (e, node, next) {
|
|
var shape = node.findObject("SHAPE");
|
|
if (shape && shape._prevFill) {
|
|
shape.fill = shape._prevFill; // restore the original brush
|
|
}
|
|
},
|
|
mouseDrop: function (e, node) {
|
|
var diagram = node.diagram;
|
|
var selnode = diagram.selection.first(); // assume just one Node in selection
|
|
if (mayWorkFor(selnode, node)) {
|
|
// find any existing link into the selected node
|
|
var link = selnode.findTreeParentLink();
|
|
if (link !== null) { // reconnect any existing link
|
|
link.fromNode = node;
|
|
} else { // else create a new link
|
|
diagram.toolManager.linkingTool.insertLink(node, node.port, selnode, selnode.port);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
// for sorting, have the Node.text be the data.name
|
|
new go.Binding("text", "name"),
|
|
// bind the Part.layerName to control the Node's layer depending on whether it isSelected
|
|
new go.Binding("layerName", "isSelected", function(sel) { return sel ? "Foreground" : ""; }).ofObject(),
|
|
// define the node's outer shape
|
|
$(go.Shape, "Rectangle",
|
|
{
|
|
name: "SHAPE", fill: "white", stroke: null,
|
|
// set the port properties:
|
|
portId: "", fromLinkable: true, toLinkable: true, cursor: "pointer"
|
|
}),
|
|
$(go.Panel, "Horizontal",
|
|
$(go.Picture,
|
|
{
|
|
name: "Picture",
|
|
desiredSize: new go.Size(39, 50),
|
|
margin: new go.Margin(6, 8, 6, 10),
|
|
},
|
|
new go.Binding("source", "key", findHeadShot)),
|
|
// define the panel where the text will appear
|
|
$(go.Panel, "Table",
|
|
{
|
|
maxSize: new go.Size(150, 999),
|
|
margin: new go.Margin(6, 10, 0, 3),
|
|
defaultAlignment: go.Spot.Left
|
|
},
|
|
$(go.RowColumnDefinition, { column: 2, width: 4 }),
|
|
$(go.TextBlock, textStyle(), // the name
|
|
{
|
|
row: 0, column: 0, columnSpan: 5,
|
|
font: "12pt Segoe UI,sans-serif",
|
|
editable: true, isMultiline: false,
|
|
minSize: new go.Size(10, 16)
|
|
},
|
|
new go.Binding("text", "name").makeTwoWay()),
|
|
$(go.TextBlock, "Title: ", textStyle(),
|
|
{ row: 1, column: 0 }),
|
|
$(go.TextBlock, textStyle(),
|
|
{
|
|
row: 1, column: 1, columnSpan: 4,
|
|
editable: true, isMultiline: false,
|
|
minSize: new go.Size(10, 14),
|
|
margin: new go.Margin(0, 0, 0, 3)
|
|
},
|
|
new go.Binding("text", "title").makeTwoWay()),
|
|
$(go.TextBlock, textStyle(),
|
|
{ row: 2, column: 0 },
|
|
new go.Binding("text", "key", function(v) {return "ID: " + v;})),
|
|
$(go.TextBlock, textStyle(),
|
|
{ name: "boss", row: 2, column: 3, }, // we include a name so we can access this TextBlock when deleting Nodes/Links
|
|
new go.Binding("text", "parent", function(v) {return "Boss: " + v;})),
|
|
$(go.TextBlock, textStyle(), // the comments
|
|
{
|
|
row: 3, column: 0, columnSpan: 5,
|
|
font: "italic 9pt sans-serif",
|
|
wrap: go.TextBlock.WrapFit,
|
|
editable: true, // by default newlines are allowed
|
|
minSize: new go.Size(10, 14)
|
|
},
|
|
new go.Binding("text", "comments").makeTwoWay())
|
|
) // end Table Panel
|
|
) // end Horizontal Panel
|
|
); // end Node
|
|
|
|
// the context menu allows users to make a position vacant,
|
|
// remove a role and reassign the subtree, or remove a department
|
|
myDiagram.nodeTemplate.contextMenu =
|
|
$(go.Adornment, "Vertical",
|
|
$("ContextMenuButton",
|
|
$(go.TextBlock, "Vacate Position"),
|
|
{
|
|
click: function(e, obj) {
|
|
var node = obj.part.adornedPart;
|
|
if (node !== null) {
|
|
var thisemp = node.data;
|
|
myDiagram.startTransaction("vacate");
|
|
// update the key, name, and comments
|
|
myDiagram.model.setKeyForNodeData(thisemp, getNextKey());
|
|
myDiagram.model.setDataProperty(thisemp, "name", "(Vacant)");
|
|
myDiagram.model.setDataProperty(thisemp, "comments", "");
|
|
myDiagram.commitTransaction("vacate");
|
|
}
|
|
}
|
|
}
|
|
),
|
|
$("ContextMenuButton",
|
|
$(go.TextBlock, "Remove Role"),
|
|
{
|
|
click: function(e, obj) {
|
|
// reparent the subtree to this node's boss, then remove the node
|
|
var node = obj.part.adornedPart;
|
|
if (node !== null) {
|
|
myDiagram.startTransaction("reparent remove");
|
|
var chl = node.findTreeChildrenNodes();
|
|
// iterate through the children and set their parent key to our selected node's parent key
|
|
while(chl.next()) {
|
|
var emp = chl.value;
|
|
myDiagram.model.setParentKeyForNodeData(emp.data, node.findTreeParentNode().data.key);
|
|
}
|
|
// and now remove the selected node itself
|
|
myDiagram.model.removeNodeData(node.data);
|
|
myDiagram.commitTransaction("reparent remove");
|
|
}
|
|
}
|
|
}
|
|
),
|
|
$("ContextMenuButton",
|
|
$(go.TextBlock, "Remove Department"),
|
|
{
|
|
click: function(e, obj) {
|
|
// remove the whole subtree, including the node itself
|
|
var node = obj.part.adornedPart;
|
|
if (node !== null) {
|
|
myDiagram.startTransaction("remove dept");
|
|
myDiagram.removeParts(node.findTreeParts());
|
|
myDiagram.commitTransaction("remove dept");
|
|
}
|
|
}
|
|
}
|
|
),
|
|
$("ContextMenuButton",
|
|
$(go.TextBlock, "Toggle Assistant"),
|
|
{
|
|
click: function(e, obj) {
|
|
// remove the whole subtree, including the node itself
|
|
var node = obj.part.adornedPart;
|
|
if (node !== null) {
|
|
myDiagram.startTransaction("toggle assistant");
|
|
myDiagram.model.setDataProperty(node.data, "isAssistant", !node.data.isAssistant);
|
|
myDiagram.layout.invalidateLayout();
|
|
myDiagram.commitTransaction("toggle assistant");
|
|
}
|
|
}
|
|
}
|
|
)
|
|
);
|
|
|
|
// define the Link template
|
|
myDiagram.linkTemplate =
|
|
$(go.Link, go.Link.Orthogonal,
|
|
{ corner: 5, relinkableFrom: true, relinkableTo: true },
|
|
$(go.Shape, { strokeWidth: 4, stroke: "#00a4a4" })); // the link shape
|
|
|
|
// read in the JSON-format data from the "mySavedModel" element
|
|
load();
|
|
|
|
|
|
// support editing the properties of the selected person in HTML
|
|
if (window.Inspector) myInspector = new Inspector("myInspector", myDiagram,
|
|
{
|
|
properties: {
|
|
"key": { readOnly: true },
|
|
"comments": {},
|
|
"isAssistant": { type: "boolean" }
|
|
},
|
|
propertyModified: function(name, val) {
|
|
if (name === "isAssistant") myDiagram.layout.invalidateLayout();
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
// Assume that the SideTreeLayout determines whether a node is an "assistant" if a particular data property is true.
|
|
// You can adapt this code to decide according to your app's needs.
|
|
function isAssistant(n) {
|
|
if (n === null) return false;
|
|
return n.data.isAssistant;
|
|
}
|
|
|
|
|
|
// This is a custom TreeLayout that knows about "assistants".
|
|
// A Node for which isAssistant(n) is true will be placed at the side below the parent node
|
|
// but above all of the other child nodes.
|
|
// An assistant node may be the root of its own subtree.
|
|
// An assistant node may have its own assistant nodes.
|
|
function SideTreeLayout() {
|
|
go.TreeLayout.call(this);
|
|
}
|
|
go.Diagram.inherit(SideTreeLayout, go.TreeLayout);
|
|
|
|
SideTreeLayout.prototype.makeNetwork = function(coll) {
|
|
var net = go.TreeLayout.prototype.makeNetwork.call(this, coll);
|
|
// copy the collection of TreeVertexes, because we will modify the network
|
|
var vertexcoll = new go.Set(go.TreeVertex);
|
|
vertexcoll.addAll(net.vertexes);
|
|
for (var it = vertexcoll.iterator; it.next() ;) {
|
|
var parent = it.value;
|
|
// count the number of assistants
|
|
var acount = 0;
|
|
var ait = parent.destinationVertexes;
|
|
while (ait.next()) {
|
|
if (isAssistant(ait.value.node)) acount++;
|
|
}
|
|
// if a vertex has some number of children that should be assistants
|
|
if (acount > 0) {
|
|
// remember the assistant edges and the regular child edges
|
|
var asstedges = new go.Set(go.TreeEdge);
|
|
var childedges = new go.Set(go.TreeEdge);
|
|
var eit = parent.destinationEdges;
|
|
while (eit.next()) {
|
|
var e = eit.value;
|
|
if (isAssistant(e.toVertex.node)) {
|
|
asstedges.add(e);
|
|
} else {
|
|
childedges.add(e);
|
|
}
|
|
}
|
|
// first remove all edges from PARENT
|
|
eit = asstedges.iterator;
|
|
while (eit.next()) { parent.deleteDestinationEdge(eit.value); }
|
|
eit = childedges.iterator;
|
|
while (eit.next()) { parent.deleteDestinationEdge(eit.value); }
|
|
// if the number of assistants is odd, add a dummy assistant, to make the count even
|
|
if (acount % 2 == 1) {
|
|
var dummy = net.createVertex();
|
|
net.addVertex(dummy);
|
|
net.linkVertexes(parent, dummy, asstedges.first().link);
|
|
}
|
|
// now PARENT should get all of the assistant children
|
|
eit = asstedges.iterator;
|
|
while (eit.next()) {
|
|
parent.addDestinationEdge(eit.value);
|
|
}
|
|
// create substitute vertex to be new parent of all regular children
|
|
var subst = net.createVertex();
|
|
net.addVertex(subst);
|
|
// reparent regular children to the new substitute vertex
|
|
eit = childedges.iterator;
|
|
while (eit.next()) {
|
|
var ce = eit.value;
|
|
ce.fromVertex = subst;
|
|
subst.addDestinationEdge(ce);
|
|
}
|
|
// finally can add substitute vertex as the final odd child,
|
|
// to be positioned at the end of the PARENT's immediate subtree.
|
|
var newedge = net.linkVertexes(parent, subst, null);
|
|
}
|
|
}
|
|
return net;
|
|
};
|
|
|
|
SideTreeLayout.prototype.assignTreeVertexValues = function(v) {
|
|
// if a vertex has any assistants, use Bus alignment
|
|
var any = false;
|
|
var children = v.children;
|
|
for (var i = 0; i < children.length; i++) {
|
|
var c = children[i];
|
|
if (isAssistant(c.node)) {
|
|
any = true;
|
|
break;
|
|
}
|
|
}
|
|
if (any) {
|
|
// this is the parent for the assistant(s)
|
|
v.alignment = go.TreeLayout.AlignmentBus; // this is required
|
|
v.nodeSpacing = 50; // control the distance of the assistants from the parent's main links
|
|
} else if (v.node == null && v.childrenCount > 0) {
|
|
// found the substitute parent for non-assistant children
|
|
//v.alignment = go.TreeLayout.AlignmentCenterChildren;
|
|
//v.breadthLimit = 3000;
|
|
v.layerSpacing = 0;
|
|
}
|
|
};
|
|
|
|
SideTreeLayout.prototype.commitLinks = function() {
|
|
go.TreeLayout.prototype.commitLinks.call(this);
|
|
// make sure the middle segment of an orthogonal link does not cross over the assistant subtree
|
|
var eit = this.network.edges.iterator;
|
|
while (eit.next()) {
|
|
var e = eit.value;
|
|
if (e.link == null) continue;
|
|
var r = e.link;
|
|
// does this edge come from a substitute parent vertex?
|
|
var subst = e.fromVertex;
|
|
if (subst.node == null && r.routing == go.Link.Orthogonal) {
|
|
r.updateRoute();
|
|
r.startRoute();
|
|
// middle segment goes from point 2 to point 3
|
|
var p1 = subst.center; // assume artificial vertex has zero size
|
|
var p2 = r.getPoint(2).copy();
|
|
var p3 = r.getPoint(3).copy();
|
|
var p5 = r.getPoint(r.pointsCount - 1);
|
|
var dist = 10;
|
|
if (subst.angle == 270 || subst.angle == 180) dist = -20;
|
|
if (subst.angle == 90 || subst.angle == 270) {
|
|
p2.y = p5.y - dist; // (p1.y+p5.y)/2;
|
|
p3.y = p5.y - dist; // (p1.y+p5.y)/2;
|
|
} else {
|
|
p2.x = p5.x - dist; // (p1.x+p5.x)/2;
|
|
p3.x = p5.x - dist; // (p1.x+p5.x)/2;
|
|
}
|
|
r.setPoint(2, p2);
|
|
r.setPoint(3, p3);
|
|
r.commitRoute();
|
|
}
|
|
}
|
|
}; // end of SideTreeLayout
|
|
|
|
|
|
// Show the diagram's model in JSON format
|
|
function save() {
|
|
document.getElementById("mySavedModel").value = myDiagram.model.toJson();
|
|
myDiagram.isModified = false;
|
|
}
|
|
function load() {
|
|
myDiagram.model = go.Model.fromJson(document.getElementById("mySavedModel").value);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
<div id="sample">
|
|
<div id="myDiagramDiv" style="background-color: #696969; border: solid 1px black; height: 500px"></div>
|
|
<div>
|
|
<div id="myInspector">
|
|
|
|
</div>
|
|
</div>
|
|
<p>
|
|
This editable organizational chart sample was derived from <a href="orgChartEditor">Org Chart Editor</a>
|
|
and adds support for "assistant" nodes that are laid out by a custom <a>TreeLayout</a> below the side
|
|
of the parent node and above the regular child nodes.
|
|
</p>
|
|
<p>
|
|
Whether or not a node is considered to be an "assistant" node is determined by the <code>isAssistant</code> property of the node data.
|
|
The user can modify this data property via an additional context menu command.
|
|
</p>
|
|
<p>
|
|
Assistant employees may themselves be bosses of their own employees.
|
|
All of a boss's reports may be assistants.
|
|
</p>
|
|
<div>
|
|
<div>
|
|
<button id="SaveButton" onclick="save()">Save</button>
|
|
<button onclick="load()">Load</button>
|
|
Diagram Model saved in JSON format:
|
|
</div>
|
|
<textarea id="mySavedModel" style="width:100%;height:250px">
|
|
{ "class": "go.TreeModel",
|
|
"nodeDataArray": [
|
|
{"key":1, "name":"Stella Payne Diaz", "title":"CEO"},
|
|
{"key":2, "name":"Luke Warm", "title":"VP Marketing/Sales", "parent":1},
|
|
{"key":3, "name":"Meg Meehan Hoffa", "title":"Sales", "parent":2},
|
|
{"key":4, "name":"Peggy Flaming", "title":"VP Engineering", "parent":1},
|
|
{"key":5, "name":"Saul Wellingood", "title":"Manufacturing", "parent":4},
|
|
{"key":6, "name":"Al Ligori", "title":"Marketing", "parent":2},
|
|
{"key":7, "name":"Dot Stubadd", "title":"Sales Rep", "parent":3},
|
|
{"key":8, "name":"Les Ismore", "title":"Project Mgr", "parent":5},
|
|
{"key":9, "name":"April Lynn Parris", "title":"Events Mgr", "parent":6},
|
|
{"key":10, "name":"Xavier Breath", "title":"Engineering", "parent":4},
|
|
{"key":11, "name":"Anita Hammer", "title":"Process", "parent":5},
|
|
{"key":12, "name":"Billy Aiken", "title":"Software", "parent":10},
|
|
{"key":13, "name":"Stan Wellback", "title":"Testing", "parent":10},
|
|
{"key":14, "name":"Marge Innovera", "title":"Hardware", "parent":10},
|
|
{"key":15, "name":"Evan Elpus", "title":"Quality", "parent":5},
|
|
{"key":16, "name":"Lotta B. Essen", "title":"Sales Rep", "parent":3},
|
|
{"key":17, "name":"Joaquin Closet", "title":"Wardrobe Assistant", "isAssistant":true, "parent":1},
|
|
{"key":18, "name":"Hannah Twomey", "title":"Engineering Assistant", "parent":10, "isAssistant":true}
|
|
]
|
|
}
|
|
</textarea>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|