mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-15 07:52:02 +02:00
53 lines
2.3 KiB
Kotlin
53 lines
2.3 KiB
Kotlin
package com.simplemobiletools.notes.dialogs
|
|
|
|
import android.support.v7.app.AlertDialog
|
|
import android.view.ViewGroup
|
|
import com.simplemobiletools.commons.extensions.getFilenameFromPath
|
|
import com.simplemobiletools.commons.extensions.humanizePath
|
|
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
|
import com.simplemobiletools.notes.R
|
|
import com.simplemobiletools.notes.R.id.open_file_update_file
|
|
import com.simplemobiletools.notes.activities.SimpleActivity
|
|
import com.simplemobiletools.notes.helpers.TYPE_NOTE
|
|
import com.simplemobiletools.notes.models.Note
|
|
import kotlinx.android.synthetic.main.dialog_open_file.view.*
|
|
import java.io.File
|
|
|
|
class OpenFileDialog(val activity: SimpleActivity, val path: String, val callback: (note: Note) -> Unit) : AlertDialog.Builder(activity) {
|
|
private var dialog: AlertDialog
|
|
|
|
init {
|
|
val view = (activity.layoutInflater.inflate(R.layout.dialog_open_file, null) as ViewGroup).apply {
|
|
open_file_filename.text = activity.humanizePath(path)
|
|
}
|
|
|
|
dialog = AlertDialog.Builder(activity)
|
|
.setPositiveButton(R.string.ok, null)
|
|
.setNegativeButton(R.string.cancel, null)
|
|
.create().apply {
|
|
activity.setupDialogStuff(view, this, R.string.open_file) {
|
|
getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener {
|
|
val updateFileOnEdit = view.open_file_type.checkedRadioButtonId == open_file_update_file
|
|
val storePath = if (updateFileOnEdit) path else ""
|
|
val storeContent = if (updateFileOnEdit) "" else File(path).readText()
|
|
|
|
if (updateFileOnEdit) {
|
|
activity.handleSAFDialog(path) {
|
|
saveNote(storeContent, storePath)
|
|
}
|
|
} else {
|
|
saveNote(storeContent, storePath)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private fun saveNote(storeContent: String, storePath: String) {
|
|
val filename = path.getFilenameFromPath()
|
|
val note = Note(0, filename, storeContent, TYPE_NOTE, storePath)
|
|
callback(note)
|
|
dialog.dismiss()
|
|
}
|
|
}
|