jellyflood/Shared/ViewModels/AdminDashboard/DeviceDetailViewModel.swift
Joe Kribs 0025422634
[iOS & tvOS] Upgrade SDK to 10.10 (#1463)
* Buildable!

* Update file names.

* Default sort to sort name NOT name.

* SessionInfoDto vs SessionInfo

* Targetting

* Fix many invalid `ItemSortBy` existing. Will need to revisit later to see which can still be used!

* ExtraTypes Patch.

* Move from Binding to OnChange. Tested and Working.

* Update README.md

Update README to use 10.10.6. Bumped up from 10.8.13

* Update to Main on https://github.com/jellyfin/jellyfin-sdk-swift.git

* Now using https://github.com/jellyfin/jellyfin-sdk-swift.git again!

* Paths.getUserViews() userId moved to parameters

* Fix ViewModels where -Dto suffixes were removed by https://github.com/jellyfin/Swiftfin/pull/1465 auto-merge.

* SupportedCaseIterable

* tvOS supportedCases fixes for build issue.

* cleanup

* update API to 0.5.1 and correct VideoRangeTypes.

* Remove deviceProfile.responseProfiles = videoPlayer.responseProfiles

* Second to last adjustment:
Resolved: // TODO: 10.10 - Filter to only valid SortBy's for each BaseItemKind.
Last outstanding item: // TODO: 10.10 - What should authenticationProviderID & passwordResetProviderID be?

* Trailers itemID must precede userID

* Force User Policy to exist.

---------

Co-authored-by: Ethan Pippin <ethanpippin2343@gmail.com>
2025-04-06 23:42:47 -04:00

107 lines
2.6 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) 2025 Jellyfin & Jellyfin Contributors
//
import Combine
import Foundation
import JellyfinAPI
import OrderedCollections
final class DeviceDetailViewModel: ViewModel, Stateful, Eventful {
enum Event {
case error(JellyfinAPIError)
case setCustomName
}
enum Action: Equatable {
case setCustomName(String)
}
enum BackgroundState: Hashable {
case updating
}
enum State: Hashable {
case initial
}
@Published
var backgroundStates: Set<BackgroundState> = []
@Published
var state: State = .initial
@Published
private(set) var device: DeviceInfoDto
var events: AnyPublisher<Event, Never> {
eventSubject
.receive(on: RunLoop.main)
.eraseToAnyPublisher()
}
private var eventSubject: PassthroughSubject<Event, Never> = .init()
init(device: DeviceInfoDto) {
self.device = device
}
func respond(to action: Action) -> State {
switch action {
case let .setCustomName(newName):
cancellables = []
Task {
await MainActor.run {
_ = backgroundStates.insert(.updating)
}
do {
try await setCustomName(newName: newName)
await MainActor.run {
self.eventSubject.send(.setCustomName)
}
} catch {
await MainActor.run {
self.eventSubject.send(.error(.init("Unable to update custom name")))
}
}
await MainActor.run {
_ = backgroundStates.remove(.updating)
}
}
.store(in: &cancellables)
return .initial
}
}
private func setCustomName(newName: String) async throws {
guard let id = device.id else { return }
let request = Paths.updateDeviceOptions(id: id, .init(customName: newName))
try await userSession.client.send(request)
await MainActor.run {
self.device.customName = newName
}
}
private func getDeviceInfo() async throws {
guard let id = device.id else { return }
let request = Paths.getDeviceInfo(id: id)
let response = try await userSession.client.send(request)
await MainActor.run {
self.device = response.value
}
}
}