1
0
mirror of https://github.com/mum4k/termdash.git synced 2025-05-01 22:17:51 +08:00

130 lines
4.0 KiB
Go
Raw Normal View History

2019-01-07 00:16:48 -05:00
// Copyright 2019 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package axes calculates the required layout and draws the X and Y axes of a line chart.
package axes
import "fmt"
const (
// nonZeroDecimals determines the overall precision of values displayed on the
// graph, it indicates the number of non-zero decimal places the values will be
// rounded up to.
nonZeroDecimals = 2
// yAxisWidth is width of the Y axis.
yAxisWidth = 1
)
// YDetails contain information about the Y axis that will be drawn onto the
// canvas.
type YDetails struct {
// Width in character cells of the Y axis and its character labels.
Width int
// Scale is the scale of the Y axis.
Scale *YScale
// Labels are the labels for values on the Y axis in an increasing order.
Labels []*Label
}
// Y tracks the state of the Y axis throughout the lifetime of a line chart.
// Implements lazy resize of the axis to decrease visual "jumping".
// This object is not thread-safe.
type Y struct {
// min is the smallest value on the Y axis.
min *Value
// max is the largest value on the Y axis.
max *Value
// details about the Y axis as it will be drawn.
details *YDetails
}
// NewY returns a new Y instance.
// The minVal and maxVal represent the minimum and maximum value that will be
// displayed on the line chart among all of the series.
func NewY(minVal, maxVal float64) *Y {
y := &Y{}
y.Update(minVal, maxVal)
return y
}
// Update updates the stored minVal and maxVal.
func (y *Y) Update(minVal, maxVal float64) {
y.min, y.max = NewValue(minVal, nonZeroDecimals), NewValue(maxVal, nonZeroDecimals)
}
// RequiredWidth calculates the minimum width required in order to draw the Y axis.
func (y *Y) RequiredWidth() int {
// This is an estimation only, it is possible that more labels in the
// middle will be generated and might be wider than this. Such cases are
// handled on the call to Details when the size of canvas is known.
return widestLabel([]*Label{
{Value: y.min},
{Value: y.max},
}) + yAxisWidth
}
// Details retrieves details about the Y axis required to draw it on the provided canvas.
// of the provided height. The maxWidth indicates the maximum width available
// for the Y axis and its labels. This is guaranteed to be at least what
// RequiredWidth returned.
func (y *Y) Details(cvsHeight int, maxWidth int) (*YDetails, error) {
if req := y.RequiredWidth(); maxWidth < req {
return nil, fmt.Errorf("the received maxWidth %d is smaller than the reported required width %d", maxWidth, req)
}
scale := NewYScale(y.min.Value, y.max.Value, cvsHeight, nonZeroDecimals)
// See how the labels would look like on the entire maxWidth.
maxLabelWidth := maxWidth - yAxisWidth
labels, err := yLabels(scale, maxLabelWidth)
if err != nil {
return nil, err
}
var width int
// Determine the largest label, which might be less than maxWidth.
// Such case would allow us to save more space for the line chart itself.
widest := widestLabel(labels)
if widest < maxLabelWidth {
// Save the space and recalculate the labels, since they need to be realigned.
l, err := yLabels(scale, widest)
if err != nil {
return nil, err
}
labels = l
width = widest + yAxisWidth // One for the axis itself.
} else {
width = maxWidth
}
return &YDetails{
Width: width,
Scale: scale,
Labels: labels,
}, nil
}
// widestLabel returns the width of the widest label.
func widestLabel(labels []*Label) int {
var widest int
for _, label := range labels {
if l := len(label.Value.Text()); l > widest {
widest = l
}
}
return widest
}