feat: show metadata in grid
Alan Pearce alan@alanpearce.eu
Sat, 04 May 2024 15:32:41 +0200
3 files changed, 51 insertions(+), 14 deletions(-)
M frontend/static/style.css → frontend/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.gotmpl → frontend/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.go → internal/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"` }