Rename all features modules

This commit is contained in:
ganfra 2023-01-20 18:35:03 +01:00
parent 6cc38c9c49
commit f800e22477
149 changed files with 311 additions and 309 deletions

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login
package io.element.android.features.login
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.platform.app.InstrumentationRegistry

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login
package io.element.android.features.login
import android.os.Parcelable
import androidx.compose.runtime.Composable
@ -26,8 +26,8 @@ import com.bumble.appyx.core.node.ParentNode
import com.bumble.appyx.navmodel.backstack.BackStack
import com.bumble.appyx.navmodel.backstack.operation.push
import io.element.android.libraries.architecture.createNode
import io.element.android.x.features.login.changeserver.ChangeServerNode
import io.element.android.x.features.login.root.LoginRootNode
import io.element.android.features.login.changeserver.ChangeServerNode
import io.element.android.features.login.root.LoginRootNode
import kotlinx.parcelize.Parcelize
class LoginFlowNode(

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login.changeserver
package io.element.android.features.login.changeserver
sealed interface ChangeServerEvents {
data class SetServer(val server: String) : ChangeServerEvents

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login.changeserver
package io.element.android.features.login.changeserver
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login.changeserver
package io.element.android.features.login.changeserver
import androidx.compose.runtime.Composable
import androidx.compose.runtime.MutableState

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login.changeserver
package io.element.android.features.login.changeserver
import io.element.android.libraries.architecture.Async

View file

@ -16,7 +16,7 @@
@file:OptIn(ExperimentalMaterial3Api::class)
package io.element.android.x.features.login.changeserver
package io.element.android.features.login.changeserver
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box
@ -55,8 +55,8 @@ import androidx.compose.ui.unit.sp
import io.element.android.libraries.architecture.Async
import io.element.android.libraries.core.compose.textFieldState
import io.element.android.libraries.designsystem.components.VectorIcon
import io.element.android.x.features.login.R
import io.element.android.x.features.login.error.changeServerError
import io.element.android.features.login.R
import io.element.android.features.login.error.changeServerError
import io.element.android.libraries.testtags.TestTags
import io.element.android.libraries.testtags.testTag

View file

@ -14,12 +14,12 @@
* limitations under the License.
*/
package io.element.android.x.features.login.error
package io.element.android.features.login.error
import androidx.compose.runtime.Composable
import androidx.compose.ui.res.stringResource
import io.element.android.libraries.core.uri.isValidUrl
import io.element.android.x.features.login.root.LoginFormState
import io.element.android.features.login.root.LoginFormState
import io.element.android.libraries.ui.strings.R as StringR
@Composable

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login.root
package io.element.android.features.login.root
sealed interface LoginRootEvents {
object RefreshHomeServer : LoginRootEvents

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login.root
package io.element.android.features.login.root
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login.root
package io.element.android.features.login.root
import androidx.compose.runtime.Composable
import androidx.compose.runtime.MutableState

View file

@ -16,7 +16,7 @@
@file:OptIn(ExperimentalMaterial3Api::class)
package io.element.android.x.features.login.root
package io.element.android.features.login.root
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
@ -59,7 +59,7 @@ import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import io.element.android.libraries.core.compose.textFieldState
import io.element.android.x.features.login.error.loginError
import io.element.android.features.login.error.loginError
import io.element.android.libraries.testtags.TestTags
import io.element.android.libraries.testtags.testTag
import io.element.android.libraries.matrix.core.SessionId

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login.root
package io.element.android.features.login.root
import android.os.Parcelable
import io.element.android.libraries.matrix.core.SessionId

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.x.features.login
package io.element.android.features.login
import org.junit.Assert.assertEquals
import org.junit.Test