mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) dust off electron build a little bit
Summary: The changes in this diff are sufficient to make this sequence work again: ``` ./build electron-dev bin/electron app/electron/runPrebuild.js ``` This brings up the local server within an electron window. This is an unambitious diff, aimed at checking how rusty electron support had become. It does not revive Grist as a packaged electron app. The first substantial work needed would be to make the app aware of the local file system again, and think through how local files should be visualized and accessed now. In the past, there was a simple list of grist docs in a directory. Test Plan: manual Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3534
This commit is contained in:
@@ -40,7 +40,7 @@ import { getOriginUrl } from 'app/common/urlUtils';
|
||||
import { GristAPI, RPC_GRISTAPI_INTERFACE } from 'app/plugin/GristAPI';
|
||||
import { RenderOptions, RenderTarget } from 'app/plugin/RenderOptions';
|
||||
import { checkers } from 'app/plugin/TypeCheckers';
|
||||
import { IpcMessageEvent, WebviewTag } from 'electron';
|
||||
import { IpcMessageEvent } from 'electron';
|
||||
import { IMsgCustom, IMsgRpcCall, Rpc } from 'grain-rpc';
|
||||
import { Disposable } from './dispose';
|
||||
const G = getBrowserGlobals('document', 'window');
|
||||
@@ -305,7 +305,7 @@ class IframeProcess extends ViewProcess {
|
||||
class WebviewProcess extends ViewProcess {
|
||||
public create(safeBrowser: SafeBrowser, rpc: Rpc, src: string) {
|
||||
super.create(safeBrowser, rpc, src);
|
||||
const webview: WebviewTag = this.element = this.autoDispose(dom('webview.safe_browser_process.clipboard_focus', {
|
||||
const webview = this.element = this.autoDispose(dom('webview.safe_browser_process.clipboard_focus', {
|
||||
src,
|
||||
allowpopups: '',
|
||||
// Requests with this partition get an extra header (see main.js) to get access to plugin content.
|
||||
|
||||
Reference in New Issue
Block a user