2021-05-10 12:16:57 +00:00
|
|
|
import { Data, ShapeType } from "types"
|
2021-05-20 09:49:40 +00:00
|
|
|
import shapeUtils from "lib/shape-utils"
|
2021-05-27 22:07:27 +00:00
|
|
|
import { shades } from "lib/colors"
|
2021-05-26 21:47:46 +00:00
|
|
|
|
2021-05-10 12:16:57 +00:00
|
|
|
export const defaultDocument: Data["document"] = {
|
|
|
|
pages: {
|
|
|
|
page0: {
|
|
|
|
id: "page0",
|
|
|
|
type: "page",
|
|
|
|
name: "Page 0",
|
|
|
|
childIndex: 0,
|
|
|
|
shapes: {
|
2021-05-26 10:59:03 +00:00
|
|
|
shape3: shapeUtils[ShapeType.Dot].create({
|
|
|
|
id: "shape3",
|
|
|
|
name: "Shape 3",
|
2021-05-15 13:54:27 +00:00
|
|
|
childIndex: 3,
|
2021-05-26 10:59:03 +00:00
|
|
|
point: [400, 500],
|
|
|
|
style: {
|
2021-05-26 21:47:46 +00:00
|
|
|
stroke: shades.black,
|
|
|
|
fill: shades.lightGray,
|
2021-05-26 10:59:03 +00:00
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
2021-05-15 13:54:27 +00:00
|
|
|
}),
|
2021-05-15 17:11:08 +00:00
|
|
|
shape0: shapeUtils[ShapeType.Circle].create({
|
|
|
|
id: "shape0",
|
|
|
|
name: "Shape 0",
|
|
|
|
childIndex: 1,
|
|
|
|
point: [100, 600],
|
|
|
|
radius: 50,
|
2021-05-26 10:59:03 +00:00
|
|
|
style: {
|
2021-05-26 21:47:46 +00:00
|
|
|
stroke: shades.black,
|
|
|
|
fill: shades.lightGray,
|
2021-05-26 10:59:03 +00:00
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
2021-05-15 17:11:08 +00:00
|
|
|
}),
|
|
|
|
shape5: shapeUtils[ShapeType.Ellipse].create({
|
|
|
|
id: "shape5",
|
|
|
|
name: "Shape 5",
|
|
|
|
childIndex: 5,
|
2021-05-26 10:59:03 +00:00
|
|
|
point: [200, 200],
|
|
|
|
radiusX: 50,
|
|
|
|
radiusY: 100,
|
|
|
|
style: {
|
2021-05-26 21:47:46 +00:00
|
|
|
stroke: shades.black,
|
|
|
|
fill: shades.lightGray,
|
2021-05-26 10:59:03 +00:00
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
shape7: shapeUtils[ShapeType.Ellipse].create({
|
|
|
|
id: "shape7",
|
|
|
|
name: "Shape 7",
|
|
|
|
childIndex: 7,
|
|
|
|
point: [100, 100],
|
2021-05-15 17:11:08 +00:00
|
|
|
radiusX: 50,
|
|
|
|
radiusY: 30,
|
2021-05-26 10:59:03 +00:00
|
|
|
style: {
|
2021-05-26 21:47:46 +00:00
|
|
|
stroke: shades.black,
|
|
|
|
fill: shades.lightGray,
|
2021-05-26 10:59:03 +00:00
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
shape6: shapeUtils[ShapeType.Line].create({
|
|
|
|
id: "shape6",
|
|
|
|
name: "Shape 6",
|
|
|
|
childIndex: 1,
|
|
|
|
point: [400, 400],
|
|
|
|
direction: [0.2, 0.2],
|
|
|
|
style: {
|
2021-05-26 21:47:46 +00:00
|
|
|
stroke: shades.black,
|
|
|
|
fill: shades.lightGray,
|
2021-05-26 10:59:03 +00:00
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
rayShape: shapeUtils[ShapeType.Ray].create({
|
|
|
|
id: "rayShape",
|
|
|
|
name: "Ray",
|
|
|
|
childIndex: 3,
|
|
|
|
point: [300, 100],
|
|
|
|
direction: [0.5, 0.5],
|
|
|
|
style: {
|
2021-05-26 21:47:46 +00:00
|
|
|
stroke: shades.black,
|
|
|
|
fill: shades.lightGray,
|
2021-05-26 10:59:03 +00:00
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
shape2: shapeUtils[ShapeType.Polyline].create({
|
|
|
|
id: "shape2",
|
|
|
|
name: "Shape 2",
|
|
|
|
childIndex: 2,
|
|
|
|
point: [200, 600],
|
|
|
|
points: [
|
|
|
|
[0, 0],
|
|
|
|
[75, 200],
|
|
|
|
[100, 50],
|
|
|
|
],
|
|
|
|
style: {
|
2021-05-26 21:47:46 +00:00
|
|
|
stroke: shades.black,
|
|
|
|
fill: shades.transparent,
|
2021-05-26 10:59:03 +00:00
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
shape1: shapeUtils[ShapeType.Rectangle].create({
|
|
|
|
id: "shape1",
|
|
|
|
name: "Shape 1",
|
|
|
|
childIndex: 1,
|
|
|
|
point: [400, 600],
|
|
|
|
size: [200, 200],
|
|
|
|
style: {
|
2021-05-26 21:47:46 +00:00
|
|
|
stroke: shades.black,
|
|
|
|
fill: shades.lightGray,
|
2021-05-26 10:59:03 +00:00
|
|
|
strokeWidth: 1,
|
|
|
|
},
|
2021-05-15 17:11:08 +00:00
|
|
|
}),
|
2021-05-10 12:16:57 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-14 22:56:41 +00:00
|
|
|
code: {
|
|
|
|
file0: {
|
|
|
|
id: "file0",
|
|
|
|
name: "index.ts",
|
2021-05-15 13:02:13 +00:00
|
|
|
code: `
|
|
|
|
new Dot({
|
2021-05-17 10:01:11 +00:00
|
|
|
point: new Vector(0, 0),
|
2021-05-15 13:02:13 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
new Circle({
|
2021-05-17 10:01:11 +00:00
|
|
|
point: new Vector(200, 0),
|
2021-05-15 13:02:13 +00:00
|
|
|
radius: 50,
|
|
|
|
})
|
|
|
|
|
|
|
|
new Ellipse({
|
2021-05-17 10:01:11 +00:00
|
|
|
point: new Vector(400, 0),
|
2021-05-15 13:02:13 +00:00
|
|
|
radiusX: 50,
|
|
|
|
radiusY: 75
|
|
|
|
})
|
|
|
|
|
|
|
|
new Rectangle({
|
2021-05-17 10:01:11 +00:00
|
|
|
point: new Vector(0, 300),
|
2021-05-15 13:02:13 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
new Line({
|
2021-05-17 10:01:11 +00:00
|
|
|
point: new Vector(200, 300),
|
|
|
|
direction: new Vector(1,0.2)
|
2021-05-15 13:02:13 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
new Polyline({
|
2021-05-17 10:01:11 +00:00
|
|
|
point: new Vector(400, 300),
|
|
|
|
points: [new Vector(0, 200), new Vector(0,0), new Vector(200, 200), new Vector(200, 0)],
|
2021-05-15 13:02:13 +00:00
|
|
|
})
|
|
|
|
`,
|
2021-05-14 22:56:41 +00:00
|
|
|
},
|
|
|
|
},
|
2021-05-10 12:16:57 +00:00
|
|
|
}
|