How to preserve query parameters in react-router v4

前端 未结 3 1389
深忆病人
深忆病人 2021-01-17 13:56

Users redirected to my app after login (server on java), and they have url, which looks like this http://10.8.0.29:8083/html/?locale=RU&token=1c5c71f2-dcda-4a51-8cf6-f8

3条回答
  •  星月不相逢
    2021-01-17 14:06

    I already shared my solution for react-router v3 in the comment to your question.

    Below is my solution for react-router v4.

    Use the following createPreserveQueryHistory function to override history.push and history.replace methods so they will preserve specified query parameters:

    import queryString from 'query-string';
    import {createBrowserHistory} from 'history'
    
    function preserveQueryParameters(history, preserve, location) {
        const currentQuery = queryString.parse(history.location.search);
        if (currentQuery) {
            const preservedQuery = {};
            for (let p of preserve) {
                const v = currentQuery[p];
                if (v) {
                    preservedQuery[p] = v;
                }
            }
            if (location.search) {
                Object.assign(preservedQuery, queryString.parse(location.search));
            }
            location.search = queryString.stringify(preservedQuery);
        }
        return location;
    }
    
    function createLocationDescriptorObject(location, state) {
        return typeof location === 'string' ? { pathname: location, state } : location;
    }
    
    function createPreserveQueryHistory(createHistory, queryParameters) {
        return (options) => {
            const history = createHistory(options);
            const oldPush = history.push, oldReplace = history.replace;
            history.push = (path, state) => oldPush.apply(history, [preserveQueryParameters(history, queryParameters, createLocationDescriptorObject(path, state))]);
            history.replace = (path, state) => oldReplace.apply(history, [preserveQueryParameters(history, queryParameters, createLocationDescriptorObject(path, state))]);
            return history;
        };
    }
    
    const history = createPreserveQueryHistory(createBrowserHistory, ['locale', 'token', 'returnTo'])();
    

    Then use it in your router definition:

    
        ...
    
    

    For those who use TypeScript:

    import {History, LocationDescriptor, LocationDescriptorObject} from 'history'
    import queryString from 'query-string'
    import LocationState = History.LocationState
    
    type CreateHistory = (options?: O) => History & H
    
    function preserveQueryParameters(history: History, preserve: string[], location: LocationDescriptorObject): LocationDescriptorObject {
        const currentQuery = queryString.parse(history.location.search)
        if (currentQuery) {
            const preservedQuery: { [key: string]: unknown } = {}
            for (let p of preserve) {
                const v = currentQuery[p]
                if (v) {
                    preservedQuery[p] = v
                }
            }
            if (location.search) {
                Object.assign(preservedQuery, queryString.parse(location.search))
            }
            location.search = queryString.stringify(preservedQuery)
        }
        return location
    }
    
    function createLocationDescriptorObject(location: LocationDescriptor, state?: LocationState): LocationDescriptorObject {
        return typeof location === 'string' ? {pathname: location, state} : location
    }
    
    export function createPreserveQueryHistory(createHistory: CreateHistory,
                                                     queryParameters: string[]): CreateHistory {
        return (options?: O) => {
            const history = createHistory(options)
            const oldPush = history.push, oldReplace = history.replace
            history.push = (path: LocationDescriptor, state?: LocationState) =>
                oldPush.apply(history, [preserveQueryParameters(history, queryParameters, createLocationDescriptorObject(path, state))])
            history.replace = (path: LocationDescriptor, state?: LocationState) =>
                oldReplace.apply(history, [preserveQueryParameters(history, queryParameters, createLocationDescriptorObject(path, state))])
            return history
        }
    }
    

提交回复
热议问题