generated from replicatedhq/krew-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add suggestions in filter textfield (#95)
* suggestions in filter * Renamed fields * Refactored string splitting * Added help text on suggestions * Updated README.md --------- Co-authored-by: Kalle Fagerberg <kalle.fagerberg@riskident.com>
- Loading branch information
Showing
8 changed files
with
222 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// SPDX-FileCopyrightText: 2024 Kalle Fagerberg | ||
// | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the | ||
// Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along | ||
// with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package util | ||
|
||
import "strings" | ||
|
||
func SplitsFromStart(s string, sep byte) []string { | ||
if s == "" { | ||
return nil | ||
} | ||
|
||
var indexFromStart int | ||
var result []string | ||
|
||
for { | ||
index := strings.IndexByte(s[indexFromStart:], sep) | ||
if index == -1 { | ||
break | ||
} | ||
|
||
indexFromStart += index | ||
result = append(result, s[:indexFromStart]) | ||
indexFromStart++ // skip over the separator | ||
} | ||
|
||
result = append(result, s) | ||
return result | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// SPDX-FileCopyrightText: 2024 Kalle Fagerberg | ||
// | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the | ||
// Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along | ||
// with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package util | ||
|
||
import ( | ||
"slices" | ||
"testing" | ||
) | ||
|
||
func TestSplitsFromStart(t *testing.T) { | ||
const sep = '-' | ||
tests := []struct { | ||
name string | ||
s string | ||
want []string | ||
}{ | ||
{ | ||
name: "empty", | ||
s: "", | ||
want: nil, | ||
}, | ||
{ | ||
name: "1 split", | ||
s: "foo", | ||
want: []string{"foo"}, | ||
}, | ||
{ | ||
name: "2 splits", | ||
s: "foo-bar", | ||
want: []string{"foo", "foo-bar"}, | ||
}, | ||
{ | ||
name: "deployment pod name", | ||
s: "thing-operator-675ffd4bbb-jfsfn", | ||
want: []string{"thing", "thing-operator", "thing-operator-675ffd4bbb", "thing-operator-675ffd4bbb-jfsfn"}, | ||
}, | ||
} | ||
|
||
for _, tc := range tests { | ||
t.Run(tc.name, func(t *testing.T) { | ||
got := SplitsFromStart(tc.s, sep) | ||
if !slices.Equal(tc.want, got) { | ||
t.Errorf("wrong result\ns: %q\nsep: %q\nwant: %v\ngot: %v", tc.s, sep, tc.want, got) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// SPDX-FileCopyrightText: 2023 Kalle Fagerberg | ||
// | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the | ||
// Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along | ||
// with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package table | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func Test(t *testing.T) { | ||
} |