-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathDemoShareViewModel.swift
186 lines (168 loc) · 6.39 KB
/
DemoShareViewModel.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
//
// Copyright © 2025 Stream.io Inc. All rights reserved.
//
import Combine
import CoreServices
import UIKit
import StreamChat
import Social
@MainActor
class DemoShareViewModel: ObservableObject, ChatChannelControllerDelegate {
private let chatClient: ChatClient
private let userCredentials: UserCredentials
private var channelListController: ChatChannelListController?
private var channelController: ChatChannelController?
private var messageId: MessageId?
private var extensionContext: NSExtensionContext?
private var imageURLs = [URL]() {
didSet {
images = imageURLs.compactMap { url in
if let data = try? Data(contentsOf: url),
let image = UIImage(data: data) {
return image
}
return nil
}
}
}
var currentUserId: UserId? {
chatClient.currentUserId
}
@Published var channels = LazyCachedMapCollection<ChatChannel>()
@Published var text = ""
@Published var images = [UIImage]()
@Published var selectedChannel: ChatChannel?
@Published var loading = false
init(
userCredentials: UserCredentials,
extensionContext: NSExtensionContext?
) {
var config = ChatClientConfig(apiKey: .init(apiKeyString))
config.isClientInActiveMode = true
config.applicationGroupIdentifier = applicationGroupIdentifier
let client = ChatClient(config: config)
client.setToken(token: Token(stringLiteral: userCredentials.token.rawValue))
self.chatClient = client
self.userCredentials = userCredentials
self.extensionContext = extensionContext
self.loadChannels()
self.loadImages()
}
func sendMessage() async throws {
guard let cid = selectedChannel?.cid else {
throw ClientError.Unexpected("No channel selected")
}
self.channelController = chatClient.channelController(for: cid)
guard let channelController = channelController else {
throw ClientError.Unexpected("Can't upload attachment")
}
channelController.delegate = self
loading = true
try await channelController.synchronize()
let attachmentPayloads = await withThrowingTaskGroup(of: AnyAttachmentPayload.self) { taskGroup in
for url in imageURLs {
taskGroup.addTask {
let file = try AttachmentFile(url: url)
let uploaded = try await channelController.uploadAttachment(
localFileURL: url,
type: .image
)
let attachment = ImageAttachmentPayload(
title: nil,
imageRemoteURL: uploaded.remoteURL,
file: file
)
return AnyAttachmentPayload(payload: attachment)
}
}
var results = [AnyAttachmentPayload]()
while let result = await taskGroup.nextResult() {
if let attachment = try? result.get() {
results.append(attachment)
}
}
return results
}
messageId = try await channelController.createNewMessage(
text: text,
attachments: attachmentPayloads
)
}
func channelTapped(_ channel: ChatChannel) {
if selectedChannel == channel {
selectedChannel = nil
} else {
selectedChannel = channel
}
}
func dismissShareSheet() {
loading = false
self.extensionContext?.completeRequest(returningItems: [], completionHandler: nil)
}
nonisolated func channelController(
_ channelController: ChatChannelController,
didUpdateMessages changes: [ListChange<ChatMessage>]
) {
Task {
await MainActor.run {
for change in changes {
if case .update(let item, _) = change {
if messageId == item.id, item.localState == nil {
dismissShareSheet()
return
}
}
}
}
}
}
// MARK: - private
private func loadItem(from itemProvider: NSItemProvider, type: String) async throws -> NSSecureCoding {
return try await withCheckedThrowingContinuation { continuation in
itemProvider.loadItem(forTypeIdentifier: type) { item, error in
if let error = error {
continuation.resume(throwing: error)
} else if let item = item {
continuation.resume(returning: item)
} else {
continuation.resume(throwing: ClientError.Unknown())
}
}
}
}
private func loadImages() {
Task {
let inputItems = extensionContext?.inputItems
var urls = [URL]()
for inputItem in (inputItems ?? []) {
if let extensionItem = inputItem as? NSExtensionItem {
for itemProvider in (extensionItem.attachments ?? []) {
if itemProvider.hasItemConformingToTypeIdentifier(kUTTypeImage as String) {
let item = try await loadItem(from: itemProvider, type: kUTTypeImage as String)
if let item = item as? URL {
urls.append(item)
}
}
}
}
}
self.imageURLs = urls
}
}
private func loadChannels() {
Task {
try await chatClient.connect(
userInfo: userCredentials.userInfo,
token: userCredentials.token
)
let channelListQuery: ChannelListQuery = .init(
filter: .containMembers(userIds: [chatClient.currentUserId ?? ""])
)
self.channelListController = chatClient.channelListController(query: channelListQuery)
channelListController?.synchronize { [weak self] error in
guard let self, error == nil else { return }
channels = channelListController?.channels ?? []
}
}
}
}