112 lines
2.9 KiB
Swift
112 lines
2.9 KiB
Swift
//
|
|
// Swiftfin is subject to the terms of the Mozilla Public
|
|
// License, v2.0. If a copy of the MPL was not distributed with this
|
|
// file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
//
|
|
// Copyright (c) 2024 Jellyfin & Jellyfin Contributors
|
|
//
|
|
|
|
import Defaults
|
|
import JellyfinAPI
|
|
import SwiftUI
|
|
|
|
// TODO: refactor after socket implementation
|
|
|
|
struct ScheduledTasksView: View {
|
|
|
|
@EnvironmentObject
|
|
private var router: SettingsCoordinator.Router
|
|
|
|
@State
|
|
private var isPresentingRestartConfirmation = false
|
|
@State
|
|
private var isPresentingShutdownConfirmation = false
|
|
|
|
@StateObject
|
|
private var viewModel = ScheduledTasksViewModel()
|
|
|
|
private let timer = Timer.publish(every: 5, on: .main, in: .common)
|
|
.autoconnect()
|
|
|
|
// MARK: - Server Function Buttons
|
|
|
|
@ViewBuilder
|
|
private var serverFunctions: some View {
|
|
ServerTaskButton(
|
|
title: L10n.restartServer,
|
|
systemImage: "arrow.clockwise",
|
|
warningMessage: L10n.restartWarning,
|
|
isPresented: $isPresentingRestartConfirmation
|
|
) {
|
|
viewModel.send(.restartApplication)
|
|
}
|
|
|
|
ServerTaskButton(
|
|
title: L10n.shutdownServer,
|
|
systemImage: "power",
|
|
warningMessage: L10n.shutdownWarning,
|
|
isPresented: $isPresentingShutdownConfirmation
|
|
) {
|
|
viewModel.send(.shutdownApplication)
|
|
}
|
|
}
|
|
|
|
// MARK: - Body
|
|
|
|
@ViewBuilder
|
|
private var contentView: some View {
|
|
List {
|
|
|
|
ListTitleSection(
|
|
L10n.tasks,
|
|
description: L10n.tasksDescription
|
|
) {
|
|
UIApplication.shared.open(URL(string: "https://jellyfin.org/docs/general/server/tasks")!)
|
|
}
|
|
|
|
Section(L10n.server) {
|
|
serverFunctions
|
|
}
|
|
|
|
ForEach(viewModel.tasks.keys, id: \.self) { category in
|
|
Section(category) {
|
|
ForEach(viewModel.tasks[category] ?? []) { task in
|
|
ScheduledTaskButton(observer: task)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@ViewBuilder
|
|
private func errorView(with error: some Error) -> some View {
|
|
ErrorView(error: error)
|
|
.onRetry {
|
|
viewModel.send(.refreshTasks)
|
|
}
|
|
}
|
|
|
|
var body: some View {
|
|
ZStack {
|
|
Color.clear
|
|
|
|
switch viewModel.state {
|
|
case .content:
|
|
contentView
|
|
case let .error(error):
|
|
errorView(with: error)
|
|
case .initial:
|
|
DelayedProgressView()
|
|
}
|
|
}
|
|
.animation(.linear(duration: 0.2), value: viewModel.state)
|
|
.navigationTitle(L10n.tasks)
|
|
.onFirstAppear {
|
|
viewModel.send(.refreshTasks)
|
|
}
|
|
.onReceive(timer) { _ in
|
|
viewModel.send(.getTasks)
|
|
}
|
|
}
|
|
}
|