Bubble Editor Ideas and Suggestions

Kudos to Fay Watson for first proposing and then curating this list. I found it in a moment of frustration with the Custom States Window (Element Inspector) which appears to not be expandable and is usually far to narrow to actually be able to read the entire custom state. I have tried to quickly scan the list but can’t find a way to do this so will just propose this and let someone berate me for not having seen that this is already on the list or possibly be explaining to me how this is not even an issue - ie that I can expand it and am too dumb to see how. - apologies to all if that is the case.

So Proposal #??- Make the Custom States Element Inspector Wider by Default and expandable.

I think that Bubble should really be managing this wish list so this is not an Editor Idea for Bubble but given that they have left this to Fay - this is really an unreasonable request/suggestion to her

Can you build a bubble app so that this data can be easier to access and easier for people to vote on what features are important to them. If people have to include their Forum id (not sure how you would work this>…) then more knowledgeable users’ votes could be given a bigger weighting. Ideally the discussion on each proposal would have its own thread and a ranking discussion could have a separate thread.

Proposal #??+1 - Bubble - build a list like Fay has but structured along the lines of what I have explained above.

@melon, @joeyg, and @kevin.hunt - Thank you for the suggestions, and so sorry for the very delayed response! I’ve added them to the list as numbers 84, 85, and 86. :slight_smile:

Also, back in October, Bubble created an awesome Idea board for these types of suggestions:
https://bubble.io/ideaboard

I didn’t see most of the suggestions in this list, so I went ahead and added all of the suggestions in this list (except for ones that have already been implemented by the Bubble team).

To anyone that has suggested an idea in this list, I included the idea, a description of the idea, any screenshots you included, your forum username, and the suggestion number as it appears in this list to hopefully make them easier to find and upvote by others. There isn’t search functionality when viewing the “All Ideas” board currently, but you can search by forum username or idea number within the “Summary of the Idea” input in the “Submit an idea” section, for any of the ideas above.

To upvote one of the ideas in this thread, this can be done by entering the number and clicking “Upvote” as shown below :slight_smile:

I can continue to add any ideas to this list, please feel free to submit any others. :slight_smile:

(Just copying everyone who has submitted an idea already here: @tim12333 @louisadekoya @eli @yusaney1 @edd @robert @luke2 @robbertmastebroek @gf_wolfer @ryan16 @boston85719 @JohnMark @petter @w.fly @ben7 @klaas.vanhoeck1 @melon @zelus_pudding @aloecf @julienallard1 @julian_digitalsilva @gsantoro @duke.severn @paul.dalpozzo @majorfmo @christo1 @mghatiya @Alix75 @kevin.hunt )

5 Likes

Thank you for keeping us organised Faye! Not my strong point at all :wink:

1 Like

Who here wants a DARK MODE for editor? This medium dark grey on white is killing my eyes. Literally have to stop working on it too often. Oh, apparently a ton of us for years now(!)

Unfortunately the only way to upvote is to first try to submit. So if you want dark mode please duplicate what I’ve done here. We only have 3 votes for it because of this wonky interface!

When I want to add on to an expression it seems like the only way to get the [more] to appear is to click on whats just in front of it, which makes me have to pick again what it was before moving on.

It seems like [more] should appear at the end of all expressions to avoid this problem. Maybe only on hover, I don’t know or care, but the way it is now is super inconvenient and dangerous.

(if I want to add something after cur_batch I have to click cur_batch and select it again from the list)

3 Likes

I’ll add this to the suggestions list

This is a must have.

@mghatiya Unfortunately still a pipe dream :frowning: I get frustrated now having to open up pages that have many hidden groups especially when I’m having to jump from page to page… every time, click Elements Tree, right click “Show all Children”.

Screen Shot 2021-08-31 at 9.38.57 AM

Oh crud, there’s another hidden group in there that doesn’t get shown even when I do “Show all children” on the parent group… Gotta click “Show all children” again, on the bottom group.

