-
Notifications
You must be signed in to change notification settings - Fork 881
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: lists and feeds sub title in feed column * feat: lists setting panel * fix: imports * fix: avatar align in profile setting * fix: styles in settings * feat: lists setting table * feat: list and listsubscription types * feat: target model * fix: target model types errors * feat: seperate feed list and list list * feat: edit lists * feat: lists feeds management * feat: new feed column * feat: use feedId for single feed entries request * fix: lists feedId * feat: disable invalid functions for lists * feat: discover target selector * feat: list follow modal * feat: feed icon text size * feat: use list get api * feat: lists edit action * fix: radio color * fix: radio click area * feat: list external page * feat: hide mark all action for list * feat: lists unread * fix: types * fix: add tooltip for resize panel Signed-off-by: Innei <i@innei.in> * feat: add resize indicator Signed-off-by: Innei <i@innei.in> * fix: hide section when no lists Signed-off-by: Innei <i@innei.in> --------- Signed-off-by: Innei <i@innei.in> Co-authored-by: Innei <i@innei.in>
- Loading branch information
Showing
61 changed files
with
2,355 additions
and
646 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import type { FeedModel } from "~/models" | ||
import type { TargetModel } from "~/models" | ||
|
||
export type DB_FeedUnread = { | ||
id: string | ||
count: number | ||
} | ||
|
||
export type DB_Feed = FeedModel & { id: string } | ||
export type DB_Feed = TargetModel & { id: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.