createStore

  1. 是否存在中间件

    • 是,调用 enhancer(applyMiddleware(middlewares)) 创建 store
    • 否,正常创建 store
  2. store 中存在以下几个主要方法

    • dispatch, 接收一个对象(action)
      • 调用 reducer
      • 执行 listeners
      • 返回 action
    • subscribe,接收一个监听函数
      • push 到 listeners 中
      • 返回一个接触监听的函数
    • getState
      • 返回 state
    • replaceReducer
      • 接收一个 reducer
      • 替换当前 reducer
      • 返回 store
function createStore(reducer, preloadedState, enhancer) {
    if (
        (typeof preloadedState === "function" &&
            typeof enhancer === "function") ||
        (typeof enhancer === "function" && typeof arguments[3] === "function")
    ) {
        throw new Error(
            "It looks like you are passing several store enhancers to " +
                "createStore(). This is not supported. Instead, compose them " +
                "together to a single function."
        );
    }

    if (
        typeof preloadedState === "function" &&
        typeof enhancer === "undefined"
    ) {
        enhancer = preloadedState;
        preloadedState = undefined;
    }

    if (typeof enhancer !== "undefined") {
        if (typeof enhancer !== "function") {
            throw new Error("Expected the enhancer to be a function.");
        }

        return enhancer(createStore)(reducer, preloadedState);
    }

    if (typeof reducer !== "function") {
        throw new Error("Expected the reducer to be a function.");
    }

    let currentReducer = reducer;
    let currentState = preloadedState;
    let currentListeners = [];
    let nextListeners = currentListeners;
    let isDispatching = false;

    /**
     * This makes a shallow copy of currentListeners so we can use
     * nextListeners as a temporary list while dispatching.
     *
     * This prevents any bugs around consumers calling
     * subscribe/unsubscribe in the middle of a dispatch.
     */
    function ensureCanMutateNextListeners() {
        if (nextListeners === currentListeners) {
            nextListeners = currentListeners.slice();
        }
    }

    /**
     * Reads the state tree managed by the store.
     *
     * @returns The current state tree of your application.
     */
    function getState() {
        if (isDispatching) {
            throw new Error(
                "You may not call store.getState() while the reducer is executing. " +
                    "The reducer has already received the state as an argument. " +
                    "Pass it down from the top reducer instead of reading it from the store."
            );
        }

        return currentState;
    }

    /**
     * Adds a change listener. It will be called any time an action is dispatched,
     * and some part of the state tree may potentially have changed. You may then
     * call `getState()` to read the current state tree inside the callback.
     *
     * You may call `dispatch()` from a change listener, with the following
     * caveats:
     *
     * 1. The subscriptions are snapshotted just before every `dispatch()` call.
     * If you subscribe or unsubscribe while the listeners are being invoked, this
     * will not have any effect on the `dispatch()` that is currently in progress.
     * However, the next `dispatch()` call, whether nested or not, will use a more
     * recent snapshot of the subscription list.
     *
     * 2. The listener should not expect to see all state changes, as the state
     * might have been updated multiple times during a nested `dispatch()` before
     * the listener is called. It is, however, guaranteed that all subscribers
     * registered before the `dispatch()` started will be called with the latest
     * state by the time it exits.
     *
     * @param listener A callback to be invoked on every dispatch.
     * @returns A function to remove this change listener.
     */
    function subscribe(listener) {
        if (typeof listener !== "function") {
            throw new Error("Expected the listener to be a function.");
        }

        if (isDispatching) {
            throw new Error(
                "You may not call store.subscribe() while the reducer is executing. " +
                    "If you would like to be notified after the store has been updated, subscribe from a " +
                    "component and invoke store.getState() in the callback to access the latest state. " +
                    "See https://redux.js.org/api-reference/store#subscribelistener for more details."
            );
        }

        let isSubscribed = true;

        ensureCanMutateNextListeners();
        nextListeners.push(listener);

        return function unsubscribe() {
            if (!isSubscribed) {
                return;
            }

            if (isDispatching) {
                throw new Error(
                    "You may not unsubscribe from a store listener while the reducer is executing. " +
                        "See https://redux.js.org/api-reference/store#subscribelistener for more details."
                );
            }

            isSubscribed = false;

            ensureCanMutateNextListeners();
            const index = nextListeners.indexOf(listener);
            nextListeners.splice(index, 1);
            currentListeners = null;
        };
    }

    /**
     * Dispatches an action. It is the only way to trigger a state change.
     *
     * The `reducer` function, used to create the store, will be called with the
     * current state tree and the given `action`. Its return value will
     * be considered the **next** state of the tree, and the change listeners
     * will be notified.
     *
     * The base implementation only supports plain object actions. If you want to
     * dispatch a Promise, an Observable, a thunk, or something else, you need to
     * wrap your store creating function into the corresponding middleware. For
     * example, see the documentation for the `redux-thunk` package. Even the
     * middleware will eventually dispatch plain object actions using this method.
     *
     * @param action A plain object representing “what changed”. It is
     * a good idea to keep actions serializable so you can record and replay user
     * sessions, or use the time travelling `redux-devtools`. An action must have
     * a `type` property which may not be `undefined`. It is a good idea to use
     * string constants for action types.
     *
     * @returns For convenience, the same action object you dispatched.
     *
     * Note that, if you use a custom middleware, it may wrap `dispatch()` to
     * return something else (for example, a Promise you can await).
     */
    function dispatch(action) {
        // console.log('===原生==>1');
        if (!isPlainObject(action)) {
            throw new Error(
                "Actions must be plain objects. " +
                    "Use custom middleware for async actions."
            );
        }

        if (typeof action.type === "undefined") {
            throw new Error(
                'Actions may not have an undefined "type" property. ' +
                    "Have you misspelled a constant?"
            );
        }

        if (isDispatching) {
            throw new Error("Reducers may not dispatch actions.");
        }

        try {
            isDispatching = true;
            currentState = currentReducer(currentState, action);
        } finally {
            isDispatching = false;
        }

        const listeners = (currentListeners = nextListeners);

        // console.log("========listeners====>", listeners);
        // console.log("========listeners====>", nextListeners);
        for (let i = 0; i < listeners.length; i++) {
            const listener = listeners[i];
            listener();
        }

        return action;
    }

    /**
     * Replaces the reducer currently used by the store to calculate the state.
     *
     * You might need this if your app implements code splitting and you want to
     * load some of the reducers dynamically. You might also need this if you
     * implement a hot reloading mechanism for Redux.
     *
     * @param nextReducer The reducer for the store to use instead.
     * @returns The same store instance with a new reducer in place.
     */
    function replaceReducer(nextReducer) {
        if (typeof nextReducer !== "function") {
            throw new Error("Expected the nextReducer to be a function.");
        }

        // TODO: do this more elegantly
        // ;((currentReducer as unknown) as Reducer<
        //   NewState,
        //   NewActions
        // >) = nextReducer

        currentReducer = nextReducer;
        // This action has a similar effect to ActionTypes.INIT.
        // Any reducers that existed in both the new and old rootReducer
        // will receive the previous state. This effectively populates
        // the new state tree with any relevant data from the old one.
        dispatch({ type: ActionTypes.REPLACE });
        // change the type of the store by casting it to the new store
        return store;
    }

    /**
     * Interoperability point for observable/reactive libraries.
     * @returns A minimal observable of state changes.
     * For more information, see the observable proposal:
     * https://github.com/tc39/proposal-observable
     */
    function observable() {
        const outerSubscribe = subscribe;
        return {
            /**
             * The minimal observable subscription method.
             * @param observer Any object that can be used as an observer.
             * The observer object should have a `next` method.
             * @returns An object with an `unsubscribe` method that can
             * be used to unsubscribe the observable from the store, and prevent further
             * emission of values from the observable.
             */
            subscribe(observer) {
                if (typeof observer !== "object" || observer === null) {
                    throw new TypeError(
                        "Expected the observer to be an object."
                    );
                }

                function observeState() {
                    const observerAsObserver = observer;
                    if (observerAsObserver.next) {
                        observerAsObserver.next(getState());
                    }
                }

                observeState();
                const unsubscribe = outerSubscribe(observeState);
                return { unsubscribe };
            },

            [$$observable]() {
                return this;
            }
        };
    }

    // When a store is created, an "INIT" action is dispatched so that every
    // reducer returns their initial state. This effectively populates
    // the initial state tree.
    dispatch({ type: ActionTypes.INIT });

    const store = {
        dispatch: dispatch,
        subscribe,
        getState,
        replaceReducer,
        [$$observable]: observable
    };
    return store;
}

results matching ""

    No results matching ""