Screen Shot 2021-08-31 at 9.39.30 AM

Once you do that 50 times a day, from page to page, it eats at you enough to where you start rethinking how you’re developing lol.

At this point, I’d take a “Show ALL” – Just a blanket, “Show ALL”. Click it, everything hidden (other than popups/floating groups) show in the editor. One button to rule them all. Heck, make it a hotkey combo.

2 Likes

I agree. It is especially a problem with SPAs.

What I have been recently doing is making an element visible by default, so that they don’t get hidden in the editor, and put a condition to hide them whenever required.

But I was interacting with Bubble’s team recently for one of the issues, and ironically, Bubble’s recommendation is to keep elements invisible by default and show them as per condition rather than keeping the visible and hide them as per some condition. This is for performance reasons.

Now one would think that editor would be optimised for “recommended method of usage”, but it is not.

Is this idea put somewhere in https://bubble.io/ideaboard? I would like to upvote it. I couldn’t find it there.

2 Likes

cc @fayewatson @allenyang

Dear all, I’d like to resume suggestion #77 from @gsantoro (i.e. Repeating Groups not updating when resuming the app from idle) as this is causing me several problems and I’m puzzled that few bubblers raised this topic so far. It looks like a huge problem to me.

I have a Bubble app wrapped both for iOS and Android with the great “Native apps (bdk)”.
User A can send a message to user B. The latter receives a push notification and opens the app but in 50% of the cases he doesn’t find the new message because a RG didn’t update. I was reassured that this is not due to the wrapping.

I tried several workarounds (*) but none worked and I had to end up forcing a refresh of the entire page which is a horrible UX. What more, it doesn’t even work in 100% of the times.

I believe the feature should be made of 2 new pieces:

  1. WHEN page is back from idle (this should be an event built in Bubble, there’s no point having to rely to third parties’ plugins regardless how good they are)
  2. THEN refresh RG[x]

Thx,
gl

(*) I’m sharing here below the workarounds I tried as they might be useful to other Bubblers.

Each time user A sends a message to user B, I store under the latter a Last Event Date.
In addition, I store under the user a Last Refresh Date at each page load.
I also installed “UX Tools (BDK)“ and I’m using “When a Screendetect A wakes up” to spot when the app is resumed from idle.
I then created a WF that triggers when:
a) the app is resumed and
b) Last Event Date > Last refresh Date.

Of course I first tried “Go to page [same page]”. It didn’t work (the RG[x] did not update) . I also tried only with condition a)

I then tried to set my RG[x] with an empty data source and used “Display list in a repeating group” when condition a) was true. It didn’t work. I also tried to set invisible RG[x], display list, set RG[x] back to visible as suggested in Bubble’s documentation. It didn’t work.

I ended up firing a “Refresh the page” when a) and b) are true which is a horrible UX. What more, it doesn’t even work 100% of the times (i.e. the page does not refresh) and I also had to add an ugly refresh button in the UI (I can’t use the “pull to refresh” plugin as it messes up with the chat in my app) .

If others Bubblers can suggest a better workaround, I would be more than grateful. Thx

1 Like

I am facing similar issue. I just made a post about it. Not sure if this thread is the right one for that as you are not really facing the issue with editor. Here’s my post: Data on page not getting updated

1 Like

@mghatiya and @gianluca1 - this has been a devastating problem in our app as well. Any updates on if and how you’ve solved it? Or how you manage to replicate the issue now and again, to see if your workarounds have solved the problem?

This issue keeps troubling us. However, one of the members @aj11 had a suggestion which could possibly work. It works for him at least.

I haven’t been able to try it yet though. I am producing it here for others’ help if they want to try it and see if it works.


Download a plug-in for creating a random string on command.

Create a state on your page for “cache buster”.

Add a search criteria to the search for the RG you want to keep updated for:

unique id <> cache buster

Then create a conditional that runs every time the group or page you are worried about is visible. This event should trigger creating a random string (mine is six digits and a mix of numbers and letters) and save it as the state created above (cache buster).

