mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Allow tag ids or tag names when replacing tags
This commit is contained in:
parent
90f19aec43
commit
fcef52856a
@ -24,7 +24,7 @@ import org.log4s.getLogger
|
|||||||
trait OItem[F[_]] {
|
trait OItem[F[_]] {
|
||||||
|
|
||||||
/** Sets the given tags (removing all existing ones). */
|
/** Sets the given tags (removing all existing ones). */
|
||||||
def setTags(item: Ident, tagIds: List[Ident], collective: Ident): F[UpdateResult]
|
def setTags(item: Ident, tagIds: List[String], collective: Ident): F[UpdateResult]
|
||||||
|
|
||||||
/** Sets tags for multiple items. The tags of the items will be
|
/** Sets tags for multiple items. The tags of the items will be
|
||||||
* replaced with the given ones. Same as `setTags` but for multiple
|
* replaced with the given ones. Same as `setTags` but for multiple
|
||||||
@ -32,7 +32,7 @@ trait OItem[F[_]] {
|
|||||||
*/
|
*/
|
||||||
def setTagsMultipleItems(
|
def setTagsMultipleItems(
|
||||||
items: NonEmptyList[Ident],
|
items: NonEmptyList[Ident],
|
||||||
tags: List[Ident],
|
tags: List[String],
|
||||||
collective: Ident
|
collective: Ident
|
||||||
): F[UpdateResult]
|
): F[UpdateResult]
|
||||||
|
|
||||||
@ -304,19 +304,20 @@ object OItem {
|
|||||||
|
|
||||||
def setTags(
|
def setTags(
|
||||||
item: Ident,
|
item: Ident,
|
||||||
tagIds: List[Ident],
|
tagIds: List[String],
|
||||||
collective: Ident
|
collective: Ident
|
||||||
): F[UpdateResult] =
|
): F[UpdateResult] =
|
||||||
setTagsMultipleItems(NonEmptyList.of(item), tagIds, collective)
|
setTagsMultipleItems(NonEmptyList.of(item), tagIds, collective)
|
||||||
|
|
||||||
def setTagsMultipleItems(
|
def setTagsMultipleItems(
|
||||||
items: NonEmptyList[Ident],
|
items: NonEmptyList[Ident],
|
||||||
tags: List[Ident],
|
tags: List[String],
|
||||||
collective: Ident
|
collective: Ident
|
||||||
): F[UpdateResult] =
|
): F[UpdateResult] =
|
||||||
UpdateResult.fromUpdate(store.transact(for {
|
UpdateResult.fromUpdate(store.transact(for {
|
||||||
k <- RTagItem.deleteItemTags(items, collective)
|
k <- RTagItem.deleteItemTags(items, collective)
|
||||||
res <- items.traverse(i => RTagItem.setAllTags(i, tags))
|
rtags <- RTag.findAllByNameOrId(tags, collective)
|
||||||
|
res <- items.traverse(i => RTagItem.setAllTags(i, rtags.map(_.tagId)))
|
||||||
n = res.fold
|
n = res.fold
|
||||||
} yield k + n))
|
} yield k + n))
|
||||||
|
|
||||||
|
@ -1628,6 +1628,8 @@ paths:
|
|||||||
Update the tags associated to an item. This will remove all
|
Update the tags associated to an item. This will remove all
|
||||||
existing ones and sets the given tags, such that after this
|
existing ones and sets the given tags, such that after this
|
||||||
returns, the item has exactly the tags as given.
|
returns, the item has exactly the tags as given.
|
||||||
|
|
||||||
|
Tags may be specified as names or ids.
|
||||||
security:
|
security:
|
||||||
- authTokenHeader: []
|
- authTokenHeader: []
|
||||||
parameters:
|
parameters:
|
||||||
@ -1636,7 +1638,7 @@ paths:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: "#/components/schemas/ReferenceList"
|
$ref: "#/components/schemas/StringList"
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: Ok
|
description: Ok
|
||||||
|
@ -59,9 +59,12 @@ object ItemMultiRoutes extends MultiIdSupport {
|
|||||||
for {
|
for {
|
||||||
json <- req.as[ItemsAndRefs]
|
json <- req.as[ItemsAndRefs]
|
||||||
items <- readIds[F](json.items)
|
items <- readIds[F](json.items)
|
||||||
tags <- json.refs.traverse(readId[F])
|
res <- backend.item.setTagsMultipleItems(
|
||||||
res <- backend.item.setTagsMultipleItems(items, tags, user.account.collective)
|
items,
|
||||||
resp <- Ok(Conversions.basicResult(res, "Tags updated"))
|
json.refs,
|
||||||
|
user.account.collective
|
||||||
|
)
|
||||||
|
resp <- Ok(Conversions.basicResult(res, "Tags updated"))
|
||||||
} yield resp
|
} yield resp
|
||||||
|
|
||||||
case req @ POST -> Root / "tags" =>
|
case req @ POST -> Root / "tags" =>
|
||||||
|
@ -146,8 +146,8 @@ object ItemRoutes {
|
|||||||
|
|
||||||
case req @ PUT -> Root / Ident(id) / "tags" =>
|
case req @ PUT -> Root / Ident(id) / "tags" =>
|
||||||
for {
|
for {
|
||||||
tags <- req.as[ReferenceList].map(_.items)
|
tags <- req.as[StringList].map(_.items)
|
||||||
res <- backend.item.setTags(id, tags.map(_.id), user.account.collective)
|
res <- backend.item.setTags(id, tags, user.account.collective)
|
||||||
resp <- Ok(Conversions.basicResult(res, "Tags updated"))
|
resp <- Ok(Conversions.basicResult(res, "Tags updated"))
|
||||||
} yield resp
|
} yield resp
|
||||||
|
|
||||||
|
@ -1783,12 +1783,12 @@ itemDetail flags id receive =
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
setTags : Flags -> String -> ReferenceList -> (Result Http.Error BasicResult -> msg) -> Cmd msg
|
setTags : Flags -> String -> StringList -> (Result Http.Error BasicResult -> msg) -> Cmd msg
|
||||||
setTags flags item tags receive =
|
setTags flags item tags receive =
|
||||||
Http2.authPut
|
Http2.authPut
|
||||||
{ url = flags.config.baseUrl ++ "/api/v1/sec/item/" ++ item ++ "/tags"
|
{ url = flags.config.baseUrl ++ "/api/v1/sec/item/" ++ item ++ "/tags"
|
||||||
, account = getAccount flags
|
, account = getAccount flags
|
||||||
, body = Http.jsonBody (Api.Model.ReferenceList.encode tags)
|
, body = Http.jsonBody (Api.Model.StringList.encode tags)
|
||||||
, expect = Http.expectJson receive Api.Model.BasicResult.decoder
|
, expect = Http.expectJson receive Api.Model.BasicResult.decoder
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,11 +19,9 @@ import Api.Model.MoveAttachment exposing (MoveAttachment)
|
|||||||
import Api.Model.OptionalDate exposing (OptionalDate)
|
import Api.Model.OptionalDate exposing (OptionalDate)
|
||||||
import Api.Model.OptionalId exposing (OptionalId)
|
import Api.Model.OptionalId exposing (OptionalId)
|
||||||
import Api.Model.OptionalText exposing (OptionalText)
|
import Api.Model.OptionalText exposing (OptionalText)
|
||||||
import Api.Model.ReferenceList exposing (ReferenceList)
|
import Api.Model.StringList exposing (StringList)
|
||||||
import Api.Model.Tag exposing (Tag)
|
|
||||||
import Browser.Navigation as Nav
|
import Browser.Navigation as Nav
|
||||||
import Comp.AttachmentMeta
|
import Comp.AttachmentMeta
|
||||||
import Comp.ConfirmModal
|
|
||||||
import Comp.CustomFieldMultiInput
|
import Comp.CustomFieldMultiInput
|
||||||
import Comp.DatePicker
|
import Comp.DatePicker
|
||||||
import Comp.DetailEdit
|
import Comp.DetailEdit
|
||||||
@ -1628,8 +1626,8 @@ saveTags flags model =
|
|||||||
tags =
|
tags =
|
||||||
Comp.Dropdown.getSelected model.tagModel
|
Comp.Dropdown.getSelected model.tagModel
|
||||||
|> Util.List.distinct
|
|> Util.List.distinct
|
||||||
|> List.map (\t -> IdName t.id t.name)
|
|> List.map (\t -> t.id)
|
||||||
|> ReferenceList
|
|> StringList
|
||||||
in
|
in
|
||||||
Api.setTags flags model.item.id tags SaveResp
|
Api.setTags flags model.item.id tags SaveResp
|
||||||
|
|
||||||
@ -1762,7 +1760,7 @@ resetField : Flags -> String -> (Field -> Result Http.Error BasicResult -> msg)
|
|||||||
resetField flags item tagger field =
|
resetField flags item tagger field =
|
||||||
case field of
|
case field of
|
||||||
Data.Fields.Tag ->
|
Data.Fields.Tag ->
|
||||||
Api.setTags flags item Api.Model.ReferenceList.empty (tagger Data.Fields.Tag)
|
Api.setTags flags item Api.Model.StringList.empty (tagger Data.Fields.Tag)
|
||||||
|
|
||||||
Data.Fields.Folder ->
|
Data.Fields.Folder ->
|
||||||
Api.setFolder flags item Api.Model.OptionalId.empty (tagger Data.Fields.Folder)
|
Api.setFolder flags item Api.Model.OptionalId.empty (tagger Data.Fields.Folder)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user