1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-mobile/components/side-menu-content.tsx

440 lines
12 KiB
TypeScript
Raw Normal View History

2019-07-29 15:43:53 +02:00
const React = require('react');
import { useMemo, useEffect } from 'react';
const { Easing, Animated, TouchableOpacity, Text, StyleSheet, ScrollView, View, Alert, Image } = require('react-native');
const { connect } = require('react-redux');
const Icon = require('react-native-vector-icons/Ionicons').default;
import Folder from '@joplin/lib/models/Folder';
import Synchronizer from '@joplin/lib/Synchronizer';
import NavService from '@joplin/lib/services/NavService';
import { _ } from '@joplin/lib/locale';
2020-11-05 18:58:23 +02:00
const { themeStyle } = require('./global-style.js');
const shared = require('@joplin/lib/components/shared/side-menu-shared.js');
import { FolderEntity, FolderIcon } from '@joplin/lib/services/database/types';
import { AppState } from '../utils/types';
2017-05-24 21:27:13 +02:00
2020-02-09 16:51:12 +02:00
Icon.loadFont();
interface Props {
syncStarted: boolean;
themeId: number;
dispatch: Function;
collapsedFolderIds: string[];
syncReport: any;
decryptionWorker: any;
resourceFetcher: any;
syncOnlyOverWifi: boolean;
isOnMobileData: boolean;
notesParentType: string;
folders: FolderEntity[];
opacity: number;
}
2017-08-01 19:59:01 +02:00
const syncIconRotationValue = new Animated.Value(0);
2017-08-01 19:59:01 +02:00
const syncIconRotation = syncIconRotationValue.interpolate({
inputRange: [0, 1],
outputRange: ['0deg', '360deg'],
});
2017-08-01 19:59:01 +02:00
let syncIconAnimation: any;
const SideMenuContentComponent = (props: Props) => {
const styles_ = useMemo(() => {
const theme = themeStyle(props.themeId);
const styles: any = {
2017-08-01 19:59:01 +02:00
menu: {
flex: 1,
2019-07-29 15:43:53 +02:00
backgroundColor: theme.backgroundColor,
2017-08-01 19:59:01 +02:00
},
button: {
flex: 1,
flexDirection: 'row',
2017-08-01 19:59:01 +02:00
height: 36,
alignItems: 'center',
2017-08-01 19:59:01 +02:00
paddingLeft: theme.marginLeft,
paddingRight: theme.marginRight,
},
buttonText: {
flex: 1,
color: theme.color,
paddingLeft: 10,
fontSize: theme.fontSize,
},
syncStatus: {
paddingLeft: theme.marginLeft,
paddingRight: theme.marginRight,
color: theme.colorFaded,
fontSize: theme.fontSizeSmaller,
flex: 0,
2017-08-01 19:59:01 +02:00
},
sidebarIcon: {
fontSize: 22,
color: theme.color,
},
2017-08-01 19:59:01 +02:00
};
styles.folderButton = Object.assign({}, styles.button);
styles.folderButton.paddingLeft = 0;
styles.folderButtonText = Object.assign({}, styles.buttonText, { paddingLeft: 0 });
2017-08-01 19:59:01 +02:00
styles.folderButtonSelected = Object.assign({}, styles.folderButton);
styles.folderButtonSelected.backgroundColor = theme.selectedColor;
styles.folderIcon = Object.assign({}, theme.icon);
2019-10-09 21:35:13 +02:00
styles.folderIcon.color = theme.colorFaded; // '#0072d5';
styles.folderIcon.paddingTop = 3;
2017-08-01 19:59:01 +02:00
styles.sideButton = Object.assign({}, styles.button, { flex: 0 });
2019-07-11 19:44:26 +02:00
styles.sideButtonSelected = Object.assign({}, styles.sideButton, { backgroundColor: theme.selectedColor });
styles.sideButtonText = Object.assign({}, styles.buttonText);
2017-08-01 19:59:01 +02:00
styles.emptyFolderIcon = { ...styles.sidebarIcon, marginRight: 10 };
2017-07-06 21:48:17 +02:00
return StyleSheet.create(styles);
}, [props.themeId]);
useEffect(() => {
if (props.syncStarted) {
syncIconAnimation = Animated.loop(
Animated.timing(syncIconRotationValue, {
toValue: 1,
duration: 3000,
easing: Easing.linear,
})
);
syncIconAnimation.start();
} else {
if (syncIconAnimation) syncIconAnimation.stop();
syncIconAnimation = null;
2019-07-29 15:43:53 +02:00
}
}, [props.syncStarted]);
const folder_press = (folder: FolderEntity) => {
props.dispatch({ type: 'SIDE_MENU_CLOSE' });
2019-07-11 19:44:26 +02:00
props.dispatch({
2019-07-11 19:44:26 +02:00
type: 'NAV_GO',
routeName: 'Notes',
folderId: folder.id,
});
};
2017-05-24 21:27:13 +02:00
const folder_longPress = async (folder: FolderEntity) => {
if (folder === 'all') return;
Alert.alert(
'',
2019-07-29 15:43:53 +02:00
_('Notebook: %s', folder.title),
[
{
text: _('Rename'),
onPress: () => {
if (folder.encryption_applied) {
alert(_('Encrypted notebooks cannot be renamed'));
return;
}
props.dispatch({ type: 'SIDE_MENU_CLOSE' });
props.dispatch({
type: 'NAV_GO',
routeName: 'Folder',
folderId: folder.id,
});
2019-07-29 15:43:53 +02:00
},
},
{
text: _('Delete'),
onPress: () => {
Alert.alert('', _('Delete notebook "%s"?\n\nAll notes and sub-notebooks within this notebook will also be deleted.', folder.title), [
{
text: _('OK'),
onPress: () => {
void Folder.delete(folder.id);
},
},
{
text: _('Cancel'),
onPress: () => {},
style: 'cancel',
},
]);
},
style: 'destructive',
},
{
text: _('Cancel'),
onPress: () => {},
style: 'cancel',
2019-07-29 15:43:53 +02:00
},
],
{
cancelable: false,
}
);
};
const folder_togglePress = (folder: FolderEntity) => {
props.dispatch({
type: 'FOLDER_TOGGLE',
id: folder.id,
});
};
const tagButton_press = () => {
props.dispatch({ type: 'SIDE_MENU_CLOSE' });
2017-07-25 20:36:52 +02:00
props.dispatch({
type: 'NAV_GO',
routeName: 'Tags',
2017-07-25 20:36:52 +02:00
});
};
2017-07-25 20:36:52 +02:00
const configButton_press = () => {
props.dispatch({ type: 'SIDE_MENU_CLOSE' });
void NavService.go('Config');
};
const allNotesButton_press = () => {
props.dispatch({ type: 'SIDE_MENU_CLOSE' });
2019-07-11 19:44:26 +02:00
props.dispatch({
2019-07-11 19:44:26 +02:00
type: 'NAV_GO',
routeName: 'Notes',
smartFilterId: 'c3176726992c11e9ac940492261af972',
});
};
2019-07-11 19:44:26 +02:00
const newFolderButton_press = () => {
props.dispatch({ type: 'SIDE_MENU_CLOSE' });
props.dispatch({
type: 'NAV_GO',
routeName: 'Folder',
folderId: null,
});
};
const synchronize_press = async () => {
2017-11-06 23:11:15 +02:00
const actionDone = await shared.synchronize_press(this);
if (actionDone === 'auth') props.dispatch({ type: 'SIDE_MENU_CLOSE' });
};
2017-07-06 21:48:17 +02:00
const renderFolderIcon = (theme: any, folderIcon: FolderIcon) => {
if (!folderIcon) return <Icon name="folder-outline" style={styles_.emptyFolderIcon} />;
if (folderIcon.type === 1) { // FolderIconType.Emoji
return <Text style={{ fontSize: theme.fontSize, marginRight: 4 }}>{folderIcon.emoji}</Text>;
} else if (folderIcon.type === 2) { // FolderIconType.DataUrl
return <Image style={{ width: 20, height: 20, marginRight: 4, resizeMode: 'contain' }} source={{ uri: folderIcon.dataUrl }}/>;
} else {
throw new Error(`Unsupported folder icon type: ${folderIcon.type}`);
}
};
const renderFolderItem = (folder: FolderEntity, selected: boolean, hasChildren: boolean, depth: number) => {
const theme = themeStyle(props.themeId);
2017-07-22 17:55:09 +02:00
const folderButtonStyle: any = {
flex: 1,
flexDirection: 'row',
height: 36,
alignItems: 'center',
paddingRight: theme.marginRight,
paddingLeft: 10,
};
if (selected) folderButtonStyle.backgroundColor = theme.selectedColor;
folderButtonStyle.paddingLeft = depth * 10 + theme.marginLeft;
const iconWrapperStyle: any = { paddingLeft: 10, paddingRight: 10 };
if (selected) iconWrapperStyle.backgroundColor = theme.selectedColor;
let iconWrapper = null;
const collapsed = props.collapsedFolderIds.indexOf(folder.id) >= 0;
const iconName = collapsed ? 'chevron-down' : 'chevron-up';
const iconComp = <Icon name={iconName} style={styles_.folderIcon} />;
2019-07-11 19:44:26 +02:00
iconWrapper = !hasChildren ? null : (
2019-07-29 15:43:53 +02:00
<TouchableOpacity
style={iconWrapperStyle}
folderid={folder.id}
onPress={() => {
if (hasChildren) folder_togglePress(folder);
2019-07-29 15:43:53 +02:00
}}
accessibilityLabel={collapsed ? _('Expand folder') : _('Collapse folder')}
accessibilityRole="togglebutton"
2019-07-29 15:43:53 +02:00
>
{iconComp}
2019-07-11 19:44:26 +02:00
</TouchableOpacity>
);
const folderIcon = Folder.unserializeIcon(folder.icon);
return (
2019-07-11 19:44:26 +02:00
<View key={folder.id} style={{ flex: 1, flexDirection: 'row' }}>
2019-07-29 15:43:53 +02:00
<TouchableOpacity
style={{ flex: 1 }}
onPress={() => {
folder_press(folder);
2019-07-29 15:43:53 +02:00
}}
onLongPress={() => {
void folder_longPress(folder);
2019-07-29 15:43:53 +02:00
}}
>
<View style={folderButtonStyle}>
{renderFolderIcon(theme, folderIcon)}
<Text numberOfLines={1} style={styles_.folderButtonText}>
{Folder.displayTitle(folder)}
2019-07-29 15:43:53 +02:00
</Text>
</View>
</TouchableOpacity>
2019-07-29 15:43:53 +02:00
{iconWrapper}
</View>
);
};
2017-07-22 17:55:09 +02:00
const renderSidebarButton = (key: string, title: string, iconName: string, onPressHandler: Function = null, selected = false) => {
let icon = <Icon name={iconName} style={styles_.sidebarIcon} />;
if (key === 'synchronize_button') {
icon = <Animated.View style={{ transform: [{ rotate: syncIconRotation }] }}>{icon}</Animated.View>;
}
2019-07-11 19:44:26 +02:00
const content = (
<View key={key} style={selected ? styles_.sideButtonSelected : styles_.sideButton}>
{icon}
<Text style={styles_.sideButtonText}>{title}</Text>
2019-07-11 19:44:26 +02:00
</View>
);
if (!onPressHandler) return content;
2017-07-22 17:55:09 +02:00
return (
<TouchableOpacity key={key} onPress={onPressHandler}>
2019-07-11 19:44:26 +02:00
{content}
2017-07-22 17:55:09 +02:00
</TouchableOpacity>
);
};
2017-07-22 17:55:09 +02:00
const makeDivider = (key: string) => {
const theme = themeStyle(props.themeId);
return <View style={{ marginTop: 15, marginBottom: 15, flex: -1, borderBottomWidth: 1, borderBottomColor: theme.dividerColor }} key={key}></View>;
};
2017-07-25 20:36:52 +02:00
const renderBottomPanel = () => {
const theme = themeStyle(props.themeId);
const items = [];
2017-05-24 21:27:13 +02:00
items.push(makeDivider('divider_1'));
2017-07-28 19:57:01 +02:00
items.push(renderSidebarButton('newFolder_button', _('New Notebook'), 'md-folder-open', newFolderButton_press));
items.push(renderSidebarButton('tag_button', _('Tags'), 'md-pricetag', tagButton_press));
2017-07-06 21:48:17 +02:00
items.push(renderSidebarButton('config_button', _('Configuration'), 'md-settings', configButton_press));
items.push(makeDivider('divider_2'));
const lines = Synchronizer.reportToLines(props.syncReport);
2019-07-29 15:43:53 +02:00
const syncReportText = lines.join('\n');
let decryptionReportText = '';
if (props.decryptionWorker && props.decryptionWorker.state !== 'idle' && props.decryptionWorker.itemCount) {
decryptionReportText = _('Decrypting items: %d/%d', props.decryptionWorker.itemIndex + 1, props.decryptionWorker.itemCount);
}
let resourceFetcherText = '';
if (props.resourceFetcher && props.resourceFetcher.toFetchCount) {
resourceFetcherText = _('Fetching resources: %d/%d', props.resourceFetcher.fetchingCount, props.resourceFetcher.toFetchCount);
}
const fullReport = [];
if (syncReportText) fullReport.push(syncReportText);
if (resourceFetcherText) fullReport.push(resourceFetcherText);
if (decryptionReportText) fullReport.push(decryptionReportText);
items.push(renderSidebarButton('synchronize_button', !props.syncStarted ? _('Synchronise') : _('Cancel'), 'md-sync', synchronize_press));
2020-03-14 01:57:34 +02:00
if (fullReport.length) {
2019-07-29 15:43:53 +02:00
items.push(
<Text key="sync_report" style={styles_.syncStatus}>
2019-07-29 15:43:53 +02:00
{fullReport.join('\n')}
</Text>
);
2020-03-14 01:57:34 +02:00
}
if (props.syncOnlyOverWifi && props.isOnMobileData) {
items.push(
<Text key="net_info" style={styles_.syncStatus}>
{ _('Mobile data - auto-sync disabled') }
</Text>
);
}
2019-07-29 15:43:53 +02:00
return <View style={{ flex: 0, flexDirection: 'column', paddingBottom: theme.marginBottom }}>{items}</View>;
};
let items = [];
const theme = themeStyle(props.themeId);
2017-07-22 17:55:09 +02:00
// const showFolderIcons = Folder.shouldShowFolderIcons(props.folders);
2017-07-06 21:48:17 +02:00
// HACK: inner height of ScrollView doesn't appear to be calculated correctly when
// using padding. So instead creating blank elements for padding bottom and top.
items.push(<View style={{ height: theme.marginTop }} key="bottom_top_hack" />);
items.push(renderSidebarButton('all_notes', _('All notes'), 'md-document', allNotesButton_press, props.notesParentType === 'SmartFilter'));
items.push(makeDivider('divider_all'));
2019-07-11 19:44:26 +02:00
items.push(renderSidebarButton('folder_header', _('Notebooks'), 'md-folder'));
2017-07-06 21:48:17 +02:00
if (props.folders.length) {
const result = shared.renderFolders(props, renderFolderItem, false);
const folderItems = result.items;
items = items.concat(folderItems);
}
const style = {
flex: 1,
borderRightWidth: 1,
borderRightColor: theme.dividerColor,
backgroundColor: theme.backgroundColor,
};
return (
<View style={style}>
<View style={{ flex: 1, opacity: props.opacity }}>
<ScrollView scrollsToTop={false} style={styles_.menu}>
{items}
</ScrollView>
{renderBottomPanel()}
2017-07-22 17:55:09 +02:00
</View>
</View>
);
};
2019-07-29 15:43:53 +02:00
export default connect((state: AppState) => {
2019-07-29 15:43:53 +02:00
return {
folders: state.folders,
syncStarted: state.syncStarted,
syncReport: state.syncReport,
selectedFolderId: state.selectedFolderId,
selectedTagId: state.selectedTagId,
notesParentType: state.notesParentType,
locale: state.settings.locale,
2020-09-15 15:01:07 +02:00
themeId: state.settings.theme,
2019-07-29 15:43:53 +02:00
// Don't do the opacity animation as it means re-rendering the list multiple times
// opacity: state.sideMenuOpenPercent,
collapsedFolderIds: state.collapsedFolderIds,
decryptionWorker: state.decryptionWorker,
resourceFetcher: state.resourceFetcher,
isOnMobileData: state.isOnMobileData,
syncOnlyOverWifi: state.settings['sync.mobileWifiOnly'],
2019-07-29 15:43:53 +02:00
};
})(SideMenuContentComponent);