Reformat code

Signed-off-by: ZetaTom <70907959+ZetaTom@users.noreply.github.com>
This commit is contained in:
ZetaTom 2024-11-12 10:44:54 +01:00
parent c1e1cf1032
commit d9550175e8
No known key found for this signature in database
GPG key ID: BC815CEC88F62FBA
2 changed files with 9 additions and 6 deletions

View file

@ -102,7 +102,8 @@ class ChooseStorageLocationDialogFragment : DialogFragment(), Injectable {
StorageType.EXTERNAL -> getString(R.string.storage_external_storage)
}
val storagePath = storagePoints.firstOrNull { it.storageType == storageType && it.privacyType == privacyType }?.path
val storagePath =
storagePoints.firstOrNull { it.storageType == storageType && it.privacyType == privacyType }?.path
return storagePath?.let {
val file = File(it)
@ -118,7 +119,8 @@ class ChooseStorageLocationDialogFragment : DialogFragment(), Injectable {
}
private fun updateMediaIndexSwitch() {
val privacyTypes = storagePoints.filter { it.storageType == selectedStorageType }.map { it.privacyType }.distinct()
val privacyTypes =
storagePoints.filter { it.storageType == selectedStorageType }.map { it.privacyType }.distinct()
binding.allowMediaIndexSwitch.isEnabled = privacyTypes.size > 1
binding.allowMediaIndexSwitch.isChecked = privacyTypes.contains(PrivacyType.PUBLIC)
}
@ -142,7 +144,8 @@ class ChooseStorageLocationDialogFragment : DialogFragment(), Injectable {
}
private fun notifyResult() {
val newPath = storagePoints.first { it.storageType == selectedStorageType && it.privacyType == selectedPrivacyType }
val newPath =
storagePoints.first { it.storageType == selectedStorageType && it.privacyType == selectedPrivacyType }
val resultBundle = Bundle().apply {
putString(KEY_RESULT_STORAGE_LOCATION, newPath.path)
@ -161,4 +164,4 @@ class ChooseStorageLocationDialogFragment : DialogFragment(), Injectable {
@JvmStatic
val TAG: String = Companion::class.java.simpleName
}
}
}

View file

@ -26,7 +26,7 @@ class ChooseStorageLocationActivity : AppCompatActivity() {
Intent().putExtra(
KEY_RESULT_STORAGE_LOCATION,
result.getString(KEY_RESULT_STORAGE_LOCATION)
)
)
)
}
chooseStorageLocationDialogFragment.show(supportFragmentManager, "choose_storage_location")
@ -35,4 +35,4 @@ class ChooseStorageLocationActivity : AppCompatActivity() {
companion object {
const val KEY_RESULT_STORAGE_LOCATION = ChooseStorageLocationDialogFragment.KEY_RESULT_STORAGE_LOCATION
}
}
}