d2/d2renderers/d2svg/table.go

130 lines
3.9 KiB
Go
Raw Normal View History

package d2svg
import (
"fmt"
"io"
"oss.terrastruct.com/d2/d2target"
"oss.terrastruct.com/d2/d2themes"
"oss.terrastruct.com/d2/lib/geo"
"oss.terrastruct.com/d2/lib/label"
2022-12-22 19:06:57 +00:00
"oss.terrastruct.com/d2/lib/svg"
"oss.terrastruct.com/util-go/go2"
)
2022-12-24 23:56:22 +00:00
func tableHeader(shape d2target.Shape, box *geo.Box, text string, textWidth, textHeight, fontSize float64) string {
rectEl := d2themes.NewThemableElement("rect")
2023-01-09 18:16:28 +00:00
rectEl.X, rectEl.Y = box.TopLeft.X, box.TopLeft.Y
rectEl.Width, rectEl.Height = box.Width, box.Height
rectEl.Fill = shape.Fill
rectEl.ClassName = "class_header"
2023-01-09 18:16:28 +00:00
str := rectEl.Render()
if text != "" {
tl := label.InsideMiddleLeft.GetPointOnBox(
box,
float64(d2target.HeaderPadding),
float64(shape.Width),
textHeight,
)
textEl := d2themes.NewThemableElement("text")
2023-01-09 18:16:28 +00:00
textEl.X = tl.X
textEl.Y = tl.Y + textHeight*3/4
2023-02-25 04:26:40 +00:00
textEl.Fill = shape.GetFontColor()
textEl.ClassName = "text"
2023-01-09 18:16:28 +00:00
textEl.Style = fmt.Sprintf("text-anchor:%s;font-size:%vpx",
"start", 4+fontSize,
)
2023-01-09 18:16:28 +00:00
textEl.Content = svg.EscapeText(text)
str += textEl.Render()
}
return str
}
2022-12-24 23:56:22 +00:00
func tableRow(shape d2target.Shape, box *geo.Box, nameText, typeText, constraintText string, fontSize, longestNameWidth float64) string {
// Row is made up of name, type, and constraint
// e.g. | diagram int FK |
nameTL := label.InsideMiddleLeft.GetPointOnBox(
box,
2022-12-20 05:02:50 +00:00
d2target.NamePadding,
box.Width,
fontSize,
)
constraintTR := label.InsideMiddleRight.GetPointOnBox(
box,
2022-12-20 05:02:50 +00:00
d2target.TypePadding,
0,
fontSize,
)
textEl := d2themes.NewThemableElement("text")
2023-01-09 18:16:28 +00:00
textEl.X = nameTL.X
textEl.Y = nameTL.Y + fontSize*3/4
textEl.Fill = shape.PrimaryAccentColor
textEl.ClassName = "text"
2023-01-09 18:16:28 +00:00
textEl.Style = fmt.Sprintf("text-anchor:%s;font-size:%vpx", "start", fontSize)
textEl.Content = svg.EscapeText(nameText)
out := textEl.Render()
textEl.X = nameTL.X + longestNameWidth + 2*d2target.NamePadding
textEl.Fill = shape.NeutralAccentColor
textEl.Content = svg.EscapeText(typeText)
out += textEl.Render()
textEl.X = constraintTR.X
textEl.Y = constraintTR.Y + fontSize*3/4
textEl.Fill = shape.SecondaryAccentColor
textEl.Style = fmt.Sprintf("text-anchor:%s;font-size:%vpx;letter-spacing:2px", "end", fontSize)
textEl.Content = constraintText
out += textEl.Render()
return out
}
func drawTable(writer io.Writer, targetShape d2target.Shape) {
rectEl := d2themes.NewThemableElement("rect")
2023-01-09 18:16:28 +00:00
rectEl.X = float64(targetShape.Pos.X)
rectEl.Y = float64(targetShape.Pos.Y)
rectEl.Width = float64(targetShape.Width)
rectEl.Height = float64(targetShape.Height)
rectEl.Fill, rectEl.Stroke = d2themes.ShapeTheme(targetShape)
rectEl.ClassName = "shape"
2023-01-15 20:36:43 +00:00
rectEl.Style = targetShape.CSSStyle()
2023-01-09 18:16:28 +00:00
fmt.Fprint(writer, rectEl.Render())
box := geo.NewBox(
geo.NewPoint(float64(targetShape.Pos.X), float64(targetShape.Pos.Y)),
float64(targetShape.Width),
float64(targetShape.Height),
)
rowHeight := box.Height / float64(1+len(targetShape.SQLTable.Columns))
headerBox := geo.NewBox(box.TopLeft, box.Width, rowHeight)
fmt.Fprint(writer,
2022-12-24 23:56:22 +00:00
tableHeader(targetShape, headerBox, targetShape.Label,
float64(targetShape.LabelWidth), float64(targetShape.LabelHeight), float64(targetShape.FontSize)),
)
var longestNameWidth int
2022-12-22 19:06:57 +00:00
for _, f := range targetShape.Columns {
longestNameWidth = go2.Max(longestNameWidth, f.Name.LabelWidth)
}
rowBox := geo.NewBox(box.TopLeft.Copy(), box.Width, rowHeight)
rowBox.TopLeft.Y += headerBox.Height
2022-12-22 19:06:57 +00:00
for _, f := range targetShape.Columns {
fmt.Fprint(writer,
2022-12-24 23:56:22 +00:00
tableRow(targetShape, rowBox, f.Name.Label, f.Type.Label, f.ConstraintAbbr(), float64(targetShape.FontSize), float64(longestNameWidth)),
)
rowBox.TopLeft.Y += rowHeight
2023-01-09 18:16:28 +00:00
lineEl := d2themes.NewThemableElement("line")
2023-01-09 18:16:28 +00:00
lineEl.X1, lineEl.Y1 = rowBox.TopLeft.X, rowBox.TopLeft.Y
lineEl.X2, lineEl.Y2 = rowBox.TopLeft.X+rowBox.Width, rowBox.TopLeft.Y
lineEl.Stroke = targetShape.Fill
lineEl.Style = "stroke-width:2"
fmt.Fprint(writer, lineEl.Render())
}
}