-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate custom plugins #13
Comments
We're working on this actually! |
Really, really great. I don’t know how to thank you for such a great piece of software. |
Thanks @jperon. One useful step might be to document what has already been done? To write up the brief notes I gave in https://community.getgrist.com/t/grist-omnibus-integrate-image-data-in-markdown-html-from-self-hosted-lan/4381/8?u=paul-grist, I needed to poke around in the test I excerpted there, since although technically I wrote this code everything about it has been pushed out of my memory by more recent work :-). I did a quick experiment to see if I could add an offline widget to the latest version of
That So I added this file in name: My Widgets
components:
widgets: widgets.json Then I added this file in [{
"name": "Paul test",
"url": "./paul.html",
"widgetId": "paulfitz/widget-paul",
"published": true,
"renderAfterReady": false
}] Then I added this file in <html>
<body style="background: red;">
Hello this is Paul's test widget
</body>
</html> Then I restarted
That extra line about extra-widgets is encouraging. Then in the app when I go to add a widget I see: However if I add my widget, it doesn't quite work yet, it looks all blank. Checking Setting Most of what I've said applies to |
One of the main features of Grist-electron, IMHO, is the ability to work offline. It would be great if there was a way to integrate custom plugins within it, so that they’re available without needing an internet connection.
The text was updated successfully, but these errors were encountered: