const React = require('react'); const Component = React.Component; const { connect } = require('react-redux'); const { Platform, View, Text, Button, StyleSheet, TouchableOpacity, Image, ScrollView, Dimensions } = require('react-native'); const Icon = require('react-native-vector-icons/Ionicons').default; const { BackButtonService } = require('lib/services/back-button.js'); const NavService = require('lib/services/NavService.js'); const { Menu, MenuOptions, MenuOption, MenuTrigger } = require('react-native-popup-menu'); const { _ } = require('lib/locale.js'); const Setting = require('lib/models/Setting.js'); const Note = require('lib/models/Note.js'); const Folder = require('lib/models/Folder.js'); const { FileApi } = require('lib/file-api.js'); const { FileApiDriverOneDrive } = require('lib/file-api-driver-onedrive.js'); const { reg } = require('lib/registry.js'); const { themeStyle } = require('lib/components/global-style.js'); const { ItemList } = require('lib/components/ItemList.js'); const { Dropdown } = require('lib/components/Dropdown.js'); const { time } = require('lib/time-utils'); const RNFS = require('react-native-fs'); const { dialogs } = require('lib/dialogs.js'); const DialogBox = require('react-native-dialogbox').default; // 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; class ScreenHeaderComponent extends React.PureComponent { constructor() { super(); this.styles_ = {}; } styles() { const themeId = Setting.value('theme'); if (this.styles_[themeId]) return this.styles_[themeId]; this.styles_ = {}; const theme = themeStyle(themeId); let styleObject = { container: { flexDirection: 'column', backgroundColor: theme.raisedBackgroundColor, alignItems: 'center', shadowColor: '#000000', elevation: 5, paddingTop: Platform.OS === 'ios' ? 15 : 0, // Extra padding for iOS because the top icons are there }, divider: { borderBottomWidth: 1, borderColor: theme.dividerColor, backgroundColor: "#0000ff" }, sideMenuButton: { flex: 1, alignItems: 'center', backgroundColor: theme.raisedBackgroundColor, paddingLeft: theme.marginLeft, paddingRight: 5, marginRight: 2, paddingTop: PADDING_V, paddingBottom: PADDING_V, }, iconButton: { flex: 1, backgroundColor: theme.raisedBackgroundColor, paddingLeft: 15, paddingRight: 15, paddingTop: PADDING_V, paddingBottom: PADDING_V, }, saveButton: { flex: 0, flexDirection: 'row', alignItems: 'center', padding: 10, borderWidth: 1, borderColor: theme.raisedHighlightedColor, borderRadius: 4, marginRight: 8, }, saveButtonText: { textAlignVertical: 'center', color: theme.raisedHighlightedColor, fontWeight: 'bold', }, savedButtonIcon: { fontSize: 20, color: theme.raisedHighlightedColor, width: 18, height: 18, }, saveButtonIcon: { width: 18, height: 18, }, contextMenuTrigger: { fontSize: 30, paddingLeft: 10, paddingRight: theme.marginRight, color: theme.raisedColor, fontWeight: 'bold', }, contextMenu: { backgroundColor: theme.raisedBackgroundColor, }, 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.raisedHighlightedColor, fontWeight: 'bold', fontSize: theme.fontSize, paddingTop: 15, paddingBottom: 15, }, warningBox: { backgroundColor: "#ff9900", flexDirection: 'row', padding: theme.marginLeft, }, }; styleObject.topIcon = Object.assign({}, theme.icon); styleObject.topIcon.flex = 1; styleObject.topIcon.textAlignVertical = 'center'; styleObject.topIcon.color = theme.raisedColor; styleObject.backButton = Object.assign({}, styleObject.iconButton); styleObject.backButton.marginRight = 1; styleObject.backButtonDisabled = Object.assign({}, styleObject.backButton, { opacity: theme.disabledOpacity }); styleObject.saveButtonDisabled = Object.assign({}, styleObject.saveButton, { opacity: theme.disabledOpacity }); this.styles_[themeId] = StyleSheet.create(styleObject); return this.styles_[themeId]; } sideMenuButton_press() { this.props.dispatch({ type: 'SIDE_MENU_TOGGLE' }); } async backButton_press() { if (this.props.noteSelectionEnabled) { this.props.dispatch({ type: 'NOTE_SELECTION_END' }); } else { await BackButtonService.back(); } } searchButton_press() { NavService.go('Search'); } 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 ok = await dialogs.confirm(this.props.parentComponent, _('Delete these notes?')); if (!ok) return; const noteIds = this.props.selectedNoteIds; this.props.dispatch({ type: 'NOTE_SELECTION_END' }); await Note.batchDelete(noteIds); } menu_select(value) { if (typeof(value) == 'function') { value(); } } log_press() { NavService.go('Log'); } status_press() { NavService.go('Status'); } warningBox_press() { NavService.go('EncryptionConfig'); } render() { function sideMenuButton(styles, onPress) { return ( ); } function backButton(styles, onPress, disabled) { return ( ); } function saveButton(styles, onPress, disabled, show) { if (!show) return null; const icon = disabled ? : ; return ( { icon } ); } function searchButton(styles, onPress) { return ( ); } function deleteButton(styles, onPress) { return ( ); } function sortButton(styles, onPress) { return ( ); } let key = 0; let menuOptionComponents = []; if (!this.props.noteSelectionEnabled) { for (let i = 0; i < this.props.menuOptions.length; i++) { let 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')} ); } const createTitleComponent = () => { const themeId = Setting.value('theme'); const theme = themeStyle(themeId); const folderPickerOptions = this.props.folderPickerOptions; if (folderPickerOptions && folderPickerOptions.enabled) { const addFolderChildren = (folders, pickerItems, indent) => { folders.sort((a, b) => { const aTitle = a && a.title ? a.title : ''; const bTitle = b && b.title ? b.title : ''; return aTitle.toLowerCase() < bTitle.toLowerCase() ? -1 : +1; }); for (let i = 0; i < folders.length; i++) { const f = folders[i]; pickerItems.push({ label: ' '.repeat(indent) + ' ' + Folder.displayTitle(f), value: f.id }); pickerItems = addFolderChildren(f.children, pickerItems, indent + 1); } return pickerItems; } const titlePickerItems = (mustSelect) => { const folders = this.props.folders.filter(f => f.id !== Folder.conflictFolderId()); let output = []; if (mustSelect) output.push({ label: _('Move to notebook...'), value: null }); const folderTree = Folder.buildTree(folders); output = addFolderChildren(folderTree, output, 0); return output; } 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, itemIndex); 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' }); for (let i = 0; i < noteIds.length; i++) { await Note.moveToFolder(noteIds[i], folderId); } }} /> ); } else { let title = 'title' in this.props && this.props.title !== null ? this.props.title : ''; return {title} } } const warningComp = this.props.showMissingMasterKeyMessage ? ( this.warningBox_press()} activeOpacity={0.8}> {_('Press to set the decryption password.')} ) : null; const showSideMenuButton = !!this.props.showSideMenuButton && !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 titleComp = createTitleComponent(); const sideMenuComp = !showSideMenuButton ? null : sideMenuButton(this.styles(), () => this.sideMenuButton_press()); const backButtonComp = !showBackButton ? null : backButton(this.styles(), () => this.backButton_press(), backButtonDisabled); const searchButtonComp = !showSearchButton ? null : searchButton(this.styles(), () => this.searchButton_press()); const deleteButtonComp = this.props.noteSelectionEnabled ? deleteButton(this.styles(), () => this.deleteButton_press()) : 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 = { 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 } { saveButton(this.styles(), () => { if (this.props.onSaveButtonPress) this.props.onSaveButtonPress() }, this.props.saveButtonDisabled === true, this.props.showSaveButton === true) } { titleComp } { searchButtonComp } { deleteButtonComp } { sortButtonComp } { menuComp } { warningComp } { this.dialogbox = dialogbox }}/> ); } } ScreenHeaderComponent.defaultProps = { menuOptions: [], }; const ScreenHeader = connect( (state) => { return { historyCanGoBack: state.historyCanGoBack, locale: state.settings.locale, folders: state.folders, theme: state.settings.theme, noteSelectionEnabled: state.noteSelectionEnabled, selectedNoteIds: state.selectedNoteIds, showMissingMasterKeyMessage: state.notLoadedMasterKeys.length && state.masterKeys.length, }; } )(ScreenHeaderComponent) module.exports = { ScreenHeader };