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,40 +6,65 @@ struct AttachmentLocationPickerView: View {
|
||||||
@State private var region = MKCoordinateRegion()
|
@State private var region = MKCoordinateRegion()
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
ZStack {
|
VStack(spacing: 0) {
|
||||||
// MapView
|
ZStack {
|
||||||
MapView(region: $region)
|
// MapView
|
||||||
.onAppear {
|
MapView(region: $region)
|
||||||
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
|
.onAppear {
|
||||||
self.region = locationManager.region
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
|
||||||
}
|
|
||||||
}
|
|
||||||
.overlay {
|
|
||||||
Image(systemName: "mappin")
|
|
||||||
.foregroundColor(.Material.Elements.active)
|
|
||||||
.font(.system(size: 30))
|
|
||||||
.shadow(color: .white, radius: 2)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Track button
|
|
||||||
VStack {
|
|
||||||
Spacer()
|
|
||||||
HStack {
|
|
||||||
Spacer()
|
|
||||||
Image(systemName: "location.circle")
|
|
||||||
.resizable()
|
|
||||||
.frame(width: 40, height: 40)
|
|
||||||
.foregroundColor(.Material.Elements.active)
|
|
||||||
.background(Color.Material.Shape.white)
|
|
||||||
.clipShape(Circle())
|
|
||||||
.shadow(color: .white, radius: 2)
|
|
||||||
.padding(.trailing)
|
|
||||||
.padding(.bottom, 50)
|
|
||||||
.tappablePadding(.symmetric(10)) {
|
|
||||||
self.region = locationManager.region
|
self.region = locationManager.region
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
.overlay {
|
||||||
|
Image(systemName: "mappin")
|
||||||
|
.foregroundColor(.Material.Elements.active)
|
||||||
|
.font(.system(size: 30))
|
||||||
|
.shadow(color: .white, radius: 2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Track button
|
||||||
|
VStack {
|
||||||
|
Spacer()
|
||||||
|
HStack {
|
||||||
|
Spacer()
|
||||||
|
Image(systemName: "location.circle")
|
||||||
|
.resizable()
|
||||||
|
.frame(width: 40, height: 40)
|
||||||
|
.foregroundColor(.Material.Elements.active)
|
||||||
|
.background(Color.Material.Shape.white)
|
||||||
|
.clipShape(Circle())
|
||||||
|
.shadow(color: .white, radius: 2)
|
||||||
|
.padding(.trailing)
|
||||||
|
.padding(.bottom, 50)
|
||||||
|
.tappablePadding(.symmetric(10)) {
|
||||||
|
self.region = locationManager.region
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 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