Skip to content

Commit

Permalink
Improve :sort, sortsub, :sort examples and the railroad diagram (#8396)
Browse files Browse the repository at this point in the history
* Improve :sort, sortsub, :sort examples and the railroad diagram

* Update Sort Filter Run Prefix (Examples).tid

undo changes.
  • Loading branch information
pmario authored Jul 17, 2024
1 parent bfd0619 commit 67e7fa4
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 18 deletions.
24 changes: 14 additions & 10 deletions editions/tw5.com/tiddlers/filters/sortsub Operator.tid
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
caption: sortsub
created: 20200424160155182
modified: 20210522162521222
modified: 20240717115735166
op-input: a [[selection of titles|Title Selection]]
op-neg-output: the input, sorted into reverse order by the result of evaluating subfilter <<.param S>>
op-output: the input, sorted into ascending order by the result of evaluating subfilter <<.param S>>
Expand All @@ -15,19 +15,23 @@ type: text/vnd.tiddlywiki

Each item in the list of input titles is passed to the subfilter in turn. The subfilter transforms the input titles into the form needed for sorting. For example, the subfilter `[length[]]` transforms each input title in the number representing its length, and thus sorts the input titles according to their length.

Note that within the subfilter, the "currentTiddler" variable is set to the title of the tiddler being processed. This permits subfilters like `[{!!value}divide{!!cost}]` to be used for computation.
Note that within the subfilter <<.place S>>, the <<.var currentTiddler>> variable is set to the title of the tiddler being processed. This permits subfilters like `[{!!value}divide{!!cost}]` to be used for computation.

The value of currentTiddler outside the subfilter is available in the variable "..currentTiddler". <<.from-version "5.2.0">>
The value of <<.var currentTiddler>> outside the subfilter is available in the variable <<.var ..currentTiddler>>. <<.from-version "5.2.0">>

The suffix <<.place T>> determines how the items are compared and can be:

* "string" (the default)
* "number" - invalid numbers are interpreted as zero
* "integer" - invalid integers are interpreted as zero
* "date" - invalid dates are interpreted as 1st January 1970
* "version" - invalid versions are interpreted as "v0.0.0"
* "alphanumeric" - treat items as alphanumerics <<.from-version "5.2.0">>
* ''string'' (the default)
* ''number'' - invalid numbers are interpreted as zero
* ''integer'' - invalid integers are interpreted as zero
* ''date'' - invalid dates are interpreted as 1st January 1970
* ''version'' - invalid versions are interpreted as "v0.0.0"
* ''alphanumeric'' - treat items as alphanumerics <<.from-version "5.2.0">>

Note that subfilters should return the same number of items that they are passed. Any missing entries will be treated as zero or the empty string. In particular, when retrieving the value of a field with the [[get Operator]] it is helpful to guard against a missing field value using the [[else Operator]]. For example `[get[myfield]else[default-value]...`.
<<.tip """Note that subfilters <<.place S>> ''should return the same number of items that they are passed''. In particular, when retrieving the value of a field with the <<.olink get>> operator it is helpful to guard against a missing field value using the <<.olink else>> operator. For example `...[get[myfield]else[default-value]]`.<br><br>

Any ''missing'' entries will be treated as ''zero'' or the ''empty string''.""">>

Also see: [[Sort Filter Run Prefix]]

<<.operator-examples "sortsub">>
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ Sort as text with case sensitivity:
<<.operator-example 7 "Apple Banana Orange Grapefruit guava DragonFruit Kiwi apple orange :sort:string:casesensitive[{!!title}]">>

Sort as text ignoring case:
<<.operator-example 8 "Apple Banana Orange Grapefruit guava DragonFruit Kiwi apple orange :sort:string:caseinsensitive[{!!title}]">>
<<.operator-example 8 "Apple Banana Orange Grapefruit guava DragonFruit Kiwi apple orange :sort:string:caseinsensitive[{!!title}]">>
Original file line number Diff line number Diff line change
@@ -1,39 +1,59 @@
created: 20210428083929749
from-version: 5.2.0
modified: 20240312203002082
modified: 20240717120111427
rp-input: the filter output of all previous runs so far
rp-output: output titles replace the output of previous filter runs
rp-purpose: sort the input titles by the result of evaluating this filter run for each item
rp-suffix: the <<.op :sort>> filter run prefix uses a rich suffix, see below for details
rp-suffix: the :sort filter run prefix uses a rich suffix, see below for details
rp-suffix-name: S
tags: [[Named Filter Run Prefix]]
title: Sort Filter Run Prefix
type: text/vnd.tiddlywiki

<$railroad text="""
\start none
\end none
( ( ":sort" )
( : ":string" | ":alphanumeric" | ":number" | ":integer" | ":version" | ":date" )
( : ":casesensitive" /"required for string and alphanumeric"/ | ":caseinsensitive" /"required for string and alphanumeric"/ | ":reverse" /"optional"/ | - ) | - )
( ":sort" )
( ":" )
( : "string" | "alphanumeric" | "number" | "integer" | "version" | "date" )
( ":" )
{
(
(
( : "caseinsensitive" /"required for string and alphanumeric"/ | "casesensitive" /"required for string and alphanumeric"/)
| "reverse" /"optional"/
)
)
+","
}
[[run|"Filter Run"]]
"""/>

Each input title from previous runs is passed to this run in turn. The filter run transforms the input titles into the form needed for sorting. For example, the filter run `[length[]]` transforms each input title in to the number representing its length, and thus sorts the input titles according to their length.

Note that within the filter run, the <<.var currentTiddler>> variable is set to the title of the tiddler being processed. This permits filter runs like `:sort:number[{!!value}divide{!!cost}]` to be used for computation. The value of <<.var currentTiddler>> outside the run is available in the variable <<.var "..currentTiddler">>.

The `:sort` filter run prefix uses an extended syntax that allows for multiple suffixes, some of which are required:
The `:sort` <<.place S>> filter run prefix uses an extended syntax that allows for multiple suffixes, some of which are required:

```
:sort:<type>:<flaglist>[...filter run...]

```

* ''type'': Required. Determines how the items are compared and can be any of: ''string'', ''alphanumeric'', ''number'', ''integer'', ''version'' or ''date''.

* ''flaglist'': comma separated list of the following flags:

** ''casesensitive'' or ''caseinsensitive'' (required for types `string` and `alphanumeric`).
*** defaults to: //caseinsensitive// if the flag is missing.
*** for clarity this parameter should be always defined.

** ''reverse'' to invert the order of the filter run (optional).

Note that filter runs used with the `:sort` prefix should return the same number of items that they are passed. Any missing entries will be treated as zero or the empty string. In particular, when retrieving the value of a field with the [[get Operator]] it is helpful to guard against a missing field value using the [[else Operator]]. For example `[get[myfield]else[default-value]...`.
<<.tip """Note that filter runs used with the `:sort` prefix ''should return the same number of items that they are passed''. In particular, when retrieving the value of a field with the [[get Operator]] it is helpful to guard against a missing field value using the [[else Operator]]. For example `...[get[myfield]else[default-value]]`.<br><br>

Any ''missing'' entries will be treated as ''zero'' or the ''empty string''.""">>

Also see: <<.olink sortsub>> Operator

[[Examples|Sort Filter Run Prefix (Examples)]]

0 comments on commit 67e7fa4

Please sign in to comment.