Google-Apps-Script-Svelte-Starter

Google Apps Script Svelte Starter

Starter Repo for using Svelte to Make UIs for Google Apps Script

Google Apps Script + Svelte

I love Google Apps Script for whipping together projects for our Google Apps School, and I love svelte development in Visual Studio, but before now, I haven't been able to bring them together. This repo will give me a recipe for fixing that!

With this package, you can write Google Apps Script code in a modular modern fashion using Typescript and have it compile down to code that runs in the v8 runtime.

And you can write the browser-side code that gets served up in Apps Script using svelte, a delightful modern component framework which can get compiled down to one single index.html file that's easy to host and serve in Apps Script (no external dependencies!). What's more, we auto-generate a handy API for grabbing the apps script code, so you can code with type safety and beautiful autocompletion.

For example in the Apps Script side we could write

export function getSheetRows (n : number) : [number][][] {
  return SpreadsheetApp.getActiveSheet().getDataRange().getValues();
}

And then in our svelte code, we can write something like this:

let data = await getSheetRows(10);

All while getting autocomplete and type hinting!

Quick Start

  1. Clone this repository.
  2. Install the dependencies: npm install
  3. Run development server for Svelte: npm run dev
  4. Build for production: npm run build
  5. Create a new Google Apps Script project: npm run create-clasp-project
  6. Push the build to Google Apps Script: npm run push-to-clasp

Google-Apps-Script

We can use import and export and typescript to build Google Apps Script functions. Whatever is imported into main will be built for export.

The src/gas/serve.ts file contains several utility functions to serve your Svelte code within different Google Workspace apps:

doGet(e): Serves the Svelte application as a web page. showDialog(title, modal, app): Shows the Svelte application as a dialog in Google Docs, Sheets, or Slides. title: Title of the dialog. modal: Whether the dialog should be modal. app: The Google Workspace app to show the dialog in (DocumentApp, SpreadsheetApp, SlidesApp)

Using google.script.run

To simplify things, we define a file api.ts in our src/gas/ directory which should contain all functions that we will need in client side svelte code.

Functions from api.ts can then automatically be read so we can generate appropriate typescript definition files and mock functions in src/svelte/mock/mockApi.ts

This magic happens automatically with npm run dev

So, for example, if you go into api.ts and you add a new function call:


function getNumberOfRowsInSheet (sheetname : string) : number {
  // ... add logic here...
}

Saving that file now gets you three benefits:

  1. We get types generated for google.script.run so if you're using the Google API you get autocomplete.
  2. If you'd rather use a more modern API, we generate a file in your svelte code called gasApi.ts which will have modern, fully typed bindings for calling your Google Apps Script code.
  3. We generate template code in mock/mockApi.ts to let you mock your apps script code so you can test your client code locally without having to deploy to google.

Roadmap

  • Proof of concept: build svelte interface served with GAS! (x)
  • Improved type handling and testing framework. (x)

Top categories

Loading Svelte Themes