aboutsummaryrefslogtreecommitdiffstats
path: root/template.go
blob: 7aee61a4c64061fa9efd3cb41562899f38774315 (plain) (blame)
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
package gopherproxy

var tpltext = `<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>{{ .Title }}</title>
    <link rel="stylesheet" href="{{ .Assets.Style }}" />
    <style>
      @font-face {
        font-family: 'Iosevka Term SS03';
        font-style:  normal;
        font-weight: normal;
        src: url('{{ .Assets.FontW2 }}') format('woff2'),
            url('{{ .Assets.FontW }}')  format('woff');
      }
    </style>
  </head>
  <body class="{{ if not .Lines }}is-plain{{ end }}">
    <header class="header header-base">
      <div class="location">
        {{- $href     := "" -}}
        {{- $uriParts := split .URI "/" -}}
        {{- $uriLast  := $uriParts | last -}}
        {{- $uriParts  = $uriParts | pop -}}
        {{- if eq $uriLast "" -}}
          {{- $uriLast  = $uriParts | last -}}
          {{- $uriParts = $uriParts | pop -}}
        {{- end -}}
        {{- if eq (len $uriParts) 1 -}}
          {{- $uriLast  = $uriParts | last -}}
          {{- $uriParts = $uriParts | pop -}}
        {{- end -}}

        <button class="location__prefix">gopher://</button><button class="location__prefix location__prefix--mobile">://</button>
        {{- range $i, $part := $uriParts -}}
          {{- if ne $i 1 -}}
            {{- $href = printf "%s/%s" $href . -}}
            {{- if ne $i 0 -}}
              <span class="location__slash">/</span>
            {{- end -}}
            <a href="{{ $href }}" class="location__uripart">{{ . }}</a>
          {{- else -}}
            {{- $href = printf "%s/1" $href -}}
            {{- $part = $part | trimLeftChar -}}
            {{- if not (eq $part "") -}}
              {{- $href = printf "%s/%s" $href $part -}}
              <span class="location__slash">/</span><a href="{{ $href }}" class="location__uripart">{{ $part }}</a>
            {{- end -}}
          {{- end -}}
        {{- end -}}
        {{- if ne (len $uriParts) 0 -}}
          <span class="location__slash">/</span>
        {{- end -}}
        <span class="location__uripart">{{ $uriLast -}}</span>
      </div>
      <div class="actions">
        {{- if and (not .Lines) (not .Error) -}}
          <div class="action"><a href="/{{ .URI | replace "^(.*?)/0" "$1/9" }}">View raw</a></div>
        {{- end -}}
        <div class="action"><button class="settings-btn">Settings</button></div>
      </div>
    </header>
    <main class="wrap">
      <pre class="content{{ if .Lines }} content--has-type-annotations{{ end }}">
        {{- if .Lines -}}
          {{- $content := "" -}}
          {{- range .Lines -}}
            {{- if ne $content "" -}}
              {{- $content = printf "%s\n" $content -}}
            {{- end -}}
            {{- if .Link -}}
              {{- $content = printf "%s%s" $content (printf "<span class=\"type-annotation\">%s  </span><a class=\"link link--%s\" href=\"%s\">%s</a>" .Type .Type .Link (.Text | HTMLEscape)) -}}
            {{- else -}}
              {{- $content = printf "%s%s" $content (printf "<span class=\"type-annotation\">     </span>%s" (.Text | HTMLEscape)) -}}
            {{- end -}}
          {{- end -}}
          {{- $content | safeHtml -}}
        {{- else -}}
          {{- .RawText -}}
        {{- end -}}
      </pre>
    </main>
    <aside class="modal modal--settings">
      <div class="modal__content">
        <header class="modal__head header-base">
          <h1 class="modal__title">Settings</h1>
          <button class="modal__close-btn">Close</button>
        </header>
        <div class="setting setting--word-wrap">
          <strong class="setting__label">Wrap wide content</strong>
          <button class="setting__value">[N/A]</button>
        </div>
        <div class="setting setting--image-previews">
          <strong class="setting__label">Image thumbnails</strong>
          <button class="setting__value">[N/A]</button>
        </div>
        <div class="setting setting--clickable-plain-links">
          <strong class="setting__label">Clickable links in text files</strong>
          <button class="setting__value">[N/A]</button>
        </div>
      </div>
    </aside>
    <script src="{{ .Assets.JS }}"></script>
  </body>
</html>`