package | from version | to version |
---|---|---|
betsy | 1.0.2 | 1.0.2-1561921753905 |
overmind | 18.0.1 | 19.0.0-1561921753906 |
overmind-angular | 18.0.1 | 19.0.0-1561921753906 |
overmind-devtools | 19.0.1 | 20.0.0-1561921753906 |
overmind-devtools-client | 1.0.0 | 2.0.0-1561921753906 |
overmind-react | 19.0.1 | 20.0.0-1561921753906 |
overmind-themes | 1.0.2 | 1.0.2-1561921753906 |
import { | |
OnCallWithServices, | |
ResponseError, | |
OnRequestWithServices, | |
} from './services' | |
import * as Stripe from 'stripe' | |
export const subscribe: OnCallWithServices<{ | |
token: string | |
plans: string[] |
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
import 'package:rxdart/rxdart.dart' as rx; | |
Observer currentObserver; | |
class Observer { | |
Map<rx.Observable, StreamSubscription> _subscriptions = Map(); | |
rx.BehaviorSubject _subject = rx.BehaviorSubject(); |
class Store { | |
Store([Store parent = null]) { | |
this.emit = parent == null ? (dynamic action) { | |
if (_subscribers.containsKey(action)) { | |
_subscribers[action].forEach((cb) => cb()); | |
} | |
} : parent.emit; | |
} | |
Map<Action, Set<Function>> _subscribers = new Map(); | |
Function subscribe(List<Action> actions, Function callback) { |
There are several approaches to detecting change, for example:
-
Mobx, Vue js, Overmind JS: Mutation detection using getters/setters or proxies.
-
Redux: Reference comparison, typically combined with immutability (Is previous value different than current?)
-
Cerebral JS: Path matching. With single state trees you can match what paths components depend on with what paths are being mutated in the state tree
export const open: Action = async ({ state, actions, effects }) => { | |
state.currentPage = Page.ADMIN | |
const messageUpdates = await effects.api.getAdminMessageUpdates() | |
state.admin.messageUpdates = messageUpdates | |
state.admin.users = await effects.api.getUsers( | |
messageUpdates.map((update) => update.userUid) | |
) | |
if (state.admin.messageUpdates.length) { | |
state.admin.isLoadingFeed = true |
export default JSON.parse(`{ | |
"0": { | |
"actionId": 3, | |
"actionName": "routeProcessView", | |
"executionId": 1, | |
"name": "setRoute", | |
"operatorId": 0, | |
"path": [], | |
"type": "action", | |
"isRunning": false, |
// Based on this comment: https://github.com/Microsoft/TypeScript/issues/20965#issuecomment-370114910 | |
declare module "bem-jsx" { | |
export type BlockType<Props extends { [prop: string]: string }> = React.ComponentType<Props> & { | |
[key: string]: React.ComponentType<any>; | |
}; | |
export default function block<T extends string, Props = { [K in T]?: string }>( | |
blockName: string, | |
modifiers?: T[], |
The APIs React.PureComponent
and React.memo
are used to optimize performance of React. From the documentation:
If your React component’s render() function renders the same result given the same props and state, you can use React.PureComponent for a performance boost in some cases.
Questions I hope would inspire to write another technical article on React, focusing on these APIs and performance:
- I thought React always renders based on its props and state. What other reasons would make comparison break the behaviour of a component?