forked from Ivasoft/mattermost-mobile
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {networkStatusChangedAction} from 'redux-offline';
|
|
import {Client4} from 'mattermost-redux/client';
|
|
|
|
import {DeviceTypes} from 'app/constants';
|
|
|
|
export function connection(isOnline) {
|
|
return async (dispatch) => {
|
|
Client4.setOnline(isOnline);
|
|
dispatch(networkStatusChangedAction(isOnline));
|
|
dispatch({
|
|
type: DeviceTypes.CONNECTION_CHANGED,
|
|
data: isOnline,
|
|
});
|
|
};
|
|
}
|
|
|
|
export function setStatusBarHeight(height = 20) {
|
|
return {
|
|
type: DeviceTypes.STATUSBAR_HEIGHT_CHANGED,
|
|
data: height,
|
|
};
|
|
}
|
|
|
|
export function setDeviceDimensions(height, width) {
|
|
return {
|
|
type: DeviceTypes.DEVICE_DIMENSIONS_CHANGED,
|
|
data: {
|
|
deviceHeight: height,
|
|
deviceWidth: width,
|
|
},
|
|
};
|
|
}
|
|
|
|
export function setDeviceOrientation(orientation) {
|
|
return {
|
|
type: DeviceTypes.DEVICE_ORIENTATION_CHANGED,
|
|
data: orientation,
|
|
};
|
|
}
|
|
|
|
export function setDeviceAsTablet() {
|
|
return {
|
|
type: DeviceTypes.DEVICE_TYPE_CHANGED,
|
|
data: true,
|
|
};
|
|
}
|
|
|
|
export default {
|
|
connection,
|
|
setDeviceDimensions,
|
|
setDeviceOrientation,
|
|
setDeviceAsTablet,
|
|
setStatusBarHeight,
|
|
};
|