mirror of https://github.com/iSoron/uhabits.git
parent
4dc678a85c
commit
22a8da0a17
@ -0,0 +1,120 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016 Álinson Santos Xavier <isoron@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of Loop Habit Tracker.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by the
|
||||||
|
* Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
* option) any later version.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
|
* more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.isoron.uhabits.core.commands;
|
||||||
|
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
|
||||||
|
import com.google.auto.factory.AutoFactory;
|
||||||
|
import com.google.auto.factory.Provided;
|
||||||
|
|
||||||
|
import org.isoron.uhabits.core.models.Habit;
|
||||||
|
import org.isoron.uhabits.core.models.HabitList;
|
||||||
|
import org.isoron.uhabits.core.models.HabitNotFoundException;
|
||||||
|
import org.isoron.uhabits.core.models.ModelFactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to create a habit.
|
||||||
|
*/
|
||||||
|
@AutoFactory
|
||||||
|
public class DuplicateHabitCommand extends Command
|
||||||
|
{
|
||||||
|
ModelFactory modelFactory;
|
||||||
|
|
||||||
|
HabitList habitList;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
Habit model;
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
Long savedId;
|
||||||
|
|
||||||
|
public DuplicateHabitCommand(@Provided @NonNull ModelFactory modelFactory,
|
||||||
|
@NonNull HabitList habitList,
|
||||||
|
@NonNull Habit model)
|
||||||
|
{
|
||||||
|
this.modelFactory = modelFactory;
|
||||||
|
this.habitList = habitList;
|
||||||
|
this.model = model;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void execute()
|
||||||
|
{
|
||||||
|
Habit savedHabit = modelFactory.buildHabit();
|
||||||
|
savedHabit.copyFrom(model);
|
||||||
|
savedHabit.setId(savedId);
|
||||||
|
|
||||||
|
habitList.add(savedHabit);
|
||||||
|
savedId = savedHabit.getId();
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public Record toRecord()
|
||||||
|
{
|
||||||
|
return new Record(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void undo()
|
||||||
|
{
|
||||||
|
if (savedId == null) throw new IllegalStateException();
|
||||||
|
|
||||||
|
Habit habit = habitList.getById(savedId);
|
||||||
|
if (habit == null) throw new HabitNotFoundException();
|
||||||
|
|
||||||
|
habitList.remove(habit);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class Record
|
||||||
|
{
|
||||||
|
@NonNull
|
||||||
|
public String id;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public String event = "CreateHabit";
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public Habit.HabitData habit;
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
public Long savedId;
|
||||||
|
|
||||||
|
public Record(DuplicateHabitCommand command)
|
||||||
|
{
|
||||||
|
id = command.getId();
|
||||||
|
habit = command.model.getData();
|
||||||
|
savedId = command.savedId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public DuplicateHabitCommand toCommand(@NonNull ModelFactory modelFactory,
|
||||||
|
@NonNull HabitList habitList)
|
||||||
|
{
|
||||||
|
Habit h = modelFactory.buildHabit(habit);
|
||||||
|
|
||||||
|
DuplicateHabitCommand command;
|
||||||
|
command = new DuplicateHabitCommand(modelFactory, habitList, h);
|
||||||
|
command.savedId = savedId;
|
||||||
|
command.setId(id);
|
||||||
|
return command;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue