mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
1 line
103 KiB
JSON
1 line
103 KiB
JSON
|
|
{"ast":null,"code":"import _asyncToGenerator from \"C:/Users/eudes.inacio/GabineteDigital/gabinete-digital-fo/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js\";\nimport { __decorate } from \"tslib\";\nimport __NG_CLI_RESOURCE__0 from \"./group-messages.page.html?ngResource\";\nimport __NG_CLI_RESOURCE__1 from \"./group-messages.page.scss?ngResource\";\nimport { Component, Input, Output, EventEmitter, ViewChild } from '@angular/core';\nimport { AnimationController, ModalController, PopoverController, Platform } from '@ionic/angular';\nimport { AlertService } from 'src/app/services/alert.service';\nimport { ChatService } from 'src/app/services/chat.service';\nimport { ChatPopoverPage } from 'src/app/shared/popover/chat-popover/chat-popover.page';\nimport { GroupContactsPage } from './group-contacts/group-contacts.page';\nimport { ChatOptionsPopoverPage } from '../../popover/chat-options-popover/chat-options-popover.page';\nimport { ChatOptionsFeaturesPage } from 'src/app/modals/chat-options-features/chat-options-features.page';\nimport { TimeService } from 'src/app/services/functions/time.service';\nimport { SearchPage } from 'src/app/pages/search/search.page';\nimport { FileService } from 'src/app/services/functions/file.service';\nimport { ViewDocumentPage } from 'src/app/modals/view-document/view-document.page';\nimport { ThemeService } from 'src/app/services/theme.service';\nimport { ViewEventPage } from 'src/app/modals/view-event/view-event.page';\nimport { Storage } from '@ionic/storage';\nimport { ChatSystemService } from 'src/app/services/chat/chat-system.service';\nimport { CameraService } from 'src/app/services/camera.service';\nimport { ToastService } from 'src/app/services/toast.service';\nimport { Camera, CameraResultType, CameraSource } from '@capacitor/camera';\nimport { VoiceRecorder } from 'capacitor-voice-recorder';\nimport { Filesystem, Directory } from '@capacitor/filesystem';\nimport { DomSanitizer } from '@angular/platform-browser';\nimport { File } from '@awesome-cordova-plugins/file/ngx';\nimport { FileOpener } from '@awesome-cordova-plugins/file-opener/ngx';\nimport { SessionStore } from 'src/app/store/session.service';\nimport { ViewMediaPage } from 'src/app/modals/view-media/view-media.page';\nimport { PermissionService } from 'src/app/services/permission.service';\nlet GroupMessagesPage = class GroupMessagesPage {\n constructor(ChatSystemService, modalController, popoverController, chatService, animationController, alertService, timeService, fileService, ThemeService, storage, CameraService, toastService, sanitiser, file, platform, fileOpener, p) {\n this.ChatSystemService = ChatSystemService;\n this.modalController = modalController;\n this.popoverController = popoverController;\n this.chatService = chatService;\n this.animationController = animationController;\n this.alertService = alertService;\n this.timeService = timeService;\n this.fileService = fileService;\n this.ThemeService = ThemeService;\n this.storage = storage;\n this.CameraService = CameraService;\n this.toastService = toastService;\n this.sanitiser = sanitiser;\n this.file = file;\n this.platform = platform;\n this.fileOpener = fileOpener;\n this.p = p;\n this.allUsers = [];\n this.documents = [];\n this.room = new Array();\n this.scrollingOnce = true;\n this.scrollToBottomBtn = false;\n this.isAdmin = false;\n this.closeAllDesktopComponents = new EventEmitter();\n this.showEmptyContainer = new EventEmitter();\n this.openGroupContacts = new EventEmitter();\n this.openEditGroupPage = new EventEmitter();\n this.openNewEventPage = new EventEmitter();\n this.getGroups = new EventEmitter();\n this.showAvatar = false;\n this.recording = false;\n this.allowTyping = true;\n this.storedFileNames = [];\n this.lastAudioRecorded = '';\n this.audioRecorded = \"\";\n this.audioDownloaded = \"\";\n this.durationDisplay = '';\n this.duration = 0;\n this.audioPermissionStatus = null;\n this.sessionStore = SessionSt
|