about summary refs log tree commit diff
path: root/templates/page.html
blob: 404977b23dd450b62a08220164bfbe576bd2e668 (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!-- SPDX-License-Identifier: AGPL-3.0-or-later WITH GPL-3.0-linking-exception -->
<!-- SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is> -->
<!-- SPDX-FileCopyrightText: 2021 Sumner Evans <me@sumnerevans.com> -->

<!doctype html>
<html lang="en">
  <head>
    {% match pr_number %}
    {%- when Some with (pr_number) -%}
    {% match pr_title %}
    {%- when Some with (pr_title) -%}
    <title>Nixpkgs PR #{{ pr_number }} ("{{ pr_title }}") progress</title>
    {%- else -%}
    <title>Nixpkgs PR #{{ pr_number }} progress</title>
    {%- endmatch -%}
    {%- else -%}
    <title>Nixpkgs PR progress tracker</title>
    {% endmatch %}

    <meta charset="utf-8">

    <style>
      :root {
        line-height: 1;
        font-family: sans-serif;
        text-align: center;
      }

      body > header {
        margin-bottom: 2em;
      }

      #pr {
        width: 6ch;
        box-sizing: content-box;
        text-align: center;
      }

      body > section {
        background: #c4b0b0;
        padding: 0 1em;
        margin: 1em auto;
        display: flex;
        max-width: 50ch;
      }

      body > main {
        display: flex;
        justify-content: center;
      }

      body > main > ol {
        text-align: left;
        margin: 0;
      }

      ol, ul {
        list-style: none;
        padding: 0;
      }

      ul > li {
        margin-left: 2em;
        position: relative;
      }

      ul > li:last-child {
        margin-left: 0;
        position: static;
      }

      li {
        margin: 1em 0;
        line-height: 2;
      }

      span {
        color: transparent;
        position: relative;
        width: 2em;
        height: 2em;
        display: inline-block;
        margin-right: 0.5em;
        z-index: 1;
      }

      span::after {
        content: "";
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        border: .3em solid #7A877D;
        color: white;
        text-align: center;
        line-height: 1.5em;
      }

      span.state-pending::after {
        background: #C2C9C2;
      }

      span.state-unknown::after {
        background: #C4A500;
        content: "?";
      }

      span.state-accepted::after {
        background: #00C42D;
        content: "✔";
      }

      span.state-rejected::after {
        background: #c40000;
        content: "❌︎";
      }

      ul span::before {
        content: "";
        position: absolute;
        top: 42.5%;
        bottom: 42.5%;
        right: .5em;
        left: -1em;
        display: block;
        background: #7A877D;
      }

      ul > li:last-child > span::before {
        content: none;
      }

      ol {
        position: relative;
      }

      ol::before, ul::before {
        background: #7A877D;
        content: "";
        display: block;
        left: .85em;
        top: 0.5em;
        bottom: 1em;
        width: .3em;
        position: absolute;
      }
    </style>
  </head>

  <body>
    <header>
      <h1>Nixpkgs Pull Request Tracker</h1>

      <form>
        <label for="pr">PR number: </label>
        <input id="pr" name="pr" type="text" pattern="[1-9][0-9]*"
               value="{%- match pr_number -%}
                      {%- when Some with (pr_number) -%}
                      {{- pr_number -}}
                      {%- else -%}
                      {%- endmatch -%}">
        <button type="submit">Track</button>
      </form>
    </header>

    {% match error %}
    {% when Some with (error) %}
    <section>
      <p>{{ error }}</p>
    </section>
    {% else %}
    {% endmatch %}

    {% match pr_number %}
    {%- when Some with (pr_number) -%}
    <main>
      <ol>
        <li>
          {%- if closed -%}
          <span class="state-rejected"></span>
          {%- else -%}
          <span class="state-accepted"></span>
          {%- endif -%}
          PR <a href="https://github.com/NixOS/nixpkgs/pull/{{ pr_number }}">#{{ pr_number }}</a>
          {% match pr_title %}
          {%- when Some with (pr_title) -%}
          ("{{ pr_title }}")
          {%- else -%}
          {%- endmatch -%}
          {% if closed -%}
          (closed)
          {%- endif -%}
        </li>

        {% match tree %}
        {%- when Some with (tree) -%}
        {{- tree|safe -}}
        {%- else -%}
        {%- endmatch -%}
      </ol>
    </main>
    {%- else -%}
    {% endmatch %}
    
    <footer>
      <p>By <a href="https://alyssa.is/">Alyssa Ross</a></p>

      <p><a href="{{ source_url }}">Source code</a></p>
    </footer>
  </body>
</html>