Skip to content
Snippets Groups Projects
Commit eb1ed968 authored by Kateryna Kostiuk's avatar Kateryna Kostiuk
Browse files

swarm: remove member limit

Change-Id: I820d9e066336da74437699bdd2d6f7f300a94d5a
parent 0cc37a36
No related branches found
No related tags found
No related merge requests found
......@@ -668,10 +668,6 @@ internal enum L10n {
internal static let addDescription = L10n.tr("Localizable", "swarm.addDescription", fallback: "Add Description")
/// Add Member
internal static let addMember = L10n.tr("Localizable", "swarm.addMember", fallback: "Add Member")
/// You can add %d more people in this swarm
internal static func addMorePeople(_ p1: Int) -> String {
return L10n.tr("Localizable", "swarm.addMorePeople", p1, fallback: "You can add %d more people in this swarm")
}
/// Administrator
internal static let admin = L10n.tr("Localizable", "swarm.admin", fallback: "Administrator")
/// Admin invites only
......@@ -714,10 +710,6 @@ internal enum L10n {
internal enum Swarmcreation {
/// Add a description
internal static let addADescription = L10n.tr("Localizable", "swarmcreation.addADescription", fallback: "Add a description")
/// You can add %d more people in the swarm
internal static func addPeople(_ p1: Int) -> String {
return L10n.tr("Localizable", "swarmcreation.addPeople", p1, fallback: "You can add %d more people in the swarm")
}
/// Create the swarm
internal static let createTheSwarm = L10n.tr("Localizable", "swarmcreation.createTheSwarm", fallback: "Create the swarm")
/// Search for contact...
......
......@@ -120,11 +120,6 @@ struct SwarmCreationUI: View {
}
Spacer()
}
if (list.memberLimit - list.selections.count) > 0 {
Text(L10n.Swarmcreation.addPeople(list.memberLimit - list.selections.count))
.padding(.leading, 20)
.font(.system(size: 15.0, weight: .semibold, design: .default))
}
}.onTapGesture {
self.hideKeyboard()
}
......@@ -135,8 +130,7 @@ struct SwarmCreationUI: View {
if list.selections.contains(contact.id) {
list.selections.removeAll(where: { $0 == contact.id })
} else {
if list.selections.count < list.memberLimit { list.selections.append(contact.id)
}
list.selections.append(contact.id)
}
self.hideKeyboard()
}
......
......@@ -36,7 +36,6 @@ class SwarmCreationUIModel: ObservableObject {
@Published var swarmDescription: String = ""
@Published var image: UIImage?
@Published var selections: [String] = []
@Published var memberLimit = 0
required init(with injectionBag: InjectionBag, accountId: String, strSearchText: BehaviorRelay<String>, swarmCreated: @escaping ((String, String) -> Void)) {
self.swarmCreated = swarmCreated
......@@ -44,7 +43,6 @@ class SwarmCreationUIModel: ObservableObject {
self.accountId = accountId
self.swarmInfo = SwarmInfo(injectionBag: injectionBag, accountId: accountId)
// 1 member is administrtor so remove 1 from maximum limit
memberLimit = self.swarmInfo.maximumLimit - 1
strSearchText.subscribe { searchText in
if !searchText.isEmpty {
let flatArr = self.filteredArray.compactMap { $0 }
......
......@@ -53,7 +53,6 @@
"swarmcreation.searchBar" = "Search for contact...";
"swarmcreation.createTheSwarm" = "Create the swarm";
"swarmcreation.addADescription" = "Add a description";
"swarmcreation.addPeople" = "You can add \%d\ more people in the swarm";
// Swarm
"swarm.ignoreSwarm" = "Ignore the swarm";
"swarm.leaveConversation" = "Leave the conversation";
......@@ -73,7 +72,6 @@
"swarm.admin" = "Administrator";
"swarm.banned" = "Banned";
"swarm.unknown" = "Unkown";
"swarm.addMorePeople" = "You can add \%d\ more people in this swarm";
"swarm.addMember" = "Add Member";
"swarm.confirmLeaveSwarm" = "Are you sure you want to leave this swarm?";
"swarm.Leave" = "Leave";
......
......@@ -33,7 +33,6 @@ protocol SwarmInfoProtocol {
var avatarHeight: CGFloat { get set }
var avatarSpacing: CGFloat { get set }
var maximumLimit: Int { get set }
var finalTitle: Observable<String> { get set }
......@@ -128,7 +127,6 @@ class SwarmInfo: SwarmInfoProtocol {
var avatarHeight: CGFloat = 40
var avatarSpacing: CGFloat = 2
var maximumLimit: Int = 8
lazy var id: String = {
return conversation?.id ?? ""
}()
......
......@@ -24,7 +24,6 @@ import RxCocoa
class SwarmInfoVM: ObservableObject {
@Published var participantsRows = [ParticipantRow]()
@Published var selections: [String] = []
@Published var addMemberCount: Int = 0
@Published var finalAvatar: UIImage = UIImage()
@Published var finalTitle: String = ""
@Published var finalColor: String = UIColor.defaultSwarm
......@@ -82,8 +81,6 @@ class SwarmInfoVM: ObservableObject {
self.contactsService = injectionBag.contactsService
self.swarmInfo = swarmInfo
self.conversation = swarmInfo.conversation
addMemberCount = self.swarmInfo.maximumLimit - self.swarmInfo.participants.value.count
print("Swarm Type :-\(swarmInfo.type.value.stringValue)")
self.swarmInfo.finalAvatar
.subscribe(onNext: { [weak self] newValue in
DispatchQueue.main.async {
......@@ -149,7 +146,6 @@ class SwarmInfoVM: ObservableObject {
colorPickerStatus.accept(colorPicker)
}
func updateContactList () {
addMemberCount = self.swarmInfo.maximumLimit - self.swarmInfo.participants.value.count
self.swarmInfo.contacts
.subscribe { [weak self] newValue in
guard let self = self else { return }
......
......@@ -47,20 +47,13 @@ struct AddMoreParticipantsInSwarm: View {
.sheet(isPresented: $showAddMember, onDismiss: {
viewmodel.removeExistingSubscription()
}, content: {
let currentCount = viewmodel.addMemberCount - viewmodel.selections.count
Text(L10n.Swarm.addMorePeople(viewmodel.selections.isEmpty ? viewmodel.addMemberCount : currentCount))
.opacity(currentCount > 0 ? 1 : 0)
.padding(.top, 20)
.font(.system(size: 15.0, weight: .semibold, design: .default))
List {
ForEach(viewmodel.participantsRows) { contact in
ParticipantListCell(participant: contact, isSelected: viewmodel.selections.contains(contact.id)) {
if viewmodel.selections.contains(contact.id) {
viewmodel.selections.removeAll(where: { $0 == contact.id })
} else {
if viewmodel.selections.count < viewmodel.addMemberCount {
viewmodel.selections.append(contact.id)
}
viewmodel.selections.append(contact.id)
}
}
}
......
......@@ -142,7 +142,7 @@ public struct SwarmInfoView: View {
.onChange(of: viewmodel.finalTitle) { _ in
titleTextFieldInput = viewmodel.finalTitle
}
if viewmodel.swarmInfo.participants.value.count < viewmodel.swarmInfo.maximumLimit && !(viewmodel.conversation?.isCoredialog() ?? true) {
if !(viewmodel.conversation?.isCoredialog() ?? true) {
AddMoreParticipantsInSwarm(viewmodel: viewmodel)
}
if viewmodel.showColorSheet {
......
......@@ -34,7 +34,6 @@ class TestableSwarmInfo: SwarmInfoProtocol {
var avatarHeight: CGFloat = 40
var avatarSpacing: CGFloat = 2
var maximumLimit: Int = 8
lazy var id: String = {
return conversation?.id ?? ""
}()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment