-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v3.0 Migration from Webpack to Vite (#54)
* Added preferred engines * Convert project from Webpack to Vite * add integrity to script tags * add html attributes to improve internationalization
- Loading branch information
1 parent
cd26533
commit efa2bb8
Showing
20 changed files
with
1,533 additions
and
4,750 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,3 @@ certs/ | |
|
||
# storybook | ||
storybook-static/ | ||
|
||
# webpack bundle analyzer | ||
./report.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
20 | ||
20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Changelog | ||
|
||
## 3.0.0 | ||
|
||
- **Breaking Change**: Migration from Webpack to Vite | ||
- Storybook converted to use vite | ||
|
||
## 2.0.0 | ||
|
||
- No history... sorry | ||
|
||
## 1.0.0 | ||
|
||
- Initial release, no history... sorry |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<!-- | ||
This is a development server page that serves as a wrapper for Google Apps Script (GAS) client-side development. | ||
It is meant to be run inside a Google Sheets/Docs/Forms dialog window during local development. | ||
It loads the gas-client library (as an external), sets up an iframe that points to a local development | ||
server (such as running with vite), and establishes a communication bridge between the GAS server functions and the local development server. | ||
This allows for local development and testing of client-side code while still being able to interact with | ||
the GAS server-side functions. | ||
Two placeholders are used in this file that will need to be replaced in a build step: | ||
- _ _PORT_ _: The port number of the local development server. (e.g. 3000) | ||
- _ _FILE_NAME_ _: The name of the file being loaded. (e.g. dialog-demo-bootstrap/index.html) | ||
--> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<base target="_top" /> | ||
<title>Dev Server</title> | ||
<!-- Load gas-client as external. Exposed global variable is GASClient. --> | ||
<script | ||
crossorigin | ||
integrity="sha384-pdoLFZ6Km6ToTanpnj5aokMJPkRi1p9b/NI+KaQ230ufwQHp4aRqQkJbY4rmWc4d" | ||
src="https://unpkg.com/[email protected]/dist/index.js" | ||
></script> | ||
<style> | ||
body, | ||
html { | ||
margin: 0; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
</style> | ||
<script> | ||
document.addEventListener('DOMContentLoaded', function () { | ||
// These values need to be replaced during the build process | ||
const PORT = '__PORT__'; | ||
const FILE_NAME = '__FILE_NAME__'; | ||
|
||
const iframe = document.getElementById('iframe'); | ||
iframe.src = 'https://localhost:' + PORT + '/' + FILE_NAME; | ||
const { serverFunctions } = new window.GASClient.GASClient({ | ||
allowedDevelopmentDomains: (origin) => | ||
/https:\/\/.*\.googleusercontent\.com$/.test(origin), | ||
}); | ||
|
||
const handleRequest = (event) => { | ||
const request = event.data; | ||
const { type, functionName, id, args } = request; | ||
|
||
if (type !== 'REQUEST') return; | ||
|
||
serverFunctions[functionName](...args) | ||
.then((response) => { | ||
iframe.contentWindow.postMessage( | ||
{ type: 'RESPONSE', id, status: 'SUCCESS', response }, | ||
'https://localhost:' + PORT | ||
); | ||
}) | ||
.catch((err) => { | ||
iframe.contentWindow.postMessage( | ||
{ | ||
type: 'RESPONSE', | ||
id, | ||
status: 'ERROR', | ||
response: err, | ||
}, | ||
'https://localhost:' + PORT | ||
); | ||
}); | ||
}; | ||
window.addEventListener('message', handleRequest, false); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<div style="width: 100%; height: 100%"> | ||
<iframe | ||
title="Development Dialog Loader" | ||
id="iframe" | ||
style="width: 100%; height: 100%; border: 0; position: absolute" | ||
></iframe> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.