NodeBB/NodeBB

View on GitHub
public/src/client/account/profile.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';


define('forum/account/profile', [
    'forum/account/header',
    'bootbox',
], function (header, bootbox) {
    const Account = {};

    Account.init = function () {
        header.init();

        app.enterRoom('user/' + ajaxify.data.theirid);

        processPage();

        if (parseInt(ajaxify.data.emailChanged, 10) === 1) {
            bootbox.alert({
                message: '[[user:emailUpdate.change-instructions]]',
                closeButton: false,
            });
        }

        socket.removeListener('event:user_status_change', onUserStatusChange);
        socket.on('event:user_status_change', onUserStatusChange);
    };

    function processPage() {
        $('[component="posts"] [component="post/content"] img:not(.not-responsive), [component="aboutme"] img:not(.not-responsive)').addClass('img-fluid');
    }

    function onUserStatusChange(data) {
        if (parseInt(ajaxify.data.theirid, 10) !== parseInt(data.uid, 10)) {
            return;
        }

        app.updateUserStatus($('.account [data-uid="' + data.uid + '"] [component="user/status"]'), data.status);
    }

    return Account;
});