wip
This commit is contained in:
parent
ce3bc42fbb
commit
b3518ea71b
|
@ -2,7 +2,53 @@ import SwiftUI
|
||||||
|
|
||||||
struct AttachmentContactsPickerView: View {
|
struct AttachmentContactsPickerView: View {
|
||||||
var body: some View {
|
var body: some View {
|
||||||
Text("Contact Picker")
|
VStack(spacing: 0) {
|
||||||
// Implement your contact picker here
|
// Contacts list
|
||||||
|
let rosters = store.state.rostersState.rosters.filter { !$0.locallyDeleted }
|
||||||
|
if !rosters.isEmpty {
|
||||||
|
List {
|
||||||
|
ForEach(rosters) { roster in
|
||||||
|
ContactRow(roster: roster)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.listStyle(.plain)
|
||||||
|
.background(Color.Material.Background.light)
|
||||||
|
} else {
|
||||||
|
Spacer()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private struct ContactRow: View {
|
||||||
|
var roster: Roster
|
||||||
|
|
||||||
|
var body: some View {
|
||||||
|
VStack(spacing: 0) {
|
||||||
|
HStack(spacing: 8) {
|
||||||
|
ZStack {
|
||||||
|
Circle()
|
||||||
|
.frame(width: 44, height: 44)
|
||||||
|
.foregroundColor(.red)
|
||||||
|
Text(roster.name?.firstLetter ?? roster.contactBareJid.firstLetter)
|
||||||
|
.foregroundColor(.white)
|
||||||
|
.font(.body1)
|
||||||
|
}
|
||||||
|
Text(roster.contactBareJid)
|
||||||
|
.foregroundColor(Color.Material.Text.main)
|
||||||
|
.font(.body2)
|
||||||
|
Spacer()
|
||||||
|
}
|
||||||
|
.padding(.horizontal, 16)
|
||||||
|
.padding(.vertical, 4)
|
||||||
|
Rectangle()
|
||||||
|
.frame(maxWidth: .infinity)
|
||||||
|
.frame(height: 1)
|
||||||
|
.foregroundColor(.Material.Background.dark)
|
||||||
|
}
|
||||||
|
.sharedListRow()
|
||||||
|
.onTapGesture {
|
||||||
|
print(roster.contactBareJid)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@ struct AttachmentLocationPickerView: View {
|
||||||
@State private var region = MKCoordinateRegion()
|
@State private var region = MKCoordinateRegion()
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
|
VStack(spacing: 0) {
|
||||||
ZStack {
|
ZStack {
|
||||||
// MapView
|
// MapView
|
||||||
MapView(region: $region)
|
MapView(region: $region)
|
||||||
|
@ -41,6 +42,30 @@ struct AttachmentLocationPickerView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Send panel
|
||||||
|
Rectangle()
|
||||||
|
.foregroundColor(.Material.Shape.black)
|
||||||
|
.frame(maxWidth: .infinity)
|
||||||
|
.frame(height: 50)
|
||||||
|
.overlay {
|
||||||
|
HStack {
|
||||||
|
Text(L10n.Attachment.Send.location)
|
||||||
|
.foregroundColor(.Material.Text.white)
|
||||||
|
.font(.body1)
|
||||||
|
Image(systemName: "arrow.up.circle")
|
||||||
|
.foregroundColor(.Material.Text.white)
|
||||||
|
.font(.body1)
|
||||||
|
.padding(.leading, 8)
|
||||||
|
}
|
||||||
|
.padding()
|
||||||
|
}
|
||||||
|
.clipped()
|
||||||
|
.onTapGesture {
|
||||||
|
// TODO: Send selected media
|
||||||
|
print("Send location")
|
||||||
|
}
|
||||||
|
}
|
||||||
.onAppear {
|
.onAppear {
|
||||||
locationManager.start()
|
locationManager.start()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue