mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
240 lines
9.4 KiB
Java
240 lines
9.4 KiB
Java
package com.todoroo.astrid.gcal;
|
|
|
|
import android.app.PendingIntent;
|
|
import android.content.DialogInterface;
|
|
import android.content.Intent;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.view.View;
|
|
import android.view.View.OnClickListener;
|
|
import android.widget.TextView;
|
|
|
|
import com.todoroo.andlib.utility.DateUtilities;
|
|
import com.todoroo.astrid.activity.TaskListActivity;
|
|
import com.todoroo.astrid.activity.TaskListFragment;
|
|
import com.todoroo.astrid.api.FilterWithCustomIntent;
|
|
import com.todoroo.astrid.dao.TagDataDao;
|
|
import com.todoroo.astrid.data.TagData;
|
|
import com.todoroo.astrid.service.StartupService;
|
|
import com.todoroo.astrid.tags.TagFilterExposer;
|
|
|
|
import org.tasks.R;
|
|
import org.tasks.dialogs.DialogBuilder;
|
|
import org.tasks.injection.InjectingAppCompatActivity;
|
|
import org.tasks.preferences.ActivityPreferences;
|
|
import org.tasks.preferences.BasicPreferences;
|
|
import org.tasks.preferences.ResourceResolver;
|
|
import org.tasks.scheduling.AlarmManager;
|
|
import org.tasks.scheduling.CalendarNotificationIntentService;
|
|
|
|
import javax.inject.Inject;
|
|
|
|
import static org.tasks.date.DateTimeUtils.newDateTime;
|
|
|
|
public class CalendarReminderActivity extends InjectingAppCompatActivity {
|
|
|
|
public static final String TOKEN_NAMES = "names";
|
|
public static final String TOKEN_EMAILS = "emails";
|
|
public static final String TOKEN_EVENT_ID = "eventId";
|
|
public static final String TOKEN_EVENT_NAME = "eventName";
|
|
public static final String TOKEN_EVENT_START_TIME = "eventStartTime";
|
|
public static final String TOKEN_EVENT_END_TIME = "eventEndTime";
|
|
|
|
public static final String TOKEN_FROM_POSTPONE = "fromPostpone";
|
|
|
|
private static final String PREF_IGNORE_PRESSES = "calEventsIgnored";
|
|
|
|
// Prompt user to ignore all missed calls after this many ignore presses
|
|
private static final int IGNORE_PROMPT_COUNT = 3;
|
|
|
|
@Inject StartupService startupService;
|
|
@Inject TagDataDao tagDataDao;
|
|
@Inject ActivityPreferences preferences;
|
|
@Inject ResourceResolver resourceResolver;
|
|
@Inject DialogBuilder dialogBuilder;
|
|
@Inject AlarmManager alarmManager;
|
|
|
|
private String eventName;
|
|
private long startTime;
|
|
private long endTime;
|
|
private long eventId;
|
|
|
|
private boolean fromPostpone;
|
|
|
|
private TextView ignoreButton;
|
|
private TextView createListButton;
|
|
private TextView postponeButton;
|
|
private View dismissButton;
|
|
private View ignoreSettingsButton;
|
|
|
|
private final OnClickListener dismissListener = new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
finish();
|
|
}
|
|
};
|
|
|
|
private final OnClickListener ignoreListener = new OnClickListener() {
|
|
@Override
|
|
public void onClick(final View v) {
|
|
// Check for number of ignore presses
|
|
int ignorePresses = preferences.getInt(PREF_IGNORE_PRESSES, 0);
|
|
ignorePresses++;
|
|
if (ignorePresses == IGNORE_PROMPT_COUNT) {
|
|
dialogBuilder.newMessageDialog(R.string.CRA_ignore_body)
|
|
.setPositiveButton(R.string.CRA_ignore_all, new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
preferences.setBoolean(R.string.p_calendar_reminders, false);
|
|
dismissListener.onClick(v);
|
|
}
|
|
})
|
|
.setNegativeButton(R.string.CRA_ignore_this, new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
dismissListener.onClick(v);
|
|
}
|
|
})
|
|
.show();
|
|
} else {
|
|
dismissListener.onClick(v);
|
|
}
|
|
preferences.setInt(PREF_IGNORE_PRESSES, ignorePresses);
|
|
}
|
|
};
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
preferences.applyTranslucentDialogTheme();
|
|
startupService.onStartupApplication(this);
|
|
|
|
setContentView(R.layout.calendar_reminder_activity);
|
|
|
|
Intent intent = getIntent();
|
|
fromPostpone = intent.getBooleanExtra(TOKEN_FROM_POSTPONE, false);
|
|
eventId = intent.getLongExtra(TOKEN_EVENT_ID, -1);
|
|
eventName = intent.getStringExtra(TOKEN_EVENT_NAME);
|
|
startTime = intent.getLongExtra(TOKEN_EVENT_START_TIME, DateUtilities.now());
|
|
endTime = intent.getLongExtra(TOKEN_EVENT_END_TIME, DateUtilities.now() + DateUtilities.ONE_HOUR);
|
|
|
|
createListButton = (TextView) findViewById(R.id.create_list);
|
|
postponeButton = (TextView) findViewById(R.id.postpone);
|
|
ignoreButton = (TextView) findViewById(R.id.ignore);
|
|
ignoreSettingsButton = findViewById(R.id.ignore_settings);
|
|
dismissButton = findViewById(R.id.dismiss);
|
|
|
|
setupUi();
|
|
|
|
addListeners();
|
|
}
|
|
|
|
private void setupUi() {
|
|
((TextView) findViewById(R.id.reminder_title))
|
|
.setText(getString(R.string.CRA_title));
|
|
|
|
TextView dialogView = (TextView) findViewById(R.id.reminder_message);
|
|
String speechText;
|
|
if (fromPostpone) {
|
|
speechText = getString(R.string.CRA_speech_bubble_end, eventName);
|
|
} else {
|
|
speechText = getString(R.string.CRA_speech_bubble_start, eventName);
|
|
}
|
|
|
|
dialogView.setText(speechText);
|
|
|
|
createListButton.setBackgroundColor(resourceResolver.getData(R.attr.asThemeTextColor));
|
|
|
|
if (fromPostpone) {
|
|
postponeButton.setVisibility(View.GONE);
|
|
}
|
|
}
|
|
|
|
private void addListeners() {
|
|
ignoreButton.setOnClickListener(ignoreListener);
|
|
dismissButton.setOnClickListener(dismissListener);
|
|
|
|
ignoreSettingsButton.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
Intent editPreferences = new Intent(CalendarReminderActivity.this, BasicPreferences.class);
|
|
startActivity(editPreferences);
|
|
dismissListener.onClick(v);
|
|
}
|
|
});
|
|
|
|
if (!fromPostpone) {
|
|
postponeButton.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
postpone();
|
|
}
|
|
});
|
|
}
|
|
|
|
createListButton.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
String listName = getString(R.string.CRA_default_list_name, eventName);
|
|
TagData existing = tagDataDao.getTagByName(listName, TagData.PROPERTIES);
|
|
if (existing != null) {
|
|
listExists(existing);
|
|
} else {
|
|
createNewList(listName);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
private void listExists(final TagData tag) {
|
|
dialogBuilder.newMessageDialog(R.string.CRA_list_exists_body, tag.getName())
|
|
.setPositiveButton(R.string.CRA_create_new, new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
createNewList(tag.getName() + " "
|
|
+ DateUtilities.getDateString(newDateTime(startTime)));
|
|
}
|
|
})
|
|
.setNegativeButton(R.string.CRA_use_existing, new DialogInterface.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
FilterWithCustomIntent filter = TagFilterExposer.filterFromTagData(CalendarReminderActivity.this, tag);
|
|
|
|
Intent listIntent = new Intent(CalendarReminderActivity.this, TaskListActivity.class);
|
|
listIntent.putExtra(TaskListActivity.OPEN_FILTER, filter);
|
|
listIntent.putExtras(filter.customExtras);
|
|
|
|
startActivity(listIntent);
|
|
dismissButton.performClick();
|
|
}
|
|
})
|
|
.show();
|
|
}
|
|
|
|
private void createNewList(String name) {
|
|
Intent newListIntent = new Intent(this, CalendarAlarmListCreator.class);
|
|
newListIntent.putStringArrayListExtra(TOKEN_NAMES, getIntent().getStringArrayListExtra(TOKEN_NAMES));
|
|
newListIntent.putStringArrayListExtra(TOKEN_EMAILS, getIntent().getStringArrayListExtra(TOKEN_EMAILS));
|
|
newListIntent.putExtra(CalendarAlarmListCreator.TOKEN_LIST_NAME, name);
|
|
|
|
startActivity(newListIntent);
|
|
dismissButton.performClick(); // finish with animation
|
|
}
|
|
|
|
private void postpone() {
|
|
Intent eventAlarm = new Intent(this, CalendarAlarmReceiver.class);
|
|
eventAlarm.setAction(CalendarAlarmReceiver.BROADCAST_CALENDAR_REMINDER);
|
|
eventAlarm.setData(Uri.parse(CalendarNotificationIntentService.URI_PREFIX_POSTPONE + "://" + eventId));
|
|
|
|
PendingIntent pendingIntent = PendingIntent.getBroadcast(this,
|
|
CalendarAlarmReceiver.REQUEST_CODE_CAL_REMINDER, eventAlarm, 0);
|
|
|
|
alarmManager.cancel(pendingIntent);
|
|
|
|
long alarmTime = endTime + DateUtilities.ONE_MINUTE * 5;
|
|
alarmManager.wakeup(alarmTime, pendingIntent);
|
|
dismissButton.performClick();
|
|
}
|
|
|
|
}
|