Skip to content

Commit 2616db1

Browse files
committed
Upload Data Browser and Disk Usage
1 parent be275d4 commit 2616db1

File tree

82 files changed

+1989
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1989
-0
lines changed

.gradle/7.5/checksums/checksums.lock

17 Bytes
Binary file not shown.
Binary file not shown.

.gradle/7.5/dependencies-accessors/gc.properties

Whitespace-only changes.
Binary file not shown.
Binary file not shown.
1 Byte
Binary file not shown.

.gradle/7.5/fileHashes/fileHashes.bin

104 KB
Binary file not shown.
17 Bytes
Binary file not shown.
22.7 KB
Binary file not shown.

.gradle/7.5/gc.properties

Whitespace-only changes.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Mon Mar 27 14:19:22 MDT 2023
2+
gradle.version=7.5
24.2 KB
Binary file not shown.

.gradle/file-system.probe

8 Bytes
Binary file not shown.

.gradle/vcs-1/gc.properties

Whitespace-only changes.

.idea/.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.name

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DittoDataBrowser/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

DittoDataBrowser/build.gradle

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
plugins {
2+
id 'com.android.library'
3+
id 'org.jetbrains.kotlin.android'
4+
}
5+
6+
android {
7+
namespace 'live.ditto.dittodatabrowser'
8+
compileSdk 33
9+
10+
buildFeatures {
11+
compose true
12+
}
13+
14+
composeOptions {
15+
kotlinCompilerExtensionVersion = "1.1.1"
16+
}
17+
18+
buildscript {
19+
repositories {
20+
mavenCentral()
21+
}
22+
}
23+
24+
defaultConfig {
25+
minSdk 26
26+
targetSdk 33
27+
28+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
29+
consumerProguardFiles "consumer-rules.pro"
30+
}
31+
32+
buildTypes {
33+
release {
34+
minifyEnabled false
35+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
36+
}
37+
}
38+
compileOptions {
39+
sourceCompatibility JavaVersion.VERSION_1_8
40+
targetCompatibility JavaVersion.VERSION_1_8
41+
}
42+
kotlinOptions {
43+
jvmTarget = '1.8'
44+
}
45+
46+
}
47+
48+
dependencies {
49+
50+
//Ditto
51+
implementation "live.ditto:ditto:3.0.5"
52+
53+
// Jetpack Compose View Model
54+
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha07'
55+
// Live Data
56+
implementation "androidx.compose.runtime:runtime-livedata:$compose_ui_version"
57+
58+
implementation 'androidx.activity:activity-compose:1.6.1'
59+
implementation "androidx.navigation:navigation-compose:2.6.0-alpha04"
60+
implementation 'androidx.compose.material:material:1.3.1'
61+
62+
implementation 'androidx.core:core-ktx:1.7.0'
63+
implementation 'androidx.appcompat:appcompat:1.6.1'
64+
implementation 'com.google.android.material:material:1.8.0'
65+
testImplementation 'junit:junit:4.13.2'
66+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
67+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
68+
}

DittoDataBrowser/consumer-rules.pro

Whitespace-only changes.