Every time the state is updated, is should force bubble to update the call to the database and get the most recent results, even if the regular mechanism for keeping RGs updated is broken.

The key is the make the cache buster a state on the page and not a field in the database. Because it is a state on the page, your bubble app does not rely on the web socket to know when it has been updated because it’s value is stored locally in the user’s browser and is being updated by JavaScript locally in the browser as well.

When the conditional event updates the state it will change the search criteria of the search on the RG and force it to refresh itself even if the web socket is broken.


@aj11 I have put it here without asking you. Hope it is okay. Please let me know if it is not.

Our app has a really lengthy list of pages and reusable elements due to several reasons - internal and external pages, pages for different users, development pages and deployed pages, etc.

I think it’ll be a great idea if we can organize these pages and reusable elements into folders or subsets (e.g. buyer pages, seller pages, in development, deployed, etc).

1 Like

I am desperately looking for this feature. I edit expressions all the time and it is so so tiresome to keep writing them again and again. It is very important to be able to add/remove/edit/copy a part of the expression and not just edit at the end of the expression.

4 Likes

Yes - Agreed with you! On another post similar to this, I did get a response from Bubble about this that it is on their radar, however, they are looking for as many “test cases” as possible. Perhaps you could start putting together cases where you are unable to edit an expression and where you have to re-write the expression again. :slight_smile: I haven’t had the time to put examples together for the Bubble team to review.

Well, if they are looking for “test-cases”, it might be very hard for me to prepare as that would be exhaustive.

However, if they are looking for “use-cases”, I can supply aplenty and can give examples from my own app if needed for “test case”, but the app keeps changing. Here are a few use-cases I came up with just now. Most of these I’ve faced very recently.

  • I wanted to combine three sources of texts from different places and join them with comma. I wrote full long expression and then realised that I missed to add an “append: ,” after first part of the expression. Now I need to redo the whole thing again!

  • There is a long conditional expression with many conditions in it. I want to remove first part of it because it is no longer valid or I am simplifying the logic.

  • There are certain things that work certain way in Bubble that cause us to write expressions in certain ways. e.g. If I want to compare a “Date1 > Date2+(n minutes)” and “n days” is a dynamic expression, then I after writing the expression I realise that Bubble won’t let me do “Date2+(n days” if “n minutes” in itself is like “date3 extract hour * 60+ date3 extract minute” or some such. Then I have to rewrite it whole and change it to “Date2+(n minutes) < Date1”. And these Date1 and Date2 could be complex expressions in themselves. Now I need to rewrite it whole.

  • If I am having a source of information for which I do a “seach for…” and I want to use it multiple times in the expression or reuse it (for example once to get its count, and then to use its result’s different fields), I can’t copy-paste it and have to keep redoing it.

  • Changing source of data. If I am using a “source for…” etc in some expression somewhere and want to change the source to something else now, (say I want to read from a repeating group or want to apply filters to it), then I can’t do it simply that I just change that part of the expression. I have to really write the whole expression again.

  • There are many use-cases for editing of an expression in middle. e.g. If I am doing a mathematical comparison with different sources of data and arithmetic operators being used, and I realise that I want to now change the formula a bit and add another number in between etc, I can’t just do that without having to rewrite full.

  • If I have a list as an expression and now I want to subtract that list from another list, I have no option but to write that expression again, unless I store that list somewhere else which we know is complicated in Bubble, and also it may not be desirable always. I may just want one element and expression.

2 Likes

I hope this gets built. Many of us want this…

1 Like

This is fantastic! I’ll review in depth and see if I can scare up some other use cases. @nick.carroll Some use cases for the expression editor. Should we be presenting these in a bug ticket?

holy crap how do you keep track of what you have in there lol.

ill add one

the ability to filter lists in the expression without braking the expression
(this sorta works with the parentheses now but if there are none it breaks whats past the filter and you have to rebuild the expression

1 Like