@28stoneconsulting/openfin-ngrx 中文文档教程
OpenfinNgrx
Motivation
将多个 OpenFin 窗口同步到一个状态或在某些情况下多个状态是一项艰巨的任务,会导致复杂的管理和重复的代码。
为多个窗口实现这样一个在它们之间传输大量数据的通信解决方案需要付出很多努力,尤其是当您有多个共享状态时。
The solution
OpenfinNgrx 提供了一个易于使用的解决方案。 它无缝地调度操作并从多个窗口的状态中选择数据。
Usage
OpenfinNgrx 使用以下方法提供 Angular 服务:
dispatchToParent
- 将 NGRX 操作分派给窗口父级。
dispatchToWindow
- 将 NGRX 操作分派到与给定窗口名称匹配的特定 Openfin 窗口。
dispatchToRoute
- 将 NGRX 操作分派到特定路径上的所有窗口。
selectFromWindow
- 从与给定窗口名称匹配的窗口状态中选择数据。
selectFromParent
- 从父窗口状态中选择数据。
Change detection
默认情况下,NgZone 不知道 OpenFin IAB。 当收到来自 IAB 的消息并且未触发更改检测时,这可能会导致问题。 OpenfinNgrx 通过在每个影响窗口的动作之后触发 Angular 变化检测来解决这个问题,例如分派从另一个窗口接收到的动作或从另一个窗口的状态接收数据。
OpenfinNgrxService usage example
向父窗口的存储分派增量操作。
export class ChildWindowComponent {
constructor(private openfinNgrxService: OpenfinNgrxService) {}
increaseCounterOnParentWindow(increaseBy) {
this.openfinNgrxService.dispatchToParent(
incrementAction({ paylaod: increaseBy })
);
}
}
OpenfinNgrx 会将操作分派到父窗口的状态,确保将在父窗口上触发 Angular 变化检测。
也可以导入 OpenfinNgrxMetareducerModule 来注册 NGRX 元还原器,它将根据动作路由元数据调用 OpenfinNgrxService 方法。
Metareducer usage example
向特定窗口的存储分派增量操作。
import { createAction, props, Store } from "@ngrx/store";
import { RoutingInfo } from "@28stoneconsulting/openfin-ngrx";
export const incrementBy = createAction(
"[Counter] IncrementBy",
props<{ payload: number; routing?: RoutingInfo }>()
);
export class ChildWindowComponent {
constructor(private store: Store) {}
increaseCounterOnParentWindow(increaseBy) {
this.store.dispatch(
incrementBy({
paylaod: increaseBy,
// type: 'parent' | 'window' | 'route'
// remoteOnly flag blocks local dispatch of an action
// if no routing info is provided then action is dispatched only locally as usual
routing: {
receivers: [{ type: "window", name: "window_name" }],
remoteOnly: true,
},
})
);
}
}
使用具有预配置路由信息的动作创建者将增量动作分派到父窗口的状态。
import { createAction, Store } from "@ngrx/store";
import { routingProps } from "@28stoneconsulting/openfin-ngrx";
export const incrementParentBy = createAction(
"[Counter] IncrementBy",
routingProps<number>({ type: "parent" }, true)
);
export class ChildWindowComponent {
constructor(private store: Store) {}
increaseCounterOnParentWindow(increaseBy) {
this.store.dispatch(incrementParentBy(increaseBy));
}
}
Demo
要克隆并运行演示,您需要 Git 和 Node.js(随 npm 一起提供)安装在您的计算机上。 从您的命令行:
# Clone this repository
git clone https://github.com/28StoneConsulting/openfin-ngrx.git
# Go into the repository
cd openfin-ngrx
# Install dependencies
npm install
# Run the the demo
npm start
OpenfinNgrx
Motivation
Synchronizing multiple OpenFin windows to a single state or in some cases multiple states is a difficult task which results in complex management and repetitive code.
Implementing such a communication solution for multiple windows that transfer a decent amount of data between them takes a lot of effort, especially if you have multiple states that are shared.
The solution
OpenfinNgrx offers an easy to use solution. It seamlessly dispatches actions and selects data from states across multiple windows.
Usage
OpenfinNgrx delivers an Angular service with the following methods:
dispatchToParent
- Dispatch NGRX action to the window parent.
dispatchToWindow
- Dispatch NGRX action to a specific Openfin window that matches the given window name.
dispatchToRoute
- Dispatch NGRX action to all windows on the specific route.
selectFromWindow
- select data from the state of the window that matches the given window name.
selectFromParent
- select data from parent window state.
Change detection
By default NgZone isn't aware of the OpenFin IAB. This may cause issues when messages from IAB are received and the change detection isn't triggered. OpenfinNgrx takes care of this problem by triggering the Angular change detection after every action that affects the window such as dispatching an action received from another window or receiving data from another window's state.
OpenfinNgrxService usage example
Dispatch increment action to the parent window's store.
export class ChildWindowComponent {
constructor(private openfinNgrxService: OpenfinNgrxService) {}
increaseCounterOnParentWindow(increaseBy) {
this.openfinNgrxService.dispatchToParent(
incrementAction({ paylaod: increaseBy })
);
}
}
OpenfinNgrx will dispatch the action to the parent window's state, assuring that the Angular change detection will be triggered on the parent window.
It is also possible to import OpenfinNgrxMetareducerModule to register NGRX metareducer that will call OpenfinNgrxService methods based on action routing metadata.
Metareducer usage example
Dispatch increment action to the particular window's store.
import { createAction, props, Store } from "@ngrx/store";
import { RoutingInfo } from "@28stoneconsulting/openfin-ngrx";
export const incrementBy = createAction(
"[Counter] IncrementBy",
props<{ payload: number; routing?: RoutingInfo }>()
);
export class ChildWindowComponent {
constructor(private store: Store) {}
increaseCounterOnParentWindow(increaseBy) {
this.store.dispatch(
incrementBy({
paylaod: increaseBy,
// type: 'parent' | 'window' | 'route'
// remoteOnly flag blocks local dispatch of an action
// if no routing info is provided then action is dispatched only locally as usual
routing: {
receivers: [{ type: "window", name: "window_name" }],
remoteOnly: true,
},
})
);
}
}
Dispatch increment action to the parent window's sate with action creator with prconfigured routing info.
import { createAction, Store } from "@ngrx/store";
import { routingProps } from "@28stoneconsulting/openfin-ngrx";
export const incrementParentBy = createAction(
"[Counter] IncrementBy",
routingProps<number>({ type: "parent" }, true)
);
export class ChildWindowComponent {
constructor(private store: Store) {}
increaseCounterOnParentWindow(increaseBy) {
this.store.dispatch(incrementParentBy(increaseBy));
}
}
Demo
To clone and run the demo you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
# Clone this repository
git clone https://github.com/28StoneConsulting/openfin-ngrx.git
# Go into the repository
cd openfin-ngrx
# Install dependencies
npm install
# Run the the demo
npm start
你可能也喜欢
- @1inch/limit-order-protocol 中文文档教程
- @20i/cognito-react 中文文档教程
- @21cnfe/vui 中文文档教程
- @3test/wanchain-utils 中文文档教程
- @7polo/mindmap-vue 中文文档教程
- @aaronhayes/react-use-hubspot-form 中文文档教程
- @aayushgarg14/expo-mixpanel-analytics 中文文档教程
- @abi-software/map-side-bar 中文文档教程
- @aboll/core 中文文档教程
- @abrandec/protocol-monorepo-upgradeable 中文文档教程