summaryrefslogtreecommitdiffstats
path: root/src/cheat.sh
blob: 84bf6ea50c6d889f4056e1249ce1e456bb4e97b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/env bash

cheat::find() {
   for path in $(echo "$NAVI_PATH" | tr ':' '\n'); do
      find -L "${path/#\~/$HOME}" -iname '*.cheat'
   done
}

cheat::export_cache() {
   if [ -z "${NAVI_CACHE:-}" ]; then
      export NAVI_CACHE="$*"
   fi
}

cheat::join_lines() {
   if command_exists perl; then
      perl -0pe 's/\\\n *//g'
   else
      tr '\n' "$ESCAPE_CHAR" \
         | sed -E 's/\\'$(printf "$ESCAPE_CHAR")' *//g' \
         | tr "$ESCAPE_CHAR" '\n'
   fi
}

cheat::read_all() {
   for cheat in $(cheat::find); do
      echo
      cat "$cheat"
      echo
   done
}

cheat::memoized_read_all() {
   if [ -n "${NAVI_CACHE:-}" ]; then
      echo "$NAVI_CACHE"
      return
   fi

   local -r cheats="$(cheat::read_all)"
   echo "$cheats" \
      | cheat::join_lines
}

cheat::prettify() {
   local -r print="$(dict::get "$OPTIONS" print)"

   local -r comment_width="$(style::comment_width)"
   local -r snippet_width="$(style::snippet_width)"
   local -r tag_width="$(style::tag_width)"

   local -r comment_color="$(style::comment_color)"
   local -r snippet_color="$(style::snippet_color)"
   local -r tag_color="$(style::tag_color)"

   local -r columns="$(ui::width || echo 0)"

   awk \
      -v COMMENT_COLOR=$comment_color \
      -v SNIPPET_COLOR=$snippet_color \
      -v TAG_COLOR=$tag_color \
      -v COMMENT_MAX=$((columns * comment_width / 100)) \
      -v SNIPPET_MAX=$((columns * snippet_width / 100)) \
      -v TAG_MAX=$((columns * tag_width / 100)) \
      -v SEP="$ESCAPE_CHAR_3" \
      'function color(c,s,max) {
           if (max > 0 && length(s) > max) {
              s=substr(s, 0, max)
              s=s"…"
           }
           printf("\033[%dm%s", c, s)
        }

      /^%/ { tags=substr($0, 3); next }
      /^#/ { comment=substr($0, 3); next }
      /^\$/ { next }
   BEGIN { ORS="" }
   NF {
    print color(COMMENT_COLOR, comment, COMMENT_MAX)
    print color(0, SEP, 0)
    print color(SNIPPET_COLOR, $0, SNIPPET_MAX)
    print color(0, SEP, 0)
    print color(TAG_COLOR, tags, TAG_MAX);
    print color(0, SEP, 0)
    print color(DEFAULT, "\033", 0);
    print "\n"
    next
   }'
}

cheat::until_percentage() {
   awk 'BEGIN { count=0; }

      /^%/ { if (count >= 1) exit;
             else { count++; print $0; next; } }
   { print $0 }'
}

cheat::from_tags() {
   local -r cheats="$1"
   local -r tags="$2"

   echo "$cheats" \
      | grep "% ${tags}" -A99999 \
      | cheat::until_percentage
}

cheat::from_selection() {
   local -r cheats="$1"
   local -r selection="$2"

   local -r tags="$(dict::get "$selection" tags)"

   cheat::from_tags "$cheats" "$tags"
}