all repos — searchix @ b682ed936d8185e91331e9f66fc0e13072f8b545

Search engine for NixOS, nix-darwin, home-manager and NUR users

feat: show metadata in grid
Alan Pearce alan@alanpearce.eu
Sat, 04 May 2024 15:32:41 +0200
commit

b682ed936d8185e91331e9f66fc0e13072f8b545

parent

5b9e67fd5129dec75169a1a070c70f910dff6da2

M frontend/static/style.cssfrontend/static/style.css
@@ -5,3 +5,17 @@ input[type="search"] {
   width: 100%;
 }
+
+dt::after {
+  content: ": ";
+}
+
+dd {
+  margin-inline-start: 1rem;
+}
+
+dl {
+  display: grid;
+  grid-template-rows: 100%;
+  grid-template-columns: max-content 1fr;
+}
M frontend/templates/blocks/options.gotmplfrontend/templates/blocks/options.gotmpl
@@ -1,13 +1,36 @@ {{ define "results" }}
-  {{ range $opt, $data := .Results }}
-  <details>
-    <summary>
-      {{ $opt }}
-    </summary>
-    <p>
-      {{ $data.Description }}
-    </p>
-  </details>
-  {{ end }}
-</div>
+  {{- range $opt, $data := .Results }}
+    <details>
+      <summary>
+        {{ $opt }}
+      </summary>
+      <p>
+        {{ $data.Description }}
+      </p>
+      <dl>
+        {{- with $data.Type }}
+          <dt>Type</dt>
+          <dd>{{ . }}</dd>
+        {{- end }}
+        {{- with $data.Default }}
+          <dt>Default</dt>
+          <dd><code>{{ .Text }}</code></dd>
+        {{- end }}
+        {{- with $data.Example }}
+          {{- if .Text }}
+            <dt>Example</dt>
+            <dd><code>{{ .Text }}</code></dd>
+          {{- end }}
+        {{- end }}
+        {{- with $data.Declarations }}
+          <dt>Declared</dt>
+          {{- range . }}
+            <dd>
+              <a href="file://{{ . }}">{{ . }}</a>
+            </dd>
+          {{- end }}
+        {{- end }}
+      </dl>
+    </details>
+  {{- end }}
 {{ end }}
M internal/server/option.gointernal/server/option.go
@@ -1,8 +1,8 @@ package server
 
 type NixValue struct {
-	Kind  string `json:"_type"`
-	Value string `json:"text"`
+	Type string `json:"_type"`
+	Text string `json:"text"`
 }
 
 type Option struct {
@@ -11,5 +11,5 @@ Default      NixValue 	Description  string
 	Example      NixValue
 	ReadOnly     bool
-	Kind         string `json:"type"`
+	Type         string `json:"type"`
 }