123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073 |
- //
- // EditorGroup.swift
- // Qmera
- //
- // Created by Akhmad Al Qindi Irsyam on 20/09/21.
- //
- import UIKit
- import AVKit
- import AVFoundation
- import QuickLook
- import Photos
- import NotificationBannerSwift
- import nuSDKService
- import SwiftLinkPreview
- public class EditorGroup: UIViewController {
- @IBOutlet var viewButton: UIView!
- @IBOutlet var constraintViewTextField: NSLayoutConstraint!
- @IBOutlet var buttonVoice: UIButton!
- @IBOutlet var buttonSendImage: UIButton!
- @IBOutlet var buttonSendPhoto: UIButton!
- @IBOutlet var buttonSendSticker: UIButton!
- @IBOutlet var buttonSendFile: UIButton!
- @IBOutlet var textFieldSend: UITextView!
- @IBOutlet var heightTextFieldSend: NSLayoutConstraint!
- @IBOutlet var buttonSendChat: UIButton!
- @IBOutlet var tableChatView: UITableView!
- @IBOutlet var constraintTopTextField: NSLayoutConstraint!
- @IBOutlet var constraintBottomAttachment: NSLayoutConstraint!
- @IBOutlet var viewTextfield: UIView!
- @IBOutlet weak var buttonAckConfidential: UIButton!
- @IBOutlet weak var constraintBottomTableViewWithTextfield: NSLayoutConstraint!
- @IBOutlet weak var viewAttachment: UIStackView!
- @IBOutlet weak var tableMention: UITableView!
- @IBOutlet weak var heightTableMention: NSLayoutConstraint!
- @IBOutlet weak var contraintBottomMention: NSLayoutConstraint!
- public var dataGroup: [String: Any?] = [:]
- public var dataTopic: [String: Any?] = [:]
- var dataMessages: [[String: Any?]] = []
- var dataDates: [String] = []
- public var dataMessageForward: [[String: Any?]]?
- var imageVideoPicker: ImageVideoPicker!
- var documentPicker: DocumentPicker!
- var currentIndexpath: IndexPath?
- var previewItem: NSURL?
- var reffId: String?
- var stickers = [String]()
- public var unique_l_pin = ""
- public var fromNotification = false
- var isHistoryCC = false
- var complaintId = ""
- var counter = 0
- var markerCounter: String?
- var buttonScrollToBottom = UIButton()
- let indicatorCounterBSTB = UIView()
- let labelCounter = UILabel()
- let containerActionGroup = UIView()
- var removed = false
- var isAck = false
- var copySession = false
- var forwardSession = false
- var deleteSession = false
- var isSearching = false
- let containerMultpileSelectSession = UIView()
- let viewSticker = UIView()
- let containerLink = UIView()
- let containerPreviewReply = UIView()
- var bottomAnchorPreviewReply = NSLayoutConstraint()
- let containerAction = UIView()
- var allowTyping = true
- let contactChatNav = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "contactChatNav") as! UINavigationController
- var searchBar: UISearchBar!
- var constraintBottomContainerMultpileSelectSession = NSLayoutConstraint()
- var titleSearchMatches: UILabel!
- var textSearch = ""
- var countMatchesSearch = 0
- var lastScrollIdxSearch = 0
- var buttonUp: UIButton!
- var buttonDown: UIButton!
- var keyboardHeightForMention: CGFloat?
- var listMentionWithText:[User] = []
- var listMentionInTextField:[User] = []
- var showingLink = ""
- var isAlwaysHideLinkPreview = false
- var timerCheckLink: Timer?
- var lastPositionCursorMention = 0
- var timerLongPressLink: Timer?
- var timerFakeProgress: Timer?
- var showMenuContext = false
- var touchedSubview = UIView()
- var listViewOnSection: [UIView] = []
- var fakeProgMultip = 0
- let maxFakeProgMultip = 2
- var groupImages: [String:[ImageGrouping]] = [:]
- var titleText: String!
- var lastY: CGFloat = 0
-
- public override func viewDidDisappear(_ animated: Bool) {
- if self.isMovingFromParent {
- UserDefaults.standard.removeObject(forKey: "inEditorGroup")
- NotificationCenter.default.removeObserver(self)
- super.viewDidDisappear(true)
- self.removeFromParent()
- self.dismiss(animated: true, completion: nil)
- var l_pin = self.dataGroup["group_id"] as! String
- if (self.dataTopic["chat_id"] as! String != "") {
- l_pin = self.dataTopic["chat_id"] as! String
- }
- UserDefaults.standard.set("\(textFieldSend.textColor != UIColor.lightGray ? textFieldSend.text! : ""),\(reffId ?? "")", forKey: "saved_\(l_pin)")
- }
- }
-
- public override func viewDidAppear(_ animated: Bool) {
- let navBarAppearance = UINavigationBarAppearance()
- navBarAppearance.configureWithOpaqueBackground()
- navBarAppearance.backgroundColor = UIColor.mainColor
- navigationController?.navigationBar.standardAppearance = navBarAppearance
- navigationController?.navigationBar.scrollEdgeAppearance = navBarAppearance
- navigationController?.navigationBar.isTranslucent = false
- navigationController?.navigationBar.backgroundColor = .mainColor
- navigationController?.navigationBar.tintColor = .white
- navigationController?.navigationBar.overrideUserInterfaceStyle = .dark
- navigationController?.navigationBar.barStyle = .black
- if self.navigationController?.isNavigationBarHidden ?? false {
- self.navigationController?.setNavigationBarHidden(false, animated: false)
- }
- updateProfile()
- let indexPath = tableChatView.indexPathsForVisibleRows?.first
- if indexPath != nil {
- let headerRect = tableChatView.rectForHeader(inSection: indexPath!.section)
- let isPinned = headerRect.origin.y <= tableChatView.contentOffset.y
- if listViewOnSection.count != 0 && listViewOnSection.count - 1 == indexPath!.section && isPinned {
- let sect = listViewOnSection.count - 1 < currentIndexpath!.section ? listViewOnSection.count - 1 : currentIndexpath!.section
- let headerView = listViewOnSection[sect]
- headerView.isHidden = true
- }
- }
- }
-
- public override func viewDidLoad() {
- super.viewDidLoad()
- // navigationController?.navigationBar.topItem?.title = ""
-
- viewButton.layer.shadowColor = UIColor.gray.cgColor
- viewButton.layer.shadowOpacity = 1
- viewButton.layer.shadowOffset = .zero
- viewButton.layer.shadowRadius = 3
-
- // buttonVoice.setImage(resizeImage(image: UIImage(named: "Voice-Record", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)), for: .normal)
- buttonSendImage.setImage(resizeImage(image: UIImage(named: "Send-Image", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(.mainColor), for: .normal)
- buttonSendPhoto.setImage(resizeImage(image: UIImage(named: "Camera", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(.mainColor), for: .normal)
- buttonSendSticker.setImage(resizeImage(image: UIImage(named: "Sticker---Emoji", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(.mainColor), for: .normal)
- buttonSendFile.setImage(resizeImage(image: UIImage(named: "File---Documents", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(.mainColor), for: .normal)
-
- buttonSendChat.setImage(resizeImage(image: UIImage(named: "Send-(White)", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal), for: .normal)
-
- buttonSendChat.circle()
- buttonSendChat.addTarget(self, action: #selector(sendTapped), for: .touchUpInside)
- buttonSendChat.backgroundColor = .mainColor
- buttonAckConfidential.circle()
- buttonAckConfidential.addTarget(self, action: #selector(showChooserACKConfidential), for: .touchUpInside)
- buttonAckConfidential.backgroundColor = .mainColor
- textFieldSend.layer.cornerRadius = textFieldSend.maxCornerRadius()
- textFieldSend.layer.borderWidth = 1.0
- textFieldSend.text = "Send message".localized()
- textFieldSend.textColor = UIColor.lightGray
- textFieldSend.textContainerInset = UIEdgeInsets(top: 12, left: 20, bottom: 11, right: 40)
- textFieldSend.layer.borderColor = UIColor.lightGray.withAlphaComponent(0.5).cgColor
- textFieldSend.font = UIFont.systemFont(ofSize: 12)
- textFieldSend.delegate = self
-
- navigationItem.rightBarButtonItem?.tintColor = UIColor.secondaryColor
-
- imageVideoPicker = ImageVideoPicker(presentationController: self, delegate: self)
- documentPicker = DocumentPicker(presentationController: self, delegate: self)
-
- let fm = FileManager.default
- let path = Bundle.resourceBundle(for: DigiX.self).resourcePath! //resourcesMediaBundle
- let items = try! fm.contentsOfDirectory(atPath: path)
-
- for item in items {
- if item.hasPrefix("sticker") {
- stickers.append(item)
- }
- }
-
- tableChatView.register(UITableViewCell.self, forCellReuseIdentifier: "cellEditorGroup")
-
- loadData()
- setRightButtonItem()
-
- let center: NotificationCenter = NotificationCenter.default
- center.addObserver(self, selector: #selector(keyboardWillShow(notification:)), name: UIResponder.keyboardWillShowNotification, object: nil)
- center.addObserver(self, selector: #selector(keyboardWillHide(notification:)), name: UIResponder.keyboardWillHideNotification, object: nil)
- center.addObserver(self, selector: #selector(onReceiveMessage(notification:)), name: NSNotification.Name(rawValue: DigiX.listenerReceiveChat), object: nil)
- center.addObserver(self, selector: #selector(onStatusChat(notification:)), name: NSNotification.Name(rawValue: DigiX.listenerStatusChat), object: nil)
- center.addObserver(self, selector: #selector(onUploadChat(notification:)), name: NSNotification.Name(rawValue: "onUploadChat"), object: nil)
- center.addObserver(self, selector: #selector(onMemberTopic(notification:)), name: NSNotification.Name(rawValue: "onMember"), object: nil)
- center.addObserver(self, selector: #selector(onGroup(notification:)), name: NSNotification.Name(rawValue: "onGroup"), object: nil)
- center.addObserver(self, selector: #selector(onMemberTopic(notification:)), name: NSNotification.Name(rawValue: "onTopic"), object: nil)
-
- if dataMessageForward != nil {
- for i in 0..<dataMessageForward!.count {
- sendChat(message_scope_id: "4", status: "2", message_text: dataMessageForward![i]["message_text"] as! String, credential: "0", attachment_flag: dataMessageForward![i]["attachment_flag"] as! String, ex_blog_id: "", message_large_text: "", ex_format: "", image_id: dataMessageForward![i]["image_id"] as! String, audio_id: dataMessageForward![i]["audio_id"] as! String, video_id: dataMessageForward![i]["video_id"] as! String, file_id: dataMessageForward![i]["file_id"] as! String, thumb_id: dataMessageForward![i]["thumb_id"] as! String, reff_id: "", read_receipts: "", is_call_center: "0", call_center_id: "", viewController: self)
- }
- dataMessageForward = nil
- }
- tableMention.register(UITableViewCell.self, forCellReuseIdentifier: "cellMention")
- tableMention.dataSource = self
- tableMention.delegate = self
- tableMention.contentInset = UIEdgeInsets(top: -25, left: 0, bottom: 0, right: 0)
- }
-
- public func afterUnfriend() {
- DispatchQueue.main.async {
- UserDefaults.standard.removeObject(forKey: "inEditorGroup")
- NotificationCenter.default.removeObserver(self)
- }
- }
-
- private func updateProfile() {
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- DispatchQueue.global().async {
- let message = CoreMessage_TMessageBank.getBatchBuddiesInfos(p_f_pin: idMe!, last_update: 0)
- let _ = DigiX.write(message: message)
- }
- }
-
- private func setRightButtonItem() {
- navigationItem.rightBarButtonItems = nil
- navigationItem.rightBarButtonItem = nil
- let menu = UIMenu(title: "", children: [
- UIAction(title: "Delete Conversation".localized(), handler: {(_) in
- let alert = LibAlertController(title: "", message: "Are you sure to delete all message in this conversation?".localized(), preferredStyle: .alert)
- alert.addAction(UIAlertAction(title: "Cancel".localized(), style: UIAlertAction.Style.default, handler: nil))
- alert.addAction(UIAlertAction(title: "Delete".localized(), style: .destructive, handler: {(_) in
- var l_pin = self.dataGroup["group_id"] as! String
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if (self.dataTopic["chat_id"] as! String != "") {
- l_pin = self.dataTopic["chat_id"] as! String
- }
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "MESSAGE", _where: "(l_pin='\(self.dataGroup["group_id"]!!)' and chat_id='\(self.dataTopic["chat_id"]!!)') and message_scope_id='4'")
- _ = Database.shared.deleteRecord(fmdb: fmdb, table: "MESSAGE_SUMMARY", _where: "l_pin='\(l_pin)'")
- UserDefaults.standard.removeObject(forKey: "saved_\(l_pin)")
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil)
- if self.fromNotification {
- self.didTapExit()
- } else {
- self.navigationController?.popViewController(animated: true)
- }
- })
- }))
- self.present(alert, animated: true, completion: nil)
- }),
- ])
- if !isHistoryCC {
- let moreIcon = UIBarButtonItem(image: UIImage(systemName: "ellipsis", withConfiguration: UIImage.SymbolConfiguration(pointSize: 18, weight: .regular, scale: .default)), menu: menu)
- let buttonSearch = UIBarButtonItem(image: UIImage(systemName: "magnifyingglass", withConfiguration: UIImage.SymbolConfiguration(pointSize: 18, weight: .regular, scale: .default)), style: .plain, target: self, action: #selector(search(sender:)))
- navigationItem.rightBarButtonItems = [moreIcon,buttonSearch]
- } else {
- let buttonSearch = UIBarButtonItem(image: UIImage(systemName: "magnifyingglass", withConfiguration: UIImage.SymbolConfiguration(pointSize: 18, weight: .regular, scale: .default)), style: .plain, target: self, action: #selector(search(sender:)))
- navigationItem.rightBarButtonItem = buttonSearch
- }
- }
-
- @objc func search(sender: UIBarButtonItem) {
- self.isSearching = true
- if self.reffId != nil {
- self.deleteReplyView()
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.35) {
- let cancelButton = UIBarButtonItem(title: "Cancel".localized(), style: .plain, target: self, action: #selector(self.cancelAction))
- cancelButton.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.white], for: .normal)
- if !self.isHistoryCC {
- self.navigationItem.rightBarButtonItems = nil
- }
- self.navigationItem.rightBarButtonItem = cancelButton
- self.changeAppBar()
- self.addMultipleSelectSession()
- }
- }
-
- private func getOfficialGroup() {
- let query = "SELECT group_id, f_name, official, image_id FROM GROUPZ where group_type = 1 AND official = 1"
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursorData = Database.shared.getRecords(fmdb: fmdb, query: query) {
- if cursorData.next() {
- dataGroup["group_id"] = cursorData.string(forColumnIndex: 0)
- dataTopic["chat_id"] = ""
- dataGroup["f_name"] = cursorData.string(forColumnIndex: 1)
- dataGroup["image_id"] = cursorData.string(forColumnIndex: 3)
- dataGroup["official"] = cursorData.string(forColumnIndex: 2)
- }
- cursorData.close()
- }
- })
- }
-
- func loadData() {
- if (unique_l_pin != "") {
- dataDates.removeAll()
- dataGroup.removeAll()
- dataTopic.removeAll()
- dataMessages.removeAll()
- tableChatView.reloadData()
- currentIndexpath = nil
- reffId = nil
- getDataGroup(unique_l_pin: unique_l_pin)
- }
-
- if removed {
- removed = false
- containerActionGroup.removeConstraints(containerActionGroup.constraints)
- containerActionGroup.removeFromSuperview()
- setRightButtonItem()
- }
-
- if !isHistoryCC {
- UserDefaults.standard.set([dataGroup["group_id"], dataTopic["chat_id"]], forKey: "inEditorGroup")
-
- if dataTopic["chat_id"] as! String == "" {
- UNUserNotificationCenter.current().removeDeliveredNotifications(withIdentifiers: [dataGroup["group_id"] as! String])
- sendTyping(l_pin: dataGroup["group_id"] as! String)
- } else {
- UNUserNotificationCenter.current().removeDeliveredNotifications(withIdentifiers: [dataTopic["chat_id"] as! String])
- sendTyping(l_pin: dataTopic["chat_id"] as! String)
- }
- } else {
- getOfficialGroup()
- disableEditor()
- }
-
- if fromNotification {
- let imageButton = UIImageView(frame: CGRect(x: 0, y: 0, width: 20, height: 44))
- imageButton.image = UIImage(systemName: "chevron.backward")?.withTintColor(.white)
- imageButton.contentMode = .right
- let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didTapExit))
- imageButton.isUserInteractionEnabled = true
- imageButton.addGestureRecognizer(tapGestureRecognizer)
- let leftItem = UIBarButtonItem(customView: imageButton)
- self.navigationItem.leftBarButtonItem = leftItem
- }
-
- changeAppBar()
- getData()
- getCounter()
- if counter > 0 {
- markerCounter = dataMessages[dataMessages.count - counter]["message_id"] as? String
- }
-
- tableChatView.alpha = 0
- tableChatView.delegate = self
- tableChatView.dataSource = self
- tableChatView.reloadData()
- if counter != 0 {
- if dataMessages.firstIndex(where: {$0["message_id"] as? String == markerCounter} ) != 0 {
- DispatchQueue.main.async {
- let data = self.dataMessages.filter({ $0["message_id"] as? String == self.markerCounter })
- let section = self.dataDates.firstIndex(of: data[0]["chat_date"] as! String)
- let row = self.dataMessages.filter({$0["chat_date"] as! String == data[0]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as? String == self.markerCounter})
- self.tableChatView.scrollToRow(at: IndexPath(row: row!, section: section!), at: .bottom, animated: false)
- }
- } else {
- tableChatView.scrollToTop()
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { [self] in
- if currentIndexpath == nil && counter != 0 {
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- if let idx = dataMessages.firstIndex(where: { $0["message_id"] as? String == markerCounter}) {
- for i in idx..<dataMessages.count {
- if dataMessages[i]["f_pin"] as? String != idMe {
- sendReadMessageStatus(chat_id: self.dataTopic["chat_id"] as! String, f_pin: dataMessages[i]["f_pin"] as! String, message_scope_id: "4", message_id: dataMessages[i]["message_id"] as! String)
- }
- }
- counter = 0
- updateCounter(counter: counter)
- }
- }
- }
- } else {
- var l_pin = self.dataGroup["group_id"] as! String
- if (self.dataTopic["chat_id"] as! String != "") {
- l_pin = self.dataTopic["chat_id"] as! String
- }
- if let dataSaved = UserDefaults.standard.string(forKey: "saved_\(l_pin)") {
- let last_m = dataSaved.components(separatedBy: ",")[0]
- let last_r = dataSaved.components(separatedBy: ",")[1]
- if !last_m.isEmpty {
- textFieldSend.text = last_m
- textFieldSend.textColor = UIColor.black
- }
-
- if !last_r.isEmpty {
- handleReply(indexPath: IndexPath(row: 0, section: 0), reffId: last_r)
- }
- }
- tableChatView.scrollToBottom(isAnimated: false)
- }
- tableChatView.keyboardDismissMode = .interactive
- let tapGesture = UITapGestureRecognizer(target: self, action: #selector(dismissKeyboard))
- tapGesture.cancelsTouchesInView = false
- tableChatView.addGestureRecognizer(tapGesture)
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.5, execute: {
- if self.tableChatView.alpha != 1.0 {
- UIView.animate(withDuration: 0.5, animations: {
- self.tableChatView.alpha = 1.0
- })
- }
- })
- }
-
- func getDataProfile(f_pin: String, message_id: String) -> [String: String]{
- var data: [String: String] = [:]
- Database().database?.inTransaction({ fmdb, rollback in
- if let c = Database().getRecords(fmdb: fmdb, query: "select first_name || ' ' || last_name, image_id from BUDDY where f_pin = '\(f_pin)'"), c.next() {
- data["name"] = c.string(forColumnIndex: 0)!.trimmingCharacters(in: .whitespacesAndNewlines)
- data["image_id"] = c.string(forColumnIndex: 1)!
- c.close()
- }
- else if let c = Database().getRecords(fmdb: fmdb, query: "select first_name || ' ' || last_name, thumb_id from GROUPZ_MEMBER where f_pin = '\(f_pin)' AND group_id = '\(dataGroup["group_id"]!!)'"), c.next() {
- data["name"] = c.string(forColumnIndex: 0)!.trimmingCharacters(in: .whitespacesAndNewlines)
- data["image_id"] = c.string(forColumnIndex: 1)!
- c.close()
- } else if let c = Database().getRecords(fmdb: fmdb, query: "select f_display_name from MESSAGE where message_id = '\(message_id)'"), c.next() {
- data["name"] = c.string(forColumnIndex: 0)!
- data["image_id"] = ""
- c.close()
- } else {
- data["name"] = "Unknown".localized()
- }
- })
- return data
- }
-
- private func getDataGroup(unique_l_pin: String) {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursorGroup = Database.shared.getRecords(fmdb: fmdb, query: "SELECT group_id, f_name, image_id, official, parent FROM GROUPZ WHERE group_id='\(unique_l_pin)'"), cursorGroup.next() {
- dataGroup["group_id"] = cursorGroup.string(forColumnIndex: 0)
- dataGroup["f_name"] = cursorGroup.string(forColumnIndex: 1)
- dataGroup["image_id"] = cursorGroup.string(forColumnIndex: 2)
- dataGroup["official"] = cursorGroup.string(forColumnIndex: 3)
- dataGroup["parent"] = cursorGroup.string(forColumnIndex: 4)
- dataTopic["title"] = "Lounge".localized()
- dataTopic["chat_id"] = ""
- cursorGroup.close()
- } else if let cursorTopic = Database.shared.getRecords(fmdb: fmdb, query: "SELECT group_id, title FROM DISCUSSION_FORUM where chat_id = '\(unique_l_pin)'"), cursorTopic.next() {
- dataGroup["group_id"] = cursorTopic.string(forColumnIndex: 0)
- dataTopic["title"] = cursorTopic.string(forColumnIndex: 1)
- dataTopic["chat_id"] = unique_l_pin
- cursorTopic.close()
- if let cursorGroup = Database.shared.getRecords(fmdb: fmdb, query: "SELECT f_name, image_id, official, parent FROM GROUPZ where group_id = '\(dataGroup["group_id"] as! String)'"), cursorGroup.next() {
- dataGroup["f_name"] = cursorGroup.string(forColumnIndex: 0)
- dataGroup["image_id"] = cursorGroup.string(forColumnIndex: 1)
- dataGroup["official"] = cursorGroup.string(forColumnIndex: 2)
- dataGroup["parent"] = cursorGroup.string(forColumnIndex: 3)
- cursorGroup.close()
- }
- }
- })
- }
-
- private func getData() {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- var query = "SELECT message_id, f_pin, l_pin, message_scope_id, server_date, status, message_text, audio_id, video_id, image_id, thumb_id, read_receipts, chat_id, file_id, attachment_flag, reff_id, lock, is_stared, blog_id FROM MESSAGE where chat_id='' AND l_pin='\(dataGroup["group_id"] as! String)' order by server_date asc"
- if isHistoryCC {
- query = "SELECT message_id, f_pin, l_pin, message_scope_id, server_date, status, message_text, audio_id, video_id, image_id, thumb_id, read_receipts, chat_id, file_id, attachment_flag, reff_id, lock, is_stared FROM MESSAGE where call_center_id='\(complaintId)' order by server_date asc"
- } else if (dataTopic["chat_id"] as! String != "") {
- query = "SELECT message_id, f_pin, l_pin, message_scope_id, server_date, status, message_text, audio_id, video_id, image_id, thumb_id, read_receipts, chat_id, file_id, attachment_flag, reff_id, lock, is_stared FROM MESSAGE where chat_id='\(dataTopic["chat_id"] as! String)' order by server_date asc"
- }
- if let cursorData = Database.shared.getRecords(fmdb: fmdb, query: query) {
- var tempImages: [ImageGrouping] = []
- while cursorData.next() {
- var row: [String: Any?] = [:]
- row["message_id"] = cursorData.string(forColumnIndex: 0)
- row["f_pin"] = cursorData.string(forColumnIndex: 1)
- row["l_pin"] = cursorData.string(forColumnIndex: 2)
- row["message_scope_id"] = cursorData.string(forColumnIndex: 3)
- row["server_date"] = cursorData.string(forColumnIndex: 4)
- row["status"] = cursorData.string(forColumnIndex: 5)
- row["message_text"] = cursorData.string(forColumnIndex: 6)
- row["audio_id"] = cursorData.string(forColumnIndex: 7)
- row["video_id"] = cursorData.string(forColumnIndex: 8)
- row["image_id"] = cursorData.string(forColumnIndex: 9)
- row["thumb_id"] = cursorData.string(forColumnIndex: 10)
- row["read_receipts"] = cursorData.string(forColumnIndex: 11)
- row["chat_id"] = cursorData.string(forColumnIndex: 12)
- row["file_id"] = cursorData.string(forColumnIndex: 13)
- row["attachment_flag"] = cursorData.string(forColumnIndex: 14)
- row["reff_id"] = cursorData.string(forColumnIndex: 15)
- row["lock"] = cursorData.string(forColumnIndex: 16)
- row["is_stared"] = cursorData.string(forColumnIndex: 17)
- row["blog_id"] = cursorData.string(forColumnIndex: 18)
- row["isSelected"] = false
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(row["video_id"] as! String)
- let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(row["file_id"] as! String)
- if ((row["video_id"] as! String) != "") {
- if FileManager.default.fileExists(atPath: videoURL.path){
- row["progress"] = 100.0
- } else {
- row["progress"] = 0.0
- }
- } else {
- if FileManager.default.fileExists(atPath: fileURL.path){
- row["progress"] = 100.0
- } else {
- row["progress"] = 0.0
- }
- }
- }
- row["chat_date"] = chatDate(stringDate: row["server_date"] as! String)
-
- if (dataMessages.count == 0 || dataMessages.last!["f_pin"] as! String == row["f_pin"] as! String) && tempImages.count <= 30 && row["image_id"] != nil && !(row["image_id"] as! String).isEmpty && (row["message_text"] as! String).isEmpty && (row["reff_id"] as! String).isEmpty && (row["read_receipts"] as! String) != "8" {
- if tempImages.count != 0 && getSecondsDifferenceFromTwoDates(start: Date.init(milliseconds: Int64(tempImages.last!.time)!), end: Date.init(milliseconds: Int64(row["server_date"] as! String)!))/60 >= 11 {
- if tempImages.count >= 4 {
- groupImages[tempImages[0].messageId] = tempImages
- if let idxTemp = dataMessages.firstIndex(where: { $0["message_id"] as! String == tempImages[0].messageId }) {
- for _ in 1..<tempImages.count {
- dataMessages.remove(at: idxTemp + 1)
- }
- }
- }
- tempImages.removeAll()
- }
- tempImages.append(ImageGrouping(messageId: row["message_id"] as! String, thumbId: row["thumb_id"] as! String, imageId: row["image_id"] as! String, status: row["status"] as! String, time: row["server_date"] as! String, lPin: row["l_pin"] as! String, dataMessage: row, dataPerson: [:], dataGroup: dataGroup, dataTopic: dataTopic))
- } else if tempImages.count >= 4 {
- groupImages[tempImages[0].messageId] = tempImages
- if let idxTemp = dataMessages.firstIndex(where: { $0["message_id"] as! String == tempImages[0].messageId }) {
- for _ in 1..<tempImages.count {
- dataMessages.remove(at: idxTemp + 1)
- }
- }
- tempImages.removeAll()
- } else if tempImages.count != 0 {
- tempImages.removeAll()
- }
- dataMessages.append(row)
- }
- // if isHistoryCC {
- // dataMessages.remove(at: 0)
- // }
- if tempImages.count >= 4 {
- if tempImages.count > 30 {
- tempImages.removeSubrange(30..<tempImages.count)
- }
- groupImages[tempImages[0].messageId] = tempImages
- if let idxTemp = dataMessages.firstIndex(where: { $0["message_id"] as! String == tempImages[0].messageId }) {
- for _ in 1..<tempImages.count {
- dataMessages.remove(at: idxTemp + 1)
- }
- }
- }
- cursorData.close()
- }
- })
- }
-
- func getSecondsDifferenceFromTwoDates(start: Date, end: Date) -> Int {
- let diff = Int(end.timeIntervalSince1970 - start.timeIntervalSince1970)
- let hours = diff / 3600
- let seconds = (diff - hours * 3600)
- return seconds
- }
-
- private func getRealStatus(messageId: String) -> String {
- var status = "1"
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursorStatus = Database.shared.getRecords(fmdb: fmdb, query: "SELECT status, f_pin FROM MESSAGE_STATUS WHERE message_id='\(messageId)'") {
- var listStatus: [Int] = []
- while cursorStatus.next() {
- listStatus.append(Int(cursorStatus.string(forColumnIndex: 0)!)!)
- }
- cursorStatus.close()
- status = "\(listStatus.min() ?? 2)"
- }
- })
- return status
- }
-
- private func chatDate(stringDate: String) -> String {
- let date = Date(milliseconds: Int64(stringDate)!)
- let calendar = Calendar.current
- if (calendar.isDateInToday(date)) {
- if !dataDates.contains("Today".localized()){
- dataDates.append("Today".localized())
- }
- return "Today".localized()
- } else {
- let startOfNow = calendar.startOfDay(for: Date())
- let startOfTimeStamp = calendar.startOfDay(for: date)
- let components = calendar.dateComponents([.day], from: startOfNow, to: startOfTimeStamp)
- let day = -(components.day!)
- if day == 1{
- if !dataDates.contains("Yesterday".localized()){
- dataDates.append("Yesterday".localized())
- }
- return "Yesterday".localized()
- } else if day < 7 {
- let formatter = DateFormatter()
- formatter.dateFormat = "EEEE"
- let lang = UserDefaults.standard.string(forKey: "i18n_language")
- if lang == "id" {
- formatter.locale = NSLocale(localeIdentifier: "id") as Locale?
- }
- if !dataDates.contains(formatter.string(from: date)){
- dataDates.append(formatter.string(from: date))
- }
- return formatter.string(from: date)
- } else {
- let formatter = DateFormatter()
- formatter.dateFormat = "EE, dd MMM"
- let lang = UserDefaults.standard.string(forKey: "i18n_language")
- if lang == "id" {
- formatter.locale = NSLocale(localeIdentifier: "id") as Locale?
- }
- let stringFormat = formatter.string(from: date as Date)
- if !dataDates.contains(stringFormat){
- dataDates.append(stringFormat)
- }
- return stringFormat
- }
- }
- }
-
- private func changeAppBar() {
- let viewAppBar = UIView()
- viewAppBar.frame.size = CGSize(width: self.view.frame.size.width, height: 44)
-
- if !isSearching {
- let imageProfile = UIImageView(frame: CGRect(x: 0, y: 7, width: 30, height: 30))
- imageProfile.circle()
- imageProfile.clipsToBounds = true
- viewAppBar.addSubview(imageProfile)
- let pictureImage = dataGroup["image_id"]!
- if (pictureImage as! String != "" && pictureImage != nil) {
- imageProfile.setImage(name: pictureImage! as! String)
- imageProfile.contentMode = .scaleAspectFill
- } else {
- imageProfile.image = UIImage(systemName: "person.3")
- imageProfile.contentMode = .scaleAspectFit
- imageProfile.backgroundColor = .lightGray
- }
- var widthTitle = viewAppBar.frame.size.width - 180
- if isHistoryCC {
- widthTitle = viewAppBar.frame.size.width - 150
- }
- let titleNavigation = UILabel(frame: CGRect(x: 35, y: 0, width: widthTitle, height: 44))
- viewAppBar.addSubview(titleNavigation)
- if (dataGroup["official"] as! String == "1") {
- if !isHistoryCC {
- titleNavigation.set(image: UIImage(named: "ic_official_flag", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, with: " \(dataGroup["f_name"]!!) (\(dataTopic["title"]!!))", size: 15, y: -4)
- } else {
- titleNavigation.text = (dataGroup["f_name"] as? String)! + " " + "Contact Center".localized()
- }
- } else {
- titleNavigation.text = (dataGroup["f_name"] as? String)! + " (\(dataTopic["title"]!!))"
- }
- titleNavigation.textColor = .white
- titleNavigation.font = UIFont.systemFont(ofSize: 12).bold
-
- navigationItem.titleView = viewAppBar
- titleText = titleNavigation.text
- } else {
- searchBar = UISearchBar()
- searchBar.autocapitalizationType = .none
- searchBar.delegate = self
- searchBar.searchTextField.tintColor = .mainColor
- searchBar.searchTextField.textColor = .mainColor
- searchBar.barTintColor = .secondaryColor
- searchBar.searchTextField.backgroundColor = .secondaryColor
- searchBar.showsCancelButton = false
- searchBar.setMagnifyingGlassColorTo(color: .mainColor)
- navigationItem.titleView = searchBar
- self.definesPresentationContext = true
- }
-
- if copySession || forwardSession || deleteSession || isSearching {
- navigationItem.hidesBackButton = true
- navigationController?.interactivePopGestureRecognizer?.isEnabled = false
- } else {
- navigationItem.hidesBackButton = false
- navigationController?.interactivePopGestureRecognizer?.isEnabled = true
- }
-
- viewAppBar.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(seeProfileTapped)))
- }
-
- func updateProgress(_ data: [AnyHashable: Any]){
- var isImage = false
- var idx = dataMessages.lastIndex(where: { $0["video_id"] as! String == data["name"] as! String || $0["video_id"] as? String == data["video_id"] as? String })
- if (idx == nil) {
- idx = dataMessages.lastIndex(where: { $0["image_id"] as! String == data["name"] as! String || $0["image_id"] as? String == data["image_id"] as? String })
- isImage = true
- }
- if (idx != nil) {
- let section = dataDates.firstIndex(of: dataMessages[idx!]["chat_date"] as! String)
- if section == nil {
- return
- }
- let row = dataMessages.filter({ $0["chat_date"] as! String == dataDates[section!]}).firstIndex(where: { $0["message_id"] as! String == dataMessages[idx!]["message_id"] as! String})
- if row == nil {
- return
- }
- DispatchQueue.main.async {
- let indexPath = IndexPath(row: row!, section: section!)
- if(self.fakeProgMultip < self.maxFakeProgMultip){
- self.fakeProgMultip = self.fakeProgMultip + 1
- }
- let fakeProgress = Double(self.fakeProgMultip) * (100.0 / Double(self.maxFakeProgMultip))
- let progress = max(data["progress"] as! Double, fakeProgress)
- if(data["progress"] as! Double == 100.0){
- self.fakeProgMultip = 0
- }
- if let cell = self.tableChatView.cellForRow(at: indexPath) {
- for view in cell.contentView.subviews {
- if !(view is UILabel) && !(view is UIImageView) {
- for viewInContainer in view.subviews {
- if viewInContainer is UIImageView {
- if viewInContainer.subviews.count == 0 {
- return
- }
- var containerView : UIView?
- if (isImage) {
- containerView = viewInContainer.subviews[0]
- } else if viewInContainer.subviews.count > 1 {
- containerView = viewInContainer.subviews[1]
- }
- if let loading = containerView?.layer.sublayers?[1] as? CAShapeLayer {
- loading.strokeEnd = CGFloat(progress / 100)
- if (progress == 100.0) {
- self.dataMessages[idx!]["progress"] = progress
- self.tableChatView.reloadRows(at: [indexPath], with: .none)
- }
- }
- }
- }
- }
- }
- }
- }
- } else {
- idx = dataMessages.lastIndex(where: { $0["file_id"] as! String == data["name"] as! String || $0["file_id"] as? String == data["file_id"] as? String })
- if (idx != nil) {
- DispatchQueue.main.async {
- let section = 0
- let indexPath = IndexPath(row: idx!, section: section)
- if(self.fakeProgMultip < self.maxFakeProgMultip){
- self.fakeProgMultip = self.fakeProgMultip + 1
- }
- let fakeProgress = Double(self.fakeProgMultip) * (100.0 / Double(self.maxFakeProgMultip))
- let progress = max(data["progress"] as! Double, fakeProgress)
- if(data["progress"] as! Double == 100.0){
- self.fakeProgMultip = 0
- }
- if let cell = self.tableChatView.cellForRow(at: indexPath) {
- for view in cell.contentView.subviews {
- if !(view is UILabel) && !(view is UIImageView) {
- for viewSubviews in view.subviews {
- if !(viewSubviews is UILabel) {
- for viewInContainer in viewSubviews.subviews {
- if !(viewInContainer is UILabel) && !(viewInContainer is UIImageView) {
- if viewInContainer.layer.sublayers!.count < 2 {
- return
- }
- let loading = viewInContainer.layer.sublayers![1] as! CAShapeLayer
- loading.strokeEnd = CGFloat(progress / 100)
- if (progress == 100.0) {
- self.dataMessages[idx!]["progress"] = progress
- self.tableChatView.reloadRows(at: [indexPath], with: .none)
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
-
- @objc func onUploadChat(notification: NSNotification) {
- let data:[AnyHashable : Any] = notification.userInfo!
- updateProgress(data)
- }
-
- @objc func onReceiveMessage(notification: NSNotification) {
- DispatchQueue.main.async {
- let data:[AnyHashable : Any] = notification.userInfo!
- if let dataMessage = data["message"] as? TMessage {
- let chatData = dataMessage.mBodies
- let group_id = self.dataGroup["group_id"] as! String
- let chat_id = self.dataTopic["chat_id"] as! String
- if chatData[CoreMessage_TMessageKey.L_PIN] == group_id && (chatData[CoreMessage_TMessageKey.CHAT_ID] ?? "") == chat_id {
- var row: [String: Any?] = [:]
- row["message_id"] = chatData[CoreMessage_TMessageKey.MESSAGE_ID]
- row["f_pin"] = chatData[CoreMessage_TMessageKey.F_PIN]
- row["l_pin"] = chatData[CoreMessage_TMessageKey.L_PIN]
- row["message_scope_id"] = chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID]
- row["server_date"] = chatData[CoreMessage_TMessageKey.SERVER_DATE]
- row["status"] = chatData[CoreMessage_TMessageKey.STATUS]
- row["message_text"] = chatData[CoreMessage_TMessageKey.MESSAGE_TEXT]
- if (chatData.keys.contains(CoreMessage_TMessageKey.AUDIO_ID)) {
- row["audio_id"] = chatData[CoreMessage_TMessageKey.AUDIO_ID]
- } else {
- row["audio_id"] = ""
- }
- if (chatData.keys.contains(CoreMessage_TMessageKey.VIDEO_ID)) {
- row["video_id"] = chatData[CoreMessage_TMessageKey.VIDEO_ID]
- } else {
- row["video_id"] = ""
- }
- if (chatData.keys.contains(CoreMessage_TMessageKey.IMAGE_ID)) {
- row["image_id"] = chatData[CoreMessage_TMessageKey.IMAGE_ID]
- } else {
- row["image_id"] = ""
- }
- if (chatData.keys.contains(CoreMessage_TMessageKey.THUMB_ID)) {
- row["thumb_id"] = chatData[CoreMessage_TMessageKey.THUMB_ID]
- } else {
- row["thumb_id"] = ""
- }
- row["read_receipts"] = 0
- row["chat_id"] = ""
- if (chatData.keys.contains(CoreMessage_TMessageKey.FILE_ID)) {
- row["file_id"] = chatData[CoreMessage_TMessageKey.FILE_ID]
- } else {
- row["file_id"] = ""
- }
- row["progress"] = 0.0
- row["attachment_flag"] = chatData[CoreMessage_TMessageKey.ATTACHMENT_FLAG]
- row["reff_id"] = chatData[CoreMessage_TMessageKey.REF_ID] ?? ""
- row["lock"] = ""
- row["is_stared"] = "0"
- row["isSelected"] = false
- if !self.dataDates.contains("Today".localized()){
- self.dataDates.append("Today".localized())
- self.tableChatView.insertSections(IndexSet(integer: self.dataDates.count - 1), with: .fade)
- }
- row["chat_date"] = "Today".localized()
- row["blog_id"] = chatData[CoreMessage_TMessageKey.BLOG_ID]
- self.counter += 1
- self.dataMessages.append(row)
- self.tableChatView.insertRows(at: [IndexPath(row: self.dataMessages.filter({ $0["chat_date"] as! String == self.dataDates[self.dataDates.count - 1]}).count - 1, section: self.dataDates.count - 1)], with: .fade)
- if self.currentIndexpath?.row == (self.dataMessages.count - 2) {
- if (self.viewIfLoaded?.window != nil) {
- self.sendReadMessageStatus(chat_id: self.dataTopic["chat_id"] as! String, f_pin: chatData[CoreMessage_TMessageKey.F_PIN]!, message_scope_id: chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID]!, message_id: chatData[CoreMessage_TMessageKey.MESSAGE_ID]!)
- }
- self.tableChatView.scrollToBottom()
- if (self.currentIndexpath!.section <= self.dataDates.count - 1 && self.currentIndexpath!.row <= self.dataMessages.filter({ $0["chat_date"] as! String == self.dataDates[self.dataDates.count - 1]}).count - 1) {
- self.counter = 0
- self.updateCounter(counter: self.counter)
- }
- let lastMarkerCounter = self.markerCounter
- if self.markerCounter != nil {
- self.markerCounter = nil
- }
- self.tableChatView.beginUpdates()
- let indexMessage = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == lastMarkerCounter })
- if indexMessage != nil {
- let section = self.dataDates.firstIndex(of: self.dataMessages[indexMessage!]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataMessages[indexMessage!]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[indexMessage!]["message_id"] as? String })
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- }
- self.tableChatView.endUpdates()
- }
- else if self.currentIndexpath == nil {
- self.counter = 0
- self.updateCounter(counter: self.counter)
- if (self.viewIfLoaded?.window != nil) {
- self.sendReadMessageStatus(chat_id: self.dataTopic["chat_id"] as! String, f_pin: chatData[CoreMessage_TMessageKey.F_PIN]!, message_scope_id: chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID]!, message_id: chatData[CoreMessage_TMessageKey.MESSAGE_ID]!)
- }
- }
- else if self.counter != 0 {
- if !self.indicatorCounterBSTB.isDescendant(of: self.view) && self.buttonScrollToBottom.isDescendant(of: self.view) {
- self.markerCounter = row["message_id"] as? String
- self.addCounterAtButttonScrollToBottom()
- self.tableChatView.beginUpdates()
- let indexMessage = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == self.markerCounter })
- if indexMessage != nil {
- let section = self.dataDates.firstIndex(of: self.dataMessages[indexMessage!]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataMessages[indexMessage!]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[indexMessage!]["message_id"] as? String })
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- }
- self.tableChatView.endUpdates()
- } else if self.indicatorCounterBSTB.isDescendant(of: self.view) {
- self.labelCounter.text = "\(self.counter)"
- }
- }
- }
- } else {
- // NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil)
- }
- }
- }
-
- @objc func onStatusChat(notification: NSNotification) {
- DispatchQueue.main.async {
- let data:[AnyHashable : Any] = notification.userInfo!
- if let dataMessage = data["message"] as? TMessage {
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- let chatData = dataMessage.mBodies
- if (chatData[CoreMessage_TMessageKey.F_PIN] == idMe || chatData[CoreMessage_TMessageKey.L_PIN] == self.dataGroup["group_id"] as? String || chatData[CoreMessage_TMessageKey.F_PIN] == self.dataGroup["group_id"] as? String) && chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID] == "4" {
- if (chatData.keys.contains(CoreMessage_TMessageKey.MESSAGE_ID) && !(chatData[CoreMessage_TMessageKey.MESSAGE_ID]!).contains("-2,")) {
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == chatData[CoreMessage_TMessageKey.MESSAGE_ID]! })
- if (idx != nil) {
- if (chatData[CoreMessage_TMessageKey.DELETE_MESSAGE_FLAG] == "1") {
- self.dataMessages[idx!]["lock"] = "1"
- self.dataMessages[idx!]["reff_id"] = ""
- let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataMessages[idx!]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as! String == self.dataMessages[idx!]["message_id"] as! String })
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- if self.reffId != nil && self.reffId == chatData[CoreMessage_TMessageKey.MESSAGE_ID]! {
- self.deleteReplyView()
- }
- } else {
- self.dataMessages[idx!]["status"] = chatData[CoreMessage_TMessageKey.STATUS]!
- let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataMessages[idx!]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as! String == self.dataMessages[idx!]["message_id"] as! String })
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- }
- }
- }
- else if (chatData.keys.contains("message_id")) {
- let idx = self.dataMessages.firstIndex(where: { "'\($0["message_id"] as! String)'" == chatData["message_id"]! })
- if (idx != nil) {
- if (chatData[CoreMessage_TMessageKey.DELETE_MESSAGE_FLAG] == "1") {
- self.dataMessages[idx!]["lock"] = "1"
- self.dataMessages[idx!]["reff_id"] = ""
- let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataMessages[idx!]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as! String == self.dataMessages[idx!]["message_id"] as! String })
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- if self.reffId != nil && self.reffId == chatData["message_id"]! {
- self.deleteReplyView()
- }
- } else {
- self.dataMessages[idx!]["status"] = chatData[CoreMessage_TMessageKey.STATUS]!
- let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataMessages[idx!]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as! String == self.dataMessages[idx!]["message_id"] as! String })
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- }
- }
- }
- else {
- let messageId = chatData[CoreMessage_TMessageKey.MESSAGE_ID]!.split(separator: ",")[1]
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == messageId })
- if (idx != nil) {
- self.dataMessages[idx!]["status"] = chatData[CoreMessage_TMessageKey.STATUS]!
- let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataMessages[idx!]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as! String == self.dataMessages[idx!]["message_id"] as! String })
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- }
- }
- }
- }
- }
- }
-
- @objc func onMemberTopic(notification: NSNotification) {
- let data:[AnyHashable : Any] = notification.userInfo!
- DispatchQueue.main.async { [self] in
- if data["member"] == nil || data["code"] as! String == CoreMessage_TMessageCode.EXIT_GROUP && data["member"] as! String == UserDefaults.standard.string(forKey: "me")! && data["groupId"] as! String == self.dataGroup["group_id"] as! String && !containerActionGroup.isDescendant(of: self.view) {
- dismissKeyboard()
- let labelKicked = UILabel()
- if data["member"] == nil && data["code"] as! String == CoreMessage_TMessageCode.DELETE_CHAT && data["topicId"] as! String == dataTopic["chat_id"] as! String {
- labelKicked.text = "This topic has been deleted".localized()
- } else if data["member"] != nil && data["member"] as! String == data["f_pin"] as! String {
- labelKicked.text = "You have left this group".localized()
- } else if data["member"] != nil {
- labelKicked.text = "You have been removed from this group".localized()
- } else if data["code"] as! String == CoreMessage_TMessageCode.UPDATE_CHAT {
- dataGroup.removeAll()
- dataTopic.removeAll()
- getDataGroup(unique_l_pin: unique_l_pin)
- changeAppBar()
- return
- } else {
- return
- }
- removed = true
- cancelAction()
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.35, execute: { [self] in
- navigationItem.rightBarButtonItem = nil
- view.addSubview(containerActionGroup)
- containerActionGroup.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- containerActionGroup.leadingAnchor.constraint(equalTo: self.view.leadingAnchor),
- containerActionGroup.trailingAnchor.constraint(equalTo: self.view.trailingAnchor),
- containerActionGroup.bottomAnchor.constraint(equalTo: self.view.bottomAnchor),
- containerActionGroup.heightAnchor.constraint(equalToConstant: 120)
- ])
- containerActionGroup.backgroundColor = .secondaryColor.withAlphaComponent(0.8)
- containerActionGroup.addSubview(labelKicked)
- labelKicked.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelKicked.centerYAnchor.constraint(equalTo: containerActionGroup.centerYAnchor),
- labelKicked.centerXAnchor.constraint(equalTo: containerActionGroup.centerXAnchor),
- ])
- labelKicked.textColor = .black
- labelKicked.font = UIFont.systemFont(ofSize: 12).bold
- if contactChatNav.viewIfLoaded?.window != nil {
- contactChatNav.dismiss(animated: true)
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.35, execute: {
- if self.fromNotification {
- self.didTapExit()
- } else {
- self.navigationController?.popViewController(animated: true)
- }
- })
- })
- }
- }
- }
-
- @objc func onGroup(notification: NSNotification) {
- let data:[AnyHashable : Any] = notification.userInfo!
- if data["code"] as! String == "A010" && data["groupId"] as! String == self.dataGroup["group_id"] as! String {
- DispatchQueue.main.async {
- Database().database?.inTransaction({ fmdb, rollback in
- if let c = Database().getRecords(fmdb: fmdb, query: "select f_name, image_id from GROUPZ where group_id = '\(self.dataGroup["group_id"]!!)'"), c.next() {
- self.dataGroup["f_name"] = c.string(forColumnIndex: 0)!.trimmingCharacters(in: .whitespacesAndNewlines)
- self.dataGroup["image_id"] = c.string(forColumnIndex: 1)!
- c.close()
- }
- })
- self.changeAppBar()
- }
- }
- }
-
- @IBAction func voiceTapped(_ sender: UIButton) {
- if (self.constraintBottomAttachment.constant != 0.0) {
- constraintBottomAttachment.constant = 0.0
- self.viewSticker.removeConstraints(self.viewSticker.constraints)
- self.viewSticker.removeFromSuperview()
- }
- }
-
- @IBAction func imageTapped(_ sender: UIButton) {
- if (self.constraintBottomAttachment.constant != 0.0) {
- constraintBottomAttachment.constant = 0.0
- self.viewSticker.removeConstraints(self.viewSticker.constraints)
- self.viewSticker.removeFromSuperview()
- }
- let alertController = LibAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
-
- if let action = self.actionImageVideo(for: "image", title: "Choose Photo".localized()) {
- alertController.addAction(action)
- }
- if let action = self.actionImageVideo(for: "video", title: "Choose Video".localized()) {
- alertController.addAction(action)
- }
- alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: nil))
- self.present(alertController, animated: true)
- }
-
- private func actionImageVideo(for type: String, title: String) -> UIAlertAction? {
- return UIAlertAction(title: title, style: .default) { [unowned self] _ in
- switch type {
- case "image":
- imageVideoPicker.present(source: .imageAlbum)
- case "video":
- imageVideoPicker.present(source: .videoAlbum)
- case "imageCamera":
- imageVideoPicker.present(source: .imageCamera)
- case "videoCamera":
- imageVideoPicker.present(source: .videoCamera)
- default:
- imageVideoPicker.present(source: .imageAlbum)
- }
- }
- }
-
- @IBAction func photoTapped(_ sender: UIButton) {
- if (self.constraintBottomAttachment.constant != 0.0) {
- constraintBottomAttachment.constant = 0.0
- self.viewSticker.removeConstraints(self.viewSticker.constraints)
- self.viewSticker.removeFromSuperview()
- }
- let alertController = LibAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
-
- if let action = self.actionImageVideo(for: "imageCamera", title: "Take Photo".localized()) {
- alertController.addAction(action)
- }
- if let action = self.actionImageVideo(for: "videoCamera", title: "Take Video".localized()) {
- alertController.addAction(action)
- }
- alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: nil))
- self.present(alertController, animated: true)
- }
-
- @IBAction func stickerTapped(_ sender: UIButton) {
- DispatchQueue.main.async {
- if (self.constraintBottomAttachment.constant == 0.0) {
- self.constraintBottomAttachment.constant = 200.0
- self.view.addSubview(self.viewSticker)
- self.viewSticker.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- self.viewSticker.bottomAnchor.constraint(equalTo: self.view.bottomAnchor),
- self.viewSticker.leadingAnchor.constraint(equalTo: self.view.leadingAnchor),
- self.viewSticker.trailingAnchor.constraint(equalTo: self.view.trailingAnchor),
- self.viewSticker.heightAnchor.constraint(equalToConstant: 200)
- ])
-
- let layout = UICollectionViewFlowLayout()
- layout.scrollDirection = .vertical
- let collectionSticker = UICollectionView(frame: .zero, collectionViewLayout: layout)
- collectionSticker.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "cellSticker")
- collectionSticker.delegate = self
- collectionSticker.dataSource = self
- collectionSticker.backgroundColor = .clear
- self.viewSticker.addSubview(collectionSticker)
- collectionSticker.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- collectionSticker.topAnchor.constraint(equalTo: self.viewSticker.topAnchor, constant: 20),
- collectionSticker.bottomAnchor.constraint(equalTo: self.viewSticker.bottomAnchor, constant: -20),
- collectionSticker.leadingAnchor.constraint(equalTo: self.viewSticker.leadingAnchor, constant: 20),
- collectionSticker.trailingAnchor.constraint(equalTo: self.viewSticker.trailingAnchor, constant: -20)
- ])
- if (self.currentIndexpath != nil) {
- DispatchQueue.main.async {
- self.tableChatView.scrollToRow(at: IndexPath(row: self.currentIndexpath!.row, section: self.currentIndexpath!.section), at: .none, animated: false)
- }
- } else {
- self.tableChatView.scrollToBottom()
- }
- } else {
- self.constraintBottomAttachment.constant = 0.0
- self.viewSticker.removeConstraints(self.viewSticker.constraints)
- self.viewSticker.removeFromSuperview()
- }
- }
- }
-
- @IBAction func fileTapped(_ sender: UIButton) {
- if (self.constraintBottomAttachment.constant != 0.0) {
- constraintBottomAttachment.constant = 0.0
- self.viewSticker.removeConstraints(self.viewSticker.constraints)
- self.viewSticker.removeFromSuperview()
- }
- documentPicker.present()
- }
-
- @objc func didTapExit() {
- UserDefaults.standard.removeObject(forKey: "inEditorGroup")
- NotificationCenter.default.removeObserver(self)
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "refreshView"), object: nil, userInfo: nil)
- self.dismiss(animated: true, completion: nil)
- }
-
- @objc func profilePersonTapped(_ sender: ObjectGesture) {
- if isHistoryCC {
- return
- }
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- if sender.message_id == idMe {
- let controller = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "profileView") as! ProfileViewController
- controller.data = sender.message_id
- controller.flag = .me
- navigationController?.show(controller, sender: nil)
- } else {
- let data = User.getDataCanNil(pin: sender.message_id)
- if data != nil {
- let controller = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "profileView") as! ProfileViewController
- controller.flag = .friend
- controller.user = data
- controller.name = data!.fullName
- controller.data = sender.message_id
- controller.picture = data!.thumb
- self.navigationController?.show(controller, sender: nil)
- } else {
- let dataUser = getDataProfile(f_pin: sender.message_id, message_id: "")
- let controller = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "profileView") as! ProfileViewController
- controller.flag = .invite
- controller.user = nil
- controller.name = dataUser["name"]!
- controller.data = sender.message_id
- controller.picture = dataUser["image_id"]!
- self.navigationController?.show(controller, sender: nil)
- }
- }
- }
-
- @objc func seeProfileTapped() {
- if isHistoryCC || removed || copySession || forwardSession || deleteSession || (dataGroup["official"] as? String == "1" && (dataGroup["parent"] as? String)!.isEmpty) {
- return
- }
- dismissKeyboard()
- let controller = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "groupDetailView") as! GroupDetailViewController
- controller.data = dataGroup["group_id"] as! String
- controller.checkReadMessage = {
- if self.currentIndexpath == nil {
- var listData = self.dataMessages
- listData = listData.filter({$0["status"] as! String != "4" && $0["status"] as! String != "8"})
- if listData.count != 0 {
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- for i in 0...listData.count - 1 {
- if listData[i]["f_pin"] as? String != idMe {
- self.sendReadMessageStatus(chat_id: self.dataTopic["chat_id"] as! String, f_pin: listData[i]["f_pin"] as! String, message_scope_id: "4", message_id: listData[i]["message_id"] as! String)
- }
- }
- }
- } else {
- let dataMessages = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataDates[self.currentIndexpath!.section] })
- var listData = dataMessages
- listData = listData.filter({$0["status"] as! String != "4" && $0["status"] as! String != "8"})
- if listData.count != 0 {
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- for i in 0...listData.count - 1 {
- if listData[i]["f_pin"] as? String != idMe {
- self.sendReadMessageStatus(chat_id: self.dataTopic["chat_id"] as! String, f_pin: listData[i]["f_pin"] as! String, message_scope_id: "4", message_id: listData[i]["message_id"] as! String)
- }
- }
- }
- }
- }
- navigationController?.show(controller, sender: nil)
- }
-
- @objc func dismissKeyboard() {
- if isSearching {
- searchBar.resignFirstResponder()
- } else {
- textFieldSend.resignFirstResponder() // dismiss keyoard
- if (self.constraintBottomAttachment.constant != 0.0) {
- constraintBottomAttachment.constant = 0.0
- self.viewSticker.removeConstraints(self.viewSticker.constraints)
- self.viewSticker.removeFromSuperview()
- }
- }
- }
-
- @objc func keyboardWillShow(notification: NSNotification) {
- if self.viewIfLoaded?.window != nil {
- if (self.constraintBottomAttachment.constant != 0.0) {
- self.constraintBottomAttachment.constant = 0.0
- self.viewSticker.removeConstraints(self.viewSticker.constraints)
- self.viewSticker.removeFromSuperview()
- }
- let info:NSDictionary = notification.userInfo! as NSDictionary
- let keyboardSize = (info[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue).cgRectValue
-
- let keyboardHeight: CGFloat = keyboardSize.height
-
- let duration: CGFloat = info[UIResponder.keyboardAnimationDurationUserInfoKey] as! NSNumber as! CGFloat
-
- if self.constraintViewTextField.constant != keyboardHeight - 60 {
- if self.contraintBottomMention.constant > 0 {
- self.contraintBottomMention.constant = self.contraintBottomMention.constant + keyboardHeight - 60
- }
- self.constraintViewTextField.constant = keyboardHeight - 60
- self.keyboardHeightForMention = keyboardHeight
- if isSearching {
- self.constraintViewTextField.constant = self.constraintViewTextField.constant + 60
- self.constraintBottomContainerMultpileSelectSession.constant = -keyboardHeight
- }
- UIView.animate(withDuration: TimeInterval(duration), animations: {
- self.view.layoutIfNeeded()
- })
- if isSearching {
- self.tableChatView.scrollToBottom()
- } else {
- if (self.currentIndexpath != nil) {
- self.tableChatView.scrollToRow(at: IndexPath(row: self.currentIndexpath!.row, section: self.currentIndexpath!.section), at: .none, animated: false)
- } else {
- self.tableChatView.scrollToBottom()
- }
- }
- }
- }
- }
-
- @objc func keyboardWillHide(notification: NSNotification) {
- if self.viewIfLoaded?.window != nil {
- let info:NSDictionary = notification.userInfo! as NSDictionary
- let duration: CGFloat = info[UIResponder.keyboardAnimationDurationUserInfoKey] as! NSNumber as! CGFloat
-
- self.constraintViewTextField.constant = 0
- self.constraintBottomContainerMultpileSelectSession.constant = 0
- if self.contraintBottomMention.constant > 0 {
- self.contraintBottomMention.constant = self.contraintBottomMention.constant - self.keyboardHeightForMention! + 60
- }
- keyboardHeightForMention = nil
- UIView.animate(withDuration: TimeInterval(duration), animations: {
- self.view.layoutIfNeeded()
- })
- }
- }
-
- @objc func showChooserACKConfidential() {
- let alertController = LibAlertController(title: "Message Mode".localized(), message: "Select".localized() + " " + "Message Mode".localized(), preferredStyle: .actionSheet)
- let imageAck = resizeImage(image: UIImage(named: "ack_icon", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal)
- let ackAction = UIAlertAction(title: "Confirmation Message".localized(), style: .default, handler: { (UIAlertAction) in
- if !self.isAck {
- self.isAck = true
- self.buttonAckConfidential.setImage(imageAck, for: .normal)
- }
- })
- ackAction.setValue(imageAck, forKey: "image")
- alertController.addAction(ackAction)
- alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: { (UIAlertAction) in
- self.isAck = false
- self.buttonAckConfidential.setImage(UIImage(systemName: "gearshape.fill", withConfiguration: UIImage.SymbolConfiguration(scale: .large))?.withTintColor(.white).withRenderingMode(.alwaysTemplate), for: .normal)
- }))
- self.present(alertController, animated: true, completion: nil)
- }
-
- public func setAckConfidential(isAck: Bool, isConfidential: Bool) {
- self.isAck = isAck
- let imageAck = resizeImage(image: UIImage(named: "ack_icon", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal)
- if isAck {
- buttonAckConfidential.setImage(imageAck, for: .normal)
- } else {
- self.buttonAckConfidential.setImage(UIImage(systemName: "gearshape.fill", withConfiguration: UIImage.SymbolConfiguration(scale: .large))?.withTintColor(.white).withRenderingMode(.alwaysTemplate), for: .normal)
- }
- }
-
- @objc func sendTapped() {
- sendChat(message_text: textFieldSend.text!, viewController: self)
- }
-
- private func sendChat(message_scope_id:String = "4", status:String = "2", message_text:String = "", credential:String = "0", attachment_flag: String = "0", ex_blog_id: String = "", message_large_text: String = "", ex_format: String = "", image_id: String = "", audio_id: String = "", video_id: String = "", file_id: String = "", thumb_id: String = "", reff_id: String = "", read_receipts: String = "", is_call_center: String = "0", call_center_id: String = "", viewController: UIViewController) {
- if viewController is EditorGroup && file_id == "" && dataMessageForward == nil {
- if ((textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines) == "Send message".localized() && textFieldSend.textColor == UIColor.lightGray && attachment_flag != "11") || textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty ) {
- dismissKeyboard()
- viewController.showToast(message: "Write Messages".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)
- if (textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines) != "Send message".localized()) {
- textFieldSend.text = ""
- }
- if (self.heightTextFieldSend.constant != 40) {
- self.heightTextFieldSend.constant = 40
- }
- return
- }
- }
- var reff_id = reff_id
- if (reffId != nil) {
- reff_id = reffId!
- }
- var message_text = message_text.trimmingCharacters(in: .whitespacesAndNewlines)
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- var opposite_pin = self.dataGroup["group_id"] as! String
- if (self.dataTopic["chat_id"] as! String != "") {
- opposite_pin = self.dataTopic["chat_id"] as! String
- }
- var read_receipts = read_receipts
- if isAck {
- read_receipts = "8"
- }
- if message_text.contains("@") && listMentionInTextField.count > 0 {
- for i in 0..<listMentionInTextField.count {
- let nameWithMention = ("@" + listMentionInTextField[i].firstName + " " + listMentionInTextField[i].lastName).trimmingCharacters(in: .whitespaces)
- let upperBound = Int(listMentionInTextField[i].ex_block!)! - 1
- let lowerBound = Int(listMentionInTextField[i].ex_block!)! - nameWithMention.count
- var afterMention = ""
- if upperBound + 1 != message_text.count && message_text.substring(from: upperBound + 1, to: upperBound + 1) != "\n" && message_text.substring(from: upperBound + 1, to: upperBound + 1) != " " && message_text.substring(from: upperBound + 1, to: upperBound + 1) != "" {
- afterMention = " "
- }
- let stringRange = message_text.index(message_text.startIndex, offsetBy: lowerBound)..<message_text.index(message_text.startIndex, offsetBy: upperBound + 1)
- message_text = message_text.replacingOccurrences(of: nameWithMention, with: "@\(listMentionInTextField[i].pin)" + afterMention, range: stringRange)
- }
- }
- let message = CoreMessage_TMessageBank.sendMessage(l_pin: dataGroup["group_id"] as! String, message_scope_id: message_scope_id, status: status, message_text: message_text, credential: credential, attachment_flag: attachment_flag, ex_blog_id: ex_blog_id, message_large_text: message_large_text, ex_format: ex_format, image_id: image_id, audio_id: audio_id, video_id: video_id, file_id: file_id, thumb_id: thumb_id, reff_id: reff_id, read_receipts: read_receipts, chat_id: dataTopic["chat_id"] as! String, is_call_center: is_call_center, call_center_id: call_center_id, opposite_pin: opposite_pin)
- DigiX.addQueueMessage(message: message)
- let messageId = String(message.mBodies[CoreMessage_TMessageKey.MESSAGE_ID]!)
- var row: [String: Any?] = [:]
- row["message_id"] = messageId
- row["f_pin"] = idMe
- row["l_pin"] = dataGroup["group_id"]!!
- row["message_scope_id"] = message_scope_id
- row["server_date"] = "\(Date().currentTimeMillis())"
- row["status"] = status
- row["message_text"] = message_text
- row["audio_id"] = audio_id
- row["video_id"] = video_id
- row["image_id"] = image_id
- row["thumb_id"] = thumb_id
- row["read_receipts"] = read_receipts
- row["chat_id"] = dataTopic["chat_id"]!!
- row["file_id"] = file_id
- row["attachment_flag"] = attachment_flag
- row["reff_id"] = reff_id
- row["progress"] = 0.0
- row["lock"] = "0"
- row["is_stared"] = "0"
- row["isSelected"] = false
- if !dataDates.contains("Today".localized()){
- dataDates.append("Today".localized())
- tableChatView.insertSections(IndexSet(integer: dataDates.count - 1), with: .fade)
- }
- row["chat_date"] = "Today".localized()
- dataMessages.append(row)
- tableChatView.insertRows(at: [IndexPath(row: dataMessages.filter({ $0["chat_date"] as! String == dataDates[dataDates.count - 1]}).count - 1, section: dataDates.count - 1)], with: .fade)
- if textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines) != "Send message".localized() && textFieldSend.textColor != UIColor.lightGray && constraintViewTextField.constant == 0 {
- textFieldSend.text = "Send message".localized()
- textFieldSend.textColor = UIColor.lightGray
- } else if constraintViewTextField.constant != 0 {
- textFieldSend.text = ""
- heightTextFieldSend.constant = 40
- }
- deleteReplyView()
- deleteLinkPreview()
- listMentionInTextField.removeAll()
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil)
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.25) {
- self.tableChatView.scrollToBottom()
- if self.markerCounter != nil {
- let lastMarkerCounter = self.markerCounter
- self.markerCounter = nil
- self.tableChatView.beginUpdates()
- let indexMessage = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == lastMarkerCounter })
- if indexMessage != nil {
- let section = self.dataDates.firstIndex(of: self.dataMessages[indexMessage!]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataMessages[indexMessage!]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[indexMessage!]["message_id"] as? String })
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- }
- self.tableChatView.endUpdates()
- }
- }
- // DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
- // self.timerFakeProgress = Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { _ in
- // self.updateProgress(row as [AnyHashable : Any])
- // if self.fakeProgMultip == self.maxFakeProgMultip {
- // self.timerFakeProgress?.invalidate()
- // self.fakeProgMultip = 0
- // }
- // }
- // }
- }
-
- private func getCounter() {
- Database().database?.inTransaction({ fmdb, rollback in
- var l_pin = self.dataGroup["group_id"]!!
- if (self.dataTopic["chat_id"] as! String != "") {
- l_pin = self.dataTopic["chat_id"] as! String
- }
-
- if let c = Database().getRecords(fmdb: fmdb, query: "SELECT counter FROM MESSAGE_SUMMARY where l_pin='\(l_pin)'"), c.next() {
- counter = Int(c.int(forColumnIndex: 0))
- c.close()
- }
- })
- }
-
- private func updateCounter(counter: Int) {
- DispatchQueue.global().async {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- var l_pin = self.dataGroup["group_id"]!!
- if (self.dataTopic["chat_id"] as! String != "") {
- l_pin = self.dataTopic["chat_id"] as! String
- }
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_SUMMARY", cvalues: [
- "counter" : "\(counter)"
- ], _where: "l_pin = '\(l_pin)'")
- })
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil)
- }
-
- }
-
- private func disableEditor() {
- view.addSubview(containerAction)
- containerAction.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- containerAction.leadingAnchor.constraint(equalTo: self.view.leadingAnchor),
- containerAction.trailingAnchor.constraint(equalTo: self.view.trailingAnchor),
- containerAction.bottomAnchor.constraint(equalTo: self.view.bottomAnchor),
- containerAction.heightAnchor.constraint(equalToConstant: 120)
- ])
- containerAction.backgroundColor = .secondaryColor.withAlphaComponent(0.8)
- let labelDisable = UILabel()
- containerAction.addSubview(labelDisable)
- labelDisable.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelDisable.centerYAnchor.constraint(equalTo: containerAction.centerYAnchor),
- labelDisable.centerXAnchor.constraint(equalTo: containerAction.centerXAnchor),
- ])
- labelDisable.textColor = .black
- labelDisable.font = UIFont.systemFont(ofSize: 12).bold
- labelDisable.text = "Call Center Session has ended".localized()
- }
-
- private func addButtonScrollToBottom() {
- self.view.addSubview(buttonScrollToBottom)
- buttonScrollToBottom.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- buttonScrollToBottom.bottomAnchor.constraint(equalTo: buttonSendChat.topAnchor, constant: -50),
- buttonScrollToBottom.trailingAnchor.constraint(equalTo: self.view.trailingAnchor),
- buttonScrollToBottom.widthAnchor.constraint(equalToConstant: 60),
- buttonScrollToBottom.heightAnchor.constraint(equalToConstant: 30.0)
- ])
- buttonScrollToBottom.backgroundColor = .greenColor
- buttonScrollToBottom.setImage(UIImage(systemName: "chevron.down.circle"), for: .normal)
- buttonScrollToBottom.imageView?.contentMode = .scaleAspectFit
- buttonScrollToBottom.imageView?.tintColor = .white
- buttonScrollToBottom.contentVerticalAlignment = .fill
- buttonScrollToBottom.contentHorizontalAlignment = .fill
- buttonScrollToBottom.imageEdgeInsets.top = 2.0
- buttonScrollToBottom.imageEdgeInsets.bottom = 2.0
- buttonScrollToBottom.layer.cornerRadius = 10.0
- buttonScrollToBottom.layer.maskedCorners = [.layerMinXMinYCorner, .layerMinXMaxYCorner]
- buttonScrollToBottom.clipsToBounds = true
- buttonScrollToBottom.addTarget(self, action: #selector(scrollTobottomAction), for: .touchUpInside)
- }
-
- private func addCounterAtButttonScrollToBottom() {
- self.view.addSubview(indicatorCounterBSTB)
- indicatorCounterBSTB.translatesAutoresizingMaskIntoConstraints = false
- indicatorCounterBSTB.backgroundColor = .systemRed
- indicatorCounterBSTB.layer.cornerRadius = 7.5
- indicatorCounterBSTB.clipsToBounds = true
- indicatorCounterBSTB.layer.borderWidth = 0.5
- indicatorCounterBSTB.layer.borderColor = UIColor.secondaryColor.cgColor
- NSLayoutConstraint.activate([
- indicatorCounterBSTB.bottomAnchor.constraint(equalTo: buttonScrollToBottom.topAnchor, constant: 5),
- indicatorCounterBSTB.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -50),
- indicatorCounterBSTB.widthAnchor.constraint(greaterThanOrEqualToConstant: 15),
- indicatorCounterBSTB.heightAnchor.constraint(equalToConstant: 15)
- ])
-
- indicatorCounterBSTB.addSubview(labelCounter)
- labelCounter.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelCounter.leadingAnchor.constraint(equalTo: indicatorCounterBSTB.leadingAnchor, constant: 2),
- labelCounter.trailingAnchor.constraint(equalTo: indicatorCounterBSTB.trailingAnchor, constant: -2),
- labelCounter.centerXAnchor.constraint(equalTo: indicatorCounterBSTB.centerXAnchor),
- ])
- labelCounter.font = UIFont.systemFont(ofSize: 11)
- labelCounter.text = "\(counter)"
- labelCounter.textColor = .secondaryColor
- labelCounter.textAlignment = .center
- }
-
- @objc func scrollTobottomAction() {
- tableChatView.scrollToBottom()
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.35) { [self] in
- if buttonScrollToBottom.isDescendant(of: self.view) {
- buttonScrollToBottom.removeConstraints(buttonScrollToBottom.constraints)
- buttonScrollToBottom.removeFromSuperview()
- if indicatorCounterBSTB.isDescendant(of: self.view) {
- indicatorCounterBSTB.removeConstraints(indicatorCounterBSTB.constraints)
- indicatorCounterBSTB.removeFromSuperview()
- }
- }
- }
- }
-
- private func sendReadMessageStatus(chat_id: String, f_pin: String, message_scope_id: String, message_id: String) {
- let message = CoreMessage_TMessageBank.getUpdateRead(p_chat_id: chat_id, p_f_pin: f_pin, p_scope_id: message_scope_id, qty: 1)
- let fPin = message.getBody(key: CoreMessage_TMessageKey.F_PIN)
- let scope = message.getBody(key: CoreMessage_TMessageKey.SCOPE_ID)
- message.mBodies[CoreMessage_TMessageKey.SERVER_DATE] = String(Date().currentTimeMillis())
- if (fPin.elementsEqual("-999") || scope.elementsEqual("16") || scope.elementsEqual("15")){
- return
- }
- DispatchQueue.global().async {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [
- "status" : "4"
- ], _where: "message_id = '\(message_id)'")
- })
- message.mStatus = CoreMessage_TMessageUtil.getTID()
- message.mBodies[CoreMessage_TMessageKey.L_PIN] = f_pin
- message.mBodies[CoreMessage_TMessageKey.MESSAGE_ID] = "-2,\(message_id)"
- _ = DigiX.write(message: message)
- }
- if let index = dataMessages.firstIndex(where: {$0["message_id"] as? String == message_id}) {
- dataMessages[index]["status"] = "4"
- let auto = UserDefaults.standard.bool(forKey: "autoDownload")
- if auto {
- if dataMessages[index]["image_id"] as? String != nil && !((dataMessages[index]["image_id"] as? String)!.isEmpty) {
- Download().startHTTP(forKey:dataMessages[index]["image_id"] as! String) { (name, progress) in
- guard progress == 100 else {
- return
- }
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(self.dataMessages[index]["image_id"] as! String)
- let image = UIImage(contentsOfFile: imageURL.path)
- let save = UserDefaults.standard.bool(forKey: "saveToGallery")
- if save {
- UIImageWriteToSavedPhotosAlbum(image!, nil, nil, nil)
- }
- }
- DispatchQueue.main.async { [self] in
- let section = dataDates.firstIndex(of: dataMessages[index]["chat_date"] as! String)
- let row = dataMessages.filter({$0["chat_date"] as! String == dataMessages[index]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as? String == message_id})
- if row != nil && section != nil{
- tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .automatic)
- }
- }
- }
- } else if dataMessages[index]["video_id"] as? String != nil && !((dataMessages[index]["video_id"] as? String)!.isEmpty){
- Download().startHTTP(forKey: dataMessages[index]["video_id"] as! String) { (name, progress) in
- guard progress == 100 else {
- return
- }
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(self.dataMessages[index]["video_id"] as! String)
- let save = UserDefaults.standard.bool(forKey: "saveToGallery")
- if save {
- PHPhotoLibrary.shared().performChanges({
- PHAssetChangeRequest.creationRequestForAssetFromVideo(atFileURL: videoURL)
- }) { saved, error in
-
- }
- }
- }
- DispatchQueue.main.async { [self] in
- let section = dataDates.firstIndex(of: dataMessages[index]["chat_date"] as! String)
- let row = dataMessages.filter({$0["chat_date"] as! String == dataMessages[index]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as? String == message_id})
- if row != nil && section != nil{
- tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .automatic)
- }
- }
- }
- }
- else if dataMessages[index]["file_id"] as? String != nil && !((dataMessages[index]["file_id"] as? String)!.isEmpty) {
- Download().startHTTP(forKey: dataMessages[index]["file_id"] as! String) { (name, progress) in
- guard progress == 100 else {
- return
- }
- DispatchQueue.main.async { [self] in
- let section = dataDates.firstIndex(of: dataMessages[index]["chat_date"] as! String)
- let row = dataMessages.filter({$0["chat_date"] as! String == dataMessages[index]["chat_date"] as! String}).firstIndex(where: { $0["message_id"] as? String == message_id})
- if row != nil && section != nil{
- tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .automatic)
- }
- }
- }
- }
- }
- }
- }
-
- private func sendTyping(l_pin: String, isTyping: Bool = false) {
- DispatchQueue.global().async {
- let tmessage = CoreMessage_TMessageBank.getUpdateTypingStatus(p_opposite: l_pin, p_scope: "4", p_status: isTyping ? "3": "4")
- _ = DigiX.write(message: tmessage)
- }
- }
-
- private func checkNewMessage(tableView: UITableView) {
- currentIndexpath = tableView.indexPathsForVisibleRows?.last
- if currentIndexpath != nil {
- let dataMessages = dataMessages.filter({ $0["chat_date"] as! String == dataDates[currentIndexpath!.section] })
- if dataMessages.count == 0 {
- return
- }
- if currentIndexpath!.section == dataDates.count - 1 && currentIndexpath!.row != dataMessages.count - 1 && currentIndexpath!.row != dataMessages.count - 2 && !buttonScrollToBottom.isDescendant(of: self.view) {
- addButtonScrollToBottom()
- addCounterAtButttonScrollToBottom()
- } else if currentIndexpath!.section == dataDates.count - 1 && currentIndexpath!.row == dataMessages.count - 1 {
- if buttonScrollToBottom.isDescendant(of: self.view) {
- buttonScrollToBottom.removeConstraints(buttonScrollToBottom.constraints)
- buttonScrollToBottom.removeFromSuperview()
- if indicatorCounterBSTB.isDescendant(of: self.view) {
- indicatorCounterBSTB.removeConstraints(indicatorCounterBSTB.constraints)
- indicatorCounterBSTB.removeFromSuperview()
- }
- }
- }
- let indexPathFirst = tableChatView.indexPathsForVisibleRows?.first
- if indexPathFirst != nil && listViewOnSection.count != 0 && listViewOnSection.count - 1 >= indexPathFirst!.section {
- let headerView = listViewOnSection[indexPathFirst!.section]
- if headerView.isHidden {
- headerView.isHidden = false
- }
- }
- if dataMessages.count - 1 < currentIndexpath!.row {
- return
- }
- var listData = dataMessages[0...currentIndexpath!.row]
- listData = listData.filter({$0["status"] as! String != "4" && $0["status"] as! String != "8"})
- if listData.count != 0 {
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- for i in 0...listData.count - 1 {
- if listData[i]["f_pin"] as? String != idMe {
- sendReadMessageStatus(chat_id: self.dataTopic["chat_id"] as! String, f_pin: listData[i]["f_pin"] as! String, message_scope_id: "4", message_id: listData[i]["message_id"] as! String)
- }
- }
- }
- }
- if counter == 0 && indicatorCounterBSTB.isDescendant(of: self.view) {
- indicatorCounterBSTB.removeConstraints(indicatorCounterBSTB.constraints)
- indicatorCounterBSTB.removeFromSuperview()
- } else if counter != 0 && currentIndexpath != nil {
- let dataFilter = dataMessages.filter({ $0["chat_date"] as! String == dataDates[currentIndexpath!.section] })
- if dataFilter.count == 0 {
- return
- }
- let idx = dataMessages.firstIndex(where: { $0["message_id"] as! String == dataFilter[currentIndexpath!.row]["message_id"] as! String})
- if idx == nil {
- return
- }
- if (dataMessages.count - counter) <= idx! {
- let countUpdate = idx! - (dataMessages.count - counter)
- counter = counter - (countUpdate + 1)
- if indicatorCounterBSTB.isDescendant(of: self.view) {
- labelCounter.text = "\(counter)"
- }
- updateCounter(counter: counter)
- }
- }
- }
- }
- extension EditorGroup: ImageVideoPickerDelegate, PreviewAttachmentImageVideoDelegate {
- public func didSelect(imagevideo: Any?) {
- if (imagevideo != nil) {
- let imageVideoData = imagevideo as! [UIImagePickerController.InfoKey: Any]
- let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: DigiX.self))
- previewImageVC.imageVideoData = imageVideoData
- if (textFieldSend.textColor != .lightGray) {
- previewImageVC.currentTextTextField = textFieldSend.text
- }
- previewImageVC.modalPresentationStyle = .custom
- previewImageVC.delegate = self
- previewImageVC.isGroup = true
- previewImageVC.isAck = self.isAck
- self.present(previewImageVC, animated: true, completion: nil)
- }
- }
-
- func sendChatFromPreviewImage(message_text: String, attachment_flag: String, image_id: String, video_id: String, thumb_id: String, viewController: UIViewController) {
- sendChat(message_text: message_text, attachment_flag: attachment_flag, image_id: image_id, video_id: video_id, thumb_id: thumb_id, viewController: viewController)
- }
- }
- extension EditorGroup: UIDocumentPickerDelegate, DocumentPickerDelegate, QLPreviewControllerDataSource {
- public func didSelectDocument(document: Any?) {
- if (document != nil) {
- self.previewItem = (document as! [URL])[0] as NSURL
- let previewController = QLPreviewController()
- let navController = UINavigationController(rootViewController: previewController)
- let leftBarButton = navigationQLPreviewDocument(title: "Cancel".localized(), style: .plain, target: self, action: #selector(cancelDocumentPreview))
- let rightBarButton = navigationQLPreviewDocument(title: "Send".localized(), style: .done, target: self, action: #selector(sendDocument))
- // leftBarButton.tintColor = .white
- // rightBarButton.tintColor = .white
- leftBarButton.navigation = navController
- rightBarButton.navigation = navController
- // navController.navigationBar.barTintColor = .mainColor
- navController.navigationBar.isTranslucent = false
- previewController.navigationItem.leftBarButtonItem = leftBarButton
- previewController.navigationItem.rightBarButtonItem = rightBarButton
- previewController.dataSource = self
- previewController.modalPresentationStyle = .pageSheet
-
- self.present(navController, animated: true, completion: nil)
- }
- }
-
- @objc private func cancelDocumentPreview(sender: navigationQLPreviewDocument) {
- sender.navigation.dismiss(animated: true, completion: nil)
- }
-
- @objc private func sendDocument(sender: navigationQLPreviewDocument) {
- sender.navigation.dismiss(animated: true, completion: nil)
- do {
- let dataFile = try Data(contentsOf: self.previewItem! as URL)
- let urlFile = self.previewItem?.absoluteString
- var originaFileName = (urlFile! as NSString).lastPathComponent
- originaFileName = NSString(string: originaFileName).removingPercentEncoding!
- let renamedNameFile = "Qmera_doc_" + "\(Date().currentTimeMillis())_" + originaFileName
- let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!
- let fileURL = documentsDirectory.appendingPathComponent(renamedNameFile)
- if !FileManager.default.fileExists(atPath: fileURL.path) {
- do {
- try dataFile.write(to: fileURL)
- //print("file saved")
- } catch {
- //print("error saving file:", error)
- }
- }
- sendChat(message_text: "\(originaFileName)|", attachment_flag: "6", file_id: renamedNameFile, viewController: self)
- } catch {
-
- }
- }
- }
- extension EditorGroup: UITextViewDelegate {
- public func textViewDidChangeSelection(_ textView: UITextView) {
- lastPositionCursorMention = textView.selectedRange.location
- let fulltextForMention = textView.text.substring(from: 0, to: lastPositionCursorMention - 1)
- var isShowMention = false
- if lastPositionCursorMention > 0 {
- var listHaveToRemoved: [User] = []
- var continueCheckMention = true
- if listMentionInTextField.count > 0 {
- for i in 0..<listMentionInTextField.count {
- if listMentionInTextField[i].ex_block != nil && !listMentionInTextField[i].ex_block!.isEmpty {
- let nameWithMention = ("@" + listMentionInTextField[i].firstName + " " + listMentionInTextField[i].lastName).trimmingCharacters(in: .whitespaces)
- var rangeLower = Int(listMentionInTextField[i].ex_block!)! - nameWithMention.count
- var rangeUpper = Int(listMentionInTextField[i].ex_block!)!
- if textView.text.substring(from: rangeLower, to: rangeUpper - 1) == nameWithMention {
- if lastPositionCursorMention >= rangeLower + 1 && lastPositionCursorMention <= rangeUpper {
- continueCheckMention = false
- }
- } else {
- if listMentionInTextField[i].ex_offmp!.isEmpty {
- rangeLower = rangeLower + listMentionWithText.count
- rangeUpper = rangeUpper + listMentionWithText.count
- } else {
- rangeLower = rangeLower + (listMentionWithText.count - Int(listMentionInTextField[i].ex_offmp!)!)
- rangeUpper = rangeUpper + (listMentionWithText.count - Int(listMentionInTextField[i].ex_offmp!)!)
- }
- if textView.text.substring(from: rangeLower, to: rangeUpper - 1) == nameWithMention {
- if lastPositionCursorMention >= rangeLower + 1 && lastPositionCursorMention <= rangeUpper {
- continueCheckMention = false
- }
- listMentionInTextField[i].ex_block! = "\(rangeUpper)"
- listMentionInTextField[i].ex_offmp! = "\(textView.text.count)"
- } else {
- listHaveToRemoved.append(listMentionInTextField[i])
- }
- }
- }
- }
- }
- listMentionInTextField.removeAll(where: { listHaveToRemoved.contains($0) })
- if continueCheckMention {
- let splitBreak = fulltextForMention.components(separatedBy: "\n")
- let indexLastBreak = splitBreak.lastIndex(where: { $0.contains("@") })
- if indexLastBreak != nil {
- let splitSpace = splitBreak[indexLastBreak!].components(separatedBy: " ")
- let indexLastMention = splitSpace.lastIndex(where: { $0.substring(from: 0, to: 0) == "@" })
- if indexLastMention != nil && fulltextForMention.substring(from: lastPositionCursorMention - 1, to: lastPositionCursorMention - 1) != " " && fulltextForMention.substring(from: lastPositionCursorMention - 1, to: lastPositionCursorMention - 1) != "\n" {
- let fullTextMention = splitSpace[indexLastMention!]
- showMention(text: fullTextMention.substring(from: 1, to: fullTextMention.count))
- isShowMention = true
- }
- }
- }
- }
- if !isShowMention {
- hideMention()
- }
- let cursorPosition = textView.caretRect(for: self.textFieldSend.selectedTextRange!.start).origin
- let currentLine = Int(cursorPosition.y / self.textFieldSend.font!.lineHeight)
- UIView.animate(withDuration: 0.3) {
- let numberOfLines = textView.textContainer.lineBreakMode == .byWordWrapping ? Int(textView.contentSize.height / textView.font!.lineHeight) - 1 : 1
- if currentLine == 0 && numberOfLines == 1 {
- self.heightTextFieldSend.constant = 40
- } else if self.heightTextFieldSend.constant < 95.0 && currentLine >= 4 {
- self.heightTextFieldSend.constant = 95.0
- } else if currentLine < 4 && numberOfLines < 5 {
- if (self.textFieldSend.text.count > 0 && self.heightTextFieldSend.constant != self.textFieldSend.contentSize.height) {
- self.heightTextFieldSend.constant = self.textFieldSend.contentSize.height
- }
- }
- }
- }
-
- public func textViewDidChange(_ textView: UITextView) {
- if textView.text.count == 0 {
- isAlwaysHideLinkPreview = false
- }
- if allowTyping {
- allowTyping = false
- if dataTopic["chat_id"] as! String == "" {
- UNUserNotificationCenter.current().removeDeliveredNotifications(withIdentifiers: [dataGroup["group_id"] as! String])
- sendTyping(l_pin: dataGroup["group_id"] as! String)
- } else {
- UNUserNotificationCenter.current().removeDeliveredNotifications(withIdentifiers: [dataTopic["chat_id"] as! String])
- sendTyping(l_pin: dataTopic["chat_id"] as! String)
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + 4, execute: {
- self.allowTyping = true
- })
- }
- timerCheckLink?.invalidate()
- timerCheckLink = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: false, block: {_ in
- self.checkLink(fullText: textView.text)
- })
-
- if listMentionInTextField.count > 0 {
- for j in 0..<listMentionInTextField.count {
- let name = (listMentionInTextField[j].firstName + " " + listMentionInTextField[j].lastName).trimmingCharacters(in: .whitespaces)
- if !textView.text.contains("@\(name)") {
- listMentionInTextField.remove(at: j)
- }
- }
- }
-
- if textView.text.contains("*") || textView.text.contains("_") || textView.text.contains("^") || textView.text.contains("~") || textView.text.contains("@") {
- textView.preserveCursorPosition(withChanges: { _ in
- textView.attributedText = textView.text.richText(isEditing: true, group_id: self.dataGroup["group_id"] as! String, listMentionInTextField: listMentionInTextField)
- return .preserveCursor
- })
- }
- }
-
- private func showMention(text: String) {
- if self.contraintBottomMention.constant < 0 {
- self.contraintBottomMention.constant = 65 + ((self.keyboardHeightForMention != nil) ? self.keyboardHeightForMention! : 0)
- if self.viewTextfield.subviews.contains(self.containerLink) {
- self.contraintBottomMention.constant = self.contraintBottomMention.constant + 80
- }
- if self.viewTextfield.subviews.contains(self.containerPreviewReply) {
- self.contraintBottomMention.constant = self.contraintBottomMention.constant + 50
- }
- UIView.animate(withDuration: 0.5, animations: {
- self.view.layoutIfNeeded()
- })
- }
- listMentionWithText.removeAll()
- Database.shared.database?.inTransaction({ fmdb, rollback in
- let idMe = UserDefaults.standard.string(forKey: "me")!
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "SELECT f_pin, first_name || ' ' || ifnull(last_name, '') name FROM GROUPZ_MEMBER where group_id='\(self.dataGroup["group_id"] as! String)' AND f_pin <> '\(idMe)' AND name LIKE '%\(text)%'") {
- while cursor.next() {
- let user = User(pin: "")
- user.pin = cursor.string(forColumnIndex: 0) ?? ""
- user.firstName = cursor.string(forColumnIndex: 1) ?? ""
- if !user.pin.isEmpty {
- let userFromBuddy = User.getDataCanNil(pin: user.pin, fmdb: fmdb)
- if userFromBuddy != nil {
- listMentionWithText.append(userFromBuddy!)
- } else {
- listMentionWithText.append(user)
- }
- }
- }
- cursor.close()
- }
- listMentionWithText.removeAll(where: { listMentionInTextField.contains($0) })
- if listMentionWithText.count > 0 {
- if listMentionWithText.count < 5 {
- self.heightTableMention.constant = CGFloat(44 * listMentionWithText.count)
- } else {
- self.heightTableMention.constant = 44 * 4
- }
- tableMention.reloadData()
- } else {
- self.heightTableMention.constant = 44
- self.hideMention()
- }
- })
- }
-
- private func hideMention() {
- if self.contraintBottomMention.constant > 0 {
- self.contraintBottomMention.constant = 0 - self.heightTableMention.constant
- UIView.animate(withDuration: 0.5, animations: {
- self.view.layoutIfNeeded()
- })
- }
- }
-
- private func checkLink(fullText: String) {
- if !isAlwaysHideLinkPreview {
- var text = ""
- let listTextSplitBreak = fullText.components(separatedBy: "\n")
- let indexFirstLinkSplitBreak = listTextSplitBreak.firstIndex(where: { $0.contains("www.") || $0.contains("http://") || $0.contains("https://") })
- if indexFirstLinkSplitBreak != nil {
- let listTextSplitSpace = listTextSplitBreak[indexFirstLinkSplitBreak!].components(separatedBy: " ")
- let indexFirstLinkSplitSpace = listTextSplitSpace.firstIndex(where: { ($0.starts(with: "www.") && $0.components(separatedBy: ".").count > 2) || ($0.starts(with: "http://") && $0.components(separatedBy: ".").count > 1) || ($0.starts(with: "https://") && $0.components(separatedBy: ".").count > 1) })
- if indexFirstLinkSplitSpace != nil {
- text = listTextSplitSpace[indexFirstLinkSplitSpace!]
- }
- }
- if !text.isEmpty {
- var stringURl = text
- if stringURl.starts(with: "www.") {
- stringURl = "https://" + stringURl.replacingOccurrences(of: "www.", with: "")
- }
- var dataURL = ""
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "select data_link from LINK_PREVIEW where link='\(text)'") {
- while cursor.next() {
- if let data = cursor.string(forColumnIndex: 0) {
- dataURL = data
- }
- }
- cursor.close()
- }
- })
- if !dataURL.isEmpty {
- if let data = try! JSONSerialization.jsonObject(with: dataURL.data(using: String.Encoding.utf8)!, options: []) as? [String: Any] {
- let title = data["title"] as! String
- let description = data["description"] as! String
- let imageUrl = data["imageUrl"] as? String
- let link = data["link"] as! String
- if self.showingLink != text {
- self.showingLink = text
- self.deleteLinkPreview()
- self.buildPreviewLink(imageUrl: imageUrl, title: title, description: description, stringURl: link)
- }
- }
- } else {
- let slp = SwiftLinkPreview(session: URLSession.shared,
- workQueue: SwiftLinkPreview.defaultWorkQueue,
- responseQueue: DispatchQueue.main,
- cache: DisabledCache.instance)
- let preview = slp.preview(stringURl,
- onSuccess: { result in
- let title = result.title ?? "No Title"
- let description = stringURl.contains("google.com") ? "" : result.description
- let imageUrl = result.icon
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- var dataJson: [String: Any] = [:]
- dataJson["title"] = title
- dataJson["description"] = description
- dataJson["imageUrl"] = imageUrl
- dataJson["link"] = text
- guard let json = String(data: try! JSONSerialization.data(withJSONObject: dataJson, options: []), encoding: String.Encoding.utf8) else {
- return
- }
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "LINK_PREVIEW", cvalues: [
- "id" : "\(Date().currentTimeMillis().toHex())",
- "link" : text,
- "data_link" : json,
- "retry": 0
- ], replace: true)
- } catch {
- rollback.pointee = true
- //print(error)
- }
- })
- if self.showingLink != text {
- self.showingLink = text
- self.deleteLinkPreview()
- self.buildPreviewLink(imageUrl: imageUrl, title: title, description: description, stringURl: text)
- }
- },
- onError: { error in
- self.deleteLinkPreview()
- })
- }
- } else {
- deleteLinkPreview()
- }
- }
- }
-
- private func buildPreviewLink(imageUrl: String?, title: String, description: String?, stringURl: String) {
- if !self.viewTextfield.subviews.contains(self.containerLink){
- UIView.animate(withDuration: 0.25, delay: 0.0, options: .curveEaseInOut, animations: {
- self.constraintTopTextField.constant = self.constraintTopTextField.constant + 80
- if self.contraintBottomMention.constant > 0 {
- self.contraintBottomMention.constant = self.contraintBottomMention.constant + 80
- }
- }, completion: nil)
- }
-
- self.viewTextfield.addSubview(self.containerLink)
- self.containerLink.translatesAutoresizingMaskIntoConstraints = false
- self.containerLink.leadingAnchor.constraint(equalTo: self.viewTextfield.leadingAnchor).isActive = true
- self.containerLink.bottomAnchor.constraint(equalTo: self.textFieldSend.topAnchor).isActive = true
- self.containerLink.trailingAnchor.constraint(equalTo: self.viewTextfield.trailingAnchor).isActive = true
- self.containerLink.heightAnchor.constraint(equalToConstant: 80.0).isActive = true
- self.containerLink.backgroundColor = .secondaryColor
-
- if self.reffId != nil {
- self.bottomAnchorPreviewReply.isActive = false
- self.bottomAnchorPreviewReply = self.containerPreviewReply.bottomAnchor.constraint(equalTo: self.containerLink.topAnchor)
- self.bottomAnchorPreviewReply.isActive = true
- }
-
- let imagePreview = UIImageView()
- if imageUrl != nil {
- self.containerLink.addSubview(imagePreview)
- imagePreview.translatesAutoresizingMaskIntoConstraints = false
- imagePreview.leadingAnchor.constraint(equalTo: self.containerLink.leadingAnchor).isActive = true
- imagePreview.bottomAnchor.constraint(equalTo: self.containerLink.bottomAnchor).isActive = true
- imagePreview.topAnchor.constraint(equalTo: self.containerLink.topAnchor).isActive = true
- imagePreview.widthAnchor.constraint(equalToConstant: 80.0).isActive = true
- imagePreview.loadImageAsync(with: imageUrl)
- imagePreview.contentMode = .scaleAspectFit
- }
-
- let titlePreview = UILabel()
- self.containerLink.addSubview(titlePreview)
- titlePreview.translatesAutoresizingMaskIntoConstraints = false
- if imageUrl != nil {
- titlePreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true
- } else {
- titlePreview.leadingAnchor.constraint(equalTo: self.containerLink.leadingAnchor, constant: 5.0).isActive = true
- }
- titlePreview.topAnchor.constraint(equalTo: self.containerLink.topAnchor, constant: 25.0).isActive = true
- titlePreview.trailingAnchor.constraint(equalTo: self.containerLink.trailingAnchor, constant: -80.0).isActive = true
- titlePreview.text = title
- titlePreview.font = UIFont.systemFont(ofSize: 14.0, weight: .bold)
- titlePreview.textColor = .black
-
- let descPreview = UILabel()
- self.containerLink.addSubview(descPreview)
- descPreview.translatesAutoresizingMaskIntoConstraints = false
- if imageUrl != nil {
- descPreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true
- } else {
- descPreview.leadingAnchor.constraint(equalTo: self.containerLink.leadingAnchor, constant: 5.0).isActive = true
- }
- descPreview.topAnchor.constraint(equalTo: titlePreview.bottomAnchor).isActive = true
- descPreview.trailingAnchor.constraint(equalTo: self.containerLink.trailingAnchor, constant: -80.0).isActive = true
- descPreview.text = description
- descPreview.font = UIFont.systemFont(ofSize: 12.0)
- descPreview.textColor = .gray
- descPreview.numberOfLines = 1
-
- let linkPreview = UILabel()
- self.containerLink.addSubview(linkPreview)
- linkPreview.translatesAutoresizingMaskIntoConstraints = false
- if imageUrl != nil {
- linkPreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true
- } else {
- linkPreview.leadingAnchor.constraint(equalTo: self.containerLink.leadingAnchor, constant: 5.0).isActive = true
- }
- linkPreview.topAnchor.constraint(equalTo: descPreview.bottomAnchor, constant: 8.0).isActive = true
- linkPreview.trailingAnchor.constraint(equalTo: self.containerLink.trailingAnchor, constant: -80.0).isActive = true
- linkPreview.text = stringURl
- linkPreview.font = UIFont.systemFont(ofSize: 10.0)
- linkPreview.textColor = .gray
- linkPreview.numberOfLines = 1
-
- let cancelPreview = UIButton(type: .custom)
- self.containerLink.addSubview(cancelPreview)
- cancelPreview.translatesAutoresizingMaskIntoConstraints = false
- cancelPreview.trailingAnchor.constraint(equalTo: self.containerLink.trailingAnchor, constant: -10).isActive = true
- cancelPreview.centerYAnchor.constraint(equalTo: self.containerLink.centerYAnchor).isActive = true
- cancelPreview.setImage(UIImage(systemName: "xmark.circle" , withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .regular, scale: .default)), for: .normal)
- cancelPreview.addTarget(nil, action: #selector(self.removeLinkPreviewUntilEmptyTextView), for: .touchUpInside)
- cancelPreview.backgroundColor = .clear
- cancelPreview.tintColor = .mainColor
- }
-
- public func textViewDidBeginEditing(_ textView: UITextView) {
- if textView.textColor == UIColor.lightGray {
- textView.text = nil
- textView.textColor = UIColor.black
- }
- }
-
- public func textViewDidEndEditing(_ textView: UITextView) {
- if textView.text.isEmpty {
- textView.text = "Send message".localized()
- textView.textColor = UIColor.lightGray
- }
- }
-
- public override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
- if action == #selector(UIResponderStandardEditActions.paste(_:)) && (UIPasteboard.general.image != nil) {
- return true
- }
- return super.canPerformAction(action, withSender: sender)
- }
-
- public override func paste(_ sender: Any?) {
- if UIPasteboard.general.image != nil {
- let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: DigiX.self))
- previewImageVC.image = UIPasteboard.general.image
- previewImageVC.fromCopy = true
- previewImageVC.currentTextTextField = textFieldSend.text
- previewImageVC.modalPresentationStyle = .custom
- previewImageVC.delegate = self
- self.present(previewImageVC, animated: true, completion: nil)
- }
- }
-
- public func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {
- if text.isEmpty {
- if listMentionInTextField.count > 0 {
- for i in 0..<listMentionInTextField.count {
- if lastPositionCursorMention == Int(listMentionInTextField[i].ex_block!)! {
- let fulltextForMention = textFieldSend.text.substring(from: 0, to: lastPositionCursorMention - 1)
- let diff = textFieldSend.text.count - fulltextForMention.count
- var text = textView.text ?? ""
- let nameMention = (listMentionInTextField[i].firstName + " " + listMentionInTextField[i].lastName).trimmingCharacters(in: .whitespaces)
- let rangeReplacement = NSRange(location: lastPositionCursorMention - nameMention.count - 1, length: nameMention.count + 1)
- let replacementText = ""
-
- let copyAttributedText = text.richText(isEditing: true, group_id: self.dataGroup["group_id"] as! String, listMentionInTextField: listMentionInTextField)
- copyAttributedText.removeAttribute(.foregroundColor, range: rangeReplacement)
-
- textFieldSend.attributedText = copyAttributedText
- // Replace the old text with the new text using the replaceSubrange(_:with:) method
- if let startIndex = text.index(text.startIndex, offsetBy: rangeReplacement.location, limitedBy: text.endIndex),
- let endIndex = text.index(startIndex, offsetBy: rangeReplacement.length, limitedBy: text.endIndex) {
- text.replaceSubrange(startIndex..<endIndex, with: replacementText)
- }
-
- listMentionInTextField.remove(at: i)
-
- textFieldSend.attributedText = text.richText(isEditing: true, group_id: self.dataGroup["group_id"] as! String, listMentionInTextField: listMentionInTextField)
-
- let newPosition = textFieldSend.position(from: textFieldSend.beginningOfDocument, offset: textView.text.count - diff)
- textFieldSend.selectedTextRange = textFieldSend.textRange(from: newPosition!, to: newPosition!)
- return false
- }
- }
- }
- }
- if (self.textFieldSend.text.count == 0) {
- return text != "\n"
- }
- return true
- }
- }
- extension EditorGroup: UIContextMenuInteractionDelegate {
- public func contextMenuInteraction(_ interaction: UIContextMenuInteraction, willEndFor configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionAnimating?) {
- if showMenuContext {
- showMenuContext = false
- interaction.view!.removeInteraction(interaction)
- }
- }
- public func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? {
- if textFieldSend.isFirstResponder {
- textFieldSend.resignFirstResponder()
- }
- let indexPath = self.tableChatView.indexPathForRow(at: interaction.view!.convert(location, to: self.tableChatView))
- let dataMessages = self.dataMessages.filter({ $0["chat_date"] as! String == dataDates[indexPath!.section]})
- var star: UIAction
- if (dataMessages[indexPath!.row]["is_stared"] as! String == "0") {
- star = UIAction(title: "Star".localized(), image: UIImage(systemName: "star.fill"), handler: {(_) in
- if self.removed {
- return
- }
- DispatchQueue.global().async {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [
- "is_stared" : 1
- ], _where: "message_id = '\(dataMessages[indexPath!.row]["message_id"] as! String)'")
- })
- }
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == dataMessages[indexPath!.row]["message_id"] as! String})
- if idx != nil{
- self.dataMessages[idx!]["is_stared"] = "1"
- }
- self.tableChatView.reloadRows(at: [indexPath!], with: .none)
- })
- } else {
- star = UIAction(title: "Unstar".localized(), image: UIImage(systemName: "star.slash.fill"), handler: {(_) in
- if self.removed {
- return
- }
- DispatchQueue.global().async {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [
- "is_stared" : 0
- ], _where: "message_id = '\(dataMessages[indexPath!.row]["message_id"] as! String)'")
- })
- }
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == dataMessages[indexPath!.row]["message_id"] as! String})
- if idx != nil{
- self.dataMessages[idx!]["is_stared"] = "0"
- }
- self.tableChatView.reloadRows(at: [indexPath!], with: .none)
- })
- }
-
- let reply = UIAction(title: "Reply".localized(), image: UIImage(systemName: "arrowshape.turn.up.left.fill"), handler: {(_) in
- if self.removed {
- return
- }
- if self.isSearching {
- self.cancelAction()
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.35, execute: {
- self.handleReply(indexPath: indexPath!)
- })
- })
- let forward = UIAction(title: "Forward".localized(), image: UIImage(systemName: "arrowshape.turn.up.right.fill"), handler: {(_) in
- if self.removed {
- return
- }
- if self.isSearching {
- self.cancelAction()
- }
- if self.reffId != nil {
- self.deleteReplyView()
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.35) {
- self.forwardSession = true
- let cancelButton = UIBarButtonItem(title: "Cancel".localized(), style: .plain, target: self, action: #selector(self.cancelAction))
- if !self.isHistoryCC {
- self.navigationItem.rightBarButtonItems = nil
- }
- self.navigationItem.rightBarButtonItem = cancelButton
- self.changeAppBar()
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String})
- if idx != nil{
- self.dataMessages[idx!]["isSelected"] = true
- }
- self.addMultipleSelectSession()
- self.tableChatView.reloadData()
- }
- })
- let copy = UIAction(title: "Copy".localized(), image: UIImage(systemName: "doc.on.doc.fill"), handler: {(_) in
- if self.removed {
- return
- }
- if self.isSearching {
- self.cancelAction()
- }
- if self.reffId != nil {
- self.deleteReplyView()
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.35) {
- self.copySession = true
- let cancelButton = UIBarButtonItem(title: "Cancel".localized(), style: .plain, target: self, action: #selector(self.cancelAction))
- if !self.isHistoryCC {
- self.navigationItem.rightBarButtonItems = nil
- }
- self.navigationItem.rightBarButtonItem = cancelButton
- self.changeAppBar()
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String})
- if idx != nil{
- self.dataMessages[idx!]["isSelected"] = true
- }
- self.addMultipleSelectSession()
- self.tableChatView.reloadData()
- }
- })
- let info = UIAction(title: "Info".localized(), image: UIImage(systemName: "info.circle.fill"), handler: {(_) in
- if self.removed {
- return
- }
- let messageInfoVC = MessageInfo()
- messageInfoVC.data = dataMessages[indexPath!.row]
- messageInfoVC.dataGroup = self.dataGroup
- messageInfoVC.isPersonal = false
- self.navigationController?.pushViewController(messageInfoVC, animated: true)
- })
- let delete = UIAction(title: "Delete".localized(), image: UIImage(systemName: "trash.fill"), attributes: .destructive, handler: {(_) in
- if self.removed {
- return
- }
- if self.isSearching {
- self.cancelAction()
- }
- if self.reffId != nil {
- self.deleteReplyView()
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.35) {
- self.deleteSession = true
- let cancelButton = UIBarButtonItem(title: "Cancel".localized(), style: .plain, target: self, action: #selector(self.cancelAction))
- if !self.isHistoryCC {
- self.navigationItem.rightBarButtonItems = nil
- }
- self.navigationItem.rightBarButtonItem = cancelButton
- self.changeAppBar()
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String})
- if idx != nil{
- self.dataMessages[idx!]["isSelected"] = true
- }
- self.addMultipleSelectSession()
- self.tableChatView.reloadData()
- }
- })
-
- var children: [UIMenuElement] = [star, reply, forward, copy, delete]
- // let copyOption = self.copyOption(indexPath: indexPath!)
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
-
- if (dataMessages[indexPath!.row]["lock"] != nil && dataMessages[indexPath!.row]["lock"] as! String == "1") {
- children = [delete]
- } else if (groupImages[dataMessages[indexPath!.row]["message_id"] as! String] != nil) {
- forward.title = "Forward All".localized()
- delete.title = "Delete All".localized()
- children = [forward, delete]
- }
- else if dataMessages[indexPath!.row]["f_pin"] as! String == "-999" {
- children = [star, reply ,delete]
- if (dataMessages[indexPath!.row]["f_pin"] as! String) == idMe {
- children.insert(info, at: children.count - 1)
- }
- }
- else if !(dataMessages[indexPath!.row]["image_id"] as! String).isEmpty || !(dataMessages[indexPath!.row]["video_id"] as! String).isEmpty || !(dataMessages[indexPath!.row]["file_id"] as! String).isEmpty || dataMessages[indexPath!.row]["attachment_flag"] as! String == "11" {
- children = [star, reply, forward ,delete]
- if (dataMessages[indexPath!.row]["f_pin"] as! String) == idMe {
- children.insert(info, at: children.count - 1)
- }
- } else {
- if (dataMessages[indexPath!.row]["f_pin"] as! String) == idMe {
- children.insert(info, at: children.count - 1)
- }
- }
-
- return UIContextMenuConfiguration(identifier: nil,
- previewProvider: nil) { _ in
- UIMenu(title: "", children: children)
- }
- }
-
- @objc func cancelAction() {
- DispatchQueue.main.async {
- if self.copySession {
- self.copySession = false
- } else if self.forwardSession {
- self.forwardSession = false
- } else if self.deleteSession {
- self.deleteSession = false
- } else if self.isSearching {
- self.countMatchesSearch = 0
- self.isSearching = false
- }
- if self.viewTextfield.isHidden {
- self.viewTextfield.isHidden = false
- }
- if self.viewAttachment.isHidden {
- self.viewAttachment.isHidden = false
- }
- if self.constraintBottomTableViewWithTextfield.constant == -60.0 {
- self.constraintBottomTableViewWithTextfield.constant = self.constraintBottomTableViewWithTextfield.constant + 70
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.3, execute: {
- if (self.currentIndexpath != nil) {
- self.tableChatView.scrollToRow(at: IndexPath(row: self.currentIndexpath!.row, section: self.currentIndexpath!.section), at: .none, animated: true)
- } else {
- self.tableChatView.scrollToBottom()
- }
- })
- }
- let data = self.dataMessages.filter({ $0["isSelected"] as! Bool == true })
- for i in 0..<data.count {
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == data[i]["message_id"] as! String})
- if idx != nil{
- self.dataMessages[idx!]["isSelected"] = false
- }
- }
- self.tableChatView.reloadData()
- self.setRightButtonItem()
- self.changeAppBar()
- self.containerMultpileSelectSession.removeFromSuperview()
- self.checkNewMessage(tableView: self.tableChatView)
- }
- }
-
- private func addMultipleSelectSession() {
- viewTextfield.isHidden = true
- viewAttachment.isHidden = true
- constraintBottomTableViewWithTextfield.constant = constraintBottomTableViewWithTextfield.constant - 70
- view.addSubview(containerMultpileSelectSession)
- containerMultpileSelectSession.translatesAutoresizingMaskIntoConstraints = false
- constraintBottomContainerMultpileSelectSession = containerMultpileSelectSession.bottomAnchor.constraint(equalTo: self.view.bottomAnchor, constant: 0)
- NSLayoutConstraint.activate([
- containerMultpileSelectSession.leadingAnchor.constraint(equalTo: self.view.leadingAnchor),
- containerMultpileSelectSession.trailingAnchor.constraint(equalTo: self.view.trailingAnchor),
- constraintBottomContainerMultpileSelectSession,
- containerMultpileSelectSession.heightAnchor.constraint(equalToConstant: 50)
- ])
- containerMultpileSelectSession.backgroundColor = .white
- addSubviewMultipleSession()
- }
-
- private func addSubviewMultipleSession() {
- let container = UIView()
- containerMultpileSelectSession.addSubview(container)
- container.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- container.leadingAnchor.constraint(equalTo: containerMultpileSelectSession.leadingAnchor),
- container.trailingAnchor.constraint(equalTo:containerMultpileSelectSession.trailingAnchor),
- container.bottomAnchor.constraint(equalTo: containerMultpileSelectSession.bottomAnchor),
- container.heightAnchor.constraint(equalToConstant: 50)
- ])
- container.layer.shadowOpacity = 0.7
- container.layer.shadowOffset = CGSize(width: 3, height: 3)
- container.layer.shadowRadius = 3.0
- container.layer.shadowColor = UIColor.black.cgColor
- container.backgroundColor = .secondaryColor
-
- if !isSearching {
- let title = UILabel()
- container.addSubview(title)
- title.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- title.centerXAnchor.constraint(equalTo: container.centerXAnchor),
- title.centerYAnchor.constraint(equalTo:container.centerYAnchor),
- ])
- let countSelected = dataMessages.filter({ $0["isSelected"] as! Bool == true }).count
- title.text = "\(countSelected) " + "Selected".localized()
- title.textColor = .mainColor
- title.font = UIFont.systemFont(ofSize: 15).bold
-
- let button = UIImageView()
- container.addSubview(button)
- button.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- button.leadingAnchor.constraint(equalTo: container.leadingAnchor, constant: 15),
- button.centerYAnchor.constraint(equalTo:container.centerYAnchor),
- button.widthAnchor.constraint(equalToConstant: 30),
- button.heightAnchor.constraint(equalToConstant: 30),
- ])
- if copySession {
- button.image = UIImage(systemName: "doc.on.doc")
- if countSelected == 0{
- button.tintColor = .gray
- } else {
- button.tintColor = .mainColor
- }
- } else if forwardSession {
- button.image = UIImage(systemName: "arrowshape.turn.up.right")
- if countSelected == 0{
- button.tintColor = .gray
- } else {
- button.tintColor = .mainColor
- }
- } else if deleteSession {
- button.image = UIImage(systemName: "trash")
- if countSelected == 0{
- button.tintColor = .gray
- } else {
- button.tintColor = .red
- }
- }
- let buttonGesture = UITapGestureRecognizer(target: self, action: #selector(sessionAction))
- button.isUserInteractionEnabled = true
- button.addGestureRecognizer(buttonGesture)
-
- let selectedMessage = dataMessages.filter({ $0["isSelected"] as! Bool == true })
- if selectedMessage.count > 0 {
- for i in 0..<selectedMessage.count {
- if let isGroupingImages = groupImages[selectedMessage[i]["message_id"] as! String] {
- title.text = "\(countSelected + (isGroupingImages.count - 1)) " + "Selected".localized()
- }
- }
- }
- } else {
- buttonUp = UIButton()
- container.addSubview(buttonUp)
- buttonUp.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- buttonUp.leadingAnchor.constraint(equalTo: container.leadingAnchor, constant: 10),
- buttonUp.centerYAnchor.constraint(equalTo:container.centerYAnchor),
- buttonUp.widthAnchor.constraint(equalToConstant: 30),
- buttonUp.heightAnchor.constraint(equalToConstant: 30),
- ])
- buttonUp.addTarget(self, action: #selector(upSearchText), for: .touchUpInside)
-
- buttonDown = UIButton()
- container.addSubview(buttonDown)
- buttonDown.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- buttonDown.leadingAnchor.constraint(equalTo: buttonUp.trailingAnchor, constant: 15),
- buttonDown.centerYAnchor.constraint(equalTo:container.centerYAnchor),
- buttonDown.widthAnchor.constraint(equalToConstant: 30),
- buttonDown.heightAnchor.constraint(equalToConstant: 30),
- ])
- buttonDown.addTarget(self, action: #selector(downSearchText), for: .touchUpInside)
-
- buttonUp.setImage(UIImage(systemName: "chevron.up"), for: .normal)
- buttonUp.tintColor = .gray
-
- buttonDown.setImage(UIImage(systemName: "chevron.down"), for: .normal)
- buttonDown.tintColor = .gray
-
- titleSearchMatches = UILabel()
- container.addSubview(titleSearchMatches)
- titleSearchMatches.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- titleSearchMatches.centerXAnchor.constraint(equalTo: container.centerXAnchor),
- titleSearchMatches.centerYAnchor.constraint(equalTo:container.centerYAnchor),
- ])
- titleSearchMatches.textColor = .mainColor
- titleSearchMatches.font = UIFont.systemFont(ofSize: 15.0).bold
- titleSearchMatches.isHidden = true
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.3, execute: {
- self.searchBar.becomeFirstResponder()
- })
- }
- }
-
- @objc func upSearchText() {
- scrollToFirstSearchMessage(indexScroll: lastScrollIdxSearch + 1)
- }
-
- @objc func downSearchText() {
- scrollToFirstSearchMessage(indexScroll: lastScrollIdxSearch - 1)
- }
-
- @objc func sessionAction() {
- if copySession {
- let dataMessages = self.dataMessages.filter({ $0["isSelected"] as! Bool == true })
- let countSelected = dataMessages.count
- if countSelected == 0 {
- return
- }
- var nameTopic = "Lounge".localized()
- if !dataTopic.isEmpty {
- nameTopic = dataTopic["title"] as! String
- }
- var text = "*^\(dataGroup["f_name"]!!) (\(nameTopic))^*"
- for i in 0..<countSelected {
- let stringDate = (dataMessages[i]["server_date"] as! String)
- let date = Date(milliseconds: Int64(stringDate)!)
- let formatterDate = DateFormatter()
- let formatterTime = DateFormatter()
- formatterDate.dateFormat = "dd/MM/yy"
- formatterDate.locale = NSLocale(localeIdentifier: "id") as Locale?
- formatterTime.dateFormat = "HH:mm"
- formatterTime.locale = NSLocale(localeIdentifier: "id") as Locale?
- let dataProfile = getDataProfile(f_pin: dataMessages[i]["f_pin"] as! String, message_id: dataMessages[i]["message_id"] as! String)
- text = text + "\n\n*[\(formatterDate.string(from: date as Date)) \(formatterTime.string(from: date as Date))] \(dataProfile["name"]!):*\n\(dataMessages[i]["message_text"] as! String)"
- }
- text = text + "\n\n\nchat " + "Powered by Telkomsel".localized()
- DispatchQueue.main.async {
- UIPasteboard.general.string = text
- self.showToast(message: "Text coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)
- }
- cancelAction()
- } else if forwardSession {
- var dataMessages = self.dataMessages.filter({ $0["isSelected"] as! Bool == true })
- let countSelected = dataMessages.count
- if countSelected == 0 {
- return
- }
- for i in 0..<countSelected {
- if let groupingImages = groupImages[dataMessages[i]["message_id"] as! String] {
- var tempData = dataMessages
- tempData.remove(at: 0)
- var dataMessageInGrouping = (groupImages[dataMessages[i]["message_id"] as! String]!).map({ $0.dataMessage })
- tempData.insert(contentsOf: dataMessageInGrouping, at: i)
- dataMessages = tempData
- }
- }
- contactChatNav.modalPresentationStyle = .custom
- contactChatNav.navigationBar.tintColor = .white
- contactChatNav.navigationBar.barTintColor = .mainColor
- contactChatNav.navigationBar.isTranslucent = false
- let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white]
- contactChatNav.navigationBar.titleTextAttributes = textAttributes
- contactChatNav.view.backgroundColor = .mainColor
- if let controller = contactChatNav.viewControllers.first as? ContactChatViewController {
- controller.isChooser = { [weak self] scope, pin in
- if scope == "3" {
- let editorPersonalVC = AppStoryBoard.Palio.instance.instantiateViewController(identifier: "editorPersonalVC") as! EditorPersonal
- editorPersonalVC.unique_l_pin = pin
- editorPersonalVC.dataMessageForward = dataMessages
- self?.navigationController?.replaceAllViewController(with: editorPersonalVC, animated: true)
- } else {
- let editorGroupVC = AppStoryBoard.Palio.instance.instantiateViewController(identifier: "editorGroupVC") as! EditorGroup
- editorGroupVC.unique_l_pin = pin
- editorGroupVC.dataMessageForward = dataMessages
- self?.navigationController?.replaceAllViewController(with: editorGroupVC, animated: true)
- }
- }
- }
- self.present(contactChatNav, animated: true, completion: nil)
- } else if deleteSession {
- let dataMessages = self.dataMessages.filter({ $0["isSelected"] as! Bool == true })
- let countSelected = dataMessages.count
- if countSelected == 0 {
- return
- }
- let alertController = LibAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
-
- if let action = self.actionDelete(for: "me", title: "Delete".localized() + " \(countSelected) " + "For Me".localized(), dataMessages: dataMessages) {
- alertController.addAction(action)
- }
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- let dataFilterFpin = dataMessages.filter({ $0["f_pin"] as? String != idMe})
- let dataFilterLock = dataMessages.filter({ $0["lock"] as? String == "1"})
- let statusDataRead = dataMessages.filter({ Int($0["status"] as! String)! >= 4})
- if dataFilterFpin.count == 0 && dataFilterLock.count == 0 && statusDataRead.count == 0 {
- if let action = self.actionDelete(for: "everyone", title: "Delete".localized() + " \(countSelected) " + "For Everyone".localized(), dataMessages: dataMessages) {
- alertController.addAction(action)
- }
- }
- alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: nil))
- self.present(alertController, animated: true)
- }
- }
-
- private func deleteMessage(l_pin: String, message_id: String, scope: String, type: String, chat: String) {
- let tmessage = CoreMessage_TMessageBank.deleteMessage(l_pin: l_pin, messageId: message_id, scope: scope, type: type, chat: chat)
- DigiX.addQueueMessage(message: tmessage)
- }
-
- private func queryMessageReply(message_id: String) -> [String: Any?] {
- var dataQuery: [String: Any] = [:]
- Database().database?.inTransaction({ fmdb, rollback in
- if let c = Database().getRecords(fmdb: fmdb, query: "SELECT message_id, f_pin, message_text, attachment_flag, thumb_id, image_id, video_id, file_id FROM MESSAGE where message_id='\(message_id)'"), c.next() {
- dataQuery["message_id"] = c.string(forColumnIndex: 0)
- dataQuery["f_pin"] = c.string(forColumnIndex: 1)
- dataQuery["message_text"] = c.string(forColumnIndex: 2)
- dataQuery["attachment_flag"] = c.string(forColumnIndex: 3)
- dataQuery["thumb_id"] = c.string(forColumnIndex: 4)
- dataQuery["image_id"] = c.string(forColumnIndex: 5)
- dataQuery["video_id"] = c.string(forColumnIndex: 6)
- dataQuery["file_id"] = c.string(forColumnIndex: 7)
- c.close()
- }
- })
- return dataQuery
- }
-
- @objc func segmentedControlValueChanged(_ sender: segmentedControllerObject) {
- switch sender.selectedSegmentIndex {
- case 0:
- sender.navigation.viewControllers[0].children[1].view.isHidden = true
- break;
- case 1:
- sender.navigation.viewControllers[0].children[1].view.isHidden = false
- break;
- default:
- break;
- }
- }
-
- private func copyOption(indexPath: IndexPath) -> UIMenu {
- var ratingButtonTitles = ["Text".localized(), "Image".localized()]
- if (dataMessages[indexPath.row]["message_text"] as! String).isEmpty {
- ratingButtonTitles = ["Image".localized()]
- }
- let dataMessages = self.dataMessages.filter({ $0["chat_date"] as! String == dataDates[indexPath.section]})
- let copyActions = ratingButtonTitles
- .enumerated()
- .map { index, title in
- return UIAction(
- title: title,
- identifier: nil,
- handler: {(_) in
- if (dataMessages[indexPath.row]["message_text"] as! String).isEmpty {
- DispatchQueue.main.async {
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(dataMessages[indexPath.row]["image_id"] as! String)
- if FileManager.default.fileExists(atPath: imageURL.path) {
- let image = UIImage(contentsOfFile: imageURL.path)
- UIPasteboard.general.image = image
- self.showToast(message: "Image coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)
- }
- }
- }
- return
- }
- if (index == 0) {
- DispatchQueue.main.async {
- UIPasteboard.general.string = dataMessages[indexPath.row]["message_text"] as? String
- self.showToast(message: "Text coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)
- }
- } else {
- DispatchQueue.main.async {
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(dataMessages[indexPath.row]["image_id"] as! String)
- if FileManager.default.fileExists(atPath: imageURL.path) {
- let image = UIImage(contentsOfFile: imageURL.path)
- UIPasteboard.general.image = image
- self.showToast(message: "Image coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)
- }
- }
- }
- }
- self.dismissKeyboard()
-
- })
- }
- return UIMenu(
- title: "Copy".localized(),
- image: UIImage(systemName: "doc.on.doc.fill"),
- children: copyActions)
- }
-
- private func actionDelete(for type: String, title: String, dataMessages: [[String: Any?]]) -> UIAlertAction? {
- return UIAlertAction(title: title, style: .destructive) { [unowned self] _ in
- for i in 0..<dataMessages.count {
- if (type == "me") {
- if let groupingImages = groupImages[dataMessages[i]["message_id"] as! String] {
- for i in 0..<groupingImages.count {
- self.deleteMessage(l_pin: dataGroup["group_id"] as! String, message_id: groupingImages[i].messageId, scope: "4", type: "1", chat: dataTopic["chat_id"] as! String)
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == groupingImages[i].messageId })
- if idx != nil {
- self.dataMessages.remove(at: idx!)
- if (idx == self.dataMessages.count - 1) {
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil)
- }
- for i in 0..<dataDates.count {
- if self.dataMessages.filter({ $0["chat_date"] as! String == dataDates[i] }).count == 0 {
- dataDates.remove(at: i)
- }
- }
- }
- }
- self.groupImages.removeValue(forKey: groupingImages[0].messageId)
- } else {
- if let groupingImages = groupImages[dataMessages[i]["message_id"] as! String] {
- for i in 0..<groupingImages.count {
- self.deleteMessage(l_pin: dataGroup["group_id"] as! String, message_id: groupingImages[i].messageId, scope: "4", type: "2", chat: dataTopic["chat_id"] as! String)
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == groupingImages[i].messageId})
- if idx != nil {
- self.dataMessages[idx!]["lock"] = "1"
- self.dataMessages[idx!]["attachment_flag"] = "0"
- self.dataMessages[idx!]["reff_id"] = ""
- }
- }
- if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == groupingImages[0].messageId}) {
- var dataMessageInGrouping = (groupImages[dataMessages[i]["message_id"] as! String]!).map({ $0.dataMessage })
- dataMessageInGrouping.remove(at: 0)
- self.dataMessages.insert(contentsOf: dataMessageInGrouping, at: idx+1)
- self.groupImages.removeValue(forKey: groupingImages[0].messageId)
- }
- } else {
- self.deleteMessage(l_pin: dataGroup["group_id"] as! String, message_id: dataMessages[i]["message_id"] as! String, scope: "4", type: "1", chat: dataTopic["chat_id"] as! String)
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[i]["message_id"] as? String})
- if idx != nil {
- self.dataMessages.remove(at: idx!)
- if (idx == self.dataMessages.count - 1) {
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil)
- }
- for i in 0..<dataDates.count {
- if self.dataMessages.filter({ $0["chat_date"] as! String == dataDates[i] }).count == 0 {
- dataDates.remove(at: i)
- }
- }
- }
- }
- }
- } else {
- self.deleteMessage(l_pin: dataGroup["group_id"] as! String, message_id: dataMessages[i]["message_id"] as! String, scope: "4", type: "2", chat: dataTopic["chat_id"] as! String)
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == dataMessages[i]["message_id"] as! String})
- if idx != nil {
- self.dataMessages[idx!]["lock"] = "1"
- self.dataMessages[idx!]["attachment_flag"] = "0"
- self.dataMessages[idx!]["reff_id"] = ""
- }
- }
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil)
- cancelAction()
- }
- }
- }
-
- @objc func deleteReplyView() {
- if self.containerPreviewReply.isDescendant(of: self.viewTextfield) {
- self.containerPreviewReply.subviews.forEach { $0.removeFromSuperview() }
- self.containerPreviewReply.removeConstraints(self.containerPreviewReply.constraints)
- self.containerPreviewReply.removeFromSuperview()
-
- self.reffId = nil
- UIView.animate(withDuration: 0.25, delay: 0.0, options: .curveEaseInOut, animations: {
- self.constraintTopTextField.constant = self.constraintTopTextField.constant - 50
- if self.contraintBottomMention.constant > 0 {
- self.contraintBottomMention.constant = self.contraintBottomMention.constant - 50
- }
- }, completion: nil)
- }
- }
-
- @objc func removeLinkPreviewUntilEmptyTextView() {
- isAlwaysHideLinkPreview = true
- deleteLinkPreview()
- }
-
- @objc func deleteLinkPreview() {
- if self.containerLink.isDescendant(of: self.viewTextfield) {
- self.containerLink.subviews.forEach { $0.removeFromSuperview() }
- self.containerLink.removeConstraints(self.containerLink.constraints)
- self.containerLink.removeFromSuperview()
- UIView.animate(withDuration: 0.25, delay: 0.0, options: .curveEaseInOut, animations: {
- self.constraintTopTextField.constant = self.constraintTopTextField.constant - 80
- if self.contraintBottomMention.constant > 0 {
- self.contraintBottomMention.constant = self.contraintBottomMention.constant - 80
- }
- }, completion: nil)
- self.showingLink = ""
- }
- if self.reffId != nil {
- self.bottomAnchorPreviewReply.isActive = false
- self.bottomAnchorPreviewReply = self.containerPreviewReply.bottomAnchor.constraint(equalTo: self.textFieldSend.topAnchor)
- self.bottomAnchorPreviewReply.isActive = true
- }
- }
- }
- extension EditorGroup: UICollectionViewDelegate, UICollectionViewDataSource {
- public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
- return 76
- }
-
- public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cellSticker", for: indexPath)
- if (cell.contentView.subviews.count > 0) {
- cell.contentView.subviews[0].removeFromSuperview()
- }
- let imageSticker = UIImageView()
- cell.contentView.addSubview(imageSticker)
- imageSticker.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- imageSticker.topAnchor.constraint(equalTo: cell.contentView.topAnchor),
- imageSticker.bottomAnchor.constraint(equalTo: cell.contentView.bottomAnchor),
- imageSticker.leadingAnchor.constraint(equalTo: cell.contentView.leadingAnchor),
- imageSticker.trailingAnchor.constraint(equalTo: cell.contentView.trailingAnchor)
- ])
- imageSticker.image = UIImage(named: stickers[indexPath.row], in: Bundle.resourceBundle(for: DigiX.self), with: nil) //resourcesMediaBundle
- return cell
- }
-
- public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
- sendChat(message_text: "sticker/\(stickers[indexPath.row])", attachment_flag: "11", viewController: self)
- constraintBottomAttachment.constant = 0.0
- self.viewSticker.removeConstraints(self.viewSticker.constraints)
- self.viewSticker.removeFromSuperview()
- }
-
- public func numberOfPreviewItems(in controller: QLPreviewController) -> Int {
- 1
- }
-
- public func previewController(_ controller: QLPreviewController, previewItemAt index: Int) -> QLPreviewItem {
- return self.previewItem!
- }
- }
- extension EditorGroup: UITableViewDelegate, UITableViewDataSource {
- // public func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
- // checkNewMessage(tableView: tableView)
- // }
-
- public func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
- if self.tableChatView.alpha != 1.0 {
- UIView.animate(withDuration: 0.5, animations: {
- self.tableChatView.alpha = 1.0
- })
- }
- }
-
- public func scrollViewDidScroll(_ scrollView: UIScrollView) {
- lastY = scrollView.contentOffset.y
- DispatchQueue.main.async { [self] in
- checkNewMessage(tableView: self.tableChatView)
- }
- }
-
- public func numberOfSections(in tableView: UITableView) -> Int {
- if tableView == tableMention {
- return 1
- }
- return dataDates.count
- }
-
- public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
- if tableView == tableMention {
- return listMentionWithText.count
- }
- let count = dataMessages.filter({ $0["chat_date"] as! String == dataDates[section] }).count
- return count
- }
-
- public func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
- if tableView == tableMention {
- return .none
- }
- let containerView = UIView()
- containerView.backgroundColor = .clear
-
- let dateView = UIView()
- containerView.addSubview(dateView)
- dateView.translatesAutoresizingMaskIntoConstraints = false
- var topAnchor = dateView.topAnchor.constraint(equalTo: containerView.topAnchor)
- topAnchor = dateView.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 10.0)
- NSLayoutConstraint.activate([
- topAnchor,
- dateView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor),
- dateView.centerXAnchor.constraint(equalTo: containerView.centerXAnchor),
- dateView.heightAnchor.constraint(equalToConstant: 30),
- dateView.widthAnchor.constraint(greaterThanOrEqualToConstant: 60)
- ])
- dateView.backgroundColor = .orangeColor
- dateView.layer.cornerRadius = 15.0
- dateView.clipsToBounds = true
-
- let labelDate = UILabel()
- dateView.addSubview(labelDate)
- labelDate.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelDate.centerYAnchor.constraint(equalTo: dateView.centerYAnchor),
- labelDate.centerXAnchor.constraint(equalTo: dateView.centerXAnchor),
- labelDate.leadingAnchor.constraint(equalTo: dateView.leadingAnchor, constant: 10),
- labelDate.trailingAnchor.constraint(equalTo: dateView.trailingAnchor, constant: -10),
- ])
- labelDate.textAlignment = .center
- labelDate.textColor = .secondaryColor
- labelDate.font = UIFont.systemFont(ofSize: 12, weight: .medium)
- labelDate.text = dataDates[section]
- return containerView
- }
-
- public func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
- if tableView == tableMention {
- return 0
- }
- return 40
- }
-
- public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
- if tableView == tableMention {
- tableView.deselectRow(at: indexPath, animated: true)
- let fulltextForMention = textFieldSend.text.substring(from: 0, to: lastPositionCursorMention - 1)
- let diff = textFieldSend.text.count - fulltextForMention.count
- if let indexLastMention = fulltextForMention.lastIndex(of: "@") {
- listMentionInTextField.append(listMentionWithText[indexPath.row])
- let indexIntMention = fulltextForMention.distance(from: fulltextForMention.startIndex, to: indexLastMention)
- let rangeReplacement = NSRange(location: indexIntMention, length: lastPositionCursorMention - indexIntMention)
-
- var addSpaceAfterReplacement = ""
- if diff == 0 {
- addSpaceAfterReplacement = " "
- }
-
- var text = textFieldSend.text ?? ""
- let nameMention = (listMentionWithText[indexPath.row].firstName + " " + listMentionWithText[indexPath.row].lastName).trimmingCharacters(in: .whitespaces)
- let replacementText = "@\(nameMention)"
- // Replace the old text with the new text using the replaceSubrange(_:with:) method
- if let startIndex = text.index(text.startIndex, offsetBy: rangeReplacement.location, limitedBy: text.endIndex),
- let endIndex = text.index(startIndex, offsetBy: rangeReplacement.length, limitedBy: text.endIndex) {
- text.replaceSubrange(startIndex..<endIndex, with: replacementText + addSpaceAfterReplacement)
- }
-
- textFieldSend.attributedText = text.richText(isEditing: true, group_id: self.dataGroup["group_id"] as! String, listMentionInTextField: listMentionInTextField)
-
- let newPosition = textFieldSend.position(from: textFieldSend.beginningOfDocument, offset: textFieldSend.text.count - diff)
- textFieldSend.selectedTextRange = textFieldSend.textRange(from: newPosition!, to: newPosition!)
-
- listMentionInTextField.last?.ex_block = "\(textFieldSend.text.count - diff - addSpaceAfterReplacement.count)" //upperBound
-
- hideMention()
- }
- return
- }
- let dataMessages = self.dataMessages.filter({ $0["chat_date"] as! String == dataDates[indexPath.section] })
- if copySession || forwardSession || deleteSession {
- if copySession && dataMessages[indexPath.row]["f_pin"] as! String != "-999" {
- return
- }
- if (dataMessages[indexPath.row]["attachment_flag"] as! String != "0" || dataMessages[indexPath.row]["lock"] as? String == "1") && !forwardSession && !deleteSession {
- return
- }
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == dataMessages[indexPath.row]["message_id"] as! String})
- if idx != nil {
- self.dataMessages[idx!]["isSelected"] = !(self.dataMessages[idx!]["isSelected"] as! Bool)
- self.tableChatView.reloadRows(at: [indexPath], with: .none)
- }
- containerMultpileSelectSession.subviews.forEach({ $0.removeFromSuperview() })
- addSubviewMultipleSession()
- return
- }
- if !(dataMessages[indexPath.row]["image_id"] as! String).isEmpty || !(dataMessages[indexPath.row]["video_id"] as! String).isEmpty || !(dataMessages[indexPath.row]["file_id"] as! String).isEmpty {
- var file = dataMessages[indexPath.row]["image_id"] as! String
- if file.isEmpty {
- file = dataMessages[indexPath.row]["video_id"] as! String
- if file.isEmpty {
- file = dataMessages[indexPath.row]["file_id"] as! String
- }
- }
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(file)
- if !FileManager.default.fileExists(atPath: fileURL.path) {
- return
- }
- }
- }
- let message = dataMessages[indexPath.row]
- if let attachmentFlag = message["attachment_flag"], let attachmentFlag = attachmentFlag as? String {
- if attachmentFlag == "27" || attachmentFlag == "26" {
- let streamingController = (attachmentFlag == "27") ? QmeraCreateStreamingViewController() : CreateSeminarViewController()
- switch(attachmentFlag){
- case "27":
- (streamingController as! QmeraCreateStreamingViewController).isJoin = true
- default:
- (streamingController as! CreateSeminarViewController).isJoin = true
- }
- if let messageText = message["message_text"],
- let messageText = messageText as? String,
- var json = try! JSONSerialization.jsonObject(with: messageText.data(using: String.Encoding.utf8)!, options: []) as? [String: Any] {
- if json["blog"] == nil {
- json["blog"] = message["blog_id"] ?? nil
- }
- switch(attachmentFlag){
- case "27":
- (streamingController as! QmeraCreateStreamingViewController).data = json
- default:
- (streamingController as! CreateSeminarViewController).data = json
- }
- }
- let streamingNav = UINavigationController(rootViewController: streamingController)
- streamingNav.modalPresentationStyle = .custom
- streamingNav.navigationBar.tintColor = .white
- streamingNav.navigationBar.barTintColor = .mainColor
- streamingNav.navigationBar.isTranslucent = false
- streamingNav.navigationBar.overrideUserInterfaceStyle = .dark
- streamingNav.navigationBar.barStyle = .black
- let cancelButtonAttributes: [NSAttributedString.Key: Any] = [NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16)]
- UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes, for: .normal)
- let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white]
- streamingNav.navigationBar.titleTextAttributes = textAttributes
- streamingNav.view.backgroundColor = .mainColor
- streamingNav.navigationBar.isTranslucent = false
- navigationController?.present(streamingNav, animated: true, completion: nil)
- }
- }
- }
-
-
-
- public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
- if tableView == tableMention {
- let cellMention = tableView.dequeueReusableCell(withIdentifier: "cellMention", for: indexPath as IndexPath)
- var content = cellMention.defaultContentConfiguration()
- content.textProperties.font = UIFont.systemFont(ofSize: 11)
- content.imageProperties.tintColor = .black
- content.imageProperties.maximumSize = CGSize(width: 24, height: 24)
- if indexPath.row < listMentionWithText.count {
- getImage(name: listMentionWithText[indexPath.row].thumb, placeholderImage: UIImage(systemName: "person"), isCircle: true, tableView: tableView, indexPath: indexPath, completion: { result, isDownloaded, image in
- content.image = image
- })
- content.text = listMentionWithText[indexPath.row].firstName
- }
- cellMention.contentConfiguration = content
- return cellMention
- }
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- let dataMessages = dataMessages.filter({$0["chat_date"] as! String == dataDates[indexPath.section]})
-
- let cellMessage = tableView.dequeueReusableCell(withIdentifier: "cellEditorGroup", for: indexPath as IndexPath)
- cellMessage.backgroundColor = .clear
- cellMessage.selectionStyle = .none
- cellMessage.contentView.subviews.forEach({ $0.removeFromSuperview() })
-
- let profileMessage = UIImageView()
- profileMessage.frame.size = CGSize(width: 35, height: 35)
- cellMessage.contentView.addSubview(profileMessage)
- profileMessage.translatesAutoresizingMaskIntoConstraints = false
- let tapGestureRecognizer = ObjectGesture(target: self, action: #selector(profilePersonTapped(_:)))
- tapGestureRecognizer.message_id = dataMessages[indexPath.row]["f_pin"] as! String
- profileMessage.isUserInteractionEnabled = true
- profileMessage.addGestureRecognizer(tapGestureRecognizer)
-
- let containerMessage = UIView()
-
- let messageIdChat = (dataMessages[indexPath.row]["message_id"] as? String) ?? ""
- let thumbChat = dataMessages[indexPath.row]["thumb_id"] as! String
- let imageChat = dataMessages[indexPath.row]["image_id"] as! String
- let videoChat = dataMessages[indexPath.row]["video_id"] as! String
- let fileChat = dataMessages[indexPath.row]["file_id"] as! String
- let reffChat = dataMessages[indexPath.row]["reff_id"] as! String
-
- cellMessage.contentView.addSubview(containerMessage)
- containerMessage.translatesAutoresizingMaskIntoConstraints = false
-
- let timeMessage = UILabel()
- cellMessage.contentView.addSubview(timeMessage)
- timeMessage.translatesAutoresizingMaskIntoConstraints = false
- if (dataMessages[indexPath.row]["read_receipts"] as? String) == "8" {
- timeMessage.bottomAnchor.constraint(equalTo: cellMessage.contentView.bottomAnchor, constant: -40).isActive = true
- } else {
- timeMessage.bottomAnchor.constraint(equalTo: cellMessage.contentView.bottomAnchor, constant: -5).isActive = true
- }
-
- let messageText = UILabel()
- containerMessage.addSubview(messageText)
- messageText.translatesAutoresizingMaskIntoConstraints = false
- let topMarginText = messageText.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 32)
-
- let dataProfile = getDataProfile(f_pin: dataMessages[indexPath.row]["f_pin"] as! String, message_id: dataMessages[indexPath.row]["message_id"] as! String)
-
- let statusMessage = UIImageView()
-
- if (dataMessages[indexPath.row]["attachment_flag"] as? String == "0" && dataMessages[indexPath.row]["lock"] as? String != "1") || forwardSession || deleteSession {
- var showSelectedImage = true
- if (!imageChat.isEmpty || !videoChat.isEmpty || !fileChat.isEmpty) && forwardSession {
- var file = dataMessages[indexPath.row]["image_id"] as! String
- if file.isEmpty {
- file = dataMessages[indexPath.row]["video_id"] as! String
- if file.isEmpty {
- file = dataMessages[indexPath.row]["file_id"] as! String
- }
- }
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(file)
- if !FileManager.default.fileExists(atPath: fileURL.path) {
- showSelectedImage = false
- }
- }
- }
- if dataMessages[indexPath.row]["f_pin"] as! String == "-999" && !deleteSession {
- showSelectedImage = false
- }
- if showSelectedImage {
- let selectedImage = UIImageView()
- cellMessage.contentView.addSubview(selectedImage)
- selectedImage.translatesAutoresizingMaskIntoConstraints = false
- selectedImage.frame.size = CGSize(width: 20, height: 20)
- var leading = selectedImage.leadingAnchor.constraint(equalTo: cellMessage.contentView.leadingAnchor, constant: -20)
- selectedImage.isHidden = true
- if copySession || forwardSession || deleteSession {
- leading = selectedImage.leadingAnchor.constraint(equalTo: cellMessage.contentView.leadingAnchor, constant: 15)
- selectedImage.isHidden = false
- }
- NSLayoutConstraint.activate([
- leading,
- selectedImage.centerYAnchor.constraint(equalTo: cellMessage.contentView.centerYAnchor),
- selectedImage.widthAnchor.constraint(equalToConstant: 20),
- selectedImage.heightAnchor.constraint(equalToConstant: 20)
- ])
- selectedImage.circle()
- selectedImage.layer.borderWidth = 2
- selectedImage.layer.borderColor = UIColor.mainColor.cgColor
- if dataMessages[indexPath.row]["isSelected"] as! Bool {
- selectedImage.image = UIImage(systemName: "checkmark.circle.fill")
- }
- selectedImage.tintColor = .mainColor
- }
- }
-
- if (dataMessages[indexPath.row]["f_pin"] as? String == idMe) {
- profileMessage.topAnchor.constraint(equalTo: cellMessage.contentView.topAnchor, constant: 5).isActive = true
- profileMessage.trailingAnchor.constraint(equalTo: cellMessage.contentView.trailingAnchor, constant: -15).isActive = true
- profileMessage.heightAnchor.constraint(equalToConstant: 37).isActive = true
- profileMessage.widthAnchor.constraint(equalToConstant: 35).isActive = true
- profileMessage.circle()
- profileMessage.clipsToBounds = true
- profileMessage.backgroundColor = .lightGray
- profileMessage.image = UIImage(systemName: "person")
- profileMessage.tintColor = .white
- profileMessage.contentMode = .scaleAspectFit
-
- let pictureImage = dataProfile["image_id"]
- if (pictureImage != "" && pictureImage != nil) {
- profileMessage.setImage(name: pictureImage!)
- profileMessage.contentMode = .scaleAspectFill
- }
-
- containerMessage.topAnchor.constraint(equalTo: cellMessage.contentView.topAnchor, constant: 5).isActive = true
- containerMessage.leadingAnchor.constraint(greaterThanOrEqualTo: cellMessage.contentView.leadingAnchor, constant: 60).isActive = true
- if (dataMessages[indexPath.row]["read_receipts"] as? String) == "8" {
- containerMessage.bottomAnchor.constraint(equalTo: cellMessage.contentView.bottomAnchor, constant: -40).isActive = true
- } else {
- containerMessage.bottomAnchor.constraint(equalTo: cellMessage.contentView.bottomAnchor, constant: -5).isActive = true
- }
- containerMessage.trailingAnchor.constraint(equalTo: profileMessage.leadingAnchor, constant: -5).isActive = true
- containerMessage.widthAnchor.constraint(greaterThanOrEqualToConstant: 46).isActive = true
- containerMessage.layer.cornerRadius = 10.0
- containerMessage.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner, .layerMinXMinYCorner]
- containerMessage.clipsToBounds = true
-
- timeMessage.trailingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: -8).isActive = true
-
- if dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String == "0" {
- cellMessage.contentView.addSubview(statusMessage)
- statusMessage.translatesAutoresizingMaskIntoConstraints = false
- statusMessage.bottomAnchor.constraint(equalTo: timeMessage.topAnchor).isActive = true
- statusMessage.trailingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: -8).isActive = true
- statusMessage.widthAnchor.constraint(equalToConstant: 15).isActive = true
- statusMessage.heightAnchor.constraint(equalToConstant: 15).isActive = true
- let status = getRealStatus(messageId: dataMessages[indexPath.row]["message_id"] as! String)
- if (status == "1" || status == "2" ) {
- statusMessage.image = UIImage(named: "checklist", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withTintColor(UIColor.lightGray)
- } else if (status == "3") {
- statusMessage.image = UIImage(named: "double-checklist", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withTintColor(UIColor.lightGray)
- } else if (status == "8") {
- statusMessage.image = UIImage(named: "message_status_ack", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withRenderingMode(.alwaysOriginal)
- } else {
- statusMessage.image = UIImage(named: "double-checklist", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withTintColor(UIColor.systemBlue)
- }
- }
-
- let nameSender = UILabel()
- containerMessage.addSubview(nameSender)
- nameSender.translatesAutoresizingMaskIntoConstraints = false
- nameSender.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 15).isActive = true
- nameSender.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true
- nameSender.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true
- nameSender.font = UIFont.systemFont(ofSize: 12).bold
- nameSender.text = dataProfile["name"]
- nameSender.textAlignment = .right
- if (dataMessages[indexPath.row]["attachment_flag"] as? String == "11" && dataMessages[indexPath.row]["reff_id"]as? String == "") {
- containerMessage.backgroundColor = .clear
- nameSender.textColor = .mainColor
- } else {
- containerMessage.backgroundColor = .blueBubbleColor
- nameSender.textColor = .mainColor
- }
-
- } else {
- if copySession || forwardSession || deleteSession {
- profileMessage.leadingAnchor.constraint(equalTo: cellMessage.contentView.leadingAnchor, constant: 50).isActive = true
- } else {
- profileMessage.leadingAnchor.constraint(equalTo: cellMessage.contentView.leadingAnchor, constant: 15).isActive = true
- }
- profileMessage.heightAnchor.constraint(equalToConstant: 37).isActive = true
- profileMessage.widthAnchor.constraint(equalToConstant: 35).isActive = true
- profileMessage.circle()
- profileMessage.clipsToBounds = true
- profileMessage.backgroundColor = .lightGray
- profileMessage.image = UIImage(systemName: "person")
- profileMessage.tintColor = .white
- profileMessage.contentMode = .scaleAspectFit
-
- let pictureImage = dataProfile["image_id"]
- if dataMessages[indexPath.row]["f_pin"] as? String == "-999" {
- if !Utils.getIconDock().isEmpty {
- let dataImage = try? Data(contentsOf: URL(string: Utils.getUrlDock()!)!) //make sure your image in this url does exist, otherwise unwrap in a if let check / try-catch
- if dataImage != nil {
- profileMessage.image = UIImage(data: dataImage!)
- }
- } else {
- profileMessage.image = UIImage(named: "pb_button", in: Bundle.resourceBundle(for: DigiX.self), with: nil)
- }
- profileMessage.contentMode = .scaleAspectFill
- }
- else if (pictureImage != "" && pictureImage != nil) {
- profileMessage.setImage(name: pictureImage!)
- profileMessage.contentMode = .scaleAspectFill
- }
-
- if markerCounter != nil && dataMessages[indexPath.row]["message_id"] as? String == markerCounter {
- profileMessage.topAnchor.constraint(equalTo: cellMessage.contentView.topAnchor, constant: 35).isActive = true
- containerMessage.topAnchor.constraint(equalTo: cellMessage.contentView.topAnchor, constant: 35).isActive = true
-
- let newMessagesView = UIView()
- cellMessage.contentView.addSubview(newMessagesView)
- newMessagesView.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- newMessagesView.topAnchor.constraint(equalTo: newMessagesView.topAnchor),
- newMessagesView.bottomAnchor.constraint(equalTo: containerMessage.topAnchor),
- newMessagesView.centerXAnchor.constraint(equalTo: cellMessage.contentView.centerXAnchor),
- newMessagesView.heightAnchor.constraint(equalToConstant: 30),
- newMessagesView.widthAnchor.constraint(greaterThanOrEqualToConstant: 60)
- ])
- newMessagesView.backgroundColor = .greenColor
- newMessagesView.layer.cornerRadius = 15.0
- newMessagesView.clipsToBounds = true
-
- let labelNewMessages = UILabel()
- newMessagesView.addSubview(labelNewMessages)
- labelNewMessages.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelNewMessages.centerYAnchor.constraint(equalTo: newMessagesView.centerYAnchor),
- labelNewMessages.centerXAnchor.constraint(equalTo: newMessagesView.centerXAnchor),
- labelNewMessages.leadingAnchor.constraint(equalTo: newMessagesView.leadingAnchor, constant: 10),
- labelNewMessages.trailingAnchor.constraint(equalTo: newMessagesView.trailingAnchor, constant: -10),
- ])
- labelNewMessages.textAlignment = .center
- labelNewMessages.textColor = .secondaryColor
- labelNewMessages.font = UIFont.systemFont(ofSize: 12, weight: .medium)
- labelNewMessages.text = "Unread Messages".localized()
-
- } else {
- profileMessage.topAnchor.constraint(equalTo: cellMessage.contentView.topAnchor, constant: 5).isActive = true
- containerMessage.topAnchor.constraint(equalTo: cellMessage.contentView.topAnchor, constant: 5).isActive = true
- }
-
- containerMessage.leadingAnchor.constraint(equalTo: profileMessage.trailingAnchor, constant: 5).isActive = true
- if (dataMessages[indexPath.row]["read_receipts"] as? String) == "8" {
- containerMessage.bottomAnchor.constraint(equalTo: cellMessage.contentView.bottomAnchor, constant: -40).isActive = true
- } else {
- containerMessage.bottomAnchor.constraint(equalTo: cellMessage.contentView.bottomAnchor, constant: -5).isActive = true
- }
- containerMessage.trailingAnchor.constraint(lessThanOrEqualTo: cellMessage.contentView.trailingAnchor, constant: -60).isActive = true
- containerMessage.widthAnchor.constraint(greaterThanOrEqualToConstant: 46).isActive = true
- if dataMessages[indexPath.row]["attachment_flag"] as? String == "11" && dataMessages[indexPath.row]["reff_id"]as? String == "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String != "1") {
- containerMessage.backgroundColor = .clear
- } else {
- containerMessage.backgroundColor = .grayColor
- }
- containerMessage.layer.cornerRadius = 10.0
- containerMessage.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMinYCorner, .layerMaxXMaxYCorner]
- containerMessage.clipsToBounds = true
-
- timeMessage.leadingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: 8).isActive = true
-
- let nameSender = UILabel()
- containerMessage.addSubview(nameSender)
- nameSender.translatesAutoresizingMaskIntoConstraints = false
- nameSender.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 15).isActive = true
- nameSender.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true
- nameSender.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true
- nameSender.font = UIFont.systemFont(ofSize: 12).bold
- if dataMessages[indexPath.row]["f_pin"] as? String == "-999" {
- nameSender.text = "Bot"
- }
- else {
- nameSender.text = dataProfile["name"]
- }
- nameSender.textAlignment = .left
- nameSender.textColor = .mainColor
- }
-
- let imageStared = UIImageView()
- if dataMessages[indexPath.row]["is_stared"] as? String == "1" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String == "0") {
- cellMessage.contentView.addSubview(imageStared)
- imageStared.translatesAutoresizingMaskIntoConstraints = false
- if (dataMessages[indexPath.row]["f_pin"] as? String == idMe) {
- imageStared.bottomAnchor.constraint(equalTo: statusMessage.topAnchor).isActive = true
- imageStared.trailingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: -8).isActive = true
- } else {
- imageStared.bottomAnchor.constraint(equalTo: timeMessage.topAnchor).isActive = true
- imageStared.leadingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: 8).isActive = true
- }
- imageStared.widthAnchor.constraint(equalToConstant: 15).isActive = true
- imageStared.heightAnchor.constraint(equalToConstant: 15).isActive = true
- imageStared.image = UIImage(systemName: "star.fill")
- imageStared.backgroundColor = .clear
- imageStared.tintColor = .systemYellow
- }
-
- if dataMessages[indexPath.row]["read_receipts"] as? String == "8" {
- let imageAckView = UIImageView()
- var imageAck = UIImage(named: "ack_icon_gray", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withRenderingMode(.alwaysOriginal)
- cellMessage.contentView.addSubview(imageAckView)
- imageAckView.translatesAutoresizingMaskIntoConstraints = false
- imageAckView.widthAnchor.constraint(equalToConstant: 30).isActive = true
- imageAckView.heightAnchor.constraint(equalToConstant: 30).isActive = true
- if (dataMessages[indexPath.row]["f_pin"] as? String == idMe) {
- let status = getRealStatus(messageId: dataMessages[indexPath.row]["message_id"] as! String)
- if status == "8" {
- imageAck = UIImage(named: "ack_icon", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withRenderingMode(.alwaysOriginal)
- }
- imageAckView.topAnchor.constraint(equalTo: containerMessage.bottomAnchor, constant: 5).isActive = true
- imageAckView.trailingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 30).isActive = true
- } else {
- let status = dataMessages[indexPath.row]["status"] as? String
- if status == "8" {
- imageAck = UIImage(named: "ack_icon", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withRenderingMode(.alwaysOriginal)
- }
- imageAckView.topAnchor.constraint(equalTo: containerMessage.bottomAnchor, constant: 5).isActive = true
- imageAckView.leadingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -30).isActive = true
- let tap = ObjectGesture(target: self, action: #selector(tapAck(_:)))
- tap.indexPath = indexPath
- imageAckView.addGestureRecognizer(tap)
- imageAckView.isUserInteractionEnabled = true
- }
- imageAckView.image = imageAck
- }
-
- messageText.numberOfLines = 0
- messageText.lineBreakMode = .byWordWrapping
- containerMessage.addSubview(messageText)
- topMarginText.isActive = true
- if dataMessages[indexPath.row]["attachment_flag"] as! String == "27" || dataMessages[indexPath.row]["attachment_flag"] as! String == "26" {
- messageText.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 85).isActive = true
- let imageLS = UIImageView()
- containerMessage.addSubview(imageLS)
- imageLS.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- imageLS.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15.0),
- imageLS.trailingAnchor.constraint(equalTo: messageText.leadingAnchor, constant: -10.0),
- imageLS.centerYAnchor.constraint(equalTo: containerMessage.centerYAnchor),
- imageLS.heightAnchor.constraint(equalToConstant: 60.0)
- ])
- if dataMessages[indexPath.row]["attachment_flag"] as! String == "26" {
- imageLS.image = UIImage(named: "pb_seminar_wpr", in: Bundle.resourceBundle(for: DigiX.self), with: nil)
- } else if dataMessages[indexPath.row]["attachment_flag"] as! String == "27" {
- imageLS.image = UIImage(named: "pb_live_tv", in: Bundle.resourceBundle(for: DigiX.self), with: nil)
- }
- } else {
- messageText.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true
- }
- messageText.bottomAnchor.constraint(equalTo: containerMessage.bottomAnchor, constant: -15).isActive = true
- messageText.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true
-
- messageText.textColor = .black
- messageText.font = .systemFont(ofSize: 12)
-
- var textChat = (dataMessages[indexPath.row]["message_text"])! as? String
- if (dataMessages[indexPath.row]["lock"] != nil && (dataMessages[indexPath.row]["lock"])! as? String == "1") {
- if (dataMessages[indexPath.row]["f_pin"] as? String == idMe) {
- textChat = "🚫 _"+"You were deleted this message".localized()+"_"
- } else {
- textChat = "🚫 _"+"This message was deleted".localized()+"_"
- }
- }
-
- let imageSticker = UIImageView()
-
- if let attachmentFlag = dataMessages[indexPath.row]["attachment_flag"], let attachmentFlag = attachmentFlag as? String {
- if attachmentFlag == "27" || attachmentFlag == "26", let data = textChat { // live streaming
- if let json = try! JSONSerialization.jsonObject(with: data.data(using: String.Encoding.utf8)!, options: []) as? [String: Any] {
- Database().database?.inTransaction({ fmdb, rollback in
- let title = json["title"] as! String
- let description = json["description"] as! String
- let start = json["time"] as! Int64
- let by = json["by"] as! String
- let textLS = "Live Streaming".localized()
- var type = "*\(textLS)*"
- if attachmentFlag == "26" {
- let textSeminar = "Seminar".localized()
- type = "*\(textSeminar)*"
- }
- if let c = Database().getRecords(fmdb: fmdb, query: "select first_name || ' ' || last_name from BUDDY where f_pin = '\(by)'"), c.next() {
- let name = c.string(forColumnIndex: 0)!
- messageText.attributedText = "\(type) \nTitle: \(title) \nDescription: \(description) \nStart: \(Date(milliseconds: start).format(dateFormat: "dd/MM/yyyy HH:mm")) \nBroadcaster: \(name)".richText()
- c.close()
- } else {
- messageText.attributedText = ("\(type) \nTitle: \(title) \nDescription: \(description) \nStart: \(Date(milliseconds: start).format(dateFormat: "dd/MM/yyyy HH:mm")) \nBroadcaster: " + "Unknown".localized()).richText()
- }
- })
- }
- }
- else if attachmentFlag == "11" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String != "1") {
- messageText.text = ""
- topMarginText.constant = topMarginText.constant + 100
- containerMessage.addSubview(imageSticker)
- imageSticker.translatesAutoresizingMaskIntoConstraints = false
- let data = queryMessageReply(message_id: reffChat)
- if reffChat.isEmpty || data.count == 0 {
- imageSticker.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 32).isActive = true
- imageSticker.widthAnchor.constraint(equalToConstant: 80).isActive = true
- } else {
- imageSticker.widthAnchor.constraint(greaterThanOrEqualToConstant: 80).isActive = true
- }
- imageSticker.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true
- imageSticker.bottomAnchor.constraint(equalTo: messageText.topAnchor, constant: -5).isActive = true
- imageSticker.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true
- imageSticker.image = UIImage(named: (textChat?.components(separatedBy: "/")[1])!, in: Bundle.resourceBundle(for: DigiX.self), with: nil) //resourcesMediaBundle
- imageSticker.contentMode = .scaleAspectFit
- }
- else {
- messageText.attributedText = textChat!.richText(group_id: self.dataGroup["group_id"] as! String)
- }
- } else {
- messageText.attributedText = textChat!.richText(group_id: self.dataGroup["group_id"] as! String)
- }
-
- messageText.isUserInteractionEnabled = false
- if !textChat!.isEmpty {
- if textChat!.contains("■"){
- textChat = textChat!.components(separatedBy: "■")[0]
- textChat = textChat!.trimmingCharacters(in: .whitespacesAndNewlines)
- }
- let listTextEnter = textChat!.split(separator: "\n")
- var finalAtribute = textChat!.richText()
- var containsLink = false
- for j in 0...listTextEnter.count - 1 {
- let listText = listTextEnter[j].split(separator: " ")
- if listText.count > 0 {
- for i in 0...listText.count - 1 {
- if listText[i].lowercased().checkStartWithLink() {
- let rangeTapLink = (finalAtribute.string as NSString).range(of: String(listText[i]))
- finalAtribute.addAttributes([.foregroundColor: UIColor.blue, .underlineStyle: NSUnderlineStyle.single.rawValue], range: rangeTapLink)
- if !containsLink {
- containsLink = true
- }
- }
- }
- }
- }
- messageText.attributedText = finalAtribute
- if containsLink && !copySession && !forwardSession && !deleteSession && !self.removed {
- messageText.isUserInteractionEnabled = true
- let longPress = UILongPressGestureRecognizer(target: self, action: #selector(handleLongPressLink(_:)))
- longPress.minimumPressDuration = 0.1
- containerMessage.addGestureRecognizer(longPress)
- }
- }
-
- if !copySession && !forwardSession && !deleteSession && !isHistoryCC && !removed && messageText.isUserInteractionEnabled == false {
- let interaction = UIContextMenuInteraction(delegate: self)
- containerMessage.addInteraction(interaction)
- containerMessage.isUserInteractionEnabled = true
- }
-
- if isSearching && textSearch.count > 1 {
- messageText.attributedText = textChat!.richText(isSearching: true, textSearch: textSearch, group_id: self.dataGroup["group_id"] as! String)
- if textChat!.lowercased().contains(textSearch) {
- countMatchesSearch += 1
- }
- }
-
- let stringDate = (dataMessages[indexPath.row]["server_date"] as! String)
- let date = Date(milliseconds: Int64(stringDate)!)
- let formatter = DateFormatter()
- formatter.dateFormat = "HH:mm"
- formatter.locale = NSLocale(localeIdentifier: "id") as Locale?
- timeMessage.text = formatter.string(from: date as Date)
- timeMessage.font = UIFont.systemFont(ofSize: 10, weight: .medium)
- timeMessage.textColor = .lightGray
-
- let imageThumb = UIImageView()
- let containerViewFile = UIView()
-
- if (thumbChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String != "1")) {
- if let listImages = groupImages[messageIdChat] {
- timeMessage.isHidden = true
- statusMessage.isHidden = true
- imageStared.isHidden = true
- topMarginText.constant = topMarginText.constant + 205
- let listImageThumb: [UIImageView] = [UIImageView(), UIImageView(), UIImageView(), UIImageView()]
- for i in 0..<4 {
- containerMessage.addSubview(listImageThumb[i])
- listImageThumb[i].layer.cornerRadius = 5.0
- listImageThumb[i].clipsToBounds = true
- listImageThumb[i].contentMode = .scaleAspectFill
- let widthHeightImage: CGFloat = 120
- switch i {
- case 0:
- listImageThumb[i].anchor(top: containerMessage.topAnchor, left: containerMessage.leftAnchor, paddingTop: 5, paddingLeft: 5, width: widthHeightImage, height: widthHeightImage)
- case 1:
- listImageThumb[i].anchor(top: containerMessage.topAnchor, left: listImageThumb[0].rightAnchor, right: containerMessage.rightAnchor, paddingTop: 5, paddingLeft: 5, paddingRight: 5, width: widthHeightImage, height: widthHeightImage)
- case 2:
- listImageThumb[i].anchor(left: containerMessage.leftAnchor, bottom: containerMessage.bottomAnchor, paddingLeft: 5, paddingBottom: 5, width: widthHeightImage, height: widthHeightImage)
- default:
- listImageThumb[i].anchor(left: listImageThumb[2].rightAnchor, bottom: containerMessage.bottomAnchor, right: containerMessage.rightAnchor, paddingLeft: 5, paddingBottom: 5, paddingRight: 5, width: widthHeightImage, height: widthHeightImage)
- }
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let thumbURL = URL(fileURLWithPath: dirPath).appendingPathComponent(listImages[i].thumbId)
- let image : UIImage? = {
- if let img = DigiX.imageCache.object(forKey: listImages[i].thumbId as NSString) {
- return img
- }
- else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) {
- DigiX.imageCache.setObject(img, forKey: listImages[i].thumbId as NSString)
- return img
- }
- return nil
- }()
- // let image = UIGraphicsRenderer.renderImageAt(url: thumbURL as NSURL, size: CGSize(width: 250, height: 250))
- listImageThumb[i].image = image
- let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(listImages[i].imageId)
- if !FileManager.default.fileExists(atPath: imageURL.path) {
- let blurEffect = UIBlurEffect(style: UIBlurEffect.Style.light)
- let blurEffectView = UIVisualEffectView(effect: blurEffect)
- blurEffectView.frame = CGRect(x: 0, y: 0, width: listImageThumb[i].frame.size.width, height: listImageThumb[i].frame.size.height)
- blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
- listImageThumb[i].addSubview(blurEffectView)
- }
- }
- let containerTimeStatus = UIView()
- listImageThumb[i].addSubview(containerTimeStatus)
- containerTimeStatus.anchor(bottom: listImageThumb[i].bottomAnchor, right: listImageThumb[i].rightAnchor, height: 15)
- let widthcontainerTimeStatus = containerTimeStatus.widthAnchor.constraint(equalToConstant: 50)
- widthcontainerTimeStatus.isActive = true
- containerTimeStatus.layer.cornerRadius = 5.0
- containerTimeStatus.layer.masksToBounds = true
- containerTimeStatus.backgroundColor = .black.withAlphaComponent(0.15)
-
- let timeInImage = UILabel()
- containerTimeStatus.addSubview(timeInImage)
- let date = Date(milliseconds: Int64(listImages[i].time) ?? 100)
- let formatter = DateFormatter()
- formatter.dateFormat = "HH:mm"
- formatter.locale = NSLocale(localeIdentifier: "id") as Locale?
- timeInImage.text = formatter.string(from: date as Date)
- timeInImage.textColor = .white
- timeInImage.font = UIFont.systemFont(ofSize: 10, weight: .medium)
-
- if (dataMessages[indexPath.row]["f_pin"] as? String == idMe) {
- let statusInImage = UIImageView()
- containerTimeStatus.addSubview(statusInImage)
- statusInImage.anchor(right: containerTimeStatus.rightAnchor, centerY: containerTimeStatus.centerYAnchor, width: 15, height: 15)
- if listImages[i].status == "1" || listImages[i].status == "2" {
- statusInImage.image = UIImage(named: "checklist", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withTintColor(UIColor.white)
- } else if listImages[i].status == "3" {
- statusInImage.image = UIImage(named: "double-checklist", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withTintColor(UIColor.white)
- } else {
- statusInImage.image = UIImage(named: "double-checklist", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withTintColor(UIColor.systemBlue)
- }
- timeInImage.anchor(right: statusInImage.leftAnchor, centerY: containerTimeStatus.centerYAnchor, height: 15)
- } else {
- timeInImage.anchor(right: containerTimeStatus.rightAnchor, paddingRight: 5, centerY: containerTimeStatus.centerYAnchor, height: 15)
- widthcontainerTimeStatus.constant = widthcontainerTimeStatus.constant - 10
- }
-
- if listImages[i].dataMessage["is_stared"] as? String == "1" {
- let iconStar = UIImageView()
- containerTimeStatus.addSubview(iconStar)
- iconStar.anchor(right: timeInImage.leftAnchor, paddingRight: 2, centerY: containerTimeStatus.centerYAnchor, width: 15, height: 15)
- widthcontainerTimeStatus.constant = widthcontainerTimeStatus.constant + 15
- iconStar.image = UIImage(systemName: "star.fill")
- iconStar.tintColor = .white
- }
-
- if !copySession && !forwardSession && !deleteSession {
- let objectTap = ObjectGesture(target: self, action: #selector(imageGroupingTapped(_:)))
- listImageThumb[i].isUserInteractionEnabled = true
- listImageThumb[i].addGestureRecognizer(objectTap)
- objectTap.indexImageTapped = i
- objectTap.listImageFromGrouping = listImages
- objectTap.isInitiator = dataMessages[indexPath.row]["f_pin"] as? String == idMe
- }
- }
- if listImages.count > 4 {
- let blurEffect = UIBlurEffect(style: UIBlurEffect.Style.dark)
- let blurEffectView = UIVisualEffectView(effect: blurEffect)
- blurEffectView.frame = CGRect(x: 0, y: 0, width: listImageThumb[3].frame.size.width, height: listImageThumb[3].frame.size.height)
- blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
- listImageThumb[3].addSubview(blurEffectView)
-
- let countRestImages = UILabel()
- listImageThumb[3].addSubview(countRestImages)
- countRestImages.anchor(centerX: listImageThumb[3].centerXAnchor, centerY: listImageThumb[3].centerYAnchor)
- countRestImages.font = UIFont.systemFont(ofSize: 30, weight: .medium)
- countRestImages.text = "+\(listImages.count - 3)"
- countRestImages.textColor = .white
- }
- } else {
- let getHeightImage = ListGroupImages.getImageSize(image: thumbChat, screenWidth: self.view.frame.size.width * 0.6, screenHeight: 305)!.height
- let getWidthImage = ListGroupImages.getImageSize(image: thumbChat, screenWidth: self.view.frame.size.width * 0.6, screenHeight: 305)!.width
- topMarginText.constant = topMarginText.constant + (getHeightImage < 40 ? 40 : getHeightImage)
-
- containerMessage.addSubview(imageThumb)
- imageThumb.translatesAutoresizingMaskIntoConstraints = false
- imageThumb.frame = CGRect(x: 0, y: 0, width: getWidthImage, height: getHeightImage)
- let data = queryMessageReply(message_id: reffChat)
- if reffChat.isEmpty || data.count == 0 {
- imageThumb.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 37).isActive = true
- }
- imageThumb.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true
- imageThumb.bottomAnchor.constraint(equalTo: messageText.topAnchor, constant: -5).isActive = true
- imageThumb.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true
- imageThumb.widthAnchor.constraint(equalToConstant: getWidthImage).isActive = true
- imageThumb.layer.cornerRadius = 5.0
- imageThumb.clipsToBounds = true
- imageThumb.contentMode = .scaleAspectFill
-
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let thumbURL = URL(fileURLWithPath: dirPath).appendingPathComponent(thumbChat)
- let image : UIImage? = {
- if let img = DigiX.imageCache.object(forKey: thumbChat as NSString) {
- return img
- }
- else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) {
- DigiX.imageCache.setObject(img, forKey: thumbChat as NSString)
- return img
- }
- return nil
- }()
- // let image = UIGraphicsRenderer.renderImageAt(url: thumbURL as NSURL, size: CGSize(width: 250, height: 250))
- imageThumb.image = image
-
- let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(videoChat)
- let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(imageChat)
- if !FileManager.default.fileExists(atPath: imageURL.path) || !FileManager.default.fileExists(atPath: videoURL.path){
- let blurEffect = UIBlurEffect(style: UIBlurEffect.Style.light)
- let blurEffectView = UIVisualEffectView(effect: blurEffect)
- blurEffectView.frame = CGRect(x: 0, y: 0, width: imageThumb.frame.size.width, height: imageThumb.frame.size.height)
- blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
- imageThumb.addSubview(blurEffectView)
- if !imageChat.isEmpty {
- let imageDownload = UIImageView(image: UIImage(systemName: "arrow.down.circle.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 50, weight: .bold, scale: .default)))
- imageThumb.addSubview(blurEffectView)
- imageThumb.addSubview(imageDownload)
- imageDownload.tintColor = .black.withAlphaComponent(0.3)
- imageDownload.translatesAutoresizingMaskIntoConstraints = false
- imageDownload.centerXAnchor.constraint(equalTo: imageThumb.centerXAnchor).isActive = true
- imageDownload.centerYAnchor.constraint(equalTo: imageThumb.centerYAnchor).isActive = true
- }
- }
-
- }
-
- if (videoChat != "") {
- let imagePlay = UIImageView(image: UIImage(systemName: "play.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .bold, scale: .default))?.imageWithInsets(insets: UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10))?.withTintColor(.white))
- imagePlay.circle()
- imageThumb.addSubview(imagePlay)
- imagePlay.backgroundColor = .black.withAlphaComponent(0.3)
- imagePlay.translatesAutoresizingMaskIntoConstraints = false
- imagePlay.centerXAnchor.constraint(equalTo: imageThumb.centerXAnchor).isActive = true
- imagePlay.centerYAnchor.constraint(equalTo: imageThumb.centerYAnchor).isActive = true
- }
-
- if (dataMessages[indexPath.row]["progress"] as! Double != 100.0 && dataMessages[indexPath.row]["f_pin"] as? String == idMe) {
- let container = UIView()
- imageThumb.addSubview(container)
- container.translatesAutoresizingMaskIntoConstraints = false
- container.bottomAnchor.constraint(equalTo: imageThumb.bottomAnchor, constant: -10).isActive = true
- container.leadingAnchor.constraint(equalTo: imageThumb.leadingAnchor, constant: 10).isActive = true
- container.widthAnchor.constraint(equalToConstant: 30).isActive = true
- container.heightAnchor.constraint(equalToConstant: 30).isActive = true
- container.backgroundColor = .white.withAlphaComponent(0.1)
- let circlePath = UIBezierPath(arcCenter: CGPoint(x: 10, y: 20), radius: 15, startAngle: -(.pi / 2), endAngle: .pi * 2, clockwise: true)
- let trackShape = CAShapeLayer()
- trackShape.path = circlePath.cgPath
- trackShape.fillColor = UIColor.black.withAlphaComponent(0.3).cgColor
- trackShape.lineWidth = 3
- trackShape.strokeColor = UIColor.blueBubbleColor.withAlphaComponent(0.3).cgColor
- container.backgroundColor = .clear
- container.layer.addSublayer(trackShape)
- let shapeLoading = CAShapeLayer()
- shapeLoading.path = circlePath.cgPath
- shapeLoading.fillColor = UIColor.clear.cgColor
- shapeLoading.lineWidth = 3
- shapeLoading.strokeEnd = 0
- shapeLoading.strokeColor = UIColor.blueBubbleColor.cgColor
- container.layer.addSublayer(shapeLoading)
- let imageupload = UIImageView(image: UIImage(systemName: "arrow.up", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default)))
- imageupload.tintColor = .white
- container.addSubview(imageupload)
- imageupload.translatesAutoresizingMaskIntoConstraints = false
- imageupload.bottomAnchor.constraint(equalTo: imageThumb.bottomAnchor, constant: -10).isActive = true
- imageupload.leadingAnchor.constraint(equalTo: imageThumb.leadingAnchor, constant: 10).isActive = true
- imageupload.widthAnchor.constraint(equalToConstant: 20).isActive = true
- imageupload.heightAnchor.constraint(equalToConstant: 20).isActive = true
- }
-
- if !copySession && !forwardSession && !deleteSession {
- let objectTap = ObjectGesture(target: self, action: #selector(contentMessageTapped(_:)))
- imageThumb.isUserInteractionEnabled = true
- imageThumb.addGestureRecognizer(objectTap)
- objectTap.image_id = imageChat
- objectTap.video_id = videoChat
- objectTap.imageView = imageThumb
- objectTap.indexPath = indexPath
- }
- }
- }
-
- if (fileChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String != "1")) {
- topMarginText.constant = topMarginText.constant + 55
-
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- let arrExtFile = (textChat?.components(separatedBy: "|")[0])?.split(separator: ".")
- let finalExtFile = arrExtFile![arrExtFile!.count - 1]
- if let dirPath = paths.first {
- let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(fileChat)
- if let dataFile = try? Data(contentsOf: fileURL) {
- var sizeOfFile = Int(dataFile.count / 1000000)
- if (sizeOfFile < 1) {
- sizeOfFile = Int(dataFile.count / 1000)
- if (finalExtFile.count > 4) {
- messageText.text = "\(sizeOfFile) kB \u{2022} TXT"
- }else {
- messageText.text = "\(sizeOfFile) kB \u{2022} \(finalExtFile.uppercased())"
- }
- } else {
- if (finalExtFile.count > 4) {
- messageText.text = "\(sizeOfFile) MB \u{2022} TXT"
- }else {
- messageText.text = "\(sizeOfFile) MB \u{2022} \(finalExtFile.uppercased())"
- }
- }
- } else {
- messageText.text = ""
- }
- }
-
- containerMessage.addSubview(containerViewFile)
- containerViewFile.translatesAutoresizingMaskIntoConstraints = false
- let data = queryMessageReply(message_id: reffChat)
- if reffChat.isEmpty || data.count == 0 {
- containerViewFile.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 37).isActive = true
- }
- containerViewFile.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true
- containerViewFile.bottomAnchor.constraint(equalTo:messageText.topAnchor, constant: -5).isActive = true
- containerViewFile.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true
- containerViewFile.heightAnchor.constraint(equalToConstant: 50).isActive = true
- containerViewFile.backgroundColor = .black.withAlphaComponent(0.2)
- containerViewFile.layer.cornerRadius = 5.0
- containerViewFile.clipsToBounds = true
-
- let imageFile = UIImageView(image: UIImage(systemName: "doc.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 30, weight: .bold, scale: .default)))
- containerViewFile.addSubview(imageFile)
- let nameFile = UILabel()
- containerViewFile.addSubview(nameFile)
-
- imageFile.translatesAutoresizingMaskIntoConstraints = false
- imageFile.leadingAnchor.constraint(equalTo: containerViewFile.leadingAnchor, constant: 5).isActive = true
- imageFile.trailingAnchor.constraint(equalTo: nameFile.leadingAnchor, constant: -5).isActive = true
- imageFile.centerYAnchor.constraint(equalTo: containerViewFile.centerYAnchor).isActive = true
- imageFile.widthAnchor.constraint(equalToConstant: 30).isActive = true
- imageFile.heightAnchor.constraint(equalToConstant: 30).isActive = true
- imageFile.tintColor = .docColor
-
- nameFile.translatesAutoresizingMaskIntoConstraints = false
- nameFile.centerYAnchor.constraint(equalTo: containerViewFile.centerYAnchor).isActive = true
- nameFile.widthAnchor.constraint(lessThanOrEqualToConstant: 200).isActive = true
- nameFile.font = UIFont.systemFont(ofSize: 12, weight: .medium)
- nameFile.textColor = .white
- nameFile.text = textChat?.components(separatedBy: "|")[0]
-
- if (dataMessages[indexPath.row]["progress"] as! Double != 100.0) {
- let containerLoading = UIView()
- containerViewFile.addSubview(containerLoading)
- containerLoading.translatesAutoresizingMaskIntoConstraints = false
- containerLoading.centerYAnchor.constraint(equalTo: containerViewFile.centerYAnchor).isActive = true
- containerLoading.leadingAnchor.constraint(equalTo: nameFile.trailingAnchor, constant: 5).isActive = true
- containerLoading.trailingAnchor.constraint(equalTo: containerViewFile.trailingAnchor, constant: -5).isActive = true
- containerLoading.widthAnchor.constraint(equalToConstant: 30).isActive = true
- containerLoading.heightAnchor.constraint(equalToConstant: 30).isActive = true
- let circlePath = UIBezierPath(arcCenter: CGPoint(x: 15, y: 15), radius: 10, startAngle: -(.pi / 2), endAngle: .pi * 2, clockwise: true)
- let trackShape = CAShapeLayer()
- trackShape.path = circlePath.cgPath
- trackShape.fillColor = UIColor.clear.cgColor
- trackShape.lineWidth = 5
- trackShape.strokeColor = UIColor.blueBubbleColor.withAlphaComponent(0.3).cgColor
- containerLoading.layer.addSublayer(trackShape)
- let shapeLoading = CAShapeLayer()
- shapeLoading.path = circlePath.cgPath
- shapeLoading.fillColor = UIColor.clear.cgColor
- shapeLoading.lineWidth = 3
- shapeLoading.strokeEnd = 0
- shapeLoading.strokeColor = UIColor.secondaryColor.cgColor
- containerLoading.layer.addSublayer(shapeLoading)
- var imageupload = UIImageView(image: UIImage(systemName: "arrow.up", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default)))
- if dataMessages[indexPath.row]["f_pin"] as? String != idMe {
- imageupload = UIImageView(image: UIImage(systemName: "arrow.down", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default)))
- shapeLoading.strokeColor = UIColor.blueBubbleColor.cgColor
- }
- imageupload.tintColor = .white
- containerLoading.addSubview(imageupload)
- imageupload.translatesAutoresizingMaskIntoConstraints = false
- imageupload.centerYAnchor.constraint(equalTo: containerLoading.centerYAnchor).isActive = true
- imageupload.centerXAnchor.constraint(equalTo: containerLoading.centerXAnchor).isActive = true
- } else {
- nameFile.trailingAnchor.constraint(equalTo: containerViewFile.trailingAnchor, constant: -5).isActive = true
- }
-
- if !copySession && !forwardSession && !deleteSession {
- let objectTap = ObjectGesture(target: self, action: #selector(contentMessageTapped(_:)))
- containerViewFile.addGestureRecognizer(objectTap)
- objectTap.containerFile = containerViewFile
- objectTap.labelFile = nameFile
- objectTap.file_id = fileChat
- objectTap.indexPath = indexPath
- }
- }
-
- let containerLinkMessage = UIView()
- if thumbChat.isEmpty && fileChat.isEmpty && !textChat!.isEmpty {
- var text = ""
- let listTextSplitBreak = textChat!.components(separatedBy: "\n")
- let indexFirstLinkSplitBreak = listTextSplitBreak.firstIndex(where: { $0.contains("www.") || $0.contains("http://") || $0.contains("https://") })
- if indexFirstLinkSplitBreak != nil {
- let listTextSplitSpace = listTextSplitBreak[indexFirstLinkSplitBreak!].components(separatedBy: " ")
- let indexFirstLinkSplitSpace = listTextSplitSpace.firstIndex(where: { ($0.starts(with: "www.") && $0.components(separatedBy: ".").count > 2) || ($0.starts(with: "http://") && $0.components(separatedBy: ".").count > 1) || ($0.starts(with: "https://") && $0.components(separatedBy: ".").count > 1) })
- if indexFirstLinkSplitSpace != nil {
- text = listTextSplitSpace[indexFirstLinkSplitSpace!]
- }
- }
- if !text.isEmpty {
- func showLink() {
- if let data = try! JSONSerialization.jsonObject(with: dataURL.data(using: String.Encoding.utf8)!, options: []) as? [String: Any] {
- let title = data["title"] as? String
- let description = data["description"] as? String
- let imageUrl = data["imageUrl"] as? String
- let link = data["link"] as? String
-
- topMarginText.constant = topMarginText.constant + 85
-
- containerMessage.addSubview(containerLinkMessage)
- containerLinkMessage.translatesAutoresizingMaskIntoConstraints = false
- containerLinkMessage.leadingAnchor.constraint(equalTo:containerMessage.leadingAnchor, constant: 15).isActive = true
- if dataMessages[indexPath.row]["attachment_flag"] as? String == "11" {
- containerLinkMessage.bottomAnchor.constraint(equalTo: imageSticker.topAnchor, constant: -5).isActive = true
- } else {
- containerLinkMessage.bottomAnchor.constraint(equalTo: messageText.topAnchor, constant: -5).isActive = true
- }
- containerLinkMessage.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true
- containerLinkMessage.heightAnchor.constraint(equalToConstant: 80.0).isActive = true
- containerLinkMessage.backgroundColor = .gray.withAlphaComponent(0.2)
-
- let imagePreview = UIImageView()
- if imageUrl != nil {
- containerLinkMessage.addSubview(imagePreview)
- imagePreview.translatesAutoresizingMaskIntoConstraints = false
- imagePreview.leadingAnchor.constraint(equalTo: containerLinkMessage.leadingAnchor).isActive = true
- imagePreview.bottomAnchor.constraint(equalTo: containerLinkMessage.bottomAnchor).isActive = true
- imagePreview.topAnchor.constraint(equalTo: containerLinkMessage.topAnchor).isActive = true
- imagePreview.widthAnchor.constraint(equalToConstant: 80.0).isActive = true
- imagePreview.loadImageAsync(with: imageUrl)
- imagePreview.contentMode = .scaleToFill
- }
-
- let titlePreview = UILabel()
- containerLinkMessage.addSubview(titlePreview)
- titlePreview.translatesAutoresizingMaskIntoConstraints = false
- if imageUrl != nil {
- titlePreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true
- } else {
- titlePreview.leadingAnchor.constraint(equalTo: containerLinkMessage.leadingAnchor, constant: 5.0).isActive = true
- }
- titlePreview.topAnchor.constraint(equalTo: containerLinkMessage.topAnchor, constant: 10.0).isActive = true
- titlePreview.trailingAnchor.constraint(equalTo: containerLinkMessage.trailingAnchor, constant: -5.0).isActive = true
- titlePreview.text = title
- titlePreview.font = UIFont.systemFont(ofSize: 14.0, weight: .bold)
- titlePreview.textColor = .black
-
- let descPreview = UILabel()
- containerLinkMessage.addSubview(descPreview)
- descPreview.translatesAutoresizingMaskIntoConstraints = false
- if imageUrl != nil {
- descPreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true
- } else {
- descPreview.leadingAnchor.constraint(equalTo: containerLinkMessage.leadingAnchor, constant: 5.0).isActive = true
- }
- descPreview.topAnchor.constraint(equalTo: titlePreview.bottomAnchor).isActive = true
- descPreview.trailingAnchor.constraint(equalTo: containerLinkMessage.trailingAnchor, constant: -5.0).isActive = true
- descPreview.text = description
- descPreview.font = UIFont.systemFont(ofSize: 12.0)
- descPreview.textColor = .gray
- descPreview.numberOfLines = 1
-
- let linkPreview = UILabel()
- containerLinkMessage.addSubview(linkPreview)
- linkPreview.translatesAutoresizingMaskIntoConstraints = false
- if imageUrl != nil {
- linkPreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true
- } else {
- linkPreview.leadingAnchor.constraint(equalTo: containerLinkMessage.leadingAnchor, constant: 5.0).isActive = true
- }
- linkPreview.topAnchor.constraint(equalTo: descPreview.bottomAnchor, constant: 8.0).isActive = true
- linkPreview.trailingAnchor.constraint(equalTo: containerLinkMessage.trailingAnchor, constant: -5.0).isActive = true
- linkPreview.text = link
- linkPreview.font = UIFont.systemFont(ofSize: 10.0)
- linkPreview.textColor = .gray
- linkPreview.numberOfLines = 1
-
- if !copySession && !forwardSession && !deleteSession {
- let objectTap = ObjectGesture(target: self, action: #selector(tapMessageText(_:)))
- objectTap.message_id = text
- containerLinkMessage.addGestureRecognizer(objectTap)
- }
- }
- }
- var dataURL = ""
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "select data_link from LINK_PREVIEW where link='\(text)'"), cursor.next() {
- if let data = cursor.string(forColumnIndex: 0) {
- dataURL = data
- }
- cursor.close()
- }
- })
- if dataURL.isEmpty {
- let slp = SwiftLinkPreview(session: URLSession.shared,
- workQueue: SwiftLinkPreview.defaultWorkQueue,
- responseQueue: DispatchQueue.main,
- cache: DisabledCache.instance)
- let preview = slp.preview(text,
- onSuccess: { result in
- let title = result.title ?? "No Title"
- let description = text.contains("google.com") ? "" : result.description
- let imageUrl = result.icon
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- var dataJson: [String: Any] = [:]
- dataJson["title"] = title
- dataJson["description"] = description
- dataJson["imageUrl"] = imageUrl
- dataJson["link"] = text
- guard let json = String(data: try! JSONSerialization.data(withJSONObject: dataJson, options: []), encoding: String.Encoding.utf8) else {
- return
- }
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "LINK_PREVIEW", cvalues: [
- "id" : "\(Date().currentTimeMillis().toHex())",
- "link" : text,
- "data_link" : json,
- "retry": 0
- ], replace: true)
- dataURL = json
- showLink()
- DispatchQueue.main.async {
- tableView.reloadRows(at: [indexPath], with: .none)
- }
- } catch {
- rollback.pointee = true
- //print(error)
- }
- })
- }, onError: { error in
- })
- } else {
- showLink()
- }
- }
- }
-
- if (reffChat != "") {
- let data = queryMessageReply(message_id: reffChat)
- if data.count != 0 {
- topMarginText.constant = topMarginText.constant + 55
-
- let containerReply = UIView()
- containerMessage.addSubview(containerReply)
- containerReply.translatesAutoresizingMaskIntoConstraints = false
- containerReply.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true
- containerReply.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 32).isActive = true
- if thumbChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String != "1") {
- containerReply.bottomAnchor.constraint(equalTo: imageThumb.topAnchor, constant: -5).isActive = true
- } else if fileChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String != "1") {
- containerReply.bottomAnchor.constraint(equalTo: containerViewFile.topAnchor, constant: -5).isActive = true
- } else if containerMessage.subviews.contains(containerLinkMessage) {
- containerReply.bottomAnchor.constraint(equalTo: containerLinkMessage.topAnchor, constant: -5).isActive = true
- } else if dataMessages[indexPath.row]["attachment_flag"] as? String == "11" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String != "1") {
- containerReply.bottomAnchor.constraint(equalTo: imageSticker.topAnchor, constant: -5).isActive = true
- } else {
- containerReply.bottomAnchor.constraint(equalTo: messageText.topAnchor, constant: -5).isActive = true
- }
- containerReply.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true
- containerReply.heightAnchor.constraint(equalToConstant: 50).isActive = true
- containerReply.backgroundColor = .black.withAlphaComponent(0.2)
- containerReply.layer.cornerRadius = 5
- containerReply.clipsToBounds = true
-
- let leftReply = UIView()
- containerReply.addSubview(leftReply)
- leftReply.translatesAutoresizingMaskIntoConstraints = false
- leftReply.leadingAnchor.constraint(equalTo: containerReply.leadingAnchor).isActive = true
- leftReply.topAnchor.constraint(equalTo: containerReply.topAnchor).isActive = true
- leftReply.bottomAnchor.constraint(equalTo: containerReply.bottomAnchor).isActive = true
- leftReply.widthAnchor.constraint(equalToConstant: 3).isActive = true
- leftReply.layer.cornerRadius = 5
- leftReply.clipsToBounds = true
- leftReply.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMinXMinYCorner]
-
- let titleReply = UILabel()
- containerReply.addSubview(titleReply)
- titleReply.translatesAutoresizingMaskIntoConstraints = false
- titleReply.leadingAnchor.constraint(equalTo: leftReply.leadingAnchor, constant: 10).isActive = true
- titleReply.topAnchor.constraint(equalTo: containerReply.topAnchor, constant: 10).isActive = true
- titleReply.trailingAnchor.constraint(lessThanOrEqualTo: containerReply.trailingAnchor, constant: -20).isActive = true
- titleReply.font = UIFont.systemFont(ofSize: 12).bold
- if (data["f_pin"] as? String == idMe) {
- titleReply.text = "You".localized()
- if dataMessages[indexPath.row]["f_pin"] as? String == idMe {
- titleReply.textColor = .white
- leftReply.backgroundColor = .white
- } else {
- titleReply.textColor = .mainColor
- leftReply.backgroundColor = .mainColor
- }
- } else {
- if data["f_pin"] as? String != "-999" {
- let dataProfile = getDataProfile(f_pin: data["f_pin"] as! String, message_id: data["message_id"] as! String)
- titleReply.text = dataProfile["name"]
- } else {
- titleReply.text = "Bot"
- }
- if dataMessages[indexPath.row]["f_pin"] as? String == idMe {
- titleReply.textColor = .white
- leftReply.backgroundColor = .white
- } else {
- titleReply.textColor = .mainColor
- leftReply.backgroundColor = .mainColor
- }
- }
-
- let contentReply = UILabel()
- containerReply.addSubview(contentReply)
- contentReply.translatesAutoresizingMaskIntoConstraints = false
- contentReply.leadingAnchor.constraint(equalTo: leftReply.leadingAnchor, constant: 10).isActive = true
- contentReply.bottomAnchor.constraint(equalTo: containerReply.bottomAnchor, constant: -10).isActive = true
- contentReply.font = UIFont.systemFont(ofSize: 10)
- let message_text = data["message_text"] as? String ?? ""
- let attachment_flag = data["attachment_flag"] as? String ?? ""
- let thumb_chat = data["thumb_id"] as? String ?? ""
- let image_chat = data["image_id"] as? String ?? ""
- let video_chat = data["video_id"] as? String ?? ""
- let file_chat = data["file_id"] as? String ?? ""
- if (attachment_flag == "0" && thumb_chat == "") {
- contentReply.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -20).isActive = true
- contentReply.attributedText = message_text.richText(group_id: self.dataGroup["group_id"] as! String)
- } else if (attachment_flag == "1" || image_chat != "") {
- if (message_text == "") {
- contentReply.text = "📷 Photo".localized()
- } else {
- contentReply.attributedText = message_text.richText(group_id: self.dataGroup["group_id"] as! String)
- }
- } else if (attachment_flag == "2" || video_chat != "") {
- if (message_text == "") {
- contentReply.text = "📹 Video".localized()
- } else {
- contentReply.attributedText = message_text.richText(group_id: self.dataGroup["group_id"] as! String)
- }
- } else if (attachment_flag == "6" || file_chat != ""){
- contentReply.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -20).isActive = true
- contentReply.text = "📄 \(message_text.components(separatedBy: "|")[0])"
- } else if (attachment_flag == "11") {
- contentReply.text = "❤️ Sticker"
- } else if attachment_flag == "27" {
- contentReply.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -20).isActive = true
- contentReply.text = "📄 " + "Live Streaming".localized()
- } else if attachment_flag == "26" {
- contentReply.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -20).isActive = true
- contentReply.text = "📄 " + "Seminar".localized()
- }
- contentReply.textColor = .white.withAlphaComponent(0.8)
-
- if (attachment_flag == "1" || attachment_flag == "2" || image_chat != "" || video_chat != "") {
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let thumbURL = URL(fileURLWithPath: dirPath).appendingPathComponent(thumb_chat)
- let image : UIImage? = {
- if let img = DigiX.imageCache.object(forKey: thumb_chat as NSString) {
- return img
- }
- else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) {
- DigiX.imageCache.setObject(img, forKey: thumb_chat as NSString)
- return img
- }
- return nil
- }()
- // let image = UIGraphicsRenderer.renderImageAt(url: thumbURL as NSURL, size: CGSize(width: 250, height: 250))
- let imageThumb = UIImageView(image: image)
- containerReply.addSubview(imageThumb)
- imageThumb.layer.cornerRadius = 2.0
- imageThumb.clipsToBounds = true
- imageThumb.contentMode = .scaleAspectFill
- imageThumb.translatesAutoresizingMaskIntoConstraints = false
- imageThumb.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -10).isActive = true
- imageThumb.centerYAnchor.constraint(equalTo: containerReply.centerYAnchor).isActive = true
- imageThumb.widthAnchor.constraint(equalToConstant: 30).isActive = true
- imageThumb.heightAnchor.constraint(equalToConstant: 30).isActive = true
-
- if (attachment_flag == "2") {
- let imagePlay = UIImageView(image: UIImage(systemName: "play.circle.fill"))
- imageThumb.addSubview(imagePlay)
- imagePlay.clipsToBounds = true
- imagePlay.translatesAutoresizingMaskIntoConstraints = false
- imagePlay.centerYAnchor.constraint(equalTo: imageThumb.centerYAnchor).isActive = true
- imagePlay.centerXAnchor.constraint(equalTo: imageThumb.centerXAnchor).isActive = true
- imagePlay.widthAnchor.constraint(equalToConstant: 10).isActive = true
- imagePlay.heightAnchor.constraint(equalToConstant: 10).isActive = true
- imagePlay.tintColor = .white
- }
- titleReply.trailingAnchor.constraint(equalTo: imageThumb.leadingAnchor, constant: -20).isActive = true
- contentReply.trailingAnchor.constraint(equalTo: imageThumb.leadingAnchor, constant: -20).isActive = true
- }
- }
- if (attachment_flag == "11") {
- let imageSticker = UIImageView(image: UIImage(named: (message_text.components(separatedBy: "/")[1]), in: Bundle.resourceBundle(for: DigiX.self), with: nil))
- containerReply.addSubview(imageSticker)
- imageSticker.layer.cornerRadius = 2.0
- imageSticker.clipsToBounds = true
- imageSticker.translatesAutoresizingMaskIntoConstraints = false
- imageSticker.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -10).isActive = true
- imageSticker.centerYAnchor.constraint(equalTo: containerReply.centerYAnchor).isActive = true
- imageSticker.widthAnchor.constraint(equalToConstant: 30).isActive = true
- imageSticker.heightAnchor.constraint(equalToConstant: 30).isActive = true
- titleReply.trailingAnchor.constraint(equalTo: imageSticker.leadingAnchor, constant: -20).isActive = true
- contentReply.trailingAnchor.constraint(equalTo: imageSticker.leadingAnchor, constant: -20).isActive = true
- }
-
- if !copySession && !forwardSession && !deleteSession {
- let objectTap = ObjectGesture(target: self, action: #selector(contentMessageTapped(_:)))
- containerReply.addGestureRecognizer(objectTap)
- objectTap.indexPath = indexPath
- objectTap.message_id = data["message_id"] as! String
- }
- }
- }
-
- return cellMessage
- }
-
- @objc func imageGroupingTapped(_ sender: ObjectGesture) {
- let listGroupingImages = ListGroupImages()
- listGroupingImages.imageTapped = sender.indexImageTapped
- listGroupingImages.listGroupingImages = sender.listImageFromGrouping
- listGroupingImages.titleName = titleText
- listGroupingImages.isInitiator = sender.isInitiator
- listGroupingImages.isPersonal = false
- listGroupingImages.updateEditor = { [self] updatedData, replyData, isUpdateDelete in
- if replyData.count == 0 {
- if updatedData.count != 0 && !isUpdateDelete {
- groupImages[sender.listImageFromGrouping[0].messageId] = updatedData
- } else if updatedData.count > 0 {
- let deletedForEveryoneData = updatedData.filter({ $0.dataMessage["lock"] as? String == "1" })
- if deletedForEveryoneData.count != 0 {
- if groupImages[sender.listImageFromGrouping[0].messageId] != nil {
- var dataWillEmpty = updatedData
- while dataWillEmpty.count > 0 {
- if let lastIdx = dataWillEmpty.lastIndex(where: { $0.dataMessage["lock"] as? String == "1" }) {
- if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == sender.listImageFromGrouping[0].messageId }) {
- if dataWillEmpty[lastIdx].messageId == sender.listImageFromGrouping[0].messageId {
- self.dataMessages.remove(at: idx)
- self.dataMessages.insert(dataWillEmpty[lastIdx].dataMessage, at: idx)
- } else {
- self.dataMessages.insert(dataWillEmpty[lastIdx].dataMessage, at: idx + 1)
- }
- let subData = Array(updatedData[lastIdx+1..<dataWillEmpty.count])
- if subData.count >= 4 {
- groupImages[subData[0].messageId] = subData
- self.dataMessages.insert(subData[0].dataMessage, at: lastIdx + 1)
- } else {
- if subData.count > 0 {
- self.dataMessages.insert(contentsOf: subData.map({ $0.dataMessage }), at: idx + (dataWillEmpty[lastIdx].messageId == sender.listImageFromGrouping[0].messageId ? 1 : 2))
- }
- }
- }
- dataWillEmpty.removeSubrange(lastIdx..<dataWillEmpty.count)
- } else if dataWillEmpty.count >= 4 {
- groupImages[dataWillEmpty[0].messageId] = dataWillEmpty
- dataWillEmpty.removeAll()
- } else {
- if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == sender.listImageFromGrouping[0].messageId }) {
- self.dataMessages.remove(at: idx)
- self.dataMessages.insert(contentsOf: dataWillEmpty.map({ $0.dataMessage }), at: idx)
- groupImages.removeValue(forKey: sender.listImageFromGrouping[0].messageId)
- }
- dataWillEmpty.removeAll()
- }
- }
- } else {
-
- }
- } else {
- if updatedData.count >= 4 {
- if updatedData[0].messageId == sender.listImageFromGrouping[0].messageId {
- groupImages[sender.listImageFromGrouping[0].messageId] = updatedData
- } else {
- if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == sender.listImageFromGrouping[0].messageId }) {
- self.dataMessages.remove(at: idx)
- self.dataMessages.insert(updatedData[0].dataMessage, at: idx)
- groupImages.removeValue(forKey: sender.listImageFromGrouping[0].messageId)
- groupImages[updatedData[0].messageId] = updatedData
- }
- }
- } else {
- if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == sender.listImageFromGrouping[0].messageId }) {
- groupImages.removeValue(forKey: sender.listImageFromGrouping[0].messageId)
- self.dataMessages.remove(at: idx)
- let dataMessageInGrouping = updatedData.map({ $0.dataMessage })
- self.dataMessages.insert(contentsOf: dataMessageInGrouping, at: idx)
- }
- }
- }
- } else {
- groupImages.removeValue(forKey: sender.listImageFromGrouping[0].messageId)
- if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == sender.listImageFromGrouping[0].messageId }) {
- self.dataMessages.remove(at: idx)
- }
- }
- DispatchQueue.main.async { [self] in
- tableChatView.reloadData()
- }
- } else if replyData.count != 0 {
- handleReply(indexPath: IndexPath(row: 0, section: 0), dataMessagesImage: replyData)
- }
- }
- self.navigationController?.pushViewController(listGroupingImages, animated: true)
- }
-
- @objc func tapAck(_ sender: ObjectGesture) {
- let indexPath = sender.indexPath
- let dataMessages = self.dataMessages.filter({ $0["chat_date"] as! String == dataDates[indexPath.section]})
- if dataMessages[indexPath.row]["status"] as! String == "8" {
- return
- }
- if !CheckConnection.isConnectedToNetwork() || API.nGetCLXConnState() == 0 {
- let imageView = UIImageView(image: UIImage(systemName: "xmark.circle.fill"))
- imageView.tintColor = .white
- let banner = FloatingNotificationBanner(title: "Check your connection".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .danger, colors: nil, iconPosition: .center)
- banner.show()
- return
- }
- DispatchQueue.global().async {
- var opposite_pin = self.dataGroup["group_id"] as! String
- if (self.dataTopic["chat_id"] as! String != "") {
- opposite_pin = self.dataTopic["chat_id"] as! String
- }
- let result = DigiX.write(message: CoreMessage_TMessageBank.getAckLocationMessage(f_pin: dataMessages[indexPath.row]["f_pin"] as! String, message_id: dataMessages[indexPath.row]["message_id"] as! String, l_pin: opposite_pin, server_date: "\(Date().currentTimeMillis())", message_scope_id: dataMessages[indexPath.row]["message_scope_id"] as! String, longitude: "", latitude: "", description: ""))
- if result != nil {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [
- "status" : "8"
- ], _where: "message_id = '\(dataMessages[indexPath.row]["message_id"] as! String)'")
- })
- DispatchQueue.main.async {
- if let index = self.dataMessages.firstIndex(where: {$0["message_id"] as? String == dataMessages[indexPath.row]["message_id"] as? String}) {
- self.dataMessages[index]["status"] = "8"
- let section = self.dataDates.firstIndex(of: self.dataMessages[index]["chat_date"] as! String)
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataDates[section!]}).firstIndex(where: { $0["message_id"] as! String == self.dataMessages[index]["message_id"] as! String})
- if row != nil && section != nil {
- self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none)
- }
- self.showToast(message: "Confirmation Success.".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)
- }
- }
- }
- }
- }
-
- @objc func contentMessageTapped(_ sender: ObjectGesture) {
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if (sender.image_id != "") {
- if let dirPath = paths.first {
- let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.image_id)
- if FileManager.default.fileExists(atPath: imageURL.path) {
- let image = UIImage(contentsOfFile: imageURL.path)
- let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: DigiX.self))
- previewImageVC.image = image
- previewImageVC.isHiddenTextField = true
- previewImageVC.modalPresentationStyle = .custom
- previewImageVC.modalTransitionStyle = .crossDissolve
- self.present(previewImageVC, animated: true, completion: nil)
- } else {
- for view in sender.imageView.subviews {
- if view is UIImageView {
- view.removeFromSuperview()
- }
- }
- let activityIndicator = UIActivityIndicatorView(style: .large)
- activityIndicator.color = .mainColor
- activityIndicator.hidesWhenStopped = true
- activityIndicator.center = CGPoint(x:sender.imageView.frame.width/2,
- y: sender.imageView.frame.height/2)
- activityIndicator.startAnimating()
- sender.imageView.addSubview(activityIndicator)
- Download().startHTTP(forKey: sender.image_id) { (name, progress) in
- guard progress == 100 else {
- return
- }
-
- let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.image_id)
- let image = UIImage(contentsOfFile: imageURL.path)
- let save = UserDefaults.standard.bool(forKey: "saveToGallery")
- if save {
- UIImageWriteToSavedPhotosAlbum(image!, nil, nil, nil)
- }
-
- DispatchQueue.main.async {
- activityIndicator.stopAnimating()
- self.tableChatView.reloadRows(at: [sender.indexPath], with: .none)
- }
- }
- }
- }
- } else if (sender.video_id != "") {
- if let dirPath = paths.first {
- let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.video_id)
- if FileManager.default.fileExists(atPath: videoURL.path) {
- let player = AVPlayer(url: videoURL as URL)
- let playerVC = AVPlayerViewController()
- playerVC.modalPresentationStyle = .custom
- playerVC.player = player
- self.present(playerVC, animated: true, completion: nil)
- } else {
- for view in sender.imageView.subviews {
- if view is UIImageView {
- view.removeFromSuperview()
- }
- }
- let container = UIView()
- sender.imageView.addSubview(container)
- container.translatesAutoresizingMaskIntoConstraints = false
- container.centerXAnchor.constraint(equalTo: sender.imageView.centerXAnchor).isActive = true
- container.centerYAnchor.constraint(equalTo: sender.imageView.centerYAnchor).isActive = true
- container.widthAnchor.constraint(equalToConstant: 50).isActive = true
- container.heightAnchor.constraint(equalToConstant: 50).isActive = true
- let circlePath = UIBezierPath(arcCenter: CGPoint(x: 25, y: 25), radius: 20, startAngle: -(.pi / 2), endAngle: .pi * 2, clockwise: true)
- let trackShape = CAShapeLayer()
- trackShape.path = circlePath.cgPath
- trackShape.fillColor = UIColor.clear.cgColor
- trackShape.lineWidth = 10
- trackShape.strokeColor = UIColor.blueBubbleColor.withAlphaComponent(0.3).cgColor
- container.backgroundColor = .clear
- container.layer.addSublayer(trackShape)
- let shapeLoading = CAShapeLayer()
- shapeLoading.path = circlePath.cgPath
- shapeLoading.fillColor = UIColor.clear.cgColor
- shapeLoading.lineWidth = 10
- shapeLoading.strokeEnd = 0
- shapeLoading.strokeColor = UIColor.blueBubbleColor.cgColor
- container.layer.addSublayer(shapeLoading)
- let imageDownload = UIImageView(image: UIImage(systemName: "arrow.down", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default)))
- imageDownload.tintColor = .white
- container.addSubview(imageDownload)
- imageDownload.translatesAutoresizingMaskIntoConstraints = false
- imageDownload.centerXAnchor.constraint(equalTo: sender.imageView.centerXAnchor).isActive = true
- imageDownload.centerYAnchor.constraint(equalTo: sender.imageView.centerYAnchor).isActive = true
- imageDownload.widthAnchor.constraint(equalToConstant: 30).isActive = true
- imageDownload.heightAnchor.constraint(equalToConstant: 30).isActive = true
- Download().startHTTP(forKey: sender.video_id) { (name, progress) in
- DispatchQueue.main.async {
- guard progress == 100 else {
- shapeLoading.strokeEnd = CGFloat(progress / 100)
- return
- }
- let save = UserDefaults.standard.bool(forKey: "saveToGallery")
- if save {
- let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.video_id)
- PHPhotoLibrary.shared().performChanges({
- PHAssetChangeRequest.creationRequestForAssetFromVideo(atFileURL: videoURL)
- }) { saved, error in
-
- }
- }
- let idx = self.dataMessages.firstIndex(where: { $0["video_id"] as! String == sender.video_id})
- if idx != nil {
- self.dataMessages[idx!]["progress"] = progress
- self.tableChatView.reloadRows(at: [sender.indexPath], with: .none)
- }
- }
- }
- }
- }
- } else if (sender.file_id != "") {
- if let dirPath = paths.first {
- let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.file_id)
- if FileManager.default.fileExists(atPath: fileURL.path) {
- self.previewItem = fileURL as NSURL
- let previewController = QLPreviewController()
- let rightBarButton = UIBarButtonItem()
- previewController.navigationItem.rightBarButtonItem = rightBarButton
- previewController.dataSource = self
- previewController.modalPresentationStyle = .custom
-
- self.present(previewController, animated: true)
- } else {
- for view in sender.containerFile.subviews {
- if !(view is UIImageView) && !(view is UILabel) {
- view.removeFromSuperview()
- }
- }
- let containerLoading = UIView()
- sender.containerFile.addSubview(containerLoading)
- containerLoading.translatesAutoresizingMaskIntoConstraints = false
- containerLoading.centerYAnchor.constraint(equalTo: sender.containerFile.centerYAnchor).isActive = true
- containerLoading.leadingAnchor.constraint(equalTo: sender.labelFile.trailingAnchor, constant: 5).isActive = true
- containerLoading.trailingAnchor.constraint(equalTo: sender.containerFile.trailingAnchor, constant: -5).isActive = true
- containerLoading.widthAnchor.constraint(equalToConstant: 30).isActive = true
- containerLoading.heightAnchor.constraint(equalToConstant: 30).isActive = true
- let circlePath = UIBezierPath(arcCenter: CGPoint(x: 15, y: 15), radius: 10, startAngle: -(.pi / 2), endAngle: .pi * 2, clockwise: true)
- let trackShape = CAShapeLayer()
- trackShape.path = circlePath.cgPath
- trackShape.fillColor = UIColor.clear.cgColor
- trackShape.lineWidth = 5
- trackShape.strokeColor = UIColor.blueBubbleColor.withAlphaComponent(0.3).cgColor
- containerLoading.layer.addSublayer(trackShape)
- let shapeLoading = CAShapeLayer()
- shapeLoading.path = circlePath.cgPath
- shapeLoading.fillColor = UIColor.clear.cgColor
- shapeLoading.lineWidth = 3
- shapeLoading.strokeEnd = 0
- shapeLoading.strokeColor = UIColor.blueBubbleColor.cgColor
- containerLoading.layer.addSublayer(shapeLoading)
- let imageupload = UIImageView(image: UIImage(systemName: "arrow.down", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default)))
- imageupload.tintColor = .white
- containerLoading.addSubview(imageupload)
- imageupload.translatesAutoresizingMaskIntoConstraints = false
- imageupload.centerYAnchor.constraint(equalTo: containerLoading.centerYAnchor).isActive = true
- imageupload.centerXAnchor.constraint(equalTo: containerLoading.centerXAnchor).isActive = true
-
- Download().startHTTP(forKey: sender.file_id) { (name, progress) in
- DispatchQueue.main.async {
- guard progress == 100 else {
- shapeLoading.strokeEnd = CGFloat(progress / 100)
- return
- }
- let idx = self.dataMessages.firstIndex(where: { $0["file_id"] as! String == sender.file_id})
- if idx != nil {
- self.dataMessages[idx!]["progress"] = progress
- self.tableChatView.reloadRows(at: [sender.indexPath], with: .none)
- }
- }
- }
- }
- }
- } else {
- DispatchQueue.main.async {
- let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as! String == sender.message_id})
- if idx == nil {
- return
- }
- let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as! String)
- if section == nil {
- return
- }
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataDates[section!]}).firstIndex(where: { $0["message_id"] as! String == self.dataMessages[idx!]["message_id"] as! String})
- if row == nil {
- return
- }
- let indexPath = IndexPath(row: row!, section: section!)
- self.tableChatView.scrollToRow(at: indexPath, at: .middle, animated: true)
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
- if let cell = self.tableChatView.cellForRow(at: indexPath) {
- let containerMessage = cell.contentView.subviews[1]
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- if (self.dataMessages[idx!]["f_pin"] as? String == idMe) {
- containerMessage.backgroundColor = .blueBubbleColor.withAlphaComponent(0.3)
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
- if (self.dataMessages[idx!]["attachment_flag"] as? String == "11") {
- containerMessage.backgroundColor = .clear
- } else {
- containerMessage.backgroundColor = .blueBubbleColor
- }
- }
- } else {
- containerMessage.backgroundColor = .grayColor.withAlphaComponent(0.3)
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
- if (self.dataMessages[idx!]["attachment_flag"] as? String == "11") {
- containerMessage.backgroundColor = .clear
- } else {
- containerMessage.backgroundColor = .grayColor
- }
- }
- }
- }
- }
- }
- }
- }
-
- @objc func handleLongPressLink(_ gestureRecognizer: UILongPressGestureRecognizer) {
- func showMenuContext() {
- if gestureRecognizer.state == .cancelled || gestureRecognizer.state == .ended{
- timerCheckLink?.invalidate()
- } else if gestureRecognizer.state == .began {
- timerCheckLink = Timer.scheduledTimer(withTimeInterval: 0.2, repeats: false, block: {_ in
- let interaction = UIContextMenuInteraction(delegate: self)
- gestureRecognizer.view!.addInteraction(interaction)
- guard let interaction = gestureRecognizer.view!.interactions.first,
- let data = Data(base64Encoded: "X3ByZXNlbnRNZW51QXRMb2NhdGlvbjo="),
- let str = String(data: data, encoding: .utf8)
- else {
- return
- }
- let selector = NSSelectorFromString(str)
- guard interaction.responds(to: selector) else {
- return
- }
- let impactHeavy = UIImpactFeedbackGenerator(style: .heavy)
- impactHeavy.impactOccurred()
- interaction.perform(selector, with: self.view)
- self.showMenuContext = true
- })
- }
- }
- if gestureRecognizer.state == .began {
- let touchPoint = gestureRecognizer.location(in: self.view)
- touchedSubview = self.view.hitTest(touchPoint, with: nil) ?? UIView()
- if !(touchedSubview is UILabel) {
- showMenuContext()
- }
- }
- guard let label = touchedSubview as? UILabel else { return }
- let touchPointLabel = gestureRecognizer.location(in: label)
- if let text = label.text, let range = getWordRange(at: touchPointLabel, in: label) {
- let word = String(text[range])
- if word.starts(with: "www.") || word.starts(with: "https://") || word.starts(with: "http://") {
- if gestureRecognizer.state == .cancelled || gestureRecognizer.state == .ended {
- timerCheckLink?.invalidate()
- if label.isHighlighted {
- var stringURl = word
- if stringURl.starts(with: "www.") {
- stringURl = "https://" + stringURl.replacingOccurrences(of: "www.", with: "")
- }
- guard let url = URL(string: stringURl) else { return }
- UIApplication.shared.open(url)
- label.attributedText = removeHighlightedText(for: text, in: range, label: label)
- }
- } else if gestureRecognizer.state == .began {
- label.attributedText = highlightedText(for: text, in: range, label: label)
- timerCheckLink = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: false, block: {_ in
- UIPasteboard.general.string = word
- self.showToast(message: "Link Copied".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self)
- label.attributedText = self.removeHighlightedText(for: text, in: range, label: label)
- })
- }
- } else {
- showMenuContext()
- }
- } else {
- showMenuContext()
- }
- }
-
- func getWordRange(at point: CGPoint, in label: UILabel) -> Range<String.Index>? {
- guard let text = label.text else { return nil }
-
- let layoutManager = NSLayoutManager()
- let textContainer = NSTextContainer(size: .zero)
- let textStorage = NSTextStorage(attributedString: label.attributedText ?? NSAttributedString())
-
- layoutManager.addTextContainer(textContainer)
- textStorage.addLayoutManager(layoutManager)
-
- textContainer.lineFragmentPadding = 0.0
- textContainer.lineBreakMode = label.lineBreakMode
- textContainer.maximumNumberOfLines = label.numberOfLines
- textContainer.size = label.bounds.size
-
- let characterIndex = layoutManager.characterIndex(for: point, in: textContainer, fractionOfDistanceBetweenInsertionPoints: nil)
-
- if characterIndex == text.count - 1 {
- return nil
- }
- var wordStartIndex = characterIndex
- while wordStartIndex > 0 && text[text.index(text.startIndex, offsetBy: wordStartIndex - 1)] != " " && text[text.index(text.startIndex, offsetBy: wordStartIndex - 1)] != "\n" {
- wordStartIndex -= 1
- }
-
- var wordEndIndex = characterIndex
- while wordEndIndex < text.count && text[text.index(text.startIndex, offsetBy: wordEndIndex)] != " " && text[text.index(text.startIndex, offsetBy: wordEndIndex)] != "\n" {
- wordEndIndex += 1
- }
-
- return text.index(text.startIndex, offsetBy: wordStartIndex)..<text.index(text.startIndex, offsetBy: wordEndIndex)
- }
- func highlightedText(for text: String, in range: Range<String.Index>, label: UILabel) -> NSAttributedString {
- let mutableAttributedString = label.attributedText!.mutableCopy() as! NSMutableAttributedString
- mutableAttributedString.addAttribute(.backgroundColor, value: UIColor.lightGray.withAlphaComponent(0.5), range: NSRange(range, in: text))
- label.isHighlighted = true
- return mutableAttributedString
- }
-
- func removeHighlightedText(for text: String, in range: Range<String.Index>, label: UILabel) -> NSAttributedString {
- let mutableAttributedString = label.attributedText!.mutableCopy() as! NSMutableAttributedString
- mutableAttributedString.removeAttribute(.backgroundColor, range: NSRange(range, in: text))
- label.isHighlighted = false
- return mutableAttributedString
- }
-
- @objc func tapMessageText(_ sender: ObjectGesture) {
- var stringURl = sender.message_id
- if stringURl.lowercased().starts(with: "www.") {
- stringURl = "https://" + stringURl.replacingOccurrences(of: "www.", with: "")
- }
- guard let url = URL(string: stringURl) else { return }
- UIApplication.shared.open(url)
- }
-
- // public func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
- // if copySession || forwardSession || deleteSession {
- // return nil
- // }
- // let idMe = UserDefaults.standard.string(forKey: "me") as String?
- // if (dataMessages[indexPath.row]["f_pin"] as? String != idMe) {
- // return nil
- // }
- // let messageInfoVC = MessageInfo()
- // self.navigationController?.show(messageInfoVC, sender: nil)
- // return UISwipeActionsConfiguration()
- // }
- //
- // public func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
- // if copySession || forwardSession || deleteSession {
- // return nil
- // }
- // let action = UIContextualAction(style: .normal,
- // title: "") { [weak self] (action, view, completionHandler) in
- // self?.handleReply(indexPath: indexPath)
- // completionHandler(true)
- // }
- // action.backgroundColor = .white
- // action.image = UIImage(systemName: "arrowshape.turn.up.left.fill")?.withTintColor(.black, renderingMode: .alwaysOriginal)
- // return UISwipeActionsConfiguration(actions: [action])
- // }
-
- private func handleReply(indexPath: IndexPath, dataMessagesImage: [String: Any?] = [:], reffId: String = "") {
- var dataMessages = self.dataMessages.filter({ $0["chat_date"] as! String == dataDates[indexPath.section]})
- if reffId.isEmpty {
- self.deleteReplyView()
- if dataMessagesImage.count != 0 {
- dataMessages = [dataMessagesImage]
- } else {
- self.textFieldSend.becomeFirstResponder()
- }
- self.reffId = dataMessages[indexPath.row]["message_id"] as? String
- } else {
- dataMessages = self.dataMessages.filter({ $0["message_id"] as! String == reffId })
- self.reffId = reffId
- }
- UIView.animate(withDuration: 0.25, delay: 0.0, options: .curveEaseInOut, animations: {
- self.constraintTopTextField.constant = self.constraintTopTextField.constant + 50
- if self.contraintBottomMention.constant > 0 {
- self.contraintBottomMention.constant = self.contraintBottomMention.constant + 50
- }
- }, completion: nil)
- if (self.currentIndexpath != nil) {
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.25) {
- self.tableChatView.scrollToRow(at: IndexPath(row: self.currentIndexpath!.row, section: self.currentIndexpath!.section), at: .none, animated: false)
- }
- } else {
- self.tableChatView.scrollToBottom()
- }
-
- self.viewTextfield.addSubview(self.containerPreviewReply)
- self.containerPreviewReply.translatesAutoresizingMaskIntoConstraints = false
- self.containerPreviewReply.leadingAnchor.constraint(equalTo: self.viewTextfield.leadingAnchor).isActive = true
- self.containerPreviewReply.topAnchor.constraint(equalTo: self.viewTextfield.topAnchor).isActive = true
- if !self.containerLink.isDescendant(of: self.viewTextfield) {
- self.bottomAnchorPreviewReply = self.containerPreviewReply.bottomAnchor.constraint(equalTo: self.textFieldSend.topAnchor)
- } else {
- self.bottomAnchorPreviewReply = self.containerPreviewReply.bottomAnchor.constraint(equalTo: self.containerLink.topAnchor)
- }
- self.bottomAnchorPreviewReply.isActive = true
- self.containerPreviewReply.trailingAnchor.constraint(equalTo: self.viewTextfield.trailingAnchor).isActive = true
- self.containerPreviewReply.backgroundColor = .secondaryColor
-
- let leftReply = UIView()
- self.containerPreviewReply.addSubview(leftReply)
- leftReply.translatesAutoresizingMaskIntoConstraints = false
- leftReply.leadingAnchor.constraint(equalTo: self.viewTextfield.leadingAnchor).isActive = true
- leftReply.topAnchor.constraint(equalTo: self.containerPreviewReply.topAnchor).isActive = true
- leftReply.bottomAnchor.constraint(equalTo: self.containerPreviewReply.bottomAnchor).isActive = true
- leftReply.widthAnchor.constraint(equalToConstant: 3).isActive = true
- leftReply.backgroundColor = .orangeColor
-
- let titleReply = UILabel()
- self.containerPreviewReply.addSubview(titleReply)
- titleReply.translatesAutoresizingMaskIntoConstraints = false
- titleReply.leadingAnchor.constraint(equalTo: leftReply.leadingAnchor, constant: 10).isActive = true
- titleReply.topAnchor.constraint(equalTo: self.containerPreviewReply.topAnchor, constant: 10).isActive = true
- titleReply.font = UIFont.systemFont(ofSize: 12).bold
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- if (dataMessages[indexPath.row]["f_pin"] as? String == idMe) {
- titleReply.text = "You".localized()
- } else {
- if dataMessages[indexPath.row]["f_pin"] as? String != "-999" {
- let dataPerson = self.getDataProfile(f_pin: dataMessages[indexPath.row]["f_pin"] as! String, message_id: dataMessages[indexPath.row]["message_id"] as! String)
- titleReply.text = dataPerson["name"]
- } else {
- titleReply.text = "Bot"
- }
- }
- titleReply.textColor = .orangeColor
-
- let contentReply = UILabel()
- self.containerPreviewReply.addSubview(contentReply)
- contentReply.translatesAutoresizingMaskIntoConstraints = false
- contentReply.leadingAnchor.constraint(equalTo: leftReply.leadingAnchor, constant: 10).isActive = true
- contentReply.topAnchor.constraint(equalTo: titleReply.bottomAnchor).isActive = true
- contentReply.font = UIFont.systemFont(ofSize: 10)
- let message_text = dataMessages[indexPath.row]["message_text"] as! String
- let attachment_flag = dataMessages[indexPath.row]["attachment_flag"] as! String
- let thumb_chat = dataMessages[indexPath.row]["thumb_id"] as! String
- let image_chat = dataMessages[indexPath.row]["image_id"] as! String
- let video_chat = dataMessages[indexPath.row]["video_id"] as! String
- let file_chat = dataMessages[indexPath.row]["file_id"] as! String
- if (attachment_flag == "0" && thumb_chat == "") {
- contentReply.attributedText = message_text.richText(group_id: self.dataGroup["group_id"] as! String)
- } else if (attachment_flag == "1" || image_chat != "") {
- if (message_text == "") {
- contentReply.text = "📷 Photo".localized()
- } else {
- contentReply.attributedText = message_text.richText(group_id: self.dataGroup["group_id"] as! String)
- }
- } else if (attachment_flag == "2" || video_chat != "") {
- if (message_text == "") {
- contentReply.text = "📹 Video".localized()
- } else {
- contentReply.attributedText = message_text.richText(group_id: self.dataGroup["group_id"] as! String)
- }
- } else if (attachment_flag == "6" || file_chat != ""){
- contentReply.text = "📄 \(message_text.components(separatedBy: "|")[0])"
- } else if (attachment_flag == "11") {
- contentReply.text = "❤️ Sticker"
- } else if attachment_flag == "27" {
- contentReply.text = "📄 " + "Live Streaming".localized()
- } else if attachment_flag == "26" {
- contentReply.text = "📄 " + "Seminar".localized()
- }
- contentReply.textColor = .gray
-
- let buttonCancelReply = UIButton(type: .custom)
- self.containerPreviewReply.addSubview(buttonCancelReply)
- buttonCancelReply.translatesAutoresizingMaskIntoConstraints = false
- buttonCancelReply.trailingAnchor.constraint(equalTo: self.containerPreviewReply.trailingAnchor, constant: -10).isActive = true
- buttonCancelReply.centerYAnchor.constraint(equalTo: self.containerPreviewReply.centerYAnchor).isActive = true
- buttonCancelReply.setImage(UIImage(systemName: "xmark.circle" , withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .regular, scale: .default)), for: .normal)
- buttonCancelReply.addTarget(nil, action: #selector(self.deleteReplyView), for: .touchUpInside)
- buttonCancelReply.backgroundColor = .clear
- buttonCancelReply.tintColor = .mainColor
-
- if (attachment_flag == "1" || attachment_flag == "2" || image_chat != "" || video_chat != "") {
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if let dirPath = paths.first {
- let thumbURL = URL(fileURLWithPath: dirPath).appendingPathComponent(thumb_chat)
- let image : UIImage? = {
- if let img = DigiX.imageCache.object(forKey: thumb_chat as NSString) {
- return img
- }
- else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) {
- DigiX.imageCache.setObject(img, forKey: thumb_chat as NSString)
- return img
- }
- return nil
- }()
- // let image = UIGraphicsRenderer.renderImageAt(url: thumbURL as NSURL, size: CGSize(width: 250, height: 250))
- let imageThumb = UIImageView(image: image)
- self.containerPreviewReply.addSubview(imageThumb)
- imageThumb.layer.cornerRadius = 2.0
- imageThumb.clipsToBounds = true
- imageThumb.translatesAutoresizingMaskIntoConstraints = false
- imageThumb.trailingAnchor.constraint(equalTo: buttonCancelReply.leadingAnchor, constant: -10).isActive = true
- imageThumb.centerYAnchor.constraint(equalTo: self.containerPreviewReply.centerYAnchor).isActive = true
- imageThumb.widthAnchor.constraint(equalToConstant: 30).isActive = true
- imageThumb.heightAnchor.constraint(equalToConstant: 30).isActive = true
-
- if (attachment_flag == "2") {
- let imagePlay = UIImageView(image: UIImage(systemName: "play.circle.fill"))
- imageThumb.addSubview(imagePlay)
- imagePlay.clipsToBounds = true
- imagePlay.translatesAutoresizingMaskIntoConstraints = false
- imagePlay.centerYAnchor.constraint(equalTo: imageThumb.centerYAnchor).isActive = true
- imagePlay.centerXAnchor.constraint(equalTo: imageThumb.centerXAnchor).isActive = true
- imagePlay.widthAnchor.constraint(equalToConstant: 10).isActive = true
- imagePlay.heightAnchor.constraint(equalToConstant: 10).isActive = true
- imagePlay.tintColor = .white
- }
- }
- }
- if (attachment_flag == "11") {
- let imageSticker = UIImageView(image: UIImage(named: (message_text.components(separatedBy: "/")[1]), in: Bundle.resourceBundle(for: DigiX.self), with: nil))
- self.containerPreviewReply.addSubview(imageSticker)
- imageSticker.layer.cornerRadius = 2.0
- imageSticker.clipsToBounds = true
- imageSticker.translatesAutoresizingMaskIntoConstraints = false
- imageSticker.trailingAnchor.constraint(equalTo: buttonCancelReply.leadingAnchor, constant: -10).isActive = true
- imageSticker.centerYAnchor.constraint(equalTo: self.containerPreviewReply.centerYAnchor).isActive = true
- imageSticker.widthAnchor.constraint(equalToConstant: 30).isActive = true
- imageSticker.heightAnchor.constraint(equalToConstant: 30).isActive = true
- }
- }
-
- func scrollToFirstSearchMessage(indexScroll: Int = 1) {
- if textSearch.count < 2 {
- return
- }
- var lastIndex = 0
- let messageTextForSearch: [[String: Any?]] = self.dataMessages.reversed()
- for idx in 0..<messageTextForSearch.count {
- if (messageTextForSearch[idx]["message_text"] as! String).lowercased().contains(textSearch) {
- lastIndex += 1
- if lastIndex < indexScroll {
- continue
- }
- lastScrollIdxSearch = lastIndex
- let section = self.dataDates.firstIndex(of: messageTextForSearch[idx]["chat_date"] as! String)
- if section == nil {
- return
- }
- let row = self.dataMessages.filter({ $0["chat_date"] as! String == self.dataDates[section!]}).firstIndex(where: { $0["message_id"] as! String == messageTextForSearch[idx]["message_id"] as! String})
- if row == nil {
- return
- }
- let indexPath = IndexPath(row: row!, section: section!)
- self.tableChatView.scrollToRow(at: indexPath, at: .middle, animated: true)
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
- if let cell = self.tableChatView.cellForRow(at: indexPath) {
- let containerMessage = cell.contentView.subviews[1]
- let idMe = UserDefaults.standard.string(forKey: "me") as String?
- if (messageTextForSearch[idx]["f_pin"] as? String == idMe) {
- containerMessage.backgroundColor = .blueBubbleColor.withAlphaComponent(0.3)
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
- if (messageTextForSearch[idx]["attachment_flag"] as? String == "11") {
- containerMessage.backgroundColor = .clear
- } else {
- containerMessage.backgroundColor = .blueBubbleColor
- }
- }
- } else {
- containerMessage.backgroundColor = .grayColor.withAlphaComponent(0.3)
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
- if (messageTextForSearch[idx]["attachment_flag"] as? String == "11") {
- containerMessage.backgroundColor = .clear
- } else {
- containerMessage.backgroundColor = .grayColor
- }
- }
- }
- }
- }
- titleSearchMatches.isHidden = false
- if countMatchesSearch != 0 {
- if countMatchesSearch > 1 {
- titleSearchMatches.text = "\(lastScrollIdxSearch) " + "of".localized() + " \(countMatchesSearch) " + "matches".localized()
- } else {
- titleSearchMatches.text = "\(countMatchesSearch) " + "matches".localized()
- }
- } else {
- titleSearchMatches.text = "Not found".localized()
- }
- if lastScrollIdxSearch == countMatchesSearch || countMatchesSearch == 0 {
- buttonUp.isEnabled = false
- buttonUp.tintColor = .gray
- } else {
- buttonUp.isEnabled = true
- buttonUp.tintColor = .mainColor
- }
- if countMatchesSearch == 0 || lastScrollIdxSearch == 1 || countMatchesSearch == 1 {
- buttonDown.isEnabled = false
- buttonDown.tintColor = .gray
- } else {
- buttonDown.isEnabled = true
- buttonDown.tintColor = .mainColor
- }
- break
- }
- }
- }
-
- public func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
- let indexPath = tableChatView.indexPathsForVisibleRows?.first
- if indexPath != nil {
- let headerRect = tableChatView.rectForHeader(inSection: indexPath!.section)
- let isPinned = headerRect.origin.y <= scrollView.contentOffset.y
- if listViewOnSection.count != 0 && listViewOnSection.count - 1 == indexPath!.section && indexPath!.row > 0 {
- let sect = listViewOnSection.count - 1 < currentIndexpath!.section ? listViewOnSection.count - 1 : currentIndexpath!.section
- let headerView = listViewOnSection[sect]
- headerView.isHidden = true
- }
- }
- }
-
- public func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
- if !decelerate {
- let indexPath = tableChatView.indexPathsForVisibleRows?.first
- if indexPath != nil {
- let headerRect = tableChatView.rectForHeader(inSection: indexPath!.section)
- let isPinned = headerRect.origin.y <= scrollView.contentOffset.y
- if listViewOnSection.count != 0 && listViewOnSection.count - 1 == indexPath!.section && isPinned {
- let sect = listViewOnSection.count - 1 < currentIndexpath!.section ? listViewOnSection.count - 1 : currentIndexpath!.section
- let headerView = listViewOnSection[sect]
- headerView.isHidden = true
- }
- }
- }
- }
- }
- extension EditorGroup: UISearchBarDelegate {
-
- public func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
- textSearch = searchText.trimmingCharacters(in: .whitespacesAndNewlines)
- countMatchesSearch = 0
- titleSearchMatches.isHidden = true
- tableChatView.reloadData()
- scrollToFirstSearchMessage()
- }
- }
|