The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Tagging Members in ChatBox

3 posters

Go down

Solved Tagging Members in ChatBox

Post by Gabfest August 1st 2024, 3:13 pm

Can you please help me to tag members in the chatbox: https://gabfest.forumotion.com/


Last edited by Gabfest on August 9th 2024, 4:24 pm; edited 1 time in total
Gabfest
Gabfest
Forumember

Posts : 40
Reputation : 2
Language : English

https://gabfest.forumotion.com/

Back to top Go down

Solved Re: Tagging Members in ChatBox

Post by Ape August 1st 2024, 3:19 pm

Gabfest wrote:Can you please help me to tag members in the chatbox: https://gabfest.forumotion.com/
Hello @Gabfest This is not an easy thing to do but I think @tikky could help you as he did this for my forum but he maybe really busy.


Tagging Members in ChatBox Left1212Tagging Members in ChatBox Center11Tagging Members in ChatBox Right112
Tagging Members in ChatBox Ape_b110
Tagging Members in ChatBox Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19432
Reputation : 2010
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

TonnyKamper and poesia-verses like this post

Back to top Go down

Solved Re: Tagging Members in ChatBox

Post by Gabfest August 1st 2024, 3:34 pm

Ape wrote:
Gabfest wrote:Can you please help me to tag members in the chatbox: https://gabfest.forumotion.com/
Hello @Gabfest This is not an easy thing to do but I think @tikky could help you as he did this for my forum but he maybe really busy.
Thank you so much for your quick reply. I'll just wait for tikky. Have a great day!
Gabfest
Gabfest
Forumember

Posts : 40
Reputation : 2
Language : English

https://gabfest.forumotion.com/

Ape, poesia-verses and tikky like this post

Back to top Go down

Solved Re: Tagging Members in ChatBox

Post by tikky August 9th 2024, 1:34 pm

Hello @Gabfest,

Create a new JavaScript Page placement in the Chatbox and use the following code:
Code:
(function($) {
    'use strict';

    $(function() {

        var overrided = Chatbox.prototype.refresh;

        Chatbox.prototype.refresh = function(data) {

            overrided.call(this, data);

            $('.user-msg')
                .filter(function() {
                    return $(this).find('.msg').length && $(this).find('.msg').text().toUpperCase().includes('@' + my_infos.username.toUpperCase()) === true;
                })
                .each(function() {

                    if ($(this).find('.msg').attr('data-chatbox-mention')) {
                        return;
                    }

                    $(this)
                        .find('.msg')
                        .attr('data-chatbox-mention', my_infos.username)
                        .prepend(
                            [
                                '<div style="background-color: #cceec7; border-radius: 3px; padding-left: .25rem; padding-right: .25rem; font-weight: 700; color: #6da265; display: inline-flex; text-transform: uppercase; margin-right: .25rem;user-select: none;-webkit-user-select: none;">',
                                '  Mentioned you!',
                                '</div>'
                            ].join('\n')
                        );

                });
        };

        $('<div>', {
                'id': 'divmention',
                'class': 'fontbutton',
                'html': '&commat;'

            })
            .css({
                'border': '1px solid #aaa',
                'border-radius': '3px',
                'box-shadow': 'inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)',
                'height': '18px',
                'line-height': '16px',
                'text-align': 'center',
                'width': '18px'
            })
            .insertBefore('#divsmilies')
            .on('click', function(event) {
                event.preventDefault();

                var mention = prompt('Mention a user', '');

                if (!mention || mention == null || mention == '') {
                  console.warn('You cannot leave the "username" empty.');
                  return;
                }
                                   
                    $('#message').val('@' + mention + ' ');
                    $('#message').focus();
             

            });


    });

})(jQuery);

Ape's explanation of the mention
To Mention a user you will see a new button on the editor of the chat box.

Screen shot:
Tagging Members in ChatBox Captu492
when you press this button you will see a little popup at the top of your screen

