matt-flaig / Boomi-Platform-Extension

This browser extension provides some feature improvements and functionality to the Boomi platform 🧩✨
4 stars 1 forks source link

Note Enhancement - Expand/close all feature #6

Open mitchelljfranklin opened 1 year ago

mitchelljfranklin commented 1 year ago

@mitchellfranklin would it be possible to have a toggle for always having the note-shapes auto expanded in atomsphere? going to guess its a modal of some sort ? also really curious if you have any resources to learn extension building. was showing @matthew - seattle hes our architect and does a lot of lucid charting and for integrations the capture feature really does take care of most charting needs.

I'd be super interested in playing around with seeing what other featuresets we could enhance boomi with via extensions Boomian — Today at 6:34 AM So notes would always show their contents when opening a process… rather than just on hover? (If so, would there need to be an option to close them as well?)

Boomian — Today at 7:18 AM Maybe there could be some sort of option like "Show All Notes" and "Hide All Notes" button in the component actions nav? There could also be a setting, but it's very un-fun to have to click notes one by one to collapse them... 🤔

setInterval( function() { 
    if(document.getElementsByTagName('body')[0].style.marginTop == "99999px"){
       var noteShapeList = document.querySelectorAll('.note-preview');

        [...noteShapeList].forEach(div => {
            div.parentNode.parentNode.style.setProperty("display", "", "important");
        })
    }
}, 100);