Suwayomi / Suwayomi-JUI

A Suwayomi-Server client built in Compose Multiplatform
Mozilla Public License 2.0
413 stars 26 forks source link

[Feature Request] History Section #52

Open syedaliasad649 opened 2 years ago

syedaliasad649 commented 2 years ago

What feature should be added to Tachidesk-JUI?

A section that logs manga that you've read. A very traditional history similar to Tachiyomi which can read the data in Tachiyomi backups.

Why/Project's Benefit/Existing Problem

Enhance the experience of using Tachidesk.

Syer10 commented 2 years ago

Blocked by Tachidesk-Server not having history support

Syer10 commented 2 months ago

May be able to implement using a query like this

query History($first: Int = 100, $offset: Int = 0) {
  chapters(
    condition: {isRead: true}
    orderByType: DESC
    orderBy: LAST_READ_AT
    first: $first
    offset: $offset
  ) {
    totalCount
    nodes {
      id
      name
      manga {
        thumbnailUrl
        id
        title
      }
    }
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
  }
}