123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377 |
- import KK_ALCameraViewController
- import Contacts
- import UIKit
- import DcCore
- class NewChatViewController: UITableViewController {
- private let dcContext: DcContext
- private let sectionNew = 0
- private let sectionNewRowNewContact = 0
- private let sectionNewRowNewGroup = 1
- private let sectionNewRowNewVerifiedGroup = 2
- private let sectionNewRowCount = 3
- private let sectionImportedContacts = 1
- private var sectionContacts: Int { return deviceContactAccessGranted ? 1 : 2 }
- private var sectionsCount: Int { return deviceContactAccessGranted ? 2 : 3 }
- private lazy var searchController: UISearchController = {
- let searchController = UISearchController(searchResultsController: nil)
- searchController.searchResultsUpdater = self
- searchController.obscuresBackgroundDuringPresentation = false
- searchController.searchBar.placeholder = String.localized("search")
- return searchController
- }()
- private var contactIds: [Int]
- private var filteredContactIds: [Int] = []
- private var searchText: String? {
- return searchController.searchBar.text
- }
- // searchBar active?
- var isFiltering: Bool {
- return !searchBarIsEmpty
- }
- private var searchBarIsEmpty: Bool {
- return searchController.searchBar.text?.isEmpty ?? true
- }
- lazy var deviceContactHandler: DeviceContactsHandler = {
- let handler = DeviceContactsHandler(dcContext: DcContext.shared)
- handler.contactListDelegate = self
- return handler
- }()
- var deviceContactAccessGranted: Bool = false {
- didSet {
- tableView.reloadData()
- }
- }
- init(dcContext: DcContext) {
- self.dcContext = dcContext
- self.contactIds = dcContext.getContacts(flags: DC_GCL_ADD_SELF)
- super.init(style: .grouped)
- hidesBottomBarWhenPushed = true
- }
- required init?(coder _: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- override func viewDidLoad() {
- super.viewDidLoad()
- title = String.localized("menu_new_chat")
- deviceContactHandler.importDeviceContacts()
- navigationItem.searchController = searchController
- definesPresentationContext = true // to make sure searchbar will only be shown in this viewController
- if #available(iOS 11.0, *) {
- navigationItem.hidesSearchBarWhenScrolling = false
- }
- tableView.register(ActionCell.self, forCellReuseIdentifier: "actionCell")
- tableView.register(ContactCell.self, forCellReuseIdentifier: "contactCell")
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- deviceContactAccessGranted = CNContactStore.authorizationStatus(for: .contacts) == .authorized
- }
- @objc func cancelButtonPressed() {
- dismiss(animated: true, completion: nil)
- }
- // MARK: - Table view data source
- override func numberOfSections(in _: UITableView) -> Int {
- return sectionsCount
- }
- override func tableView(_: UITableView, numberOfRowsInSection section: Int) -> Int {
- if section == sectionNew {
- return sectionNewRowCount
- } else if section == sectionImportedContacts {
- if deviceContactAccessGranted {
- return isFiltering ? filteredContactIds.count : contactIds.count
- } else {
- return 1
- }
- } else {
- return isFiltering ? filteredContactIds.count : contactIds.count
- }
- }
- override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
- let section = indexPath.section
- if section == sectionNew {
- return Constants.defaultCellHeight
- } else if section == sectionImportedContacts {
- if deviceContactAccessGranted {
- return ContactCell.cellHeight
- } else {
- return Constants.defaultCellHeight
- }
- } else {
- return ContactCell.cellHeight
- }
- }
- override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
- let section = indexPath.section
- let row = indexPath.row
- if section == sectionNew {
- let cell = tableView.dequeueReusableCell(withIdentifier: "actionCell", for: indexPath)
- if let actionCell = cell as? ActionCell {
- switch row {
- case sectionNewRowNewGroup:
- actionCell.actionTitle = String.localized("menu_new_group")
- case sectionNewRowNewVerifiedGroup:
- actionCell.actionTitle = String.localized("menu_new_verified_group")
- default:
- actionCell.actionTitle = String.localized("menu_new_contact")
- }
- }
- return cell
- } else if section == sectionImportedContacts {
- // import device contacts section
- if deviceContactAccessGranted {
- let cell = tableView.dequeueReusableCell(withIdentifier: "contactCell", for: indexPath)
- if let contactCell = cell as? ContactCell {
- let contactCellViewModel = self.contactViewModelBy(row: indexPath.row)
- contactCell.updateCell(cellViewModel: contactCellViewModel)
- }
- return cell
- } else {
- let cell = tableView.dequeueReusableCell(withIdentifier: "actionCell", for: indexPath)
- if let actionCell = cell as? ActionCell {
- actionCell.actionTitle = String.localized("import_contacts")
- }
- return cell
- }
- } else {
- // section contact list if device contacts are not imported
- let cell = tableView.dequeueReusableCell(withIdentifier: "contactCell", for: indexPath)
- if let contactCell = cell as? ContactCell {
- let contactCellViewModel = self.contactViewModelBy(row: indexPath.row)
- contactCell.updateCell(cellViewModel: contactCellViewModel)
- }
- return cell
- }
- }
- override func tableView(_: UITableView, didSelectRowAt indexPath: IndexPath) {
- let row = indexPath.row
- let section = indexPath.section
- if section == sectionNew {
- if row == sectionNewRowNewGroup {
- showNewGroupController(isVerified: false)
- } else if row == sectionNewRowNewVerifiedGroup {
- showNewGroupController(isVerified: true)
- } else if row == sectionNewRowNewContact {
- showNewContactController()
- }
- } else if section == sectionImportedContacts {
- if deviceContactAccessGranted {
- showChatAt(row: row)
- } else {
- showSettingsAlert()
- }
- } else {
- showChatAt(row: row)
- }
- }
- override func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
- if indexPath.section == sectionContacts {
- let contactId = contactIdByRow(indexPath.row)
- let edit = UITableViewRowAction(style: .normal, title: String.localized("info")) { [weak self] _, _ in
- guard let self = self else { return }
- if self.searchController.isActive {
- self.searchController.dismiss(animated: false) {
- self.showContactDetail(contactId: contactId)
- }
- } else {
- self.showContactDetail(contactId: contactId)
- }
- }
- let delete = UITableViewRowAction(style: .destructive, title: String.localized("delete")) { [weak self] _, _ in
- guard let self = self else { return }
- let contactId = self.contactIdByRow(indexPath.row)
- self.askToDeleteContact(contactId: contactId, context: self.dcContext)
- }
- edit.backgroundColor = DcColors.primary
- return [edit, delete]
- } else {
- return []
- }
- }
- override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
- return true
- }
- private func contactIdByRow(_ row: Int) -> Int {
- return isFiltering ? filteredContactIds[row] : contactIds[row]
- }
- private func contactViewModelBy(row: Int) -> ContactCellViewModel {
- let id = contactIdByRow(row)
- return ContactCellViewModel.make(contactId: id, searchText: searchText, dcContext: dcContext)
- }
- private func askToDeleteContact(contactId: Int, context: DcContext) {
- let contact = DcContact(id: contactId)
- let alert = UIAlertController(title: String.localizedStringWithFormat(String.localized("ask_delete_contact"), contact.nameNAddr),
- message: nil,
- preferredStyle: .safeActionSheet)
- alert.addAction(UIAlertAction(title: String.localized("delete"), style: .destructive, handler: { _ in
- self.dismiss(animated: true, completion: nil)
- if context.deleteContact(contactId: contactId) {
- self.contactIds = self.dcContext.getContacts(flags: DC_GCL_ADD_SELF)
- self.tableView.reloadData()
- }
- }))
- alert.addAction(UIAlertAction(title: String.localized("cancel"), style: .cancel, handler: { _ in
- self.dismiss(animated: true, completion: nil)
- }))
- present(alert, animated: true, completion: nil)
- }
- private func askToChatWith(contactId: Int) {
- if dcContext.getChatIdByContactId(contactId: contactId) != 0 {
- self.dismiss(animated: true, completion: nil)
- self.showNewChat(contactId: contactId)
- } else {
- let dcContact = DcContact(id: contactId)
- let alert = UIAlertController(title: String.localizedStringWithFormat(String.localized("ask_start_chat_with"), dcContact.nameNAddr),
- message: nil,
- preferredStyle: .safeActionSheet)
- alert.addAction(UIAlertAction(title: String.localized("start_chat"), style: .default, handler: { _ in
- self.dismiss(animated: true, completion: nil)
- self.showNewChat(contactId: contactId)
- }))
- alert.addAction(UIAlertAction(title: String.localized("cancel"), style: .cancel, handler: { _ in
- self.reactivateSearchBarIfNeeded()
- }))
- present(alert, animated: true, completion: nil)
- }
- }
- private func reactivateSearchBarIfNeeded() {
- if !searchBarIsEmpty {
- searchController.isActive = true
- }
- }
- private func showChatAt(row: Int) {
- if searchController.isActive {
- // edge case: when searchController is active but searchBar is empty -> filteredContacts is empty, so we fallback to contactIds
- let contactId = contactIdByRow(row)
- searchController.dismiss(animated: false, completion: {
- self.askToChatWith(contactId: contactId)
- })
- } else {
- let contactId = contactIds[row]
- self.askToChatWith(contactId: contactId)
- }
- }
- private func filterContentForSearchText(_ searchText: String, scope _: String = String.localized("pref_show_emails_all")) {
- filteredContactIds = dcContext.getContacts(flags: DC_GCL_ADD_SELF, queryString: searchText)
- tableView.reloadData()
- tableView.scrollToTop()
- }
- // MARK: - coordinator
- private func showNewGroupController(isVerified: Bool) {
- let newGroupController = NewGroupController(dcContext: dcContext, isVerified: isVerified)
- navigationController?.pushViewController(newGroupController, animated: true)
- }
- private func showNewContactController() {
- let newContactController = NewContactController(dcContext: dcContext)
- navigationController?.pushViewController(newContactController, animated: true)
- }
- private func showNewChat(contactId: Int) {
- let chatId = dcContext.createChatByContactId(contactId: contactId)
- showChat(chatId: Int(chatId))
- }
- private func showChat(chatId: Int) {
- let chatViewController = ChatViewController(dcContext: dcContext, chatId: chatId)
- navigationController?.pushViewController(chatViewController, animated: true)
- navigationController?.viewControllers.remove(at: 1)
- }
- private func showContactDetail(contactId: Int) {
- let contactDetailController = ContactDetailViewController(dcContext: dcContext, contactId: contactId)
- navigationController?.pushViewController(contactDetailController, animated: true)
- }
- }
- extension NewChatViewController: ContactListDelegate {
- func deviceContactsImported() {
- contactIds = dcContext.getContacts(flags: DC_GCL_ADD_SELF)
- tableView.reloadData()
- }
- func accessGranted() {
- deviceContactAccessGranted = true
- }
- func accessDenied() {
- deviceContactAccessGranted = false
- }
- private func showSettingsAlert() {
- let alert = UIAlertController(
- title: String.localized("import_contacts"),
- message: String.localized("import_contacts_message"),
- preferredStyle: .alert
- )
- alert.addAction(UIAlertAction(title: String.localized("menu_settings"), style: .default) { _ in
- UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!)
- })
- alert.addAction(UIAlertAction(title: String.localized("cancel"), style: .cancel) { _ in
- })
- present(alert, animated: true)
- }
- }
- extension NewChatViewController: UISearchResultsUpdating {
- func updateSearchResults(for searchController: UISearchController) {
- if let searchText = searchController.searchBar.text {
- filterContentForSearchText(searchText)
- }
- }
- }
- struct ContactHighlights {
- let contactDetail: ContactDetail
- let indexes: [Int]
- }
- enum ContactDetail {
- case NAME
- case EMAIL
- }
- struct ContactWithSearchResults {
- let contact: DcContact
- let indexesToHighlight: [ContactHighlights]
- }
|