Skip to content

Issues with Imgur images in Fancybox chat module

Bugs
  • @DownPW hmm, yes, I see what you mean. Presently, the script uses a regex which is quite gratuitous and binds a href to the img tag.

    I don’t use imgur myself, but from memory, they use a common prefix in their url schema which we could then use to make this specific function a little more flexible and lenient.

    Do you have the script running in your test environment? I need to see some working examples.

  • @phenomlab said in [SOLVED] Fancybox doesn’t work in chat:

    Do you have the script running in your test environment? I need to see some working examples.

    yes

  • @DownPW Right, this is interesting. On your forum, I have adjusted the code so it looks like the below (this is a snippet of the overall function, so do not copy it)

            if (isFound) {
                this.$('img').not('.forum-logo').not(".avatar").not(".emoji").not(".bmac-noanimate").each(function() {
                    newHref = $(this).attr("src");
                    $(this).wrap("<a class='fancybox' href='" + newHref + "'/>");
                    $('a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".webp"]').addClass("noanimate");
                    data.preventDefault();
                    // Strip out the images contained inside blockquotes as this looks nasty :)
                    $('blockquote img').remove();
                });
                pattern = /assets/;
                exists = pattern.test(newHref);
                if (exists) {
                    console.log(newHref + " is a local resource and not subject to Fancybox");
                    return false;
                    // Do not trigger fancybox
                }
                else {
                Fancybox.bind(
                    'a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".webp"]', {
                        groupAll: true,
                    }
                );
                }
            }
    

    Essentially, we are performing unit tests here in the sense that we first check the newly wrapped a href and see if it contains /assets/ - if it does, we issue return false; which basically means “don’t do anything” - if there isn’t a match, we proceed to issue fancybox.bind to other URL’s in the loop.

    Still working through this, but the behaviour is not what I expected. Are you using the imgur plugin?

  • @phenomlab

    On my production yes but I just realized that it was not installed on the dev instance.
    I just did it now 🙂

  • @DownPW I finally got to the bottom of this - see

    https://community.nodebb.org/topic/748/nodebb-plugin-imgur-imgur-plugin/89

    As you have the Imgur plugin enabled, this will override fancybox so there isn’t much I can do to circumvent this sadly.

    See this particular post from @julian

    3ae47ac1-1f5c-4e9b-a6f7-82d784af1890-image.png

  • yep @phenomlab but in fact, the imgur external link image open correctly with Fancybox on topics without problem

    Actually, this problem is just on the chat. It’s incomprehensible by the way, why it would be ok in the topics and not in the chat ? I confess I don’t understand well.

    But if there are no other solutions, I would enlarge the images to 100% only in the chat via CSS, that’s already what I did on V2 🙂

  • @DownPW Yes, I can actually replicate this very same experience. No matter what code I try, I can’t override this behaviour, which is just bizarre as it works fine in posts!!

  • yes, that’s for sure ^^
    But I don’t want to do without this plugin so I’ll do with it. I don’t want to host all the images on the forum

    thank you for trying something!

  • @DownPW I like a challenge, so I’ll keep trying. It’s just really odd to me.

  • @phenomlab

    While waiting for a solution (or not), here is my code to determine the size of images or gifs in the chat and in the posts

    It seems to work as it should.

    If you see errors Mark, do not hesitate to tell me or improve 🙂

    /* Appearance of images in posts */
    .topic .posts .content a > img.img-fluid.img-markdown, [component="post/content"] .img-fluid {
      padding: 8px;
      margin: 8px 0;
      border: 1px solid var(--bs-border-color);
      max-width: 80%;
    }
    
    /* Appearance of "GIF" images in posts */
    .topic .posts .content a > img.img-fluid.img-markdown[src$="gif"], [component="post/content"] .img-fluid[src$="gif"] {
      padding: 8px;
      margin: 8px 0;
      border: 1px solid var(--bs-border-color);
      max-width: 60%;
    }
    
    /* Appearance of images in Chat */
    .chat .message .content a > img.img-fluid.img-markdown, [component="chat/message"] .img-fluid {
      padding: 8px;
      margin: 8px 0;
      border: 1px solid var(--bs-border-color);
      max-width: 80%;
    }
    /* Appearance of "GIF" images in Chat */
    .chat .message .content a > img.img-fluid.img-markdown[src$="gif"], [component="chat/message"] .img-fluid[src$="gif"] {
      padding: 8px;
      margin: 8px 0;
      border: 1px solid var(--bs-border-color);
      max-width: 60%;
    }
    
  • @DownPW looks good to me.


  • Loading Image Problem

    Bugs
    24
    6 Votes
    24 Posts
    1k Views

    Thank you Mark.

  • 4 Votes
    7 Posts
    392 Views

    @phenomlab oh no, that is 1 cent on the video, but you are right, symbols are similar… I just converted it to $1 , since it is more intuitive in daily life…

  • 20 Votes
    49 Posts
    2k Views

    @cagatay Those are in /admin/extend/widgets/brand header. Look inside the HTML widget that is there, and you’ll find

    <div class="socialicons"> <a class="btn-ghost p-2" href="https://github.com/phenomlab" rel="noreferrer noopener"><i style="color: #333;background: #ffffff; width: 26px" class="fa fa-2x fa-github-square"></i></a> <a class="btn-ghost p-2" href="https://linkedin.com/in/phenomlab" rel="noreferrer noopener"><i style="color: #0077B5;background: #ffffff; width: 26px" class="fa fa-2x fa-brands fa-linkedin-square"></i></a> <a class="btn-ghost p-2" href="https://twitter.com/phenomlab" rel="noreferrer noopener"><i style="color: #1DA1F2;background: #ffffff; width: 26px" class="fa fa-2x fa-twitter-square"></i></a> <!-- <a class="btn-ghost p-2" href="https://www.facebook.com/sudonixtech" rel="noreferrer noopener"><i style="color: #4268B2;background: #ffffff; width: 26px" class="fa fa-2x fa-facebook-square"></i></a> --> </div>

    Remove that block and save.

  • 4 Votes
    3 Posts
    167 Views

    EDIT: Sorry all, I found a bug that causes Fancybox to be bound twice.

    Please remove the original functions I provided (the original post has been updated for anyone who did not use the original code and is new here) and replace with just this block

    // Chat fancybox - fires when chat module loaded and AJAX calls new chat $(document).ready(function() { $(window).on('action:chat.loaded', function(data) { this.$('img').not('.forum-logo').not(".avatar").not(".emoji").not(".bmac-noanimate").each(function() { var newHref = $(this).attr("src"); $(this).wrap("<a class='fancybox' href='" + newHref + "'/>"); $('a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".webp"]').addClass("noanimate"); data.preventDefault(); // Strip out the images contained inside blockquotes as this looks nasty :) $('blockquote img').remove(); }); Fancybox.bind( 'a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".webp"]', { groupAll: true, } ); }); });
  • 11 Votes
    47 Posts
    3k Views

    @DownPW Seems fine.

  • 5 Votes
    29 Posts
    2k Views

    @phenomlab said in nodebb chat roll dice game:

    @DownPW I still think you could do something much quicker with jQuery.

    Why not but like I said, I have no skills to do that.

    If you are motivated, why not but I don’t want to bother you especially since it will only be for a certain period of time.

  • 3 Votes
    6 Posts
    992 Views

    @phenomlab

    haha!!
    You are crazy. In a good way, of course 🙂

    It’s a way of saying you’re awesome !

  • 6 Votes
    16 Posts
    719 Views

    And it seems to be less conflicting!