aboutsummaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@protonmail.ch>2022-06-12 03:24:14 +0530
committerVidhu Kant Sharma <vidhukant@protonmail.ch>2022-06-12 03:24:14 +0530
commit83b9bfe6532579198378ee767db0852781050ff3 (patch)
tree8892abf773ee6bcda3f5dda5bbaea3161a906785 /ui
first commit
Diffstat (limited to 'ui')
-rw-r--r--ui/search.go68
1 files changed, 68 insertions, 0 deletions
diff --git a/ui/search.go b/ui/search.go
new file mode 100644
index 0000000..b884faf
--- /dev/null
+++ b/ui/search.go
@@ -0,0 +1,68 @@
+/*
+macli - Unofficial CLI-Based MyAnimeList Client
+Copyright © 2022 Vidhu Kant Sharma <vidhukant@vidhukant.xyz>
+
+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 ui
+
+import (
+ "strings"
+ "log"
+ p "github.com/manifoldco/promptui"
+ mal "github.com/MikunoNaka/macli/mal"
+)
+
+// only search animes probably only now
+func SearchAndGetID(label, searchString string) int {
+ // TODO: load promptLength from config
+ promptLength := 5
+
+ animes := mal.SearchAnime(searchString)
+
+ template := &p.SelectTemplates {
+ Label: "{{ . }}?",
+ Active: "{{ .Title | magenta }}",
+ Inactive: "{{ .Title }}",
+ Selected: "{{ .Title }}",
+ Details: `
+--------- {{ .Title }} ----------
+More Details To Be Added Later
+`,
+ }
+
+ // returns true if input == anime title
+ searcher := func(input string, index int) bool {
+ title := strings.Replace(strings.ToLower(animes[index].Title), " ", "", -1)
+ input = strings.Replace(strings.ToLower(input), " ", "", -1)
+ return strings.Contains(title, title)
+ }
+
+ prompt := p.Select {
+ Label: label,
+ Items: animes,
+ Templates: template,
+ Searcher: searcher,
+ Size: promptLength,
+ }
+
+ animeIndex, _, err := prompt.Run()
+ if err != nil {
+ log.Println(err)
+ return 0
+ }
+
+ return animes[animeIndex].Id
+}