From 051519bc73622fa675365a7f3a659136696d62d2 Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Wed, 22 Jan 2020 21:04:09 +0100 Subject: [PATCH] Docs: Update hugo and docsy --- docs/assets/scss/_variables_project.scss | 1 + docs/config.toml | 4 ++++ .../en/docs/Getting started/writing_queries.md | 16 ++++++++++++++++ docs/layouts/partials/head.html | 8 +++++++- docs/themes/docsy | 2 +- netlify.toml | 2 +- 6 files changed, 30 insertions(+), 3 deletions(-) diff --git a/docs/assets/scss/_variables_project.scss b/docs/assets/scss/_variables_project.scss index a3f1bd0f..2ec1ccb8 100644 --- a/docs/assets/scss/_variables_project.scss +++ b/docs/assets/scss/_variables_project.scss @@ -4,5 +4,6 @@ $enable-rounded: false; $enable-shadows: false; $secondary: #4CAF50; +$navbar-padding-x: 1rem; $code-color: #dc3545; \ No newline at end of file diff --git a/docs/config.toml b/docs/config.toml index 996a4bd2..ae756045 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -41,6 +41,10 @@ hrefTargetBlank = false angledQuotes = false latexDashes = true +[markup] +# todo migrate to goldmark (will need configuration for backwards-compatibility https://gohugo.io/getting-started/configuration-markup/) +defaultMarkdownHandler = "blackfriday" + # Image processing configuration. [imaging] resampleFilter = "CatmullRom" diff --git a/docs/content/en/docs/Getting started/writing_queries.md b/docs/content/en/docs/Getting started/writing_queries.md index 3491c347..8ca207fe 100644 --- a/docs/content/en/docs/Getting started/writing_queries.md +++ b/docs/content/en/docs/Getting started/writing_queries.md @@ -71,6 +71,22 @@ If an entry with the provided id exists, it will be sent to the stream. Otherwis more than one entry (which is impossible in this case), an error will be added instead. +### Mapping + +Before calling `watch` or `get` (or the single variants), you can use `map` to transform +the result. +```dart +Stream> contentWithLongTitles() { + final query = select(todos) + ..where((t) => t.title.length.isBiggerOrEqualValue(16)); + + return query + .map((row) => row.content) + .watch(); +} +``` + + If you need more complex queries with joins or custom columns, see [this site]({{< relref "../Advanced Features/joins.md" >}}). ## Updates and deletes diff --git a/docs/layouts/partials/head.html b/docs/layouts/partials/head.html index 4401caf4..d2761fb5 100644 --- a/docs/layouts/partials/head.html +++ b/docs/layouts/partials/head.html @@ -13,7 +13,7 @@ {{ end -}} {{ partialCached "favicons.html" . }} -{{ if .IsHome }}{{ .Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }} +{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }} {{ if .Description }} @@ -33,4 +33,10 @@ src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"> +{{ if .Site.Params.offlineSearch }} + +{{end}} {{ partial "hooks/head-end.html" . }} diff --git a/docs/themes/docsy b/docs/themes/docsy index 97488e0b..37a64526 160000 --- a/docs/themes/docsy +++ b/docs/themes/docsy @@ -1 +1 @@ -Subproject commit 97488e0b9b63fd028fc1ae21e8a18a997439b5cd +Subproject commit 37a6452651d05cdba2634dc83cf812491d84d61f diff --git a/netlify.toml b/netlify.toml index 85e0bd62..2a426bbe 100644 --- a/netlify.toml +++ b/netlify.toml @@ -12,4 +12,4 @@ force = true [context.production] - environment = { HUGO_ENV="production" } \ No newline at end of file + environment = { HUGO_ENV="production", HUGO_VERSION="0.62.2" } \ No newline at end of file