Author: Jamie

  • Workflow order in Bubble

    Workflow order in Bubble

    Workflows in Bubble are the core of any application. Workflow order in Bubble is very important and needs some time to be understood. There are frontend workflows and backend workflows. When first getting started with Bubble it might be confusing understanding the order of operations for workflows. In this article I’m going to go through how the orders of operations work in Bubble. This will hopefully save you a few hours. This article stems from a post on the Bubble forums from Bubble support back in 2021.

    Confused with workflow order in bubble?

    On the workflow screens, a workflow shows a list of steps within the UI. In that there are labelled steps; Step 1, Step 2 etc.

    Workflow order in Bubble
    Bubble workflow showing various steps

    You would assume that because they are labelled like this, that they would execute in that order. This is not correct. Bubble does not synchronously run a workflow. For performance reasons, workflows run in parallel both on the frontend and backend. You should ignore the step labels as they are not going to help you execute the workflow in the order.

    General rules for Bubble workflows

    These general rules are taken directly from the forum post so that they are easier to follow.

    Frontend workflow actions run in order but the next action does not wait on the previous action to be complete before triggering.

    This means that in the example above, step 1 will execute, but before its finished, step 2 will execute.

    Backend workflows are triggered as soon as the workflow is triggered, independently from steps. For example, a ‘Schedule API Workflow’ action will be triggered as soon as the workflow is triggered even if it is placed last in the workflow action sequence.

    Custom events run in sequence, not parallel. If Workflow 1 triggers a custom event that starts Workflow 2, Workflow 2 will complete before the remaining actions in Workflow 1 run.

    This is how you can get a workflow to run in the step sequence you require. You can create a custom event to trigger. Bubble will wait for the custom event to return before executing the next step. The caveat here is that you cannot use the results of the step in the next step. So if your process requires the results of the previous step, you can’t use this approach.

    Searches aren’t always immediately updated with new data. So if you create a new item, and then try to retrieve it via search, it may or may not work; you should not rely on this.

    Due to performance, there is a chance that if you use a search in your next step that is the result of a change made in the previous step, that search might not return due to caching.

    Retrieving a thing from “result of step X” where step X is the “Create…” step should always be safe.

    When your steps rely on a create from the previous step this should always work and is safe to use.

    Workarounds to help achieve workflow consistency

    Here are the suggested workarounds to achieve your desired results as outlined in the forum post. The fact that Bubble requires workarounds due these is less than ideal.

    When a workflow trigger (eg. a button) can have multiple results based on conditions, it is safer to create multiple workflows and place the conditions at the workflow level instead of creating one workflow with all possible actions and placing the conditions at the action level.

    What this means is that you should create multiple workflows and have the condition set at the workflow level not per step. These can be seen in the following image.

    Conditions set at the workflow level to ensure correct execution.

    In a workflow with two actions, if Step 2 is using a condition based on a search depending on data manipulated in Step 1, then Step 1 should be implemented into a custom event to make sure it is finished before moving on to Step 2.

    Use custom events if you can as it will ensure that the data is available in the subsequent search steps.

    If a backend workflow should be triggered after other steps in the workflow, then it should be implemented in a custom event placed after the steps that need to come first.

    Custom events can be utilised to ensure that a backend workflow is triggered at the right time. Otherwise the backend workflow might start executing before the information it needs is available.

    The safest way to use data from one step to another is to use the “result of step X” operators instead of searches.

    Try to avoid using searches in your workflow steps as it can result in inconsistent results which can confuse you. Either pass the data to the workflow or use the result of step to ensure you have the right data you need.

    We do not offer the explicit ability for an action to wait for a workflow to be over before moving on to the next step; however, using ‘add a pause before next action’ action is usually an effective workaround.

    Bubble doesn’t have a ‘wait for x to complete’ which is a good thing. When building an application where everything runs in parallel this is important. If you know that the workflow step will complete quickly, you can add a delay. The other option would be to track the results in the database and what for that state to change.

    Conclusion

    Knowing how Bubble processes data is critical to ensuring that your application runs smoothly and mostly bug free. When I first started none of this was obvious. I wrongly assumed that the steps were the order of operation. However reading the forums and speaking with other bubble devs I was able to figure this out.

    Bubble really needs to extract this out of their forums, create both video tutorials and a proper section in their documentation for this. At the moment, there is only a single paragraph buried in their documentation that outlines some of this.

  • Bubble Pricing Issues 2022

    Bubble Pricing Issues 2022

    You might have noticed an announcement around the new Bubble pricing. Which resulted in swift community backlash. In the no code application space, Bubble.io is one of the biggest players. They have millions of developers and apps running on their platform. This week, they announced and quickly redacted their new pricing model.

    I saw an email regarding new pricing and skimmed over it without paying attention to the details. It was late, and I was signing off for the night. The next morning, I awoke to a storm of backlash on various channels about how bad the pricing was. I checked it was bad.

    Bubble Pricing Issues

    Bubble pricing is already a little hard to understand. They use terminology that doesn’t make sense to me as a developer or most people. I understand that they’re attempting to appeal to non-technical people, but things like units of capacity or application editors need to be explained in their FAQ for it to make sense. If you need to explain your terminology in your FAQ, change it.

    Bubble Pricing
    Bubbles Old New Pricing

    They then introduced their new pricing model that looks more like hosting and with a production price that is less disconnected from the other plans. One thing you’ll notice though is beyond visitors, they include a number of database things.

    New Bubble Pricing.

    Database things as a pricing metric

    Firstly, what is a database things? To put it simple, it is rows in the database. Why they don’t just say that in the first place is beyond me. This is possibly the worst metric I could ever think of to charge on.

    I have never in my life seen pricing based on number of rows in a database. Such an arbitrary metric makes no sense. A messaging application could be using thousands of rows without impacting performance or storage, while a file sharing application could be using a lot less rows with lots of storage.

    Visitors as a pricing metric

    Hosting companies have been using visitors as a pricing metric for years now. I’m not a fan of charging based on visitors because I’ve been burned in the past. That being said, so long as the measurement for a ‘visitor’ works, then 100k visitors is a lot of traffic.

    The issue here is that the amount of visitors per plan is far too low. If you’re paying over $300 a month for the production plan, I would expect that limit to be up around 250k – 500k visitors. To compare this to Manged WordPress hosting, you’d be getting around the visitor numbers I’d expect.

    Thoughts

    There is a very detailed post and discussion started by Emmanuel Straschnov, the founder of Bubble, that reflects on the issues. It boils down to not engaging the community enough. They did appear to talk to just 30 users in abstract terms before they rolled this out. They have been working on this update for 9 months. My biggest issue here is how, after 9 months, did no one say that pricing based on database rows is a terrible idea?

    I have no problem with a company changing their prices when the changes make sense from a technical and user perspective. The issue with this announcement is that they didn’t appear to consult anyone in their community. This resulted in a swift backlash from their users. With some even loosing customers and large contracts from it.

    Suggestions on pricing

    I think that they were on the right track when they decided to switch to visitors and database based pricing. Where they went wrong was how they measured those metrics and the extremely low numbers for each of the plans.

    Database storage

    Databases power the applications, and using this as a pricing metric makes sense. This should be based on storage usage, not rows. Behind the scenes, Bubble is paying for CPU cycles and storage. That is how all applications from AWS are measured. There are other extended services interconnected, but in general these are the two fundamental parts.

    Database storage is an easy metric to measure, easy to charge, and easy to understand by the end user. This is also a great way to have lower plans get upsell’s for extra storage and visitors.

    Visitors

    This part of their new pricing, even though I’m not a fan, is close. They just need to increase the counts for each plan. While also allowing to purchase blocks of more visitors. I can understand how they changed this from server units, as it sounds more quantifiable. They should use both, visitors and compute units.

    Compute Units

    The other unit that they use in their original pricing is units of server capacity. They should expand on what this is and price accordingly. This should be combined with visitor based pricing. There are a lot of compute based operations in a Bubble app that don’t ever see visitors, so why should that come into the equation. When it comes to backend workflows, they just need to be done quickly and measurable. This is why compute units should be included in any pricing they move forward with.

    Conclusion

    At the end of the day, Bubble did right by their community and retracted the new pricing model. It’s great that the founder team are so integrated with the community and active on their forums. This is one of the reasons why I chose to use Bubble as my first no code application platform to build on.

    Community is key to ensuring that you are able to get feedback and continue to understand your users needs. I hope that in the future they’re more public about how they go about moving forward on pricing, features and changes.

  • Is WordPress No Code or Low Code?

    Is WordPress No Code or Low Code?

    WordPress no code or low code? That is the question. WordPress could arguably be classified as one of the oldest no code/low code platforms around. I’ve been using WordPress since the beginning and back then, it was very much in the low code space. Its functionality was limited, which often required dropping down to the code to make a tweak, or write a full on feature. These days, it has migrated into the no code space with the help of a huge ecosystem of plugins and themes.

    Between the thousands of themes and plugins available, you can build pretty much anything you want without writing any code. That being said, you still have full access to the source code for you to modify as you require or go into full developer mode and create your own functionality.

    Why not both?

    I’d say that WordPress is both no code and low code, depending on who you are and what your use case is. Thanks to the proliferation of WordPress capable hosting companies, you can quickly get a blog, company site, online store, education site, a community and more.

    WordPress no code mode

    There are plenty of use cases that don’t require touching the WordPress code base, including this site. The majority of WordPress users have been using it in no code mode since they started their journey. Hosted options have made it quick and easy to get a blog or business site online without needing to handle hosting, security or updates. People are able to quickly launch a site, configure the appearance and get to work.

    Thanks to the likes of the many page builder plugins and themes out there, you can build pretty much any kind of site you want, all with no code. Elementor, WP Bakery, DIVI and Oxygen builder are a few of the most popular page builders available today. Form builders are another great way to add functionality to your WordPress powered site, and two of the most popular are GravityForms and WP Forms.

    With just WordPress, GravityForms and GravityView I was able to build a complete research platform for internal use, all without needing to write any code.

    WordPress low code mode

    If you require a feature for your site, there is a very high chance that there is already a plugin or theme that provides that functionality. All code free and ready to go. Sometimes, however, you’ll need to change how something functions or write an entirely new feature. This is where WordPress enters the low code mode.

    Being the founder and lead developer of a complex plugin, I wrote WC Vendors to be very extensible, both via settings and from actions and filters. This means that there are times when our users need to drop to code and modify how something works with a code snippet. I’d classify small, easy to copy code-snippets as low code options.

    My Setup

    I’m going to keep this site as lean as possible. For that reason, I’m using the awesome GeneratePress theme from Tom Usborne. I’ve used GeneratePress on my sites for many years. It doesn’t get in the way, doesn’t require a page builder, and it is insanely fast.

    I’m currently hosting this site on SiteGround as I already have an account with them. So it was a matter of minutes to get this site online. Almost all decent WordPress capable hosts these days make creating a site easy. SiteGround is no exception.

    I will be attempting to not touch a single line of code on this site. I’m going the WordPress No Code route with this site. This will be difficult for me as a developer and someone who knows their way around WordPress. My aim will be to do everything with only the help of my theme and plugins. That doesn’t mean that I’ll install 100 plugins to get the functionality I need, but I’ll do my best to stay away from any and all code.

  • Array index in Bubble with custom states

    Array index in Bubble with custom states

    Using an array index in Bubble is straight forward if you know how things work on the platform. Coming from the world of programming, this is something you use daily. It took me a while to figure out how basic programming concepts translate to Bubble’s no code platform.

    Due to the fact that Bubble doesn’t support loops on the frontend, working with lists of data is approached a little differently. Sure, you have repeating groups, but that is not the same as taking a list of data and iterating over it.

    This comes from a forum post on Bubble that I answered when someone needed to move backwards and forwards in a list but were not able to use a repeating group or parent group.

    Use an array index in Bubble

    You can use custom states to track the index in your list so that you can easily go move about your list of data.

    Problem

    Display a button that when clicked will move to the next video in the list of videos. I created a quick sample page that takes creates a list of videos from the database and then provides the next/previous video buttons.

    Solution

    Using a simple custom state to track the current position in the list is the easiest way to get this to work.

    1. Create a custom state for your page (current_video_item in my example)
    2. Create an on page load workflow to set the custom state to be 1.
    3. Update your video player to use the item #: custom state to get the next one.
    4. Set a workflow to +1 the custom state when the next button is clicked.
    5. Add conditions to the workflows to ensure you don’t navigate outside the list size.

    You can see how each of these steps are implemented with the screenshots below.

  • What is no code?

    What is no code?

    No code in its simplest form takes the complexity of building an application from code and moves this to, usually, a visual editor.

    It enables you, even as a non-developer, to build an application without writing any code. Once you have learned your no code platform of choice, you can quickly build applications to solve all kinds of problems.

    No code platforms came about as a solution to speed up the development process and release cycle. It allows your marketing or admin teams to build solutions to their problems without having to wait on internal or external IT teams to build the solutions for them.

    No code vs Low Code

    The main difference between no code and low code is the required knowledge to build the solution. While no code platforms require no previous coding or software design experience, low code platforms allow for minimal code adjustments.

    No Code Examples

    No code platforms have been around for over 20 years. There is a chance that you have already used a no code solution without realising it. Here are a few no code examples that you might have come across and some you might not have.

    WordPress

    This blog runs on WordPress, which in its essence is a no code platform. You can build a blog, a multivendor marketplace like Amazon or a training platform. All without writing a single line of code.

    Zapier, Make (Integromat), IFTTT

    Automation tools like Zapier, Make and IFTTT allow you to build automated workflows by joining multiple software sources together to build a solution without writing any code.

    Bubble

    Bubble is an advanced no code tool that has been around for over 10 years. It enables you to build complex applications for both desktop and mobile. There are a number of dedicated agencies that provide application development for Bubble. You can build social networks, marketplaces, communities, training platforms and many other kinds of applications. There aren’t many things you can’t build with Bubble.

    Webflow

    Webflow is a website builder that is an alternative to the likes of WordPress or Wix. It is a fully hosted solution that allows to build great looking websites without relying on 3rd party plugins and themes. You can rapidly build a solid web presence with Webflow.

    Shopify

    If you need to build an online store, Shopify is how you can do it without the need of hiring a developer or agency to do it. You can get your store up and running in a matter of minutes. From experience, if you have less than 100 products, this is a solution you should consider.

    Should I use no code?

    In short, yes. No code allows you to get your idea out of your head, off the paper and into action. It’s better to get your idea online and testing it with real users as soon as possible and with minimal expense.

    But I’m a software developer!

    If you’re a software developer, there is plenty of room for no code in your toolbox. Sure, you can spin up an application in your favourite framework, but that doesn’t mean you have to for every problem.

    There are times when you need to test something quickly or demonstrate an idea, and this is where no code is a great addition to our skill set.

    Conclusion

    No code is gaining more traction as more and more people are wanting to upskill, change careers, solve problems and build cool stuff. No code platforms enable this, and every day there are more tools to build applications.

    Is no code going to replace developers in the near future? Probably not, but the role of developers will change. What and how applications are built will change, just as technology rapidly does every year.