Screen shot:
Tagging Members in ChatBox Captu493
type in the mane of the member you want to Mention and press ok now the text will show up in your Type box then just type what you want after the @USERNAME.

Screen Shot:
Tagging Members in ChatBox Captu494
then press send or enter. Your message will look like a basic comment to you but to the member it will look like this.

Screen shot:
Tagging Members in ChatBox Captu495

tikky
tikky
Forumember

Posts : 922
Reputation : 160
Language : 🇵🇹

https://www.forumotion.com/create-forum/modernbb

TonnyKamper and Obscure like this post

Back to top Go down

Solved Re: Tagging Members in ChatBox

Post by Gabfest August 9th 2024, 4:23 pm

tikky wrote:Hello @Gabfest,

Create a new JavaScript Page placement in the Chatbox and use the following code:
Code:
(function($) {
    'use strict';

    $(function() {

        var overrided = Chatbox.prototype.refresh;

        Chatbox.prototype.refresh = function(data) {

            overrided.call(this, data);

            $('.user-msg')
                .filter(function() {
                    return $(this).find('.msg').length && $(this).find('.msg').text().toUpperCase().includes('@' + my_infos.username.toUpperCase()) === true;
                })
                .each(function() {

                    if ($(this).find('.msg').attr('data-chatbox-mention')) {
                        return;
                    }

                    $(this)
                        .find('.msg')
                        .attr('data-chatbox-mention', my_infos.username)
                        .prepend(
                            [
                                '<div style="background-color: #cceec7; border-radius: 3px; padding-left: .25rem; padding-right: .25rem; font-weight: 700; color: #6da265; display: inline-flex; text-transform: uppercase; margin-right: .25rem;user-select: none;-webkit-user-select: none;">',
                                '  Mentioned you!',
                                '</div>'
                            ].join('\n')
                        );

                });
        };

        $('<div>', {
                'id': 'divmention',
                'class': 'fontbutton',
                'html': '&commat;'

            })
            .css({
                'border': '1px solid #aaa',
                'border-radius': '3px',
                'box-shadow': 'inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)',
                'height': '18px',
                'line-height': '16px',
                'text-align': 'center',
                'width': '18px'
            })
            .insertBefore('#divsmilies')
            .on('click', function(event) {
                event.preventDefault();

                var mention = prompt('Mention a user', '');

                if (!mention || mention == null || mention == '') {
                  console.warn('You cannot leave the "username" empty.');
                  return;
                }
                                   
                    $('#message').val('@' + mention + ' ');
                    $('#message').focus();
             

            });


    });

})(jQuery);

Ape's explanation of the mention
To Mention a user you will see a new button on the editor of the chat box.

Screen shot:
Tagging Members in ChatBox Captu492
when you press this button you will see a little popup at the top of your screen

Screen shot:
Tagging Members in ChatBox Captu493
type in the mane of the member you want to Mention and press ok now the text will show up in your Type box then just type what you want after the @USERNAME.

Screen Shot:
Tagging Members in ChatBox Captu494
then press send or enter. Your message will look like a basic comment to you but to the member it will look like this.

Screen shot:
Tagging Members in ChatBox Captu495

Works great and thank you so very much!
Gabfest
Gabfest
Forumember

Posts : 40
Reputation : 2
Language : English

https://gabfest.forumotion.com/

Ape likes this post

Back to top Go down

Solved Re: Tagging Members in ChatBox

Post by Ape August 10th 2024, 12:44 am

Glad you liked this and i am so happy it works for you.

Thank you @tikky for your help and post.

Have a great weekend both of you.

Problem solved & topic archived.
Please read our forum rules: ESF General Rules


Tagging Members in ChatBox Left1212Tagging Members in ChatBox Center11Tagging Members in ChatBox Right112
Tagging Members in ChatBox Ape_b110
Tagging Members in ChatBox Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19432
Reputation : 2010
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum