const React = require('react'); const { StyleSheet } = require('react-native'); const Note = require('lib/models/Note'); const Icon = require('react-native-vector-icons/Ionicons').default; const ReactNativeActionButton = require('react-native-action-button').default; const { connect } = require('react-redux'); const { _ } = require('lib/locale.js'); Icon.loadFont(); const styles = StyleSheet.create({ actionButtonIcon: { fontSize: 20, height: 22, color: 'white', }, itemText: { // fontSize: 14, // Cannot currently set fontsize since the bow surrounding the label has a fixed size }, }); class ActionButtonComponent extends React.Component { constructor() { super(); this.state = { buttonIndex: 0, }; } UNSAFE_componentWillReceiveProps(newProps) { if ('buttonIndex' in newProps) { this.setState({ buttonIndex: newProps.buttonIndex }); } } async newNoteNavigate(folderId, isTodo) { const newNote = await Note.save({ parent_id: folderId, is_todo: isTodo ? 1 : 0, }, { provisional: true }); this.props.dispatch({ type: 'NAV_GO', routeName: 'Note', noteId: newNote.id, }); } newTodo_press() { this.newNoteNavigate(this.props.parentFolderId, true); } newNote_press() { this.newNoteNavigate(this.props.parentFolderId, false); } render() { const buttons = this.props.buttons ? this.props.buttons : []; if (this.props.addFolderNoteButtons) { if (this.props.folders.length) { buttons.push({ title: _('New to-do'), onPress: () => { this.newTodo_press(); }, color: '#9b59b6', icon: 'md-checkbox-outline', }); buttons.push({ title: _('New note'), onPress: () => { this.newNote_press(); }, color: '#9b59b6', icon: 'md-document', }); } } const buttonComps = []; for (let i = 0; i < buttons.length; i++) { const button = buttons[i]; const buttonTitle = button.title ? button.title : ''; const key = `${buttonTitle.replace(/\s/g, '_')}_${button.icon}`; buttonComps.push( ); } if (!buttonComps.length && !this.props.mainButton) { return ; } const mainButton = this.props.mainButton ? this.props.mainButton : {}; const mainIcon = mainButton.icon ? : ; if (this.props.multiStates) { if (!this.props.buttons || !this.props.buttons.length) throw new Error('Multi-state button requires at least one state'); if (this.state.buttonIndex < 0 || this.state.buttonIndex >= this.props.buttons.length) throw new Error(`Button index out of bounds: ${this.state.buttonIndex}/${this.props.buttons.length}`); const button = this.props.buttons[this.state.buttonIndex]; const mainIcon = ; return ( { button.onPress(); }} /> ); } else { return ( {buttonComps} ); } } } const ActionButton = connect(state => { return { folders: state.folders, locale: state.settings.locale, }; })(ActionButtonComponent); module.exports = { ActionButton };