This post series is indexed at NgateSystems.com. You'll find a super-useful keyword search facility there too.
Last reviewed: Nov '24
1. Introduction
This series has previously described how you can use the Svelte framework in conjunction with Google's Firestore database Client API to develop useful information systems quickly and enjoyably. Sadly, however, Post 3.3 revealed how Firebase's otherwise excellent authentication system doesn't support Firestore activity in server-side load() and actions() functions where database rules reference the auth object.
Skipping your Firestore authorisation rules isn't an option - without these, your database is wide open to anyone who can hijack the firebaseConfig keys from your webapp. This post describes ways to re-work the Svelte server-side code so that it runs on the client side while Firestore rules remain firmly in place.
2. Reworking 'compromised' load() functions
Not all load() functions will be affected by the presence of Firestore rules. Those that reference Firestore public collections will still run happily server-side. The Client API is still available in page.server.js files - it just won't work if it's asked to use collections protected by auth.
If your load() function addresses public files and you simply want to avoid server-side debugging, you might consider moving your load() function into a page.js file. This works exactly like a page.server.js file - Svelte will still run the function automatically at load time. But this happens client-side now where it can be debugged in the browser. See Svelte docs at Loading data for details
However, a 'compromised' load() function (typically where Firestore rules are used to ensure that users can only access their own data) must be relocated into client-side code. Typically, this would be reworked as a new, appropriately named, function in the <script> section of its associated page.svelte file.</script>
But now you must find a way to launch your relocated load() function automatically on page initialisation - you no longer benefit from Svelte's built-in arrangements for native load() functions. The problem is that your re-located function is asynchronous and so can't be launched directly from a page.svelte file's <script> section. This problem is solved by using Svelte's onMount utility.</script>
"OnMount" is a Svelte lifecycle "hook" that runs automatically when a webapp page is launched. Inside an onMount() you can now safely await your relocated load() function - you may recall that you met it earlier in the logout function. You can find a description at Svelte Lifecycle Hooks.
3. Reworking 'compromised' actions() functions
In this case, there are no options. Compromised actions() functions must be relocated into the<script> section of the parent page.svelte file. Form submit buttons here must be reworked to "fire" the action via on:click arrangements referencing the relocated function.</script>
4. Example: Rules-friendly versions of the products-display page
In the following code examples, a new products-display-rf route displays the old "Magical Products" list of productNumbers. The load() used here isn't compromised but its code is still moved to a page.js file to let you confirm that you can debug it in the browser. The only other changes are:
- the code now includes the extensions to display the productDetails field when a product entry in the "Magical Products" list is clicked.
- firebase-config is now imported from the lib file introduced in the last post
// src/routes/products-display-rf/+page.svelte <script> export let data; </script> <div> <pre class="brush:php;toolbar:false">// src/routes/products-display-rf/+layout.svelte <header> <h2> <pre class="brush:php;toolbar:false">// routes/products-display-rf/+page.js import { collection, query, getDocs, orderBy } from "firebase/firestore"; import { db } from "$lib/utilities/firebase-client" export async function load() { const productsCollRef = collection(db, "products"); const productsQuery = query(productsCollRef, orderBy("productNumber", "asc")); const productsSnapshot = await getDocs(productsQuery); let currentProducts = []; productsSnapshot.forEach((product) => { currentProducts.push({ productNumber: product.data().productNumber }); }); return { products: currentProducts } }
// src/routes/products-display-rf/[productNumber]/+page.svelte <script> import { goto } from "$app/navigation"; export let data; </script> <div> <pre class="brush:php;toolbar:false">// src/routes/products-display-rf/[productNumber]/+page.js import { collection, query, getDocs, where } from "firebase/firestore"; import { db } from "$lib/utilities/firebase-client"; export async function load(event) { const productNumber = parseInt(event.params.productNumber, 10); // Now that we have the product number, we can fetch the product details from the database const productsCollRef = collection(db, "products"); const productsQuery = query(productsCollRef, where("productNumber", "==", productNumber)); const productsSnapshot = await getDocs(productsQuery); const productDetails = productsSnapshot.docs[0].data().productDetails; return { productNumber: productNumber, productDetails: productDetails }; }
Copy this code into new files in "-rf" suffixed folders. But do take care as you're doing this - working with lots of confusing page files in VSCode's cramped folder hierarchies requires close concentration. When you're done, run your dev server and test the new page at the http://localhost:5173/products-display-rf address.
The "Products Display" page should look exactly the same as before but, when you click through, the "Product Details" page should now display dynamically-generated content.
5. Example: Rules-friendly version of the products-maintenance page
Things are rather more interesting in a client-side version of the products-maintenance page.
Because your Firebase rule for the products collection now reference auth (and thus requires prospective users to be "logged-in"), the actions() function that adds a new product document is compromised. So this has to be moved out of its page.server.js file and relocated into the parent page.svelte file.
Here, the function is renamed as handleSubmit() and is "fired" by an on:submit={handleSubmit} clause on the
The above is the detailed content of NgSysV.A Serious Svelte InfoSys: A Rules-friendly version. For more information, please follow other related articles on the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor
