| 123456789101112131415161718192021222324252627282930313233 |
- // LoopFollow
- // InfoDisplaySettingsViewModel.swift
- import Foundation
- import SwiftUI
- class InfoDisplaySettingsViewModel: ObservableObject {
- @Published var infoSort: [Int]
- @Published var infoVisible: [Bool]
- init() {
- infoSort = Storage.shared.infoSort.value
- infoVisible = Storage.shared.infoVisible.value
- }
- func toggleVisibility(for sortedIndex: Int) {
- infoVisible[sortedIndex].toggle()
- Storage.shared.infoVisible.value = infoVisible
- }
- func move(from source: IndexSet, to destination: Int) {
- infoSort.move(fromOffsets: source, toOffset: destination)
- Storage.shared.infoSort.value = infoSort
- }
- func getName(for index: Int) -> String {
- guard let infoType = InfoType(rawValue: index) else {
- return String(localized: "Unknown")
- }
- return infoType.name
- }
- }
|