DittoDataBrowser/proguard-rules.pro

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package live.ditto.dittodatabrowser
2+
3+
import androidx.test.platform.app.InstrumentationRegistry
4+
import androidx.test.ext.junit.runners.AndroidJUnit4
5+
6+
import org.junit.Test
7+
import org.junit.runner.RunWith
8+
9+
import org.junit.Assert.*
10+
11+
/**
12+
* Instrumented test, which will execute on an Android device.
13+
*
14+
* See [testing documentation](http://d.android.com/tools/testing).
15+
*/
16+
@RunWith(AndroidJUnit4::class)
17+
class ExampleInstrumentedTest {
18+
@Test
19+
fun useAppContext() {
20+
// Context of the app under test.
21+
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
22+
assertEquals("live.ditto.dittodatabrowser.test", appContext.packageName)
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
package live.ditto.dittodatabrowser
2+
3+
import android.annotation.SuppressLint
4+
import androidx.compose.foundation.clickable
5+
import androidx.compose.foundation.layout.*
6+
import androidx.compose.foundation.lazy.LazyColumn
7+
import androidx.compose.foundation.lazy.items
8+
import androidx.compose.material.*
9+
import androidx.compose.material.icons.Icons
10+
import androidx.compose.material.icons.filled.ArrowForward
11+
import androidx.compose.runtime.*
12+
import androidx.compose.runtime.livedata.observeAsState
13+
import androidx.compose.ui.Alignment
14+
import androidx.compose.ui.Modifier
15+
import androidx.compose.ui.text.font.FontWeight
16+
import androidx.compose.ui.unit.dp
17+
import androidx.compose.ui.unit.sp
18+
import androidx.lifecycle.viewmodel.compose.viewModel
19+
import androidx.navigation.NavHostController
20+
import live.ditto.DittoCollection
21+
22+
@SuppressLint("UnusedMaterialScaffoldPaddingParameter")
23+
@Composable
24+
fun Collections(navController: NavHostController? = null) {
25+
val collectionsViewModel: CollectionsViewModel = viewModel();
26+
val collections: List<DittoCollection> by collectionsViewModel.collections.observeAsState(emptyList())
27+
var showDialog by remember { mutableStateOf(false) }
28+
29+
30+
Scaffold(
31+
topBar = {
32+
TopAppBar(
33+
title = {
34+
Text(text = "Data Browser")
35+
}
36+
)
37+
},
38+
content = {
39+
Column(
40+
modifier = Modifier
41+
.fillMaxSize()
42+
.padding(10.dp)
43+
) {
44+
Text(
45+
text = "Collections",
46+
fontWeight = FontWeight.Bold,
47+
fontSize = 30.sp
48+
)
49+
Spacer(modifier = Modifier.height(5.dp))
50+
Button(
51+
onClick = {
52+
showDialog = true
53+
},
54+
modifier = Modifier.align(Alignment.Start)
55+
) {
56+
Text(text = "Start Subscriptions")
57+
}
58+
Spacer(modifier = Modifier.height(6.dp))
59+
60+
LazyColumn {
61+
items(collections) { collection ->
62+
if (navController != null) {
63+
ListItem(
64+
collectionName = collection.name,
65+
navController = navController,
66+
isStandAlone = collectionsViewModel.isStandAlone
67+
)
68+
}
69+
}
70+
}
71+
72+
if (showDialog) {
73+
AlertDialog(
74+
onDismissRequest = { showDialog = false },
75+
title = { Text(text = "Stand Alone App?")},
76+
text = { Text(text = "Only start subscriptions if using the Data Browser in a stand alone application") },
77+
confirmButton = {
78+
Button(
79+
onClick = {
80+
collectionsViewModel.startSubscription()
81+
showDialog = false }
82+
) {
83+
Text(text = "Start")
84+
}
85+
},
86+
dismissButton = {
87+
Button(
88+
onClick = { showDialog = false }
89+
) {
90+
Text(text = "Cancel")
91+
}
92+
}
93+
)
94+
}
95+
}
96+
}
97+
)
98+
}
99+
100+
@Composable
101+
fun ListItem(collectionName: String, navController: NavHostController, isStandAlone: Boolean) {
102+
103+
Row(
104+
modifier = Modifier
105+
.fillMaxWidth()
106+
.clickable {
107+
navController.navigate("documents/$collectionName/$isStandAlone")
108+
}
109+
.padding(10.dp)
110+
) {
111+
Text(
112+
text = collectionName,
113+
fontWeight = FontWeight.Bold,
114+
fontSize = 16.sp,
115+
modifier = Modifier.weight(1f)
116+
)
117+
Icon(
118+
imageVector = Icons.Filled.ArrowForward,
119+
contentDescription = "Navigate to Item screen",
120+
modifier = Modifier.padding(end = 16.dp)
121+
)
122+
}
123+
}
124+
125+
126+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package live.ditto.dittodatabrowser
2+
3+
import androidx.lifecycle.MutableLiveData
4+
import androidx.lifecycle.ViewModel
5+
import androidx.lifecycle.ViewModelProvider
6+
import live.ditto.DittoCollection
7+
import live.ditto.DittoSubscription
8+
9+
class CollectionsViewModel: ViewModel() {
10+
11+
var collections: MutableLiveData<List<DittoCollection>> = MutableLiveData(emptyList())
12+
var isStandAlone = false
13+
14+
private lateinit var subscription: DittoSubscription
15+
val liveQuery = DittoHandler.ditto.store.collections().observeLocal { collections ->
16+
this.collections.postValue(collections.collections)
17+
}
18+
19+
fun startSubscription() {
20+
this.subscription = DittoHandler.ditto.store.collections().subscribe()
21+
isStandAlone = true
22+
}
23+
24+
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package live.ditto.dittodatabrowser
2+
3+
import androidx.compose.material.MaterialTheme
4+
import androidx.compose.material.Surface
5+
import androidx.compose.runtime.Composable
6+
import androidx.navigation.compose.NavHost
7+
import androidx.navigation.compose.composable
8+
import androidx.navigation.compose.rememberNavController
9+
import live.ditto.Ditto
10+
11+
@Composable
12+
fun DataBrowser(ditto: Ditto) {
13+
DittoHandler.ditto = ditto
14+
15+
val navController = rememberNavController()
16+
17+
// A surface container using the 'background' color from the theme
18+
Surface(color = MaterialTheme.colors.background) {
19+
NavHost(navController = navController, startDestination = "collections") {
20+
composable("collections") { Collections(navController = navController)}
21+
22+
23+
composable("documents/{collectionName}/{isStandAlone}") { backStackEntry ->
24+
val collectionName: String = backStackEntry.arguments?.getString("collectionName").toString()
25+
val isStandAlone: Boolean = backStackEntry.arguments?.getString("isStandAlone").toBoolean()
26+
Documents(navController = navController, collectionName = collectionName, isStandAlone = isStandAlone)
27+
}
28+
29+
}
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package live.ditto.dittodatabrowser
2+
3+
import android.app.Application
4+
import live.ditto.Ditto
5+
6+
class DittoHandler : Application() {
7+
8+
companion object {
9+
lateinit var ditto: Ditto
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package live.ditto.dittodatabrowser
2+
3+
data class Document(
4+
var id: String,
5+
var properties: MutableMap<String, Any?>
6+
)

0 commit comments

Comments
 (0)