mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #1024 from eikek/enhance-search-mode
Enhance search mode to search in all items
This commit is contained in:
commit
45f6357f49
@ -220,6 +220,7 @@ object OSimpleSearch {
|
|||||||
settings.searchMode match {
|
settings.searchMode match {
|
||||||
case SearchMode.Trashed => q.withFix(_.andQuery(ItemQuery.Expr.Trashed))
|
case SearchMode.Trashed => q.withFix(_.andQuery(ItemQuery.Expr.Trashed))
|
||||||
case SearchMode.Normal => q.withFix(_.andQuery(ItemQuery.Expr.ValidItemStates))
|
case SearchMode.Normal => q.withFix(_.andQuery(ItemQuery.Expr.ValidItemStates))
|
||||||
|
case SearchMode.All => q.withFix(_.andQuery(ItemQuery.Expr.ValidItemsOrTrashed))
|
||||||
}
|
}
|
||||||
fulltextQuery match {
|
fulltextQuery match {
|
||||||
case Some(ftq) if settings.useFTS =>
|
case Some(ftq) if settings.useFTS =>
|
||||||
@ -282,6 +283,7 @@ object OSimpleSearch {
|
|||||||
settings.searchMode match {
|
settings.searchMode match {
|
||||||
case SearchMode.Trashed => q.withFix(_.andQuery(ItemQuery.Expr.Trashed))
|
case SearchMode.Trashed => q.withFix(_.andQuery(ItemQuery.Expr.Trashed))
|
||||||
case SearchMode.Normal => q.withFix(_.andQuery(ItemQuery.Expr.ValidItemStates))
|
case SearchMode.Normal => q.withFix(_.andQuery(ItemQuery.Expr.ValidItemStates))
|
||||||
|
case SearchMode.All => q.withFix(_.andQuery(ItemQuery.Expr.ValidItemsOrTrashed))
|
||||||
}
|
}
|
||||||
fulltextQuery match {
|
fulltextQuery match {
|
||||||
case Some(ftq) if settings.useFTS =>
|
case Some(ftq) if settings.useFTS =>
|
||||||
|
@ -52,6 +52,9 @@ object ItemState {
|
|||||||
val invalidStates: NonEmptyList[ItemState] =
|
val invalidStates: NonEmptyList[ItemState] =
|
||||||
NonEmptyList.of(Premature, Processing)
|
NonEmptyList.of(Premature, Processing)
|
||||||
|
|
||||||
|
val validStatesAndDeleted: NonEmptyList[ItemState] =
|
||||||
|
validStates.append(deleted)
|
||||||
|
|
||||||
def unsafe(str: String): ItemState =
|
def unsafe(str: String): ItemState =
|
||||||
fromString(str).fold(sys.error, identity)
|
fromString(str).fold(sys.error, identity)
|
||||||
|
|
||||||
|
@ -22,11 +22,13 @@ object SearchMode {
|
|||||||
|
|
||||||
final case object Normal extends SearchMode
|
final case object Normal extends SearchMode
|
||||||
final case object Trashed extends SearchMode
|
final case object Trashed extends SearchMode
|
||||||
|
final case object All extends SearchMode
|
||||||
|
|
||||||
def fromString(str: String): Either[String, SearchMode] =
|
def fromString(str: String): Either[String, SearchMode] =
|
||||||
str.toLowerCase match {
|
str.toLowerCase match {
|
||||||
case "normal" => Right(Normal)
|
case "normal" => Right(Normal)
|
||||||
case "trashed" => Right(Trashed)
|
case "trashed" => Right(Trashed)
|
||||||
|
case "all" => Right(All)
|
||||||
case _ => Left(s"Invalid search mode: $str")
|
case _ => Left(s"Invalid search mode: $str")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,8 +123,9 @@ object ItemQuery {
|
|||||||
final case class ChecksumMatch(checksum: String) extends Expr
|
final case class ChecksumMatch(checksum: String) extends Expr
|
||||||
final case class AttachId(id: String) extends Expr
|
final case class AttachId(id: String) extends Expr
|
||||||
|
|
||||||
final case object ValidItemStates extends Expr
|
final case object ValidItemStates extends Expr
|
||||||
final case object Trashed extends Expr
|
final case object Trashed extends Expr
|
||||||
|
final case object ValidItemsOrTrashed extends Expr
|
||||||
|
|
||||||
// things that can be expressed with terms above
|
// things that can be expressed with terms above
|
||||||
sealed trait MacroExpr extends Expr {
|
sealed trait MacroExpr extends Expr {
|
||||||
|
@ -79,6 +79,8 @@ object ExprUtil {
|
|||||||
expr
|
expr
|
||||||
case Trashed =>
|
case Trashed =>
|
||||||
expr
|
expr
|
||||||
|
case ValidItemsOrTrashed =>
|
||||||
|
expr
|
||||||
}
|
}
|
||||||
|
|
||||||
private def spliceAnd(nodes: Nel[Expr]): Nel[Expr] =
|
private def spliceAnd(nodes: Nel[Expr]): Nel[Expr] =
|
||||||
|
@ -4228,6 +4228,7 @@ components:
|
|||||||
enum:
|
enum:
|
||||||
- normal
|
- normal
|
||||||
- trashed
|
- trashed
|
||||||
|
- all
|
||||||
default: normal
|
default: normal
|
||||||
description: |
|
description: |
|
||||||
Specify whether the search query should apply to
|
Specify whether the search query should apply to
|
||||||
@ -5990,10 +5991,12 @@ components:
|
|||||||
searchMode:
|
searchMode:
|
||||||
name: searchMode
|
name: searchMode
|
||||||
in: query
|
in: query
|
||||||
description: Whether to search in soft-deleted items only.
|
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
format: searchmode
|
format: searchmode
|
||||||
|
description: |
|
||||||
|
Specify whether the search query should apply to soft-deleted
|
||||||
|
items or not.
|
||||||
name:
|
name:
|
||||||
name: name
|
name: name
|
||||||
in: path
|
in: path
|
||||||
|
@ -129,6 +129,9 @@ object ItemQueryGenerator {
|
|||||||
case Expr.Trashed =>
|
case Expr.Trashed =>
|
||||||
tables.item.state === ItemState.Deleted
|
tables.item.state === ItemState.Deleted
|
||||||
|
|
||||||
|
case Expr.ValidItemsOrTrashed =>
|
||||||
|
tables.item.state.in(ItemState.validStatesAndDeleted)
|
||||||
|
|
||||||
case Expr.TagIdsMatch(op, tags) =>
|
case Expr.TagIdsMatch(op, tags) =>
|
||||||
val ids = tags.toList.flatMap(s => Ident.fromString(s).toOption)
|
val ids = tags.toList.flatMap(s => Ident.fromString(s).toOption)
|
||||||
Nel
|
Nel
|
||||||
|
Loading…
x
Reference in New Issue
Block a user