在 React Redux 应用程序中检测网络连接 - 如果离线,则对用户隐藏组件

IT技术 javascript reactjs redux react-redux
2021-05-12 02:30:48

我正在使用 google 的自动完成 API 来改进表单中的地址输入。

我正在使用 GoogleMapsLoader 加载器,它在加载后调度动作:

GoogleMapsLoader.onLoad(function() {
    store.dispatch(GoogleActions.loaded());
});

在 React 组件中,我有以下输入:

if (google.status === 'LOADED') {
    inputGoogle = <div>
        <label htmlFor={`${group}.google`}>Auto Complete:</label>
        <input ref={(el) => this.loadAutocomplete(el)} type="text" />
    </div>;
} else {
    inputGoogle = '';
}

loadAutocomplete 方法(不确定这是否是最好的方法):

loadAutocomplete(ref) {
    if (!this.autocomplete) {
        this.search = ref;
        this.autocomplete = new google.maps.places.Autocomplete(ref);
        this.autocomplete.addListener('place_changed', this.onSelected);
    }
},

更新:

使用下面的答案我做了以下事情:

const GoogleReducer = (state = initialState, action) => {
    switch (action.type) {
        case 'GOOGLE_LOADED':
            return Object.assign({}, state, {
                status: 'LOADED',
                connection: 'ONLINE'
            });
        case 'GOOGLE_OFFLINE':
            return Object.assign({}, state, {
                connection: 'OFFLINE'
            });
        case 'GOOGLE_ONLINE':
            return Object.assign({}, state, {
                connection: 'ONLINE'
            });
        default:
            return state;
    }
};

const GoogleActions = {
    loaded: () => {
        return (dispatch) => {
            dispatch({
                type: 'GOOGLE_LOADED',
            });
        };
    },
    onOnline: () => {
        return (dispatch) => {
            window.addEventListener('online', function() {
                dispatch({
                    type: 'GOOGLE_ONLINE'
                });
            });
        };
    },
    onOffline: () => {
        return (dispatch) => {
            window.addEventListener('offline', function() {
                dispatch({
                    type: 'GOOGLE_OFFLINE'
                });
            });
        };
    }
};

React 组件内部:

if (google.status === 'LOADED' && google.connection === 'ONLINE') {
    inputGoogle = <div>
        <label htmlFor={`${group}.google`}>Auto Complete:</label>
        <input ref={(el) => this.loadAutocomplete(el)} name={`${group}.google`} id={`${group}.google`} type="text" onFocus={this.clearSearch}/>
    </div>;
} else {
    inputGoogle = <p>Auto Complete not available</p>;
}

到目前为止有效。

4个回答

您可以使用 Navigator 对象的 onLine 方法,返回一个布尔值,true如果在线,则只需在您的 react 渲染中添加一条语句即可。

https://developer.mozilla.org/en-US/docs/Web/API/NavigatorOnLine/onLine

render(){
    var input = navigator.onLine ? <YOUR_FORM_COMPONENT> : null;
    return(
    <div>
        {input}
    </div>
    )    
}

我一直在使用 react-detect-offline 来处理显示在线/离线特定内容,它处理不支持带轮询的在线事件的旧浏览器,您可以在选项中指定轮询 URL。

https://github.com/chrisbolin/react-detect-offline

首先安装包

npm install react-detect-offline

然后在你的组件中你会做类似的事情

import { Offline, Online } from "react-detect-offline"

const MyComponent = () => {
    return (
        <div>
            <Offline>You're offline right now. Check your connection.</Offline>
            <Online>You're online right now.</Online>
        </div>
    );
}

navigator.onLine无论是在线还是离线都会返回状态,但不会检查互联网连接是否存在。向@StackOverMySoul 添加更多内容。要摆脱这个可以参考下面的例子。

    var condition = navigator.onLine ? 'online' : 'offline';
    if (condition === 'online') {
      console.log('ONLINE');
        fetch('https://www.google.com/', { // Check for internet connectivity
            mode: 'no-cors',
            })
        .then(() => {
            console.log('CONNECTED TO INTERNET');
        }).catch(() => {
           console.log('INTERNET CONNECTIVITY ISSUE');
        }  )

    }else{
       console.log('OFFLINE')
    }

为什么选择 google.com?

将 get 请求发送到 google.com 而不是任何随机平台的原因是因为它具有很好的正常运行时间。这里的想法是始终将请求发送到始终在线的服务。如果您有服务器,您可以创建一个专用路由来替换 google.com 域,但您必须确保它具有惊人的正常运行时间。

使用navigator.onLine检查网络连接。如果网络连接可用则返回真,否则返回假。

还可以尝试使用 navigator.connection 来验证网络连接状态。

var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection;
    if (connection) {
      if (connection.effectiveType === 'slow-2g')
        preloadVideo = false;
    }

更多网络信息API