Files
GetGoing/ProjectClock/DebugViewController.swift
T
Aaron 26aa07f4b1 Sends notif for DebugAlarm
(Notifications are only sent when not in app)
2021-01-24 17:47:49 -05:00

47 lines
1.3 KiB
Swift

//
// TestingViewController.swift
// ProjectClock
//
// Created by Aaron Saporito on 1/13/21.
//
import UIKit
import UserNotifications
class DebugViewController: UIViewController
{
override func viewDidLoad()
{
super.viewDidLoad()
// Request notification permission
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { success, error in
if success {
print("All set!")
} else if let error = error {
print(error.localizedDescription)
}
}
}
//Sends a test notification
@IBAction func sendNotification(_ sender: Any)
{
Notification(alarm: Alarms.fromLocal().listEnabled[0]).scheduleNotification()
}
@IBAction func addAlarm(_ sender: Any)
{
let (h, m, _) = Date().getHMS()
let alarm = Alarm(hour: h, minute: m, text: "Test alarm - \(h * m)", wakeMethod: wvms[1], repeats: [true, true, true, true, true, true, true], lastActivate: Date().added(.minute, -1))
Alarms.fromLocal().apply { $0.list.append(alarm) }.localSave()
Notification(alarm: alarm).scheduleNotification()
}
@IBAction func deleteAlarm(_ sender: Any)
{
Alarms.fromLocal().apply { $0.list.removeAll() }.localSave()
}
}