Tims-Chat/files_wcf/js/Bastelstu.be/Chat/MessageType/Suspend.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-08-16 22:30:59 +00:00
/*
2024-01-13 20:03:36 +00:00
* Copyright (c) 2010-2024 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.
*
2024-01-13 20:03:36 +00:00
* Change Date: 2028-01-13
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.
*/
define([
'../Helper',
'WoltLabSuite/Core/Date/Util',
'../MessageType',
], function (Helper, DateUtil, MessageType) {
'use strict'
class Suspend extends MessageType {
render(message) {
const expires =
message.payload.suspension.expires !== null
? new Date(message.payload.suspension.expires * 1000)
: null
const formattedExpires =
expires !== null ? DateUtil.formatDateTime(expires) : null
const aug = { expires, formattedExpires }
const suspension = Object.assign({}, message.payload.suspension, aug)
const payload = Helper.deepFreeze(
Object.assign({}, message.payload, { suspension })
2020-11-01 16:41:19 +00:00
)
2018-08-16 22:30:59 +00:00
return super.render(
new Proxy(message, {
get: function (target, property) {
if (property === 'payload') return payload
return target[property]
},
})
2020-11-01 16:41:19 +00:00
)
2018-08-16 22:30:59 +00:00
}
shouldUpdateUserList(message) {
return true
}
}
return Suspend
})