mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-14 15:32:27 +02:00
35 lines
1.3 KiB
Kotlin
35 lines
1.3 KiB
Kotlin
package com.simplemobiletools.notes.dialogs
|
|
|
|
import android.app.Activity
|
|
import android.support.v7.app.AlertDialog
|
|
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
|
import com.simplemobiletools.commons.extensions.toast
|
|
import com.simplemobiletools.commons.extensions.value
|
|
import com.simplemobiletools.notes.R
|
|
import com.simplemobiletools.notes.databases.DBHelper
|
|
import kotlinx.android.synthetic.main.new_note.view.*
|
|
|
|
class NewNoteDialog(val activity: Activity, val db: DBHelper, callback: (title: String) -> Unit) {
|
|
init {
|
|
val view = activity.layoutInflater.inflate(R.layout.new_note, null)
|
|
|
|
AlertDialog.Builder(activity)
|
|
.setPositiveButton(R.string.ok, null)
|
|
.setNegativeButton(R.string.cancel, null)
|
|
.create().apply {
|
|
activity.setupDialogStuff(view, this, R.string.new_note)
|
|
getButton(android.support.v7.app.AlertDialog.BUTTON_POSITIVE).setOnClickListener {
|
|
val title = view.note_name.value
|
|
if (title.isEmpty()) {
|
|
activity.toast(R.string.no_title)
|
|
} else if (db.doesTitleExist(title)) {
|
|
activity.toast(R.string.title_taken)
|
|
} else {
|
|
callback.invoke(title)
|
|
dismiss()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|