Files
SwiftUI/Other Projects/GitHub Search/GitHubSearchWithSwiftUI/View/RepositoryListView.swift
John Holdsworth 8018d0c2a0 Combine examples
2019-07-10 00:57:54 +01:00

62 lines
1.8 KiB
Swift
Executable File

//
// RepositoryListView.swift
// GitHubSearchWithSwiftUI
//
// Created by marty-suzuki on 2019/06/05.
// Copyright © 2019 jp.marty-suzuki. All rights reserved.
//
import SwiftUI
struct RepositoryListView : View {
@ObjectBinding
private(set) var viewModel: RepositoryListViewModel
var body: some View {
NavigationView {
VStack {
HStack {
TextField($viewModel.text,
placeholder: Text("Search reposipories..."),
onCommit: { self.viewModel.search() })
.frame(height: 40)
.padding(EdgeInsets(top: 0, leading: 8, bottom: 0, trailing: 8))
.border(Color.gray, cornerRadius: 8)
.padding(EdgeInsets(top: 0, leading: 16, bottom: 0, trailing: 16))
Button(action: { self.viewModel.search() }) {
Text("Search")
}
.frame(height: 40)
.padding(EdgeInsets(top: 0, leading: 8, bottom: 0, trailing: 8))
.border(Color.blue, cornerRadius: 8)
.padding(EdgeInsets(top: 0, leading: 0, bottom: 0, trailing: 16))
}
List {
viewModel.errorMessage.map(Text.init)?
.lineLimit(nil)
.multilineTextAlignment(.center)
ForEach(viewModel.repositories.identified(by: \.id)) { repository in
NavigationLink(destination:
WebView(url: repository.htmlUrl)
.navigationBarTitle(Text(repository.fullName))
) {
RepositoryView(repository: repository)
}
}
}
}
.navigationBarTitle(Text("Search🔍"))
}
}
}