import { Builder } from "builder-pattern"; import * as Handlebars from "handlebars"; import * as log from 'loglevel'; import { ChatController } from "./controller/ChatController"; import { UserController } from "./controller/UserController"; import { ChatModel } from "./model/ChatModel"; import { ChatModelHelper } from "./model/ChatModelHelper"; import { UserModel } from "./model/UserModel"; import { AlertifyNotificationService } from "./service/AlertifyNotificationService"; import { EncryptionServiceFactory } from "./service/EncryptionServiceFactory"; import { FuseSearchService } from "./service/FuseSearchService"; import { MarkDownItMarkDownService } from "./service/MarkDownItMarkDownService"; import { NotificationService } from "./service/NotificationService"; import { SearchService } from "./service/SearchService"; import { TemplateFactory } from "./template/TemplateFactory"; import { ChatView } from "./view/ChatView"; import { ChatViewDeps } from "./view/ChatViewDeps"; import { UserView } from "./view/UserView"; import { UserViewDeps } from "./view/UserViewDeps"; import { ActiveUserViewModel } from "./viewmodel/ActiveUserViewModel"; import moment = require("moment"); log.setLevel("TRACE"); const usersListElement = document.getElementById('contacts-box'); const userSearchButton = document.getElementById('user-search'); const userSearchInputElement = document.getElementById('user-search-term') as HTMLInputElement; const userSearchCancelButton = document.getElementById('user-search-cancel'); const chatArea = document.getElementById('chat-area-new'); const activeUserSearchService: SearchService = new FuseSearchService(["userName"]); const ns: NotificationService = new AlertifyNotificationService(); const encryptionService = EncryptionServiceFactory.getEncryptionService(); const chatModelHelper = new ChatModelHelper(encryptionService, ns); const chatModel = new ChatModel(chatModelHelper); const cvDeps: ChatViewDeps = { chatModel: chatModel, // @ts-ignore: Argument of type 'HTMLElement | null' is not assignable to parameter of type 'HTMLElement'. Type 'null' is not assignable to type 'HTMLElement'. messageContainer: chatArea, messageSendTemplate: TemplateFactory.getTemplate('msg_container_send_template'), messageReceiveTemplate: TemplateFactory.getTemplate('msg_container_template'), markdownService: new MarkDownItMarkDownService, encryptionService: encryptionService, notificationService: ns } const chatView = new ChatView(cvDeps); chatModel.attach(chatView); const chatController = new ChatController(chatModel, chatView); const userModel = new UserModel(ns); const uvDeps: UserViewDeps = { model: userModel, chatModel: chatModel, // @ts-ignore: Argument of type 'HTMLElement | null' is not assignable to parameter of type 'HTMLElement'. Type 'null' is not assignable to type 'HTMLElement'. usersListElement: usersListElement, userSearchInputElement: userSearchInputElement, // @ts-ignore: Argument of type 'HTMLElement | null' is not assignable to parameter of type 'HTMLElement'. Type 'null' is not assignable to type 'HTMLElement'. userSearchButton: userSearchButton, // @ts-ignore: Argument of type 'HTMLElement | null' is not assignable to parameter of type 'HTMLElement'. Type 'null' is not assignable to type 'HTMLElement'. userSearchCancelButton: userSearchCancelButton, searchService: activeUserSearchService, userContactOnlineTemplate: TemplateFactory.getTemplate('user-contact-online-template'), userContactOfflineTemplate: TemplateFactory.getTemplate('user-contact-offline-template') } const userView = new UserView(uvDeps); userModel.attach(userView); const userController = new UserController(userModel, userView); userController.getActiveUsers(); Handlebars.registerHelper('avatar', function () { return '
'; }); Handlebars.registerHelper('fromNow', function (date: string) { return moment(date).fromNow(); }) Handlebars.registerHelper('msgDateFormat', function(date: string) { return moment(date).calendar(moment.now(), {lastWeek: "DD/MM/YY hh:mm:a", sameElse: "DD/MM/YY hh:mm:a"}) }) ns.success("Welcome"); // ns.errorWithDelay("Hmm very long error notif", 10); const test = Builder().build();