#199 - Save Data Table Records to Local Storage on Page Load v0.1

Create a Localstorage object containing the logged in members data table records on page load

View demo

<!-- 💙 MEMBERSCRIPT #199 v0.1 💙 SAVE DATA TABLE RECORDS TO LOCAL STORAGE ON PAGE LOAD (USE THIS SCRIPT TOGETHER WITH MEMBERSCRIPT #198) -->
<script>
document.addEventListener("DOMContentLoaded", function () {
  // Expose a reusable function so other scripts (like #198) can trigger a resync
  window.ms199SyncDataTable = async function () {
    const memberstack = window.$memberstackDom;
    if (!memberstack) return;

    // Find the form that configures this script
    // Uses the same form as Memberscript #198 (form1)
    const form = document.querySelector('[data-ms-code="form1"][data-ms-code-table]');
    if (!form) return;

    const tableName = form.getAttribute("data-ms-code-table");
    const memberField = form.getAttribute("data-ms-code-member-field") || "member";
    const storageKey =
      form.getAttribute("data-ms-code-storage-key") ||
      "ms199-records";

    if (!tableName) return;

    // Get current member (needed to filter table records)
    let currentMember;
    try {
      const result = await memberstack.getCurrentMember();
      currentMember = result?.data || result;
    } catch (error) {
      console.error("unable to load current member", error);
      return;
    }

    if (!currentMember || !currentMember.id) return;

    let records = [];

    try {
      // Query data table records
      // Docs: https://docs.memberstack.com/hc/en-us (Data Tables + DOM package)
      const queryResult = await memberstack.queryDataRecords({
        table: tableName,
        query: {
          take: 100
        }
      });

      // Normalize records array (handle different possible shapes)
      const allRecords = queryResult?.data?.records || queryResult?.data || [];

      // Filter records by current member on the front end
      records = allRecords.filter(function (record) {
        const recordMember = record?.data?.[memberField];
        return (
          recordMember === currentMember.id ||
          (recordMember && recordMember.id === currentMember.id)
        );
      });
    } catch (error) {
      console.error("error querying data table", error);
      return;
    }

    // Save table records to local storage so they can be reused elsewhere
    localStorage.setItem(storageKey, JSON.stringify(records));
  };

  // Initial sync on page load
  window.ms199SyncDataTable();
});
</script>

Customer Showcase

Have you used a Memberscript in your project? We’d love to highlight your work and share it with the community!

Creating the Make.com Scenario

1. Download the JSON blueprint below to get stated.

2. Navigate to Make.com and Create a New Scenario...

3. Click the small box with 3 dots and then Import Blueprint...

4. Upload your file and voila! You're ready to link your own accounts.

Need help with this MemberScript?

All Memberstack customers can ask for assistance in the 2.0 Slack. Please note that these are not official features and support cannot be guaranteed.

Join the 2.0 Slack
Version notes
Attributes
Description
Attribute
No items found.
Guides / Tutorials
No items found.
Tutorial
What is Memberstack?

Auth & payments for Webflow sites

Add logins, subscriptions, gated content, and more to your Webflow site - easy, and fully customizable.

Learn more

"We've been using Memberstack for a long time, and it has helped us achieve things we would have never thought possible using Webflow. It's allowed us to build platforms with great depth and functionality and the team behind it has always been super helpful and receptive to feedback"

Jamie Debnam
39 Digital

"Been building a membership site with Memberstack and Jetboost for a client. Feels like magic building with these tools. As someone who’s worked in an agency where some of these apps were coded from scratch, I finally get the hype now. This is a lot faster and a lot cheaper."

Félix Meens
Webflix Studio

"One of the best products to start a membership site - I like the ease of use of Memberstack. I was able to my membership site up and running within a day. Doesn't get easier than that. Also provides the functionality I need to make the user experience more custom."

Eric McQuesten
Health Tech Nerds
Off World Depot

"My business wouldn't be what it is without Memberstack. If you think $30/month is expensive, try hiring a developer to integrate custom recommendations into your site for that price. Incredibly flexible set of tools for those willing to put in some minimal efforts to watch their well put together documentation."

Riley Brown
Off World Depot

"The Slack community is one of the most active I've seen and fellow customers are willing to jump in to answer questions and offer solutions. I've done in-depth evaluations of alternative tools and we always come back to Memberstack - save yourself the time and give it a shot."

Abbey Burtis
Health Tech Nerds
Slack

Need help with this MemberScript? Join our Slack community!

Join the Memberstack community Slack and ask away! Expect a prompt reply from a team member, a Memberstack expert, or a fellow community member.

Join our Slack