mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
import { useCallback } from 'react';
|
|
|
|
const { ToastAndroid } = require('react-native');
|
|
const { _ } = require('@joplin/lib/locale.js');
|
|
import { reg } from '@joplin/lib/registry';
|
|
const { dialogs } = require('../../../utils/dialogs.js');
|
|
import Resource from '@joplin/lib/models/Resource';
|
|
import { copyToCache } from '../../../utils/ShareUtils';
|
|
import isEditableResource from '../../NoteEditor/ImageEditor/isEditableResource';
|
|
const Share = require('react-native-share').default;
|
|
|
|
interface Callbacks {
|
|
onJoplinLinkClick: (link: string)=> void;
|
|
onRequestEditResource: (message: string)=> void;
|
|
}
|
|
|
|
export default function useOnResourceLongPress(callbacks: Callbacks, dialogBoxRef: any) {
|
|
const { onJoplinLinkClick, onRequestEditResource } = callbacks;
|
|
|
|
return useCallback(async (msg: string) => {
|
|
try {
|
|
const resourceId = msg.split(':')[1];
|
|
const resource = await Resource.load(resourceId);
|
|
|
|
// Handle the case where it's a long press on a link with no resource
|
|
if (!resource) {
|
|
reg.logger().warn(`Long-press: Resource with ID ${resourceId} does not exist (may be a note).`);
|
|
return;
|
|
}
|
|
|
|
const name = resource.title ? resource.title : resource.file_name;
|
|
const mime: string|undefined = resource.mime;
|
|
|
|
const actions = [];
|
|
|
|
actions.push({ text: _('Open'), id: 'open' });
|
|
if (mime && isEditableResource(mime)) {
|
|
actions.push({ text: _('Edit'), id: 'edit' });
|
|
}
|
|
actions.push({ text: _('Share'), id: 'share' });
|
|
|
|
const action = await dialogs.pop({ dialogbox: dialogBoxRef.current }, name, actions);
|
|
|
|
if (action === 'open') {
|
|
onJoplinLinkClick(`joplin://${resourceId}`);
|
|
} else if (action === 'share') {
|
|
const fileToShare = await copyToCache(resource);
|
|
|
|
await Share.open({
|
|
type: resource.mime,
|
|
filename: resource.title,
|
|
url: `file://${fileToShare}`,
|
|
failOnCancel: false,
|
|
});
|
|
} else if (action === 'edit') {
|
|
onRequestEditResource(`edit:${resourceId}`);
|
|
}
|
|
} catch (e) {
|
|
reg.logger().error('Could not handle link long press', e);
|
|
ToastAndroid.show('An error occurred, check log for details', ToastAndroid.SHORT);
|
|
}
|
|
}, [onJoplinLinkClick, onRequestEditResource, dialogBoxRef]);
|
|
}
|