* Add linter rules for import order and type member delimiters * Remove unneeded group * Group all app/* imports before the internal imports * Move app/ imports before parent imports * Separate @node_modules imports into a different group * Substitute app paths by aliases * Fix @node_modules import order and add test related modules * Add aliases for types and test, and group import types
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {DeviceTypes} from '@constants';
|
|
|
|
export function connection(isOnline) {
|
|
return async (dispatch, getState) => {
|
|
const state = getState();
|
|
if (isOnline !== undefined && isOnline !== state.device.connection) {
|
|
dispatch({
|
|
type: DeviceTypes.CONNECTION_CHANGED,
|
|
data: isOnline,
|
|
});
|
|
}
|
|
};
|
|
}
|
|
|
|
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,
|
|
};
|