-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Empty bookmarks screen * Bookmarks object * Long press support * Lint fix * Context menu v1 * A working context menu * Basic bookmarks in context menu * Use a root content node for bookmarks * context menu animation * small tweak * move logger around, adjust animation * Lint fix * Restore logger fix * Cache channel info * Bookmarks v1 * Added comment * Adjust "popular" feed error handling * Progress with bookmarks * Add todo * add todo * handle roDateTime logging * logger adjustment * Use yaml for api and layout * rename requestData to feedSource * Restructure things * Lint fix * remove comment * introduce feedSource id * small cleanup * playlist context menu * Context menu for the channel view * changelog --------- Co-authored-by: github-action linter <githubaction@githubaction.com>
- Loading branch information
Showing
63 changed files
with
1,903 additions
and
524 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!-- TODO:P1 document models better --> | ||
|
||
# Models | ||
|
||
ApiEndpoint: | ||
|
||
- id | ||
- url | ||
- queryParams | ||
- pathParams | ||
- cacheSeconds | ||
- paginationType | ||
- authenticated | ||
- responseHandler | ||
|
||
FeedSource: | ||
|
||
- id | ||
- title | ||
- apiType: string ("Invidious") | ||
- endpoint: ApiEndpoint | ||
- pathParams | ||
- queryParams | ||
- state: | ||
- paginationtype (Runtime field) | ||
- page (Runtime field) | ||
- continuation (Runtime field) | ||
- queryParams.page (Runtime field) | ||
- queryParams.continuation (Runtime field) | ||
|
||
Feed/FeedContentNode: | ||
|
||
- Title | ||
- feedSources: FeedSource[] | ||
- feedSourceIndex (Runtime field) | ||
|
||
RowListLayout | ||
|
||
- Feed[] | ||
|
||
Bookmarks | ||
|
||
- BookmarkGroup[] | ||
|
||
BookmarkGroup | ||
|
||
- title | ||
- feedSources: FeedSource[] |
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
5 changes: 5 additions & 0 deletions
5
playlet-lib/src/components/ContentNode/BookmarkContentNode.xml
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<component name="BookmarkContentNode" extends="ContentNode"> | ||
<interface> | ||
<field id="feedSource" type="assocarray" /> | ||
</interface> | ||
</component> |
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
7 changes: 7 additions & 0 deletions
7
playlet-lib/src/components/ContentNode/ContextMenuItemContentNode.xml
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<component name="ContextMenuItemContentNode" extends="ContentNode"> | ||
<interface> | ||
<field id="node" type="node" /> | ||
<field id="func" type="string" /> | ||
<field id="args" type="array" /> | ||
</interface> | ||
</component> |
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,9 +1,7 @@ | ||
<component name="FeedContentNode" extends="ContentNode"> | ||
<interface> | ||
<field id="feed" type="assocarray" /> | ||
<field id="feedSources" type="array" /> | ||
<field id="feedSourcesIndex" type="integer" /> | ||
<field id="loadState" type="string" /> | ||
<field id="paginationType" type="string" /> | ||
<field id="page" type="integer" value="0" /> | ||
<field id="continuation" type="string" /> | ||
</interface> | ||
</component> |
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.