mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
commit
f95f01759b
@ -599,24 +599,6 @@ view flags settings model =
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, div
|
|
||||||
[ classList
|
|
||||||
[ ( "field", True )
|
|
||||||
, ( "invisible hidden", not flags.config.fullTextSearchEnabled )
|
|
||||||
]
|
|
||||||
]
|
|
||||||
[ label [] [ text "Content Search" ]
|
|
||||||
, input
|
|
||||||
[ type_ "text"
|
|
||||||
, onInput SetFulltext
|
|
||||||
, Util.Html.onKeyUpCode KeyUpMsg
|
|
||||||
, model.fulltextModel |> Maybe.withDefault "" |> value
|
|
||||||
]
|
|
||||||
[]
|
|
||||||
, span [ class "small-info" ]
|
|
||||||
[ text "Fulltext search in document contents."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
, formHeaderHelp nameIcon "Names" ToggleNameHelp
|
, formHeaderHelp nameIcon "Names" ToggleNameHelp
|
||||||
, span
|
, span
|
||||||
[ classList
|
[ classList
|
||||||
@ -632,7 +614,7 @@ view flags settings model =
|
|||||||
, text " to start searching."
|
, text " to start searching."
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "All Names" ]
|
[ label [] [ text "Names" ]
|
||||||
, input
|
, input
|
||||||
[ type_ "text"
|
[ type_ "text"
|
||||||
, onInput SetAllName
|
, onInput SetAllName
|
||||||
@ -649,24 +631,6 @@ view flags settings model =
|
|||||||
[ text "Looks in correspondents, concerned entities, item name and notes."
|
[ text "Looks in correspondents, concerned entities, item name and notes."
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
, div [ class "field" ]
|
|
||||||
[ label [] [ text "Name" ]
|
|
||||||
, input
|
|
||||||
[ type_ "text"
|
|
||||||
, onInput SetName
|
|
||||||
, Util.Html.onKeyUpCode KeyUpMsg
|
|
||||||
, model.nameModel |> Maybe.withDefault "" |> value
|
|
||||||
]
|
|
||||||
[]
|
|
||||||
, span
|
|
||||||
[ classList
|
|
||||||
[ ( "small-info", True )
|
|
||||||
, ( "invisible hidden", not model.showNameHelp )
|
|
||||||
]
|
|
||||||
]
|
|
||||||
[ text "Looks in item name only."
|
|
||||||
]
|
|
||||||
]
|
|
||||||
, formHeader (Icons.folderIcon "") "Folder"
|
, formHeader (Icons.folderIcon "") "Folder"
|
||||||
, div [ class "field" ]
|
, div [ class "field" ]
|
||||||
[ label [] [ text "Folder" ]
|
[ label [] [ text "Folder" ]
|
||||||
@ -681,6 +645,25 @@ view flags settings model =
|
|||||||
[ label [] [ text "Exclude (or)" ]
|
[ label [] [ text "Exclude (or)" ]
|
||||||
, Html.map TagExcMsg (Comp.Dropdown.view settings model.tagExclModel)
|
, Html.map TagExcMsg (Comp.Dropdown.view settings model.tagExclModel)
|
||||||
]
|
]
|
||||||
|
, formHeader (Icons.searchIcon "") "Content"
|
||||||
|
, div
|
||||||
|
[ classList
|
||||||
|
[ ( "field", True )
|
||||||
|
, ( "invisible hidden", not flags.config.fullTextSearchEnabled )
|
||||||
|
]
|
||||||
|
]
|
||||||
|
[ label [] [ text "Content Search" ]
|
||||||
|
, input
|
||||||
|
[ type_ "text"
|
||||||
|
, onInput SetFulltext
|
||||||
|
, Util.Html.onKeyUpCode KeyUpMsg
|
||||||
|
, model.fulltextModel |> Maybe.withDefault "" |> value
|
||||||
|
]
|
||||||
|
[]
|
||||||
|
, span [ class "small-info" ]
|
||||||
|
[ text "Fulltext search in document contents and notes."
|
||||||
|
]
|
||||||
|
]
|
||||||
, formHeader (Icons.correspondentIcon "")
|
, formHeader (Icons.correspondentIcon "")
|
||||||
(case getDirection model of
|
(case getDirection model of
|
||||||
Just Data.Direction.Incoming ->
|
Just Data.Direction.Incoming ->
|
||||||
|
@ -21,6 +21,8 @@ module Data.Icons exposing
|
|||||||
, organizationIcon
|
, organizationIcon
|
||||||
, person
|
, person
|
||||||
, personIcon
|
, personIcon
|
||||||
|
, search
|
||||||
|
, searchIcon
|
||||||
, tag
|
, tag
|
||||||
, tagIcon
|
, tagIcon
|
||||||
, tags
|
, tags
|
||||||
@ -31,6 +33,16 @@ import Html exposing (Html, i)
|
|||||||
import Html.Attributes exposing (class)
|
import Html.Attributes exposing (class)
|
||||||
|
|
||||||
|
|
||||||
|
search : String
|
||||||
|
search =
|
||||||
|
"search icon"
|
||||||
|
|
||||||
|
|
||||||
|
searchIcon : String -> Html msg
|
||||||
|
searchIcon classes =
|
||||||
|
i [ class (search ++ " " ++ classes) ] []
|
||||||
|
|
||||||
|
|
||||||
folder : String
|
folder : String
|
||||||
folder =
|
folder =
|
||||||
"folder outline icon"
|
"folder outline icon"
|
||||||
|
@ -13,6 +13,7 @@ module Page.Home.Data exposing
|
|||||||
|
|
||||||
import Api
|
import Api
|
||||||
import Api.Model.ItemLightList exposing (ItemLightList)
|
import Api.Model.ItemLightList exposing (ItemLightList)
|
||||||
|
import Api.Model.ItemSearch
|
||||||
import Comp.FixedDropdown
|
import Comp.FixedDropdown
|
||||||
import Comp.ItemCardList
|
import Comp.ItemCardList
|
||||||
import Comp.SearchMenu
|
import Comp.SearchMenu
|
||||||
@ -45,7 +46,7 @@ init flags =
|
|||||||
let
|
let
|
||||||
searchTypeOptions =
|
searchTypeOptions =
|
||||||
if flags.config.fullTextSearchEnabled then
|
if flags.config.fullTextSearchEnabled then
|
||||||
[ BasicSearch, ContentSearch, ContentOnlySearch ]
|
[ BasicSearch, ContentOnlySearch ]
|
||||||
|
|
||||||
else
|
else
|
||||||
[ BasicSearch ]
|
[ BasicSearch ]
|
||||||
@ -70,7 +71,7 @@ init flags =
|
|||||||
defaultSearchType : Flags -> SearchType
|
defaultSearchType : Flags -> SearchType
|
||||||
defaultSearchType flags =
|
defaultSearchType flags =
|
||||||
if flags.config.fullTextSearchEnabled then
|
if flags.config.fullTextSearchEnabled then
|
||||||
ContentSearch
|
ContentOnlySearch
|
||||||
|
|
||||||
else
|
else
|
||||||
BasicSearch
|
BasicSearch
|
||||||
@ -103,7 +104,7 @@ searchTypeString : SearchType -> String
|
|||||||
searchTypeString st =
|
searchTypeString st =
|
||||||
case st of
|
case st of
|
||||||
BasicSearch ->
|
BasicSearch ->
|
||||||
"All Names"
|
"Names"
|
||||||
|
|
||||||
ContentSearch ->
|
ContentSearch ->
|
||||||
"Contents"
|
"Contents"
|
||||||
@ -133,15 +134,19 @@ itemNav id model =
|
|||||||
|
|
||||||
doSearchCmd : Flags -> UiSettings -> Int -> Model -> Cmd Msg
|
doSearchCmd : Flags -> UiSettings -> Int -> Model -> Cmd Msg
|
||||||
doSearchCmd flags settings offset model =
|
doSearchCmd flags settings offset model =
|
||||||
case model.searchType of
|
if model.menuCollapsed then
|
||||||
BasicSearch ->
|
case model.searchType of
|
||||||
doSearchDefaultCmd flags settings offset model
|
BasicSearch ->
|
||||||
|
doSearchDefaultCmd flags settings offset model
|
||||||
|
|
||||||
ContentSearch ->
|
ContentSearch ->
|
||||||
doSearchDefaultCmd flags settings offset model
|
doSearchDefaultCmd flags settings offset model
|
||||||
|
|
||||||
ContentOnlySearch ->
|
ContentOnlySearch ->
|
||||||
doSearchIndexCmd flags settings offset model
|
doSearchIndexCmd flags settings offset model
|
||||||
|
|
||||||
|
else
|
||||||
|
doSearchDefaultCmd flags settings offset model
|
||||||
|
|
||||||
|
|
||||||
doSearchDefaultCmd : Flags -> UiSettings -> Int -> Model -> Cmd Msg
|
doSearchDefaultCmd : Flags -> UiSettings -> Int -> Model -> Cmd Msg
|
||||||
@ -181,7 +186,16 @@ doSearchIndexCmd flags settings offset model =
|
|||||||
Api.itemIndexSearch flags mask ItemSearchAddResp
|
Api.itemIndexSearch flags mask ItemSearchAddResp
|
||||||
|
|
||||||
Nothing ->
|
Nothing ->
|
||||||
Cmd.none
|
-- If there is no fulltext query, render simply the most
|
||||||
|
-- current ones
|
||||||
|
let
|
||||||
|
emptyMask =
|
||||||
|
Api.Model.ItemSearch.empty
|
||||||
|
|
||||||
|
mask =
|
||||||
|
{ emptyMask | limit = settings.itemSearchPageSize }
|
||||||
|
in
|
||||||
|
Api.itemSearch flags mask ItemSearchResp
|
||||||
|
|
||||||
|
|
||||||
resultsBelowLimit : UiSettings -> Model -> Bool
|
resultsBelowLimit : UiSettings -> Model -> Bool
|
||||||
|
@ -18,34 +18,23 @@ is visible. You can switch between them without affecting the results.
|
|||||||
|
|
||||||
{{ imgright(file="search-bar.png") }}
|
{{ imgright(file="search-bar.png") }}
|
||||||
|
|
||||||
By default, the search bar is shown. It provides a refined view of the
|
By default, the search bar is shown. It provides a shortcut to search
|
||||||
search menu. The dropdown contains different options to do a quick
|
for names and a mode for fulltext-only search. The dropdown contains
|
||||||
search.
|
the different options.
|
||||||
|
|
||||||
## *All Names* and *Contents*
|
## The *Names* option {#names}
|
||||||
|
|
||||||
These two options correspond to the same named field in the search
|
This option corresponds to the same named field in the search menu. If
|
||||||
menu. If you switch between search menu and search bar (by clicking
|
you switch between search menu and search bar (by clicking the icon on
|
||||||
the icon on the left), you'll see that they are the same fields.
|
the left), you'll see that they are the same fields. Typing in the
|
||||||
Typing in the search bar also fills the corresponding field in the
|
search bar also fills the corresponding field in the search menu (and
|
||||||
search menu (and vice versa).
|
vice versa).
|
||||||
|
|
||||||
- The *All Names* searches in the item name, item notes, names of
|
The *Names* searches in the item name, names of correspondent
|
||||||
correspondent organization and person, and names of concering person
|
organization and person, and names of concering person and equipment.
|
||||||
and equipment. It uses a simple substring search.
|
It uses a simple substring search. When searching with this option
|
||||||
- The option *Contents* searches the contents of all attachments
|
active, it simply submits the (hidden) search menu. So if the menu has
|
||||||
(documents), attachment names, the item name and item notes. It uses
|
other fields filled out, they will affect the result, too.
|
||||||
full text search. However, it does not search the names of attached
|
|
||||||
meta data.
|
|
||||||
|
|
||||||
When searching with one of these fields active, it simply submits the
|
|
||||||
(hidden) search menu. So if the menu has other fields filled out, they
|
|
||||||
will affect the result, too. Using one of these fields, the bar is
|
|
||||||
just a reduced view of the search menu.
|
|
||||||
|
|
||||||
So you can choose tags or correspondents in the search menu and
|
|
||||||
further restrict the results using full text search. The results will
|
|
||||||
be returned sorted by the item date, newest first.
|
|
||||||
|
|
||||||
If the left button in the search bar shows a little blue bubble, it
|
If the left button in the search bar shows a little blue bubble, it
|
||||||
means that there are more search fields filled out in the search menu
|
means that there are more search fields filled out in the search menu
|
||||||
@ -54,10 +43,10 @@ restricted by the search term given in the search-bar, but also by
|
|||||||
what is specified in the search menu.
|
what is specified in the search menu.
|
||||||
|
|
||||||
|
|
||||||
## *Contents Only*
|
## The *Contents Only* option {#contents-only}
|
||||||
|
|
||||||
This option has no corresponding part in the search menu. Searching
|
This option has no corresponding part in the search menu. Searching
|
||||||
with this option active, there is only a full text search done in the
|
with this option active, there is a full text search done in:
|
||||||
attachments contents, attachment names, item name and item notes.
|
attachments contents, attachment names, item name and item notes.
|
||||||
|
|
||||||
The results are not ordered by item date, but by relevance with
|
The results are not ordered by item date, but by relevance with
|
||||||
@ -80,10 +69,8 @@ looked at are marked as "new" automatically.
|
|||||||
|
|
||||||
## Names
|
## Names
|
||||||
|
|
||||||
Searches in names of certain properties. The `All Names` field is the
|
Searches in names of certain properties. The `Names` field is the same
|
||||||
same as the search in the search bar (see above).
|
as the search in the search bar ([see above](#names)).
|
||||||
|
|
||||||
The `Name` field only searches in the name property of an item.
|
|
||||||
|
|
||||||
## Folder
|
## Folder
|
||||||
|
|
||||||
@ -100,6 +87,22 @@ included in the results.
|
|||||||
When adding tags to the "Exclude" list, then an item is removed from
|
When adding tags to the "Exclude" list, then an item is removed from
|
||||||
the results if it has at least one of these tags.
|
the results if it has at least one of these tags.
|
||||||
|
|
||||||
|
## Content
|
||||||
|
|
||||||
|
You can choose tags or correspondents in the search menu and further
|
||||||
|
restrict the results using full text search using the *content* field.
|
||||||
|
|
||||||
|
{% infobubble(mode="warning", title="Please note") %}
|
||||||
|
This field is intended to be used in conjunction with other fields in
|
||||||
|
the search menu. It *may be really slow* if used alone, since first
|
||||||
|
the database query is executed and its results are furhter constrained
|
||||||
|
by fulltext search.
|
||||||
|
|
||||||
|
Use the search-bar with option *Contents Only* to do quick fulltext
|
||||||
|
searches.
|
||||||
|
{% end %}
|
||||||
|
|
||||||
|
|
||||||
## Correspondent
|
## Correspondent
|
||||||
|
|
||||||
Pick a correspondent to show only these items.
|
Pick a correspondent to show only these items.
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 6.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 59 KiB |
@ -1,3 +1,3 @@
|
|||||||
{% set len = page.components | length %}
|
{% set len = page.components | length %}
|
||||||
{% set p = page.components | slice(end=len - 1) | join(sep='/') %}
|
{% set p = page.components | slice(end=len - 1) | join(sep='/') %}
|
||||||
<img style="float:right;" src="{{ get_url(path=p ~ "/" ~ file) }}">
|
<img style="float:right; padding-left:0.25em;" src="{{ get_url(path=p ~ "/" ~ file) }}">
|
||||||
|
10
website/site/templates/shortcodes/infobubble.html
Normal file
10
website/site/templates/shortcodes/infobubble.html
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<div class="notification is-{{ mode }} is-light" style="z-index: -1">
|
||||||
|
<div class="content ">
|
||||||
|
<p class="title is-5">
|
||||||
|
{{ title }}
|
||||||
|
</p>
|
||||||
|
<div>
|
||||||
|
{{ body | markdown | safe }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
x
Reference in New Issue
Block a user