const React = require('react'); import { connect } from 'react-redux'; import { PureComponent } from 'react'; import { View, Text, StyleSheet, TouchableOpacity, Image, ScrollView, Dimensions, ViewStyle } from 'react-native'; const Icon = require('react-native-vector-icons/Ionicons').default; const { BackButtonService } = require('../services/back-button.js'); import NavService from '@joplin/lib/services/NavService'; import { Menu, MenuOptions, MenuOption, MenuTrigger } from 'react-native-popup-menu'; import { _, _n } from '@joplin/lib/locale'; import Setting from '@joplin/lib/models/Setting'; import Note from '@joplin/lib/models/Note'; import Folder from '@joplin/lib/models/Folder'; const { themeStyle } = require('./global-style.js'); import { OnValueChangedListener } from './Dropdown'; const { dialogs } = require('../utils/dialogs.js'); const DialogBox = require('react-native-dialogbox').default; import { localSyncInfoFromState } from '@joplin/lib/services/synchronizer/syncInfoUtils'; import { showMissingMasterKeyMessage } from '@joplin/lib/services/e2ee/utils'; import { FolderEntity } from '@joplin/lib/services/database/types'; import { State } from '@joplin/lib/reducer'; import CustomButton from './CustomButton'; import FolderPicker from './FolderPicker'; // We need this to suppress the useless warning // https://github.com/oblador/react-native-vector-icons/issues/1465 // eslint-disable-next-line no-console Icon.loadFont().catch((error: any) => { console.info(error); }); // Rather than applying a padding to the whole bar, it is applied to each // individual component (button, picker, etc.) so that the touchable areas // are widder and to give more room to the picker component which has a larger // default height. const PADDING_V = 10; type OnSelectCallbackType=()=> void; type OnPressCallback=()=> void; interface NavButtonPressEvent { // Name of the screen to navigate to screen: string; } export interface MenuOptionType { onPress: OnPressCallback; isDivider?: boolean; title: string; disabled?: boolean; } type DispatchCommandType=(event: { type: string })=> void; interface ScreenHeaderProps { selectedNoteIds: string[]; noteSelectionEnabled: boolean; parentComponent: any; showUndoButton: boolean; undoButtonDisabled?: boolean; showRedoButton: boolean; menuOptions: MenuOptionType[]; title?: string|null; folders: FolderEntity[]; folderPickerOptions?: { enabled: boolean; selectedFolderId?: string; onValueChange?: OnValueChangedListener; mustSelect?: boolean; }; dispatch: DispatchCommandType; onUndoButtonPress: OnPressCallback; onRedoButtonPress: OnPressCallback; onSaveButtonPress: OnPressCallback; sortButton_press?: OnPressCallback; onSearchButtonPress?: OnPressCallback; showSideMenuButton?: boolean; showSearchButton?: boolean; showContextMenuButton?: boolean; showBackButton?: boolean; saveButtonDisabled?: boolean; showSaveButton?: boolean; historyCanGoBack?: boolean; showMissingMasterKeyMessage?: boolean; hasDisabledSyncItems?: boolean; hasDisabledEncryptionItems?: boolean; shouldUpgradeSyncTarget?: boolean; showShouldUpgradeSyncTargetMessage?: boolean; mustUpgradeAppMessage: string; themeId: number; } interface ScreenHeaderState { } class ScreenHeaderComponent extends PureComponent { private cachedStyles: any; public dialogbox?: typeof DialogBox; public constructor(props: ScreenHeaderProps) { super(props); this.cachedStyles = {}; } private styles() { const themeId = this.props.themeId; if (this.cachedStyles[themeId]) return this.cachedStyles[themeId]; this.cachedStyles = {}; const theme = themeStyle(themeId); const styleObject: any = { container: { flexDirection: 'column', backgroundColor: theme.backgroundColor2, alignItems: 'center', shadowColor: '#000000', elevation: 5, }, divider: { borderBottomWidth: 1, borderColor: theme.dividerColor, backgroundColor: '#0000ff', }, sideMenuButton: { flex: 1, alignItems: 'center', backgroundColor: theme.backgroundColor2, paddingLeft: theme.marginLeft, paddingRight: 5, marginRight: 2, paddingTop: PADDING_V, paddingBottom: PADDING_V, }, iconButton: { flex: 1, backgroundColor: theme.backgroundColor2, paddingLeft: 10, paddingRight: 10, paddingTop: PADDING_V, paddingBottom: PADDING_V, }, saveButton: { flex: 0, flexDirection: 'row', alignItems: 'center', padding: 10, borderWidth: 1, borderColor: theme.colorBright2, borderRadius: 4, marginRight: 8, }, saveButtonText: { textAlignVertical: 'center', color: theme.colorBright2, fontWeight: 'bold', }, savedButtonIcon: { fontSize: 20, color: theme.colorBright2, width: 18, height: 18, }, saveButtonIcon: { width: 18, height: 18, }, contextMenuTrigger: { fontSize: 30, paddingLeft: 10, paddingRight: theme.marginRight, color: theme.color2, fontWeight: 'bold', }, contextMenu: { backgroundColor: theme.backgroundColor2, }, contextMenuItem: { backgroundColor: theme.backgroundColor, }, contextMenuItemText: { flex: 1, textAlignVertical: 'center', paddingLeft: theme.marginLeft, paddingRight: theme.marginRight, paddingTop: theme.itemMarginTop, paddingBottom: theme.itemMarginBottom, color: theme.color, backgroundColor: theme.backgroundColor, fontSize: theme.fontSize, }, titleText: { flex: 1, textAlignVertical: 'center', marginLeft: 10, color: theme.colorBright2, fontWeight: 'bold', fontSize: theme.fontSize, paddingTop: 15, paddingBottom: 15, }, warningBox: { backgroundColor: '#ff9900', flexDirection: 'row', padding: theme.marginLeft, }, }; styleObject.contextMenuItemTextDisabled = { ...styleObject.contextMenuItemText, opacity: 0.5, }; styleObject.topIcon = { ...theme.icon }; styleObject.topIcon.flex = 1; styleObject.topIcon.textAlignVertical = 'center'; styleObject.topIcon.color = theme.colorBright2; styleObject.backButton = { ...styleObject.iconButton }; styleObject.backButton.marginRight = 1; styleObject.backButtonDisabled = { ...styleObject.backButton, opacity: theme.disabledOpacity }; styleObject.saveButtonDisabled = { ...styleObject.saveButton, opacity: theme.disabledOpacity }; styleObject.iconButtonDisabled = { ...styleObject.iconButton, opacity: theme.disabledOpacity }; this.cachedStyles[themeId] = StyleSheet.create(styleObject); return this.cachedStyles[themeId]; } private sideMenuButton_press() { this.props.dispatch({ type: 'SIDE_MENU_TOGGLE' }); } private async backButton_press() { if (this.props.noteSelectionEnabled) { this.props.dispatch({ type: 'NOTE_SELECTION_END' }); } else { await BackButtonService.back(); } } private selectAllButton_press() { this.props.dispatch({ type: 'NOTE_SELECT_ALL_TOGGLE' }); } private searchButton_press() { if (this.props.onSearchButtonPress) { this.props.onSearchButtonPress(); } else { void NavService.go('Search'); } } private async duplicateButton_press() { const noteIds = this.props.selectedNoteIds; this.props.dispatch({ type: 'NOTE_SELECTION_END' }); try { // Duplicate all selected notes. ensureUniqueTitle is set to true to use the // original note's name as a root for the new unique identifier. await Note.duplicateMultipleNotes(noteIds, { ensureUniqueTitle: true }); } catch (error) { alert(_n('This note could not be duplicated: %s', 'These notes could not be duplicated: %s', noteIds.length, error.message)); } } private async deleteButton_press() { // Dialog needs to be displayed as a child of the parent component, otherwise // it won't be visible within the header component. const noteIds = this.props.selectedNoteIds; const msg = await Note.deleteMessage(noteIds); if (!msg) return; const ok = await dialogs.confirm(this.props.parentComponent, msg); if (!ok) return; this.props.dispatch({ type: 'NOTE_SELECTION_END' }); try { await Note.batchDelete(noteIds); } catch (error) { alert(_n('This note could not be deleted: %s', 'These notes could not be deleted: %s', noteIds.length, error.message)); } } private menu_select(value: OnSelectCallbackType) { if (typeof value === 'function') { value(); } } private warningBox_press(event: NavButtonPressEvent) { void NavService.go(event.screen); } private renderWarningBox(screen: string, message: string) { return ( this.warningBox_press({ screen: screen })} activeOpacity={0.8}> {message} ); } public render() { const themeId = this.props.themeId; function sideMenuButton(styles: any, onPress: OnPressCallback) { return ( ); } function backButton(styles: any, onPress: OnPressCallback, disabled: boolean) { return ( ); } function saveButton( styles: any, onPress: OnPressCallback, disabled: boolean, show: boolean, ) { if (!show) return null; const icon = disabled ? : ; return ( {icon} ); } interface TopButtonOptions { visible: boolean; iconName: string; disabled?: boolean; description: string; onPress: OnPressCallback; } const renderTopButton = (options: TopButtonOptions) => { if (!options.visible) return null; const icon = ; const viewStyle = options.disabled ? this.styles().iconButtonDisabled : this.styles().iconButton; return ( {icon} ); }; const renderUndoButton = () => { return renderTopButton({ iconName: 'arrow-undo-circle-sharp', description: _('Undo'), onPress: this.props.onUndoButtonPress, visible: this.props.showUndoButton, disabled: this.props.undoButtonDisabled, }); }; const renderRedoButton = () => { return renderTopButton({ iconName: 'arrow-redo-circle-sharp', description: _('Redo'), onPress: this.props.onRedoButtonPress, visible: this.props.showRedoButton, }); }; function selectAllButton(styles: any, onPress: OnPressCallback) { return ( ); } function searchButton(styles: any, onPress: OnPressCallback) { return ( ); } function deleteButton(styles: any, onPress: OnPressCallback, disabled: boolean) { return ( ); } function duplicateButton(styles: any, onPress: OnPressCallback, disabled: boolean) { return ( ); } function sortButton(styles: any, onPress: OnPressCallback) { return ( ); } let key = 0; const menuOptionComponents = []; if (!this.props.noteSelectionEnabled) { for (let i = 0; i < this.props.menuOptions.length; i++) { const o = this.props.menuOptions[i]; if (o.isDivider) { menuOptionComponents.push(); } else { menuOptionComponents.push( {o.title} , ); } } if (menuOptionComponents.length) { menuOptionComponents.push(); } } else { menuOptionComponents.push( this.deleteButton_press()} key={'menuOption_delete'} style={this.styles().contextMenuItem}> {_('Delete')} , ); menuOptionComponents.push( this.duplicateButton_press()} key={'menuOption_duplicate'} style={this.styles().contextMenuItem}> {_('Duplicate')} , ); } const createTitleComponent = (disabled: boolean) => { const folderPickerOptions = this.props.folderPickerOptions; if (folderPickerOptions && folderPickerOptions.enabled) { return ( { // If onValueChange is specified, use this as a callback, otherwise do the default // which is to take the selectedNoteIds from the state and move them to the // chosen folder. if (folderPickerOptions.onValueChange) { folderPickerOptions.onValueChange(folderId); return; } if (!folderId) return; const noteIds = this.props.selectedNoteIds; if (!noteIds.length) return; const folder = await Folder.load(folderId); const ok = noteIds.length > 1 ? await dialogs.confirm(this.props.parentComponent, _('Move %d notes to notebook "%s"?', noteIds.length, folder.title)) : true; if (!ok) return; this.props.dispatch({ type: 'NOTE_SELECTION_END' }); try { for (let i = 0; i < noteIds.length; i++) { await Note.moveToFolder(noteIds[i], folderId); } } catch (error) { alert(_n('This note could not be moved: %s', 'These notes could not be moved: %s', noteIds.length, error.message)); } }} mustSelect={!!folderPickerOptions.mustSelect} folders={this.props.folders} /> ); } else { const title = 'title' in this.props && this.props.title !== null ? this.props.title : ''; return {title}; } }; const warningComps = []; if (this.props.showMissingMasterKeyMessage) warningComps.push(this.renderWarningBox('EncryptionConfig', _('Press to set the decryption password.'))); if (this.props.hasDisabledSyncItems) warningComps.push(this.renderWarningBox('Status', _('Some items cannot be synchronised. Press for more info.'))); if (this.props.shouldUpgradeSyncTarget && this.props.showShouldUpgradeSyncTargetMessage !== false) warningComps.push(this.renderWarningBox('UpgradeSyncTarget', _('The sync target needs to be upgraded. Press this banner to proceed.'))); if (this.props.mustUpgradeAppMessage) warningComps.push(this.renderWarningBox('UpgradeApp', this.props.mustUpgradeAppMessage)); if (this.props.hasDisabledEncryptionItems) { warningComps.push(this.renderWarningBox('Status', _('Some items cannot be decrypted.'))); } const showSideMenuButton = !!this.props.showSideMenuButton && !this.props.noteSelectionEnabled; const showSelectAllButton = this.props.noteSelectionEnabled; const showSearchButton = !!this.props.showSearchButton && !this.props.noteSelectionEnabled; const showContextMenuButton = this.props.showContextMenuButton !== false; const showBackButton = !!this.props.noteSelectionEnabled || this.props.showBackButton !== false; let backButtonDisabled = !this.props.historyCanGoBack; if (this.props.noteSelectionEnabled) backButtonDisabled = false; const headerItemDisabled = !(this.props.selectedNoteIds.length > 0); const titleComp = createTitleComponent(headerItemDisabled); const sideMenuComp = !showSideMenuButton ? null : sideMenuButton(this.styles(), () => this.sideMenuButton_press()); const backButtonComp = !showBackButton ? null : backButton(this.styles(), () => this.backButton_press(), backButtonDisabled); const selectAllButtonComp = !showSelectAllButton ? null : selectAllButton(this.styles(), () => this.selectAllButton_press()); const searchButtonComp = !showSearchButton ? null : searchButton(this.styles(), () => this.searchButton_press()); const deleteButtonComp = this.props.noteSelectionEnabled ? deleteButton(this.styles(), () => this.deleteButton_press(), headerItemDisabled) : null; const duplicateButtonComp = this.props.noteSelectionEnabled ? duplicateButton(this.styles(), () => this.duplicateButton_press(), headerItemDisabled) : null; const sortButtonComp = !this.props.noteSelectionEnabled && this.props.sortButton_press ? sortButton(this.styles(), () => this.props.sortButton_press()) : null; const windowHeight = Dimensions.get('window').height - 50; const contextMenuStyle: ViewStyle = { paddingTop: PADDING_V, paddingBottom: PADDING_V, }; // HACK: if this button is removed during selection mode, the header layout is broken, so for now just make it 1 pixel large (normally it should be hidden) if (this.props.noteSelectionEnabled) contextMenuStyle.width = 1; const menuComp = !menuOptionComponents.length || !showContextMenuButton ? null : ( this.menu_select(value)} style={this.styles().contextMenu}> {menuOptionComponents} ); return ( {sideMenuComp} {backButtonComp} {renderUndoButton()} {renderRedoButton()} {saveButton( this.styles(), () => { if (this.props.onSaveButtonPress) this.props.onSaveButtonPress(); }, this.props.saveButtonDisabled === true, this.props.showSaveButton === true, )} {titleComp} {selectAllButtonComp} {searchButtonComp} {deleteButtonComp} {duplicateButtonComp} {sortButtonComp} {menuComp} {warningComps} { this.dialogbox = dialogbox; }} /> ); } public static defaultProps: Partial = { menuOptions: [], }; } const ScreenHeader = connect((state: State) => { const syncInfo = localSyncInfoFromState(state); return { historyCanGoBack: state.historyCanGoBack, locale: state.settings.locale, folders: state.folders, themeId: state.settings.theme, hasDisabledEncryptionItems: state.hasDisabledEncryptionItems, noteSelectionEnabled: state.noteSelectionEnabled, selectedNoteIds: state.selectedNoteIds, showMissingMasterKeyMessage: showMissingMasterKeyMessage(syncInfo, state.notLoadedMasterKeys), hasDisabledSyncItems: state.hasDisabledSyncItems, shouldUpgradeSyncTarget: state.settings['sync.upgradeState'] === Setting.SYNC_UPGRADE_STATE_SHOULD_DO, mustUpgradeAppMessage: state.mustUpgradeAppMessage, }; })(ScreenHeaderComponent); export default ScreenHeader; export { ScreenHeader };