Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

Kiolk/DevToClient

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:warning: Potential issue_ **Fix the incorrect type check in the `type` property** The condition `is Searchable` in the `when` expression will match any non-null `Searchable` instance, which inc...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:warning: Potential issue_ **Use dynamic `type` in `GetArticlesParams`** Currently, the `type` parameter is hardcoded to `SearchType.Article`, which may not reflect the actual search type based ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:hammer_and_wrench: Refactor suggestion_ **Simplify the feed state update using the `map` function** The current implementation creates a new mutable list and manually iterates over each article...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:hammer_and_wrench: Refactor suggestion_ **Use `snapshotFlow` to efficiently detect when to load more articles** Using `LaunchedEffect` with `listState.layoutInfo.visibleItemsInfo.lastOrNull()` ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:warning: Potential issue_ **Fix off-by-one error and restructure `LazyColumn` to display articles and loading indicator correctly** There is an off-by-one error in the condition at line 59: ``...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:warning: Potential issue_ **Implement the unhandled cases in the `when` expression** The cases for `Article`, `Comment`, `Organization`, and `User` currently contain `TODO()`, which will throw ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:hammer_and_wrench: Refactor suggestion_ **Initialize `_searchableItem` with a meaningful default value** Initializing `_searchableItem` with an anonymous implementation of `SearchableUi` may le...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:bulb: Codebase verification_ **Issue Found: Remaining TagScreen Usage in ArticleItem.kt** The shell script detected an existing usage of `TagScreen` in the codebase, which suggests that not...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:bulb: Codebase verification_ **Missing `tagName` Property in `GetArticlesParamsApi`** The `GetArticlesParamsApi` class does not define the `tagName` property, yet it's being used in `Article...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:hammer_and_wrench: Refactor suggestion_ **Consider improving type handling in the `when` expression.** The current implementation only handles the `TagSearchUi` case. While this might be suffic...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:bulb: Codebase verification_ **Clarify the necessity of the `tagName` property.** The `tagName` property is not used anywhere in the codebase, making it redundant given the existing `tag` pro...

View on GitHub

coderabbitai[bot] created a review on a pull request on Kiolk/DevToClient
**Actionable comments posted: 11** <details> <summary>🧹 Outside diff range and nitpick comments (11)</summary><blockquote> <details> <summary>composeApp/src/commonMain/kotlin/com/github/kiolk/dev...

View on GitHub

coderabbitai[bot] created a review on a pull request on Kiolk/DevToClient
**Actionable comments posted: 11** <details> <summary>🧹 Outside diff range and nitpick comments (11)</summary><blockquote> <details> <summary>composeApp/src/commonMain/kotlin/com/github/kiolk/dev...

View on GitHub

Kiolk opened a pull request on Kiolk/DevToClient
Base logic for implementing feed body model
Kiolk created a branch on Kiolk/DevToClient

feed_body_model - Mobile client for Dev.to platform.

Kiolk pushed 2 commits to develop Kiolk/DevToClient
  • Base logic for navigation to tag screen 80fe563
  • Merge pull request #14 from Kiolk/tag_screen Base logic for navigation to tag screen 62ca7cb

View on GitHub

Kiolk closed a pull request on Kiolk/DevToClient
Base logic for navigation to tag screen
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes - **New Features** - Enhanced article feed filtering with new parameter su...
coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:hammer_and_wrench: Refactor suggestion_ **Consider renaming `_tagName` and `tagName` for clarity** The properties `_tagName` and `tagName` now hold a `TagSearchUi` object, not a tag name `Strin...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:bulb: Codebase verification_ **Action Required: Address Commented-Out Tag Navigation Code in `ArticleItem.kt`.** The commented-out navigation code for `TagScreen` at lines 101-103 in `ArticleI...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:bulb: Codebase verification_ **Issues Found: `getFeed` method calls missing the new `class_name` parameter.** - `composeApp/src/commonMain/kotlin/com/github/kiolk/devto/data/repositories/artic...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:bulb: Codebase verification_ **Issue Found: Missing `type` mapping in `toGetArticlesParamsApi` function.** The `toGetArticlesParamsApi` mapping function does not map the newly added `type` pa...

View on GitHub

coderabbitai[bot] created a review on a pull request on Kiolk/DevToClient
**Actionable comments posted: 4** <details> <summary>🧹 Outside diff range and nitpick comments (12)</summary><blockquote> <details> <summary>composeApp/src/commonMain/kotlin/com/github/kiolk/devt...

View on GitHub

coderabbitai[bot] created a comment on a pull request on Kiolk/DevToClient
<!-- This is an auto-generated comment: summarize by coderabbit.ai --> <!-- This is an auto-generated comment: review in progress by coderabbit.ai --> > [!NOTE] > Currently processing new changes ...

View on GitHub

Kiolk opened a pull request on Kiolk/DevToClient
Base logic for navigation to tag screen
Kiolk created a branch on Kiolk/DevToClient

tag_screen - Mobile client for Dev.to platform.

Kiolk pushed 2 commits to develop Kiolk/DevToClient
  • Tag card UI 83618b8
  • Merge pull request #13 from Kiolk/tag_ui Tag card UI 545c063

View on GitHub

coderabbitai[bot] created a review comment on a pull request on Kiolk/DevToClient
_:hammer_and_wrench: Refactor suggestion_ **Use plain string instead of `AnnotatedString` for static text** Since the text "#" is a simple, unstyled string, you can use a plain string literal ins...

View on GitHub

coderabbitai[bot] created a review on a pull request on Kiolk/DevToClient
**Actionable comments posted: 1** <details> <summary>🧹 Outside diff range and nitpick comments (4)</summary><blockquote> <details> <summary>composeApp/src/commonMain/kotlin/com/github/kiolk/devto...

View on GitHub

coderabbitai[bot] created a review on a pull request on Kiolk/DevToClient
**Actionable comments posted: 1** <details> <summary>🧹 Outside diff range and nitpick comments (4)</summary><blockquote> <details> <summary>composeApp/src/commonMain/kotlin/com/github/kiolk/devto...

View on GitHub

coderabbitai[bot] created a comment on a pull request on Kiolk/DevToClient
<!-- This is an auto-generated comment: summarize by coderabbit.ai --> <!-- This is an auto-generated comment: review in progress by coderabbit.ai --> > [!NOTE] > Currently processing new changes ...

View on GitHub

Load more