Skip to content
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
/ electron-sync Public archive

The tool for connect main and renderer processes on electron

Notifications You must be signed in to change notification settings

den59k/electron-sync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Electron Sync

The library is provided to synchronize data between the main process and the renderer

Yeah, it is supports batching. All sync process exec in nextTick

Structure

Code splited on 3 parts. For better performance you should import files from subdirectories.

Main

Main containts methods for main process

import { syncMain, proxyMethods } from '@den59k/electron-sync/lib/main'

syncMain is responsible for data synchronization, and proxyMethods is the pretty wrapper for ipcRenderer

You can use it like this:

For data:

import { syncMain } from "@den59k/electron-sync/lib/main"

class CounterData {
  value = 1
}

const counterData = syncMain(new CounterData(), [ "counter" ])
export { counterData, CounterData }

For methods:

import { proxyMethods } from '@den59k/electron-sync/lib/main'
import { counterData } from '../data/counter'

class CounterService {
  
  constructor() {
    proxyMethods(this, "counter")
  }

  increment() {
    counterData.value++
  }

}

export const counterService = new CounterService()

Renderer

Renderer containts methods for renderer process

import { syncRenderer } from '@den59k/electron-sync/lib/renderer'

You can use it like this:

const data = syncRenderer('counter', (obj: CounterData) => reactive(obj))

React + Mobx

If you are using React and Mobx, you can set the action wrapper for all sync calls:

import { action } from 'mobx'
import { setActionWrapper } from '@den59k/electron-sync/lib/renderer'

setActionWrapper(action)

Preload

And finally, scripts for preload

import { bridge, proxy } from '@den59k/electron-sync/lib/preload'

As mentioned before, proxyMethods provides a pretty wrapper for the ipcRenderer->ipcMain channel.

To use it, you need to list the proxied methods in the preloader:

  1. First the methods that do not expect anything ipcRenderer.send

  2. Then methods that call promis and expect its result ipcRenderer.invoke

  3. And finally, methods which call synchronously and expect a synchronous response ipcRenderer.sendSync.

P.S. Sorry about the dummy second argument hack. It is necessary because typescript does not allow to make partial generic types

Example of use:

const electronBridge = {
  ...bridge,
  counter: counter: proxy("counter", {} as typeof counterService, [ "increment" ], [], []))
}

contextBridge.exposeInMainWorld('electron', electronBridge)

About

The tool for connect main and renderer processes on electron

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published