Skip to content

Commit fae64a2

Browse files
authored
Pluralize vCPU (#988)
* Remove sorting of SKUs, they are returned in order * Pluralize vCPU * Fix typo * More pluralization * Filter out PS-DEV from autocomplete for branch cluster sizes
1 parent ffc23fb commit fae64a2

File tree

2 files changed

+4
-20
lines changed

2 files changed

+4
-20
lines changed

internal/cmd/size/cluster.go

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
package size
22

33
import (
4-
"cmp"
54
"encoding/json"
65
"fmt"
7-
"slices"
86

97
"github.com/planetscale/cli/internal/cmdutil"
108
"github.com/planetscale/planetscale-go/planetscale"
@@ -49,10 +47,6 @@ func ListCmd(ch *cmdutil.Helper) *cobra.Command {
4947
return err
5048
}
5149

52-
slices.SortFunc(clusterSKUs, func(a, b *planetscale.ClusterSKU) int {
53-
return cmp.Compare(a.SortOrder, b.SortOrder)
54-
})
55-
5650
return ch.Printer.PrintResource(toClusterSKUs(clusterSKUs))
5751
},
5852
}
@@ -90,7 +84,7 @@ func toClusterSKU(clusterSKU *planetscale.ClusterSKU) *ClusterSKU {
9084
storage = cmdutil.FormatPartsGB(*clusterSKU.Storage).IntString()
9185
}
9286

93-
cpu := fmt.Sprintf("%s vCPU", clusterSKU.CPU)
87+
cpu := fmt.Sprintf("%s vCPUs", clusterSKU.CPU)
9488
memory := cmdutil.FormatParts(clusterSKU.Memory).IntString()
9589
rate := ""
9690
if *clusterSKU.Rate > 0 {

internal/cmdutil/completions.go

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package cmdutil
22

33
import (
4-
"cmp"
54
"fmt"
6-
"slices"
75
"strings"
86

97
ps "github.com/planetscale/planetscale-go/planetscale"
@@ -37,10 +35,6 @@ func ClusterSizesCompletionFunc(ch *Helper, cmd *cobra.Command, args []string, t
3735
return nil, cobra.ShellCompDirectiveNoFileComp
3836
}
3937

40-
slices.SortFunc(clusterSKUs, func(a, b *ps.ClusterSKU) int {
41-
return cmp.Compare(a.SortOrder, b.SortOrder)
42-
})
43-
4438
clusterSizes := make([]cobra.Completion, 0)
4539
for _, c := range clusterSKUs {
4640
if c.Enabled && strings.Contains(c.Name, toComplete) && c.Rate != nil && c.Name != "PS_DEV" {
@@ -51,7 +45,7 @@ func ClusterSizesCompletionFunc(ch *Helper, cmd *cobra.Command, args []string, t
5145
}
5246

5347
if c.CPU != "" {
54-
description.WriteString(fmt.Sprintf(" · %s vCPU", c.CPU))
48+
description.WriteString(fmt.Sprintf(" · %s vCPUs", c.CPU))
5549
}
5650

5751
if c.Memory > 0 {
@@ -97,21 +91,17 @@ func BranchClusterSizesCompletionFunc(ch *Helper, cmd *cobra.Command, args []str
9791
return nil, cobra.ShellCompDirectiveNoFileComp
9892
}
9993

100-
slices.SortFunc(clusterSKUs, func(a, b *ps.ClusterSKU) int {
101-
return cmp.Compare(a.SortOrder, b.SortOrder)
102-
})
103-
10494
clusterSizes := make([]cobra.Completion, 0)
10595
for _, c := range clusterSKUs {
106-
if c.Enabled && strings.Contains(c.Name, toComplete) && c.Rate != nil {
96+
if c.Enabled && strings.Contains(c.Name, toComplete) && c.Rate != nil && c.Name != "PS_DEV" {
10797
var description strings.Builder
10898
description.WriteString(c.DisplayName)
10999
if *c.Rate > 0 {
110100
description.WriteString(fmt.Sprintf(" · $%d/month", *c.Rate))
111101
}
112102

113103
if c.CPU != "" {
114-
description.WriteString(fmt.Sprintf(" · %s vCPU", c.CPU))
104+
description.WriteString(fmt.Sprintf(" · %s vCPUs", c.CPU))
115105
}
116106

117107
if c.Memory > 0 {

0 commit comments

Comments
 (0)