mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Fix position of merged attachments
This commit is contained in:
parent
2252acff12
commit
c7c488f0cc
@ -81,11 +81,12 @@ object Merge {
|
||||
def moveAttachments(items: NonEmptyList[Ident]): F[Int] = {
|
||||
val target = items.head
|
||||
for {
|
||||
nextPos <- store.transact(RAttachment.nextPosition(target))
|
||||
attachs <- store.transact(items.tail.traverse(id => RAttachment.findByItem(id)))
|
||||
attachFlat = attachs.flatMap(_.toList)
|
||||
n <- attachFlat.traverse(a =>
|
||||
store.transact(RAttachment.updateItemId(a.id, target))
|
||||
)
|
||||
n <- attachFlat.zipWithIndex.traverse({ case (a, idx) =>
|
||||
store.transact(RAttachment.updateItemId(a.id, target, nextPos + idx))
|
||||
})
|
||||
} yield n.sum
|
||||
}
|
||||
|
||||
|
@ -69,9 +69,9 @@ object RAttachment {
|
||||
DML.set(T.position.increment(1))
|
||||
)
|
||||
|
||||
def nextPosition(id: Ident): ConnectionIO[Int] =
|
||||
def nextPosition(itemId: Ident): ConnectionIO[Int] =
|
||||
for {
|
||||
max <- Select(max(T.position).s, from(T), T.itemId === id).build
|
||||
max <- Select(max(T.position).s, from(T), T.itemId === itemId).build
|
||||
.query[Option[Int]]
|
||||
.unique
|
||||
} yield max.map(_ + 1).getOrElse(0)
|
||||
@ -97,8 +97,15 @@ object RAttachment {
|
||||
DML.set(T.fileId.setTo(fId))
|
||||
)
|
||||
|
||||
def updateItemId(attachId: Ident, itemId: Ident): ConnectionIO[Int] =
|
||||
DML.update(T, T.id === attachId, DML.set(T.itemId.setTo(itemId)))
|
||||
def updateItemId(attachId: Ident, itemId: Ident, pos: Int): ConnectionIO[Int] =
|
||||
DML.update(
|
||||
T,
|
||||
T.id === attachId,
|
||||
DML.set(
|
||||
T.itemId.setTo(itemId),
|
||||
T.position.setTo(pos)
|
||||
)
|
||||
)
|
||||
|
||||
def updatePosition(attachId: Ident, pos: Int): ConnectionIO[Int] =
|
||||
DML.update(T, T.id === attachId, DML.set(T.position.setTo(pos)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user