* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
135 lines
No EOL
4.2 KiB
JavaScript
135 lines
No EOL
4.2 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {Dimensions, Keyboard} from 'react-native';
|
|
import {intlShape} from 'react-intl';
|
|
import AsyncStorage from '@react-native-community/async-storage';
|
|
|
|
import EventEmitter from '@mm-redux/utils/event_emitter';
|
|
|
|
import DrawerLayout, {DRAWER_INITIAL_OFFSET, TABLET_WIDTH} from 'app/components/sidebars/drawer_layout';
|
|
import {DeviceTypes, NavigationTypes} from 'app/constants';
|
|
import mattermostManaged from 'app/mattermost_managed';
|
|
|
|
import MainSidebarBase from './main_sidebar_base';
|
|
|
|
export default class MainSidebarIOS extends MainSidebarBase {
|
|
static contextTypes = {
|
|
intl: intlShape.isRequired,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.drawerRef = React.createRef();
|
|
this.state = {
|
|
deviceWidth: Dimensions.get('window').width,
|
|
openDrawerOffset: DRAWER_INITIAL_OFFSET,
|
|
drawerOpened: false,
|
|
searching: false,
|
|
isSplitView: false,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
super.componentDidMount();
|
|
|
|
this.handleDimensions({window: Dimensions.get('window')});
|
|
this.handlePermanentSidebar();
|
|
EventEmitter.on(DeviceTypes.PERMANENT_SIDEBAR_SETTINGS, this.handlePermanentSidebar);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
super.componentWillUnmount();
|
|
|
|
EventEmitter.off(DeviceTypes.PERMANENT_SIDEBAR_SETTINGS, this.handlePermanentSidebar);
|
|
}
|
|
|
|
closeMainSidebar = () => {
|
|
if (this.state.drawerOpened && this.drawerRef?.current) {
|
|
this.drawerRef.current.closeDrawer();
|
|
} else if (this.drawerSwiper && DeviceTypes.IS_TABLET) {
|
|
this.resetDrawer(true);
|
|
}
|
|
};
|
|
|
|
handleDimensions = ({window}) => {
|
|
if (this.mounted) {
|
|
if (DeviceTypes.IS_TABLET) {
|
|
mattermostManaged.isRunningInSplitView().then((result) => {
|
|
const isSplitView = Boolean(result.isSplitView);
|
|
this.setState({isSplitView});
|
|
});
|
|
}
|
|
|
|
if (this.state.openDrawerOffset !== 0) {
|
|
let openDrawerOffset = DRAWER_INITIAL_OFFSET;
|
|
if ((window.width > window.height) || DeviceTypes.IS_TABLET) {
|
|
openDrawerOffset = window.width * 0.5;
|
|
}
|
|
|
|
this.setState({openDrawerOffset, deviceWidth: window.width});
|
|
}
|
|
}
|
|
};
|
|
|
|
handlePermanentSidebar = async () => {
|
|
if (DeviceTypes.IS_TABLET && this.mounted) {
|
|
const enabled = await AsyncStorage.getItem(DeviceTypes.PERMANENT_SIDEBAR_SETTINGS);
|
|
this.setState({permanentSidebar: enabled === 'true'});
|
|
}
|
|
};
|
|
|
|
handleDrawerClose = () => {
|
|
this.setState({
|
|
drawerOpened: false,
|
|
searching: false,
|
|
});
|
|
this.resetDrawer();
|
|
Keyboard.dismiss();
|
|
};
|
|
|
|
handleDrawerOpen = () => {
|
|
this.setState({
|
|
drawerOpened: true,
|
|
});
|
|
};
|
|
|
|
open = () => {
|
|
EventEmitter.emit(NavigationTypes.BLUR_POST_TEXTBOX);
|
|
|
|
if (this.drawerRef?.current) {
|
|
this.drawerRef.current.openDrawer();
|
|
}
|
|
};
|
|
|
|
onPageSelected = (index) => {
|
|
this.swiperIndex = index;
|
|
|
|
if (this.drawerRef?.current) {
|
|
this.drawerRef.current.canClose = this.swiperIndex !== 0;
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const {children} = this.props;
|
|
const {deviceWidth, openDrawerOffset} = this.state;
|
|
const isTablet = DeviceTypes.IS_TABLET && !this.state.isSplitView && this.state.permanentSidebar;
|
|
const drawerWidth = DeviceTypes.IS_TABLET ? TABLET_WIDTH : (deviceWidth - openDrawerOffset);
|
|
|
|
return (
|
|
<DrawerLayout
|
|
ref={this.drawerRef}
|
|
renderNavigationView={this.renderNavigationView}
|
|
onDrawerClose={this.handleDrawerClose}
|
|
onDrawerOpen={this.handleDrawerOpen}
|
|
drawerWidth={drawerWidth}
|
|
useNativeAnimations={true}
|
|
isTablet={isTablet}
|
|
>
|
|
{children}
|
|
</DrawerLayout>
|
|
);
|
|
}
|
|
} |