Skip to content

Commit

Permalink
Merge pull request #12 from anas-elgarhy/dev
Browse files Browse the repository at this point in the history
Fix trying start the timer more then one if you closed the project and open a new one issue
  • Loading branch information
0x61nas committed Nov 2, 2022
2 parents 35d225b + 7cb5863 commit a8c4a59
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import com.intellij.notification.NotificationType;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.startup.StartupActivity;
import lombok.val;
import org.jetbrains.annotations.NotNull;

import java.io.IOException;
Expand All @@ -18,11 +19,11 @@
public class AyahStartupActivity implements StartupActivity {
@Override
public void runActivity(@NotNull final Project project) {
final var basmalhOnStartSettingsState = AyahSettingsState.getInstance().getBasmalhOnStart();
val basmalhOnStartSettingsState = AyahSettingsState.getInstance().getBasmalhOnStart();
// Basmalh on start
if (basmalhOnStartSettingsState.isActive()) {
try {
final var bassmalh = Ayah.getAyah(1,
val bassmalh = Ayah.getAyah(1,
basmalhOnStartSettingsState.getEdition().getEditionIdentifier());
NotificationGroupManager.getInstance()
.getNotificationGroup("Basmalh on Start")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,21 @@ public enum NotificationTimer {

private final Timer timer;
private final NotificationTimerTask notificationTimerTask;
private boolean isRunning;

NotificationTimer() {
timer = new Timer();
notificationTimerTask = new NotificationTimerTask();
isRunning = false;
}
public void start(@NotNull Project project) {
if (isRunning) {
return;
}
notificationTimerTask.setProject(project);
schedule(AyahSettingsState.getInstance().getIntervalTimeBetweenNotifications());
isRunning = true;

}

public void updateIntervalTimeBetweenNotifications(final int intervalTimeBetweenNotifications) {
Expand Down

0 comments on commit a8c4a59

Please sign in to comment.