Skip to content

Commit

Permalink
add ui IDM manager
Browse files Browse the repository at this point in the history
  • Loading branch information
tachibana-shin committed Aug 14, 2023
1 parent 6133e57 commit 3437c63
Show file tree
Hide file tree
Showing 7 changed files with 390 additions and 47 deletions.
5 changes: 5 additions & 0 deletions PRGRESS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- [ ] add function to button `Edit` on `LibraryTabOffline.vue`
- [ ] show more episode download
- [ ] add download data meta request
- [ ] create `useRequestCache`
- [ ] Deep integration allows offline reading in the reader
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Manga Raiku (git.shin.mangaraiku)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmanga-raiku%2Fmanga-raiku.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fmanga-raiku%2Fmanga-raiku?ref=badge_shield)

[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmanga-raiku%2Fmanga-raiku.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fmanga-raiku%2Fmanga-raiku?ref=badge_shield)

「無邪気な笑顔の下の、日付は遥かなメモリー」

Expand Down Expand Up @@ -54,6 +54,6 @@ quasar build

See [Configuring quasar.config.js](https://v2.quasar.dev/quasar-cli-vite/quasar-config-js).


## License
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmanga-raiku%2Fmanga-raiku.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fmanga-raiku%2Fmanga-raiku?ref=badge_large)

[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmanga-raiku%2Fmanga-raiku.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fmanga-raiku%2Fmanga-raiku?ref=badge_large)
19 changes: 19 additions & 0 deletions src/apis/nettruyen/runs/get-list-chapters.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { CURL } from "../const"

Check failure on line 1 in src/apis/nettruyen/runs/get-list-chapters.ts

View workflow job for this annotation

GitHub Actions / Run eslint scanning

There should be at least one empty line between import groups
import { parsePath } from "src/apis/__helpers__/parsePath"

Check failure on line 2 in src/apis/nettruyen/runs/get-list-chapters.ts

View workflow job for this annotation

GitHub Actions / Run eslint scanning

`src/apis/__helpers__/parsePath` import should occur before import of `../const`

export default async function (manga_id: number) {

Check failure on line 4 in src/apis/nettruyen/runs/get-list-chapters.ts

View workflow job for this annotation

GitHub Actions / Run eslint scanning

Identifier 'manga_id' is not in camel case
const { data } = await get(
`${CURL}/Comic/Services/ComicService.asmx/ProcessChapterList?comicId=${manga_id}`

Check failure on line 6 in src/apis/nettruyen/runs/get-list-chapters.ts

View workflow job for this annotation

GitHub Actions / Run eslint scanning

Identifier 'manga_id' is not in camel case
)

return JSON.parse(data).chapters.map(
(item: { chapterId: number; name: string; url: string }) => {
return {
id: item.chapterId,
name: normalizeChName(item.name),
path: parsePath(item.url),
updated_at: null,
}
}
)
}
Loading

0 comments on commit 3437c63

Please sign in to comment.