1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/ReactNativeClient/lib/components/screens/note.js

482 lines
14 KiB
JavaScript
Raw Normal View History

const React = require('react'); const Component = React.Component;
const { Keyboard, BackHandler, View, Button, TextInput, WebView, Text, StyleSheet, Linking, Image } = require('react-native');
const { connect } = require('react-redux');
const { uuid } = require('lib/uuid.js');
const { Log } = require('lib/log.js');
const { Note } = require('lib/models/note.js');
const { Resource } = require('lib/models/resource.js');
const { Folder } = require('lib/models/folder.js');
const { BackButtonService } = require('lib/services/back-button.js');
const { BaseModel } = require('lib/base-model.js');
const { ActionButton } = require('lib/components/action-button.js');
const Icon = require('react-native-vector-icons/Ionicons').default;
const { ScreenHeader } = require('lib/components/screen-header.js');
const { time } = require('lib/time-utils.js');
const { Checkbox } = require('lib/components/checkbox.js');
const { _ } = require('lib/locale.js');
const { reg } = require('lib/registry.js');
const { shim } = require('lib/shim.js');
const { BaseScreenComponent } = require('lib/components/base-screen.js');
const { dialogs } = require('lib/dialogs.js');
const { globalStyle, themeStyle } = require('lib/components/global-style.js');
const DialogBox = require('react-native-dialogbox').default;
const { NoteBodyViewer } = require('lib/components/note-body-viewer.js');
const RNFetchBlob = require('react-native-fetch-blob').default;
const { DocumentPicker, DocumentPickerUtil } = require('react-native-document-picker');
const ImageResizer = require('react-native-image-resizer').default;
const shared = require('lib/components/shared/note-screen-shared.js');
2017-05-12 22:23:54 +02:00
2017-07-14 20:49:14 +02:00
class NoteScreenComponent extends BaseScreenComponent {
2017-05-12 22:23:54 +02:00
2017-06-06 22:01:43 +02:00
static navigationOptions(options) {
2017-05-16 21:57:09 +02:00
return { header: null };
}
2017-05-12 22:23:54 +02:00
constructor() {
super();
2017-07-10 23:34:26 +02:00
this.state = {
note: Note.new(),
mode: 'view',
noteMetadata: '',
showNoteMetadata: false,
2017-07-13 23:50:21 +02:00
folder: null,
2017-07-15 01:12:32 +02:00
lastSavedNote: null,
2017-07-24 23:52:30 +02:00
isLoading: true,
resources: {},
titleTextInputHeight: 20,
2017-07-16 23:17:22 +02:00
};
this.saveButtonHasBeenShown_ = false;
2017-07-15 01:12:32 +02:00
2017-08-01 20:53:50 +02:00
this.styles_ = {};
this.backHandler = async () => {
if (this.isModified()) {
let buttonId = await dialogs.pop(this, _('This note has been modified:'), [
{ title: _('Save changes'), id: 'save' },
{ title: _('Discard changes'), id: 'discard' },
{ title: _('Cancel'), id: 'cancel' },
]);
if (buttonId == 'cancel') return true;
if (buttonId == 'save') await this.saveNoteButton_press();
}
if (!this.state.note.id) {
return false;
}
if (this.state.mode == 'edit') {
Keyboard.dismiss()
this.setState({
note: Object.assign({}, this.state.lastSavedNote),
mode: 'view',
});
return true;
}
return false;
};
2017-07-15 01:12:32 +02:00
}
2017-08-01 20:53:50 +02:00
styles() {
const themeId = this.props.theme;
const theme = themeStyle(themeId);
if (this.styles_[themeId]) return this.styles_[themeId];
this.styles_ = {};
let styles = {
bodyTextInput: {
flex: 1,
paddingLeft: theme.marginLeft,
paddingRight: theme.marginRight,
textAlignVertical: 'top',
color: theme.color,
backgroundColor: theme.backgroundColor,
fontSize: theme.fontSize,
},
noteBodyViewer: {
flex: 1,
paddingLeft: theme.marginLeft,
paddingRight: theme.marginRight,
paddingTop: theme.marginTop,
paddingBottom: theme.marginBottom,
},
2017-08-02 19:47:25 +02:00
metadata: {
paddingLeft: globalStyle.marginLeft,
paddingRight: globalStyle.marginRight,
color: theme.color,
},
2017-08-01 20:53:50 +02:00
};
styles.titleContainer = {
flex: 0,
flexDirection: 'row',
paddingLeft: theme.marginLeft,
paddingRight: theme.marginRight,
borderBottomColor: theme.dividerColor,
borderBottomWidth: 1,
};
styles.titleContainerTodo = Object.assign({}, styles.titleContainer);
2017-08-21 20:32:43 +02:00
styles.titleContainerTodo.paddingLeft = 0;
2017-08-01 20:53:50 +02:00
this.styles_[themeId] = StyleSheet.create(styles);
return this.styles_[themeId];
}
2017-07-15 01:12:32 +02:00
isModified() {
return shared.isModified(this);
2017-05-12 22:23:54 +02:00
}
2017-07-23 16:11:44 +02:00
async componentWillMount() {
BackButtonService.addHandler(this.backHandler);
2017-07-15 01:12:32 +02:00
await shared.initState(this);
2017-07-13 23:50:21 +02:00
shared.refreshNoteMetadata(this);
2017-07-13 23:50:21 +02:00
}
2017-07-15 01:12:32 +02:00
componentWillUnmount() {
BackButtonService.removeHandler(this.backHandler);
2017-07-15 01:12:32 +02:00
}
2017-06-06 22:01:43 +02:00
title_changeText(text) {
shared.noteComponent_change(this, 'title', text);
2017-05-12 22:23:54 +02:00
}
2017-06-06 22:01:43 +02:00
body_changeText(text) {
shared.noteComponent_change(this, 'body', text);
}
2017-07-05 23:29:00 +02:00
async saveNoteButton_press() {
await shared.saveNoteButton_press(this);
2017-09-24 16:48:23 +02:00
Keyboard.dismiss();
2017-05-12 22:23:54 +02:00
}
async saveOneProperty(name, value) {
await shared.saveOneProperty(this, name, value);
}
2017-07-15 01:12:32 +02:00
async deleteNote_onPress() {
let note = this.state.note;
if (!note.id) return;
let ok = await dialogs.confirm(this, _('Delete note?'));
if (!ok) return;
let folderId = note.parent_id;
await Note.delete(note.id);
2017-07-16 23:17:22 +02:00
2017-07-25 20:09:01 +02:00
this.props.dispatch({
type: 'NAV_GO',
2017-07-25 20:09:01 +02:00
routeName: 'Notes',
folderId: folderId,
});
2017-06-04 17:01:52 +02:00
}
2017-08-01 23:40:14 +02:00
async pickDocument() {
return new Promise((resolve, reject) => {
DocumentPicker.show({ filetype: [DocumentPickerUtil.images()] }, (error,res) => {
if (error) {
2017-09-10 18:57:06 +02:00
// Also returns an error if the user doesn't pick a file
// so just resolve with null.
console.info('pickDocument error:', error);
resolve(null);
2017-08-01 23:40:14 +02:00
return;
}
resolve(res);
});
});
}
2017-08-02 19:47:25 +02:00
async imageDimensions(uri) {
return new Promise((resolve, reject) => {
Image.getSize(uri, (width, height) => {
resolve({ width: width, height: height });
}, (error) => { reject(error) });
});
}
2017-08-01 23:40:14 +02:00
async attachFile_onPress() {
const res = await this.pickDocument();
2017-11-01 19:39:56 +02:00
if (!res) {
reg.logger().info('Did not get any file (user cancel?)');
return;
}
2017-08-01 23:40:14 +02:00
2017-08-02 19:47:25 +02:00
const localFilePath = res.uri;
reg.logger().info('Got file: ' + localFilePath);
reg.logger().info('Got type: ' + res.type);
2017-08-01 23:40:14 +02:00
// res.uri,
// res.type, // mime type
// res.fileName,
// res.fileSize
let resource = Resource.new();
resource.id = uuid.create();
resource.mime = res.type;
resource.title = res.fileName ? res.fileName : _('Untitled');
2017-08-02 19:47:25 +02:00
let targetPath = Resource.fullPath(resource);
if (res.type == 'image/jpeg' || res.type == 'image/jpg' || res.type == 'image/png') {
const maxSize = Resource.IMAGE_MAX_DIMENSION;
2017-08-02 19:47:25 +02:00
let dimensions = await this.imageDimensions(localFilePath);
reg.logger().info('Original dimensions ', dimensions);
if (dimensions.width > maxSize || dimensions.height > maxSize) {
dimensions.width = maxSize;
dimensions.height = maxSize;
}
reg.logger().info('New dimensions ', dimensions);
const format = res.type == 'image/png' ? 'PNG' : 'JPEG';
reg.logger().info('Resizing image ' + localFilePath);
const resizedImage = await ImageResizer.createResizedImage(localFilePath, dimensions.width, dimensions.height, format, 85);
const resizedImagePath = resizedImage.uri;
2017-08-02 19:47:25 +02:00
reg.logger().info('Resized image ', resizedImagePath);
RNFetchBlob.fs.cp(resizedImagePath, targetPath); // mv doesn't work ("source path does not exist") so need to do cp and unlink
try {
RNFetchBlob.fs.unlink(resizedImagePath);
} catch (error) {
reg.logger().info('Error when unlinking cached file: ', error);
}
} else {
RNFetchBlob.fs.cp(localFilePath, targetPath);
}
2017-08-01 23:40:14 +02:00
await Resource.save(resource, { isNew: true });
const resourceTag = Resource.markdownTag(resource);
2017-08-02 19:47:25 +02:00
const newNote = Object.assign({}, this.state.note);
newNote.body += "\n" + resourceTag;
this.setState({ note: newNote });
}
2017-07-30 21:51:18 +02:00
toggleIsTodo_onPress() {
shared.toggleIsTodo_onPress(this);
2017-07-17 22:22:05 +02:00
}
showMetadata_onPress() {
shared.showMetadata_onPress(this);
2017-06-04 17:01:52 +02:00
}
async showOnMap_onPress() {
if (!this.state.note.id) return;
let note = await Note.load(this.state.note.id);
try {
const url = Note.geolocationUrl(note);
Linking.openURL(url);
} catch (error) {
await dialogs.error(this, error.message);
}
}
2017-06-06 22:01:43 +02:00
menuOptions() {
2017-07-17 22:22:05 +02:00
const note = this.state.note;
2017-09-10 18:57:06 +02:00
const isTodo = note && !!note.is_todo;
2017-07-17 22:22:05 +02:00
2017-09-10 18:57:06 +02:00
let output = [];
output.push({ title: _('Attach file'), onPress: () => { this.attachFile_onPress(); } });
output.push({ title: _('Delete note'), onPress: () => { this.deleteNote_onPress(); } });
// if (isTodo) {
// let text = note.todo_due ? _('Edit/Clear alarm') : _('Set an alarm');
// output.push({ title: text, onPress: () => { this.setAlarm_onPress(); } });
// }
output.push({ title: isTodo ? _('Convert to regular note') : _('Convert to todo'), onPress: () => { this.toggleIsTodo_onPress(); } });
2017-09-24 16:48:23 +02:00
if (this.props.showAdvancedOptions) output.push({ title: this.state.showNoteMetadata ? _('Hide metadata') : _('Show metadata'), onPress: () => { this.showMetadata_onPress(); } });
2017-09-10 18:57:06 +02:00
output.push({ title: _('View location on map'), onPress: () => { this.showOnMap_onPress(); } });
return output;
2017-06-04 17:01:52 +02:00
}
2017-07-16 18:06:05 +02:00
async todoCheckbox_change(checked) {
2017-07-16 23:17:22 +02:00
await this.saveOneProperty('todo_completed', checked ? time.unixMs() : 0);
2017-07-15 01:12:32 +02:00
}
titleTextInput_contentSizeChange(event) {
let height = event.nativeEvent.contentSize.height;
this.setState({ titleTextInputHeight: height });
}
2017-05-12 22:23:54 +02:00
render() {
2017-07-24 23:52:30 +02:00
if (this.state.isLoading) {
return (
<View style={this.styles().screen}>
2017-07-24 23:58:14 +02:00
<ScreenHeader/>
2017-07-24 23:52:30 +02:00
</View>
);
}
2017-08-01 20:53:50 +02:00
const theme = themeStyle(this.props.theme);
2017-05-24 22:51:50 +02:00
const note = this.state.note;
const isTodo = !!Number(note.is_todo);
2017-07-13 23:50:21 +02:00
const folder = this.state.folder;
2017-07-24 23:52:30 +02:00
const isNew = !note.id;
2017-05-24 22:51:50 +02:00
2017-07-10 23:34:26 +02:00
let bodyComponent = null;
if (this.state.mode == 'view') {
2017-07-30 21:51:18 +02:00
const onCheckboxChange = (newBody) => {
this.saveOneProperty('body', newBody);
};
2017-07-17 23:34:08 +02:00
2017-08-01 20:53:50 +02:00
bodyComponent = <NoteBodyViewer style={this.styles().noteBodyViewer} webViewStyle={theme} note={note} onCheckboxChange={(newBody) => { onCheckboxChange(newBody) }}/>
2017-07-10 23:34:26 +02:00
} else {
2017-07-24 23:52:30 +02:00
const focusBody = !isNew && !!note.title;
// Note: blurOnSubmit is necessary to get multiline to work.
// See https://github.com/facebook/react-native/issues/12717#issuecomment-327001997
2017-07-15 01:12:32 +02:00
bodyComponent = (
<TextInput
2017-07-16 18:31:42 +02:00
autoCapitalize="sentences"
2017-07-24 23:52:30 +02:00
autoFocus={focusBody}
2017-08-01 20:53:50 +02:00
style={this.styles().bodyTextInput}
2017-07-15 01:12:32 +02:00
multiline={true}
value={note.body}
onChangeText={(text) => this.body_changeText(text)}
blurOnSubmit={false}
2017-07-15 01:12:32 +02:00
/>
);
2017-07-10 23:34:26 +02:00
}
2017-07-14 01:35:37 +02:00
const renderActionButton = () => {
let buttons = [];
buttons.push({
title: _('Edit'),
icon: 'md-create',
onPress: () => {
this.setState({ mode: 'edit' });
},
});
if (this.state.mode == 'edit') return <ActionButton style={{display:'none'}}/>;
2017-07-15 01:12:32 +02:00
return <ActionButton multiStates={true} buttons={buttons} buttonIndex={0} />
2017-07-14 01:35:37 +02:00
}
2017-07-16 18:06:05 +02:00
const titlePickerItems = () => {
let output = [];
for (let i = 0; i < this.props.folders.length; i++) {
let f = this.props.folders[i];
2017-07-25 19:49:31 +02:00
output.push({ label: f.title, value: f.id });
2017-07-16 18:06:05 +02:00
}
return output;
}
2017-07-14 01:35:37 +02:00
const actionButtonComp = renderActionButton();
2017-07-16 23:17:22 +02:00
let showSaveButton = this.state.mode == 'edit' || this.isModified() || this.saveButtonHasBeenShown_;
let saveButtonDisabled = !this.isModified();
2017-07-16 23:17:22 +02:00
if (showSaveButton) this.saveButtonHasBeenShown_ = true;
2017-08-01 20:53:50 +02:00
const titleContainerStyle = isTodo ? this.styles().titleContainerTodo : this.styles().titleContainer;
let titleTextInputStyle = {
flex: 1,
paddingLeft: 0,
color: theme.color,
backgroundColor: theme.backgroundColor,
fontWeight: 'bold',
fontSize: theme.fontSize,
};
2017-07-21 23:40:02 +02:00
titleTextInputStyle.height = this.state.titleTextInputHeight;
2017-08-21 20:32:43 +02:00
let checkboxStyle = {
color: theme.color,
paddingRight: 10,
paddingLeft: theme.marginLeft,
}
const titleComp = (
<View style={titleContainerStyle}>
2017-08-21 20:32:43 +02:00
{ isTodo && <Checkbox style={checkboxStyle} checked={!!Number(note.todo_completed)} onChange={(checked) => { this.todoCheckbox_change(checked) }} /> }
<TextInput
onContentSizeChange={(event) => this.titleTextInput_contentSizeChange(event)}
autoFocus={isNew}
multiline={true}
underlineColorAndroid="#ffffff00"
autoCapitalize="sentences"
style={titleTextInputStyle}
value={note.title}
onChangeText={(text) => this.title_changeText(text)}
/>
</View>
);
2017-05-12 22:23:54 +02:00
return (
2017-08-01 20:53:50 +02:00
<View style={this.rootStyle(this.props.theme).root}>
<ScreenHeader
2017-07-16 18:06:05 +02:00
titlePicker={{
items: titlePickerItems(),
selectedValue: folder ? folder.id : null,
onValueChange: async (itemValue, itemIndex) => {
let note = Object.assign({}, this.state.note);
2017-07-17 22:22:05 +02:00
// RN bug: https://github.com/facebook/react-native/issues/9220
// The Picker fires the onValueChange when the component is initialized
// so we need to check that it has actually changed.
if (note.parent_id == itemValue) return;
reg.logger().info('Moving note: ' + note.parent_id + ' => ' + itemValue);
2017-07-16 18:06:05 +02:00
if (note.id) await Note.moveToFolder(note.id, itemValue);
note.parent_id = itemValue;
const folder = await Folder.load(note.parent_id);
this.setState({
lastSavedNote: Object.assign({}, note),
note: note,
folder: folder,
});
}
}}
menuOptions={this.menuOptions()}
showSaveButton={showSaveButton}
saveButtonDisabled={saveButtonDisabled}
onSaveButtonPress={() => this.saveNoteButton_press()}
/>
{ titleComp }
{ bodyComponent }
2017-07-14 01:35:37 +02:00
{ actionButtonComp }
2017-08-02 19:47:25 +02:00
{ this.state.showNoteMetadata && <Text style={this.styles().metadata}>{this.state.noteMetadata}</Text> }
2017-07-15 01:12:32 +02:00
<DialogBox ref={dialogbox => { this.dialogbox = dialogbox }}/>
2017-05-12 22:23:54 +02:00
</View>
);
}
}
const NoteScreen = connect(
(state) => {
return {
2017-05-22 22:22:50 +02:00
noteId: state.selectedNoteId,
folderId: state.selectedFolderId,
2017-05-24 22:51:50 +02:00
itemType: state.selectedItemType,
2017-07-16 18:06:05 +02:00
folders: state.folders,
2017-08-01 20:53:50 +02:00
theme: state.settings.theme,
2017-09-24 16:48:23 +02:00
showAdvancedOptions: state.settings.showAdvancedOptions,
2017-05-12 22:23:54 +02:00
};
}
)(NoteScreenComponent)
2017-11-03 02:13:17 +02:00
module.exports = { NoteScreen };