Adopt website examples

This commit is contained in:
eikek 2023-11-13 16:51:39 +01:00
parent 212c10e20a
commit 11aa8e5392
3 changed files with 13 additions and 5 deletions

View File

@ -7,6 +7,7 @@ import docspell.addons.out.NewItem.{Meta => ItemMeta}
import docspell.common._ import docspell.common._
import docspell.common.Timestamp import docspell.common.Timestamp
import docspell.common.bc.{AttachmentAction, BackendCommand, ItemAction} import docspell.common.bc.{AttachmentAction, BackendCommand, ItemAction}
import io.circe.Json
import io.circe.syntax._ import io.circe.syntax._
object AddonOutputExample extends Helper { object AddonOutputExample extends Helper {
@ -52,7 +53,8 @@ object AddonOutputExample extends Helper {
metadata = FileMeta( metadata = FileMeta(
language = Some(Language.English), language = Some(Language.English),
skipDuplicate = Some(true), skipDuplicate = Some(true),
attachmentsOnly = Some(false) attachmentsOnly = Some(false),
customData = None
), ),
file = "new-file1.docx" file = "new-file1.docx"
), ),
@ -60,7 +62,8 @@ object AddonOutputExample extends Helper {
metadata = FileMeta( metadata = FileMeta(
language = Some(Language.German), language = Some(Language.German),
skipDuplicate = Some(true), skipDuplicate = Some(true),
attachmentsOnly = Some(false) attachmentsOnly = Some(false),
customData = None
), ),
file = "new-file2.pdf" file = "new-file2.pdf"
) )
@ -76,7 +79,8 @@ object AddonOutputExample extends Helper {
source = "the-addon-x".some, source = "the-addon-x".some,
skipDuplicate = true.some, skipDuplicate = true.some,
tags = List("tag1", "tag2").some, tags = List("tag1", "tag2").some,
attachmentsOnly = None attachmentsOnly = None,
customData = Some(Json.obj("my-id" -> Json.fromInt(42)))
).some, ).some,
files = List("a-file.pdf", "another.jpg") files = List("a-file.pdf", "another.jpg")
) )

View File

@ -2,6 +2,7 @@ package docspell.website
import cats.syntax.option._ import cats.syntax.option._
import docspell.common.{Language, ProcessItemArgs} import docspell.common.{Language, ProcessItemArgs}
import io.circe.Json
import io.circe.syntax._ import io.circe.syntax._
object ItemArgsExample extends Helper { object ItemArgsExample extends Helper {
@ -18,7 +19,8 @@ object ItemArgsExample extends Helper {
fileFilter = None, fileFilter = None,
tags = List("given-tag-1").some, tags = List("given-tag-1").some,
reprocess = false, reprocess = false,
attachmentsOnly = None attachmentsOnly = None,
customData = Some(Json.obj("my-id" -> Json.fromInt(42)))
) )
val exampleJson = example.asJson.spaces2 val exampleJson = example.asJson.spaces2

View File

@ -5,6 +5,7 @@ import docspell.common.MetaProposal.Candidate
import docspell.common._ import docspell.common._
import docspell.joex.process.ItemData import docspell.joex.process.ItemData
import docspell.store.records.{RAttachment, RAttachmentMeta, RItem} import docspell.store.records.{RAttachment, RAttachmentMeta, RItem}
import io.circe.Json
import io.circe.syntax._ import io.circe.syntax._
object ItemDataExample extends Helper { object ItemDataExample extends Helper {
@ -67,7 +68,8 @@ object ItemDataExample extends Helper {
givenMeta = givenProposals, givenMeta = givenProposals,
tags = List("tag-1"), tags = List("tag-1"),
classifyProposals = MetaProposalList.empty, classifyProposals = MetaProposalList.empty,
classifyTags = List("invoice") classifyTags = List("invoice"),
customData = Some(Json.obj("my-id" -> Json.fromInt(42)))
) )
val exampleJson = example.asJson.spaces2 val exampleJson = example.asJson.spaces2