Tims-Chat/files_wcf/js/Bastelstu.be/Chat/Ui/Chat.js

73 lines
2.4 KiB
JavaScript
Raw Normal View History

2018-08-16 22:30:59 +00:00
/*
2020-10-31 18:05:01 +00:00
* Copyright (c) 2010-2020 Tim Düsterhus.
2018-08-16 22:30:59 +00:00
*
* Use of this software is governed by the Business Source License
* included in the LICENSE file.
*
2020-10-31 18:05:01 +00:00
* Change Date: 2024-10-31
2018-08-16 22:30:59 +00:00
*
* On the date above, in accordance with the Business Source
* License, use of this software will be governed by version 2
* or later of the General Public License.
*/
2020-10-31 18:05:01 +00:00
define([ '../Ui' ], function (Ui) {
2018-08-16 22:30:59 +00:00
"use strict";
const DEPENDENCIES = [ 'UiAttachmentUpload'
, 'UiAutoAway'
2018-08-16 22:30:59 +00:00
, 'UiConnectionWarning'
, 'UiInput'
, 'UiInputAutocompleter'
, 'UiMessageStream'
, 'UiMessageActionDelete'
, 'UiMobile'
, 'UiNotification'
, 'UiReadMarker'
, 'UiSettings'
, 'UiTopic'
, 'UiUserActionDropdownHandler'
, 'UiUserList'
]
class Chat extends Ui {
constructor(attachmentUpload, autoAway, connectionWarning, input, autocompleter, messageStream, messageActionDelete, mobile, notification, readMarker, settings, topic, userActionDropdownHandler, userList) {
2018-08-16 22:30:59 +00:00
super()
this.actionDropdownHandler = userActionDropdownHandler
this.autoAway = autoAway
this.autocompleter = autocompleter
this.connectionWarning = connectionWarning
this.input = input
this.messageStream = messageStream
this.messageActionDelete = messageActionDelete
this.mobile = mobile
this.notification = notification
this.readMarker = readMarker
this.settings = settings
this.topic = topic
this.userList = userList
this.attachmentUpload = attachmentUpload
2018-08-16 22:30:59 +00:00
}
bootstrap() {
this.actionDropdownHandler.bootstrap()
this.autoAway.bootstrap()
this.autocompleter.bootstrap()
this.connectionWarning.bootstrap()
this.input.bootstrap()
this.messageStream.bootstrap()
this.messageActionDelete.bootstrap()
this.mobile.bootstrap()
this.notification.bootstrap()
this.readMarker.bootstrap()
this.settings.bootstrap()
this.topic.bootstrap()
this.userList.bootstrap()
this.attachmentUpload.bootstrap()
2018-08-16 22:30:59 +00:00
}
}
Chat.DEPENDENCIES = DEPENDENCIES
return Chat
});