-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from infinum/develop
Develop
- Loading branch information
Showing
56 changed files
with
664 additions
and
389 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
6 changes: 6 additions & 0 deletions
6
dbinspector/src/main/kotlin/com/infinum/dbinspector/ui/content/shared/ContentEvent.kt
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,6 @@ | ||
package com.infinum.dbinspector.ui.content.shared | ||
|
||
internal sealed class ContentEvent { | ||
|
||
class Dropped : ContentEvent() | ||
} |
16 changes: 16 additions & 0 deletions
16
dbinspector/src/main/kotlin/com/infinum/dbinspector/ui/content/shared/ContentState.kt
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,16 @@ | ||
package com.infinum.dbinspector.ui.content.shared | ||
|
||
import androidx.paging.PagingData | ||
import com.infinum.dbinspector.domain.shared.models.Cell | ||
import com.infinum.dbinspector.ui.shared.headers.Header | ||
|
||
internal sealed class ContentState { | ||
|
||
data class Headers( | ||
val headers: List<Header> | ||
) : ContentState() | ||
|
||
data class Content( | ||
val content: PagingData<Cell> | ||
) : ContentState() | ||
} |
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
10 changes: 10 additions & 0 deletions
10
dbinspector/src/main/kotlin/com/infinum/dbinspector/ui/databases/DatabaseState.kt
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,10 @@ | ||
package com.infinum.dbinspector.ui.databases | ||
|
||
import com.infinum.dbinspector.domain.database.models.DatabaseDescriptor | ||
|
||
internal sealed class DatabaseState { | ||
|
||
data class Databases( | ||
val databases: List<DatabaseDescriptor> | ||
) : DatabaseState() | ||
} |
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.