Add action to show reminder right now (for developers)

pull/367/merge
Alinson S. Xavier 8 years ago
parent e91f1c3fa4
commit 2a4a7c975f

@ -25,7 +25,10 @@ import org.isoron.androidbase.activities.*
import org.isoron.uhabits.* import org.isoron.uhabits.*
import org.isoron.uhabits.activities.habits.list.views.* import org.isoron.uhabits.activities.habits.list.views.*
import org.isoron.uhabits.core.commands.* import org.isoron.uhabits.core.commands.*
import org.isoron.uhabits.core.preferences.*
import org.isoron.uhabits.core.ui.*
import org.isoron.uhabits.core.ui.screens.habits.list.* import org.isoron.uhabits.core.ui.screens.habits.list.*
import org.isoron.uhabits.core.utils.*
import javax.inject.* import javax.inject.*
@ActivityScope @ActivityScope
@ -33,8 +36,10 @@ class ListHabitsSelectionMenu @Inject constructor(
private val screen: ListHabitsScreen, private val screen: ListHabitsScreen,
private val listAdapter: HabitCardListAdapter, private val listAdapter: HabitCardListAdapter,
var commandRunner: CommandRunner, var commandRunner: CommandRunner,
private val prefs: Preferences,
private val behavior: ListHabitsSelectionMenuBehavior, private val behavior: ListHabitsSelectionMenuBehavior,
private val listController: Lazy<HabitCardListController> private val listController: Lazy<HabitCardListController>,
private val notificationTray: NotificationTray
) : BaseSelectionMenu() { ) : BaseSelectionMenu() {
override fun onFinish() { override fun onFinish() {
@ -69,6 +74,12 @@ class ListHabitsSelectionMenu @Inject constructor(
return true return true
} }
R.id.action_notify -> {
for(h in listAdapter.selected)
notificationTray.show(h, DateUtils.getToday(), 0)
return true
}
else -> return false else -> return false
} }
} }
@ -78,12 +89,14 @@ class ListHabitsSelectionMenu @Inject constructor(
val itemColor = menu.findItem(R.id.action_color) val itemColor = menu.findItem(R.id.action_color)
val itemArchive = menu.findItem(R.id.action_archive_habit) val itemArchive = menu.findItem(R.id.action_archive_habit)
val itemUnarchive = menu.findItem(R.id.action_unarchive_habit) val itemUnarchive = menu.findItem(R.id.action_unarchive_habit)
val itemNotify = menu.findItem(R.id.action_notify)
itemColor.isVisible = true itemColor.isVisible = true
itemEdit.isVisible = behavior.canEdit() itemEdit.isVisible = behavior.canEdit()
itemArchive.isVisible = behavior.canArchive() itemArchive.isVisible = behavior.canArchive()
itemUnarchive.isVisible = behavior.canUnarchive() itemUnarchive.isVisible = behavior.canUnarchive()
setTitle(Integer.toString(listAdapter.selected.size)) setTitle(Integer.toString(listAdapter.selected.size))
itemNotify.isVisible = prefs.isDeveloper
return true return true
} }

@ -46,4 +46,9 @@
android:title="@string/delete" android:title="@string/delete"
app:showAsAction="never"/> app:showAsAction="never"/>
<item
android:id="@+id/action_notify"
android:title="@string/reminder"
app:showAsAction="never"/>
</menu> </menu>
Loading…
Cancel
Save