From 45c1aa72f3e9f00d08fc590a9cfbd3cd8c5b33a8 Mon Sep 17 00:00:00 2001 From: alperozturk Date: Tue, 31 Oct 2023 16:30:09 +0100 Subject: [PATCH 1/3] Rename .java to .kt Signed-off-by: alperozturk --- .../onboarding/{FirstRunActivity.java => FirstRunActivity.kt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename app/src/main/java/com/nextcloud/client/onboarding/{FirstRunActivity.java => FirstRunActivity.kt} (100%) diff --git a/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.java b/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt similarity index 100% rename from app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.java rename to app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt From 8b74259b765d44eb6e61e482d10246cb12b2fecd Mon Sep 17 00:00:00 2001 From: alperozturk Date: Tue, 31 Oct 2023 16:30:10 +0100 Subject: [PATCH 2/3] Convert to kt Signed-off-by: alperozturk --- .../client/onboarding/FirstRunActivity.kt | 353 ++++++++++-------- .../main/res/layout/first_run_activity.xml | 2 +- 2 files changed, 198 insertions(+), 157 deletions(-) diff --git a/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt b/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt index eb9f06f04e66..0169eaa75a06 100644 --- a/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt +++ b/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt @@ -21,212 +21,253 @@ * You should have received a copy of the GNU Affero General Public * License along with this program. If not, see . */ - -package com.nextcloud.client.onboarding; - -import android.accounts.Account; -import android.accounts.AccountManager; -import android.content.Intent; -import android.content.res.Configuration; -import android.os.Bundle; -import android.view.View; -import android.view.ViewGroup; -import android.widget.LinearLayout; - -import com.nextcloud.android.common.ui.theme.utils.ColorRole; -import com.nextcloud.client.account.UserAccountManager; -import com.nextcloud.client.appinfo.AppInfo; -import com.nextcloud.client.di.Injectable; -import com.nextcloud.client.preferences.AppPreferences; -import com.owncloud.android.BuildConfig; -import com.owncloud.android.R; -import com.owncloud.android.authentication.AuthenticatorActivity; -import com.owncloud.android.databinding.FirstRunActivityBinding; -import com.owncloud.android.features.FeatureItem; -import com.owncloud.android.ui.activity.BaseActivity; -import com.owncloud.android.ui.activity.FileDisplayActivity; -import com.owncloud.android.ui.adapter.FeaturesViewAdapter; -import com.owncloud.android.utils.DisplayUtils; -import com.owncloud.android.utils.theme.ViewThemeUtils; - -import javax.inject.Inject; - -import androidx.viewpager.widget.ViewPager; +package com.nextcloud.client.onboarding + +import android.accounts.AccountManager +import android.content.Intent +import android.content.res.Configuration +import android.os.Bundle +import android.view.View +import android.view.ViewGroup +import android.widget.LinearLayout +import androidx.activity.OnBackPressedCallback +import androidx.activity.result.ActivityResult +import androidx.activity.result.ActivityResultLauncher +import androidx.activity.result.contract.ActivityResultContracts +import androidx.viewpager.widget.ViewPager +import com.nextcloud.android.common.ui.theme.utils.ColorRole +import com.nextcloud.client.account.UserAccountManager +import com.nextcloud.client.appinfo.AppInfo +import com.nextcloud.client.di.Injectable +import com.nextcloud.client.preferences.AppPreferences +import com.owncloud.android.BuildConfig +import com.owncloud.android.R +import com.owncloud.android.authentication.AuthenticatorActivity +import com.owncloud.android.databinding.FirstRunActivityBinding +import com.owncloud.android.features.FeatureItem +import com.owncloud.android.ui.activity.BaseActivity +import com.owncloud.android.ui.activity.FileDisplayActivity +import com.owncloud.android.ui.adapter.FeaturesViewAdapter +import com.owncloud.android.utils.DisplayUtils +import com.owncloud.android.utils.theme.ViewThemeUtils +import javax.inject.Inject /** * Activity displaying general feature after a fresh install. */ -public class FirstRunActivity extends BaseActivity implements ViewPager.OnPageChangeListener, Injectable { - - public static final String EXTRA_ALLOW_CLOSE = "ALLOW_CLOSE"; - public static final String EXTRA_EXIT = "EXIT"; - public static final int FIRST_RUN_RESULT_CODE = 199; +class FirstRunActivity : BaseActivity(), ViewPager.OnPageChangeListener, Injectable { - @Inject UserAccountManager userAccountManager; - @Inject AppPreferences preferences; - @Inject AppInfo appInfo; - @Inject OnboardingService onboarding; + @JvmField + @Inject + var userAccountManager: UserAccountManager? = null - @Inject ViewThemeUtils.Factory viewThemeUtilsFactory; + @JvmField + @Inject + var preferences: AppPreferences? = null - private FirstRunActivityBinding binding; - private ViewThemeUtils defaultViewThemeUtils; + @JvmField + @Inject + var appInfo: AppInfo? = null - @Override - protected void onCreate(Bundle savedInstanceState) { - enableAccountHandling = false; + @JvmField + @Inject + var onboarding: OnboardingService? = null - super.onCreate(savedInstanceState); - defaultViewThemeUtils = viewThemeUtilsFactory.withPrimaryAsBackground(); - defaultViewThemeUtils.platform.themeStatusBar(this, ColorRole.PRIMARY); - this.binding = FirstRunActivityBinding.inflate(getLayoutInflater()); - setContentView(binding.getRoot()); + @JvmField + @Inject + var viewThemeUtilsFactory: ViewThemeUtils.Factory? = null - boolean isProviderOrOwnInstallationVisible = getResources().getBoolean(R.bool.show_provider_or_own_installation); + private var activityResult: ActivityResultLauncher? = null - setSlideshowSize(getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE); + private lateinit var binding: FirstRunActivityBinding + private var defaultViewThemeUtils: ViewThemeUtils? = null + override fun onCreate(savedInstanceState: Bundle?) { + enableAccountHandling = false - defaultViewThemeUtils.material.colorMaterialButtonFilledOnPrimary(binding.login); - binding.login.setOnClickListener(v -> { - if (getIntent().getBooleanExtra(EXTRA_ALLOW_CLOSE, false)) { - Intent authenticatorActivityIntent = new Intent(this, AuthenticatorActivity.class); - authenticatorActivityIntent.putExtra(AuthenticatorActivity.EXTRA_USE_PROVIDER_AS_WEBLOGIN, false); - startActivityForResult(authenticatorActivityIntent, FIRST_RUN_RESULT_CODE); - } else { - finish(); - } - }); + super.onCreate(savedInstanceState) + applyDefaultTheme() - defaultViewThemeUtils.material.colorMaterialButtonOutlinedOnPrimary(binding.signup); - binding.signup.setVisibility(isProviderOrOwnInstallationVisible ? View.VISIBLE : View.GONE); - binding.signup.setOnClickListener(v -> { - Intent authenticatorActivityIntent = new Intent(this, AuthenticatorActivity.class); - authenticatorActivityIntent.putExtra(AuthenticatorActivity.EXTRA_USE_PROVIDER_AS_WEBLOGIN, true); + binding = FirstRunActivityBinding.inflate(layoutInflater) + setContentView(binding.root) - if (getIntent().getBooleanExtra(EXTRA_ALLOW_CLOSE, false)) { - startActivityForResult(authenticatorActivityIntent, FIRST_RUN_RESULT_CODE); - } else { - authenticatorActivityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); - startActivity(authenticatorActivityIntent); - } - }); + val isProviderOrOwnInstallationVisible = resources.getBoolean(R.bool.show_provider_or_own_installation) + setSlideshowSize(resources.configuration.orientation == Configuration.ORIENTATION_LANDSCAPE) - defaultViewThemeUtils.platform.colorTextView(binding.hostOwnServer, ColorRole.ON_PRIMARY); - binding.hostOwnServer.setVisibility(isProviderOrOwnInstallationVisible ? View.VISIBLE : View.GONE); + registerActivityResult() + setupLoginButton() + setupSignupButton(isProviderOrOwnInstallationVisible) + setupHostOwnServerTextView(isProviderOrOwnInstallationVisible) + deleteAccountAtFirstLaunch() + setupFeaturesViewAdapter() + handleOnBackPressed() + } - if (isProviderOrOwnInstallationVisible) { - binding.hostOwnServer.setOnClickListener(v -> DisplayUtils.startLinkIntent(this, R.string.url_server_install)); - } + private fun applyDefaultTheme() { + defaultViewThemeUtils = viewThemeUtilsFactory?.withPrimaryAsBackground() + defaultViewThemeUtils?.platform?.themeStatusBar(this, ColorRole.PRIMARY) + } + private fun registerActivityResult() { + activityResult = + registerForActivityResult(ActivityResultContracts.StartActivityForResult()) { result: ActivityResult -> + if (RESULT_OK == result.resultCode) { + val data = result.data + val accountName = data?.getStringExtra(AccountManager.KEY_ACCOUNT_NAME) + val account = userAccountManager?.getAccountByName(accountName) + if (account == null) { + DisplayUtils.showSnackMessage(this, R.string.account_creation_failed) + return@registerForActivityResult + } + + userAccountManager?.setCurrentOwnCloudAccount(account.name) + + val i = Intent(this, FileDisplayActivity::class.java) + i.action = FileDisplayActivity.RESTART + i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP) + startActivity(i) + finish() + } + } + } - // Sometimes, accounts are not deleted when you uninstall the application so we'll do it now - if (onboarding.isFirstRun()) { - userAccountManager.removeAllAccounts(); + private fun setupLoginButton() { + defaultViewThemeUtils?.material?.colorMaterialButtonFilledOnPrimary(binding.login) + binding.login.setOnClickListener { + if (intent.getBooleanExtra(EXTRA_ALLOW_CLOSE, false)) { + val authenticatorActivityIntent = getAuthenticatorActivityIntent(false) + activityResult?.launch(authenticatorActivityIntent) + } else { + finish() + } } - - FeaturesViewAdapter featuresViewAdapter = new FeaturesViewAdapter(getSupportFragmentManager(), getFirstRun()); - binding.progressIndicator.setNumberOfSteps(featuresViewAdapter.getCount()); - binding.contentPanel.setAdapter(featuresViewAdapter); - - binding.contentPanel.addOnPageChangeListener(this); } - private void setSlideshowSize(boolean isLandscape) { - boolean isProviderOrOwnInstallationVisible = getResources().getBoolean(R.bool.show_provider_or_own_installation); + private fun setupSignupButton(isProviderOrOwnInstallationVisible: Boolean) { + defaultViewThemeUtils?.material?.colorMaterialButtonOutlinedOnPrimary(binding.signup) + binding.signup.visibility = if (isProviderOrOwnInstallationVisible) View.VISIBLE else View.GONE + binding.signup.setOnClickListener { + val authenticatorActivityIntent = getAuthenticatorActivityIntent(true) - LinearLayout.LayoutParams layoutParams; + if (intent.getBooleanExtra(EXTRA_ALLOW_CLOSE, false)) { + activityResult?.launch(authenticatorActivityIntent) + } else { + authenticatorActivityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK) + startActivity(authenticatorActivityIntent) + } + } + } - binding.buttonLayout.setOrientation(isLandscape ? LinearLayout.HORIZONTAL : LinearLayout.VERTICAL); + private fun getAuthenticatorActivityIntent(extraUseProviderAsWebLogin: Boolean): Intent { + val intent = Intent(this, AuthenticatorActivity::class.java) + intent.putExtra(AuthenticatorActivity.EXTRA_USE_PROVIDER_AS_WEBLOGIN, extraUseProviderAsWebLogin) + return intent + } + private fun setupHostOwnServerTextView(isProviderOrOwnInstallationVisible: Boolean) { + defaultViewThemeUtils?.platform?.colorTextView(binding.hostOwnServer, ColorRole.ON_PRIMARY) + binding.hostOwnServer.visibility = if (isProviderOrOwnInstallationVisible) View.VISIBLE else View.GONE if (isProviderOrOwnInstallationVisible) { - layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT); - } else { - layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, DisplayUtils.convertDpToPixel(isLandscape ? 100f : 150f, this)); + binding.hostOwnServer.setOnClickListener { + DisplayUtils.startLinkIntent( + this, + R.string.url_server_install + ) + } + } + } + + // Sometimes, accounts are not deleted when you uninstall the application so we'll do it now + private fun deleteAccountAtFirstLaunch() { + if (onboarding?.isFirstRun == true) { + userAccountManager?.removeAllAccounts() } + } - binding.bottomLayout.setLayoutParams(layoutParams); + private fun setupFeaturesViewAdapter() { + val featuresViewAdapter = FeaturesViewAdapter(supportFragmentManager, *firstRun) + binding.progressIndicator.setNumberOfSteps(featuresViewAdapter.count) + binding.contentPanel.adapter = featuresViewAdapter + binding.contentPanel.addOnPageChangeListener(this) } - @Override - public void onConfigurationChanged(Configuration newConfig) { - super.onConfigurationChanged(newConfig); - setSlideshowSize(newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE); + private fun handleOnBackPressed() { + onBackPressedDispatcher.addCallback( + this, + object : OnBackPressedCallback(true) { + override fun handleOnBackPressed() { + onFinish() + + if (intent.getBooleanExtra(EXTRA_ALLOW_CLOSE, false)) { + onBackPressedDispatcher.onBackPressed() + } else { + val intent = Intent(applicationContext, AuthenticatorActivity::class.java) + intent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP + intent.putExtra(EXTRA_EXIT, true) + startActivity(intent) + finish() + } + } + } + ) } - @Override - public void onBackPressed() { - onFinish(); + private fun setSlideshowSize(isLandscape: Boolean) { + val isProviderOrOwnInstallationVisible = resources.getBoolean(R.bool.show_provider_or_own_installation) + binding.buttonLayout.orientation = if (isLandscape) LinearLayout.HORIZONTAL else LinearLayout.VERTICAL - if (getIntent().getBooleanExtra(EXTRA_ALLOW_CLOSE, false)) { - super.onBackPressed(); + val layoutParams: LinearLayout.LayoutParams = if (isProviderOrOwnInstallationVisible) { + LinearLayout.LayoutParams( + ViewGroup.LayoutParams.MATCH_PARENT, + ViewGroup.LayoutParams.WRAP_CONTENT + ) } else { - Intent intent = new Intent(getApplicationContext(), AuthenticatorActivity.class); - intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); - intent.putExtra(EXTRA_EXIT, true); - startActivity(intent); - finish(); + LinearLayout.LayoutParams( + ViewGroup.LayoutParams.MATCH_PARENT, + DisplayUtils.convertDpToPixel(if (isLandscape) 100f else 150f, this) + ) } - } - private void onFinish() { - preferences.setLastSeenVersionCode(BuildConfig.VERSION_CODE); + binding.bottomLayout.layoutParams = layoutParams } - @Override - protected void onStop() { - onFinish(); - - super.onStop(); + override fun onConfigurationChanged(newConfig: Configuration) { + super.onConfigurationChanged(newConfig) + setSlideshowSize(newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) } - @Override - public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { - // unused but to be implemented due to abstract parent + private fun onFinish() { + preferences?.lastSeenVersionCode = BuildConfig.VERSION_CODE } - @Override - public void onPageSelected(int position) { - binding.progressIndicator.animateToStep(position + 1); + override fun onStop() { + onFinish() + super.onStop() } - @Override - public void onPageScrollStateChanged(int state) { + override fun onPageScrolled(position: Int, positionOffset: Float, positionOffsetPixels: Int) { // unused but to be implemented due to abstract parent } - @Override - protected void onActivityResult(int requestCode, int resultCode, Intent data) { - super.onActivityResult(requestCode, resultCode, data); - if (FIRST_RUN_RESULT_CODE == requestCode && RESULT_OK == resultCode) { - - String accountName = data.getStringExtra(AccountManager.KEY_ACCOUNT_NAME); - Account account = userAccountManager.getAccountByName(accountName); - - - if (account == null) { - DisplayUtils.showSnackMessage(this, R.string.account_creation_failed); - return; - } - - userAccountManager.setCurrentOwnCloudAccount(account.name); - - Intent i = new Intent(this, FileDisplayActivity.class); - i.setAction(FileDisplayActivity.RESTART); - i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); - startActivity(i); - - finish(); - } + override fun onPageSelected(position: Int) { + binding.progressIndicator.animateToStep(position + 1) } + override fun onPageScrollStateChanged(state: Int) { + // unused but to be implemented due to abstract parent + } - public static FeatureItem[] getFirstRun() { - return new FeatureItem[]{ - new FeatureItem(R.drawable.logo, R.string.first_run_1_text, R.string.empty, true, false), - new FeatureItem(R.drawable.first_run_files, R.string.first_run_2_text, R.string.empty, true, false), - new FeatureItem(R.drawable.first_run_groupware, R.string.first_run_3_text, R.string.empty, true, false), - new FeatureItem(R.drawable.first_run_talk, R.string.first_run_4_text, R.string.empty, true, false)}; + companion object { + const val EXTRA_ALLOW_CLOSE = "ALLOW_CLOSE" + const val EXTRA_EXIT = "EXIT" + + val firstRun: Array + get() = arrayOf( + FeatureItem(R.drawable.logo, R.string.first_run_1_text, R.string.empty, true, false), + FeatureItem(R.drawable.first_run_files, R.string.first_run_2_text, R.string.empty, true, false), + FeatureItem(R.drawable.first_run_groupware, R.string.first_run_3_text, R.string.empty, true, false), + FeatureItem(R.drawable.first_run_talk, R.string.first_run_4_text, R.string.empty, true, false) + ) } } diff --git a/app/src/main/res/layout/first_run_activity.xml b/app/src/main/res/layout/first_run_activity.xml index 0935b9266782..8c477df66096 100644 --- a/app/src/main/res/layout/first_run_activity.xml +++ b/app/src/main/res/layout/first_run_activity.xml @@ -93,7 +93,7 @@ app:cornerRadius="@dimen/button_corner_radius" /> - Date: Tue, 31 Oct 2023 16:45:49 +0100 Subject: [PATCH 3/3] Suppress magic number, spread operator Signed-off-by: alperozturk --- .../java/com/nextcloud/client/onboarding/FirstRunActivity.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt b/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt index 0169eaa75a06..e9080426a974 100644 --- a/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt +++ b/app/src/main/java/com/nextcloud/client/onboarding/FirstRunActivity.kt @@ -185,6 +185,7 @@ class FirstRunActivity : BaseActivity(), ViewPager.OnPageChangeListener, Injecta } } + @Suppress("SpreadOperator") private fun setupFeaturesViewAdapter() { val featuresViewAdapter = FeaturesViewAdapter(supportFragmentManager, *firstRun) binding.progressIndicator.setNumberOfSteps(featuresViewAdapter.count) @@ -223,6 +224,7 @@ class FirstRunActivity : BaseActivity(), ViewPager.OnPageChangeListener, Injecta ViewGroup.LayoutParams.WRAP_CONTENT ) } else { + @Suppress("MagicNumber") LinearLayout.LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT, DisplayUtils.convertDpToPixel(if (isLandscape) 100f else 150f, this)