Mercurial > public > lazybear
view LazyBear/Views/WatchlistManagerTest.swift @ 388:79c39987aaa4
Implementing Watchlists in ProfileView
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Sat, 24 Apr 2021 17:44:02 +0200 |
parents | |
children |
line wrap: on
line source
// // WatchlistManagerTest.swift // LazyBear // // Created by Dennis Concepción Martín on 24/4/21. // import SwiftUI struct WatchlistManagerTest: View { @Environment(\.managedObjectContext) private var moc @FetchRequest(entity: WatchlistCompany.entity(), sortDescriptors: []) var watchlistCompany: FetchedResults<WatchlistCompany> var body: some View { VStack { Button("Add company", action: addCompany) } } // private func removeCompany(at offsets: IndexSet) { // for index in offsets { // let company = companies[index] // moc.delete(company) // } // do { // try moc.save() // } catch { // // Error // } // } // Add to watchlist private func addCompany() { let watchlistCompany = WatchlistCompany(context: moc) watchlistCompany.symbol = "TSLA" watchlistCompany.name = "Tesla Inc" watchlistCompany.watchlist = "Watchlist2" do { try moc.save() print("Company saved") } catch { print(error.localizedDescription) } } // private func removeCompany() { // let symbols = companies.map { $0.symbol } // let index = symbols.firstIndex(of: symbol) // let company = companies[index!] // moc.delete(company) // do { // try moc.save() // print("Company deleted") // } catch { // // Error // } // } } struct WatchlistManagerTest_Previews: PreviewProvider { static var previews: some View { WatchlistManagerTest() } }