mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
113 lines
3.4 KiB
TypeScript
113 lines
3.4 KiB
TypeScript
import { useRef, useCallback } from 'react';
|
|
|
|
import useSource from './hooks/useSource';
|
|
import useOnMessage, { HandleMessageCallback, HandleScrollCallback, OnMarkForDownloadCallback } from './hooks/useOnMessage';
|
|
import useOnResourceLongPress from './hooks/useOnResourceLongPress';
|
|
|
|
const React = require('react');
|
|
import { View } from 'react-native';
|
|
import BackButtonDialogBox from '../BackButtonDialogBox';
|
|
import { reg } from '@joplin/lib/registry';
|
|
import ExtendedWebView, { WebViewControl } from '../ExtendedWebView';
|
|
|
|
interface Props {
|
|
themeId: number;
|
|
style: any;
|
|
noteBody: string;
|
|
noteMarkupLanguage: number;
|
|
highlightedKeywords: string[];
|
|
noteResources: any;
|
|
paddingBottom: number;
|
|
initialScroll: number|null;
|
|
noteHash: string;
|
|
onJoplinLinkClick: HandleMessageCallback;
|
|
onCheckboxChange?: HandleMessageCallback;
|
|
onRequestEditResource?: HandleMessageCallback;
|
|
onMarkForDownload?: OnMarkForDownloadCallback;
|
|
onScroll: HandleScrollCallback;
|
|
onLoadEnd?: ()=> void;
|
|
}
|
|
|
|
export default function NoteBodyViewer(props: Props) {
|
|
const dialogBoxRef = useRef(null);
|
|
const webviewRef = useRef<WebViewControl>(null);
|
|
|
|
const { html, injectedJs } = useSource(
|
|
props.noteBody,
|
|
props.noteMarkupLanguage,
|
|
props.themeId,
|
|
props.highlightedKeywords,
|
|
props.noteResources,
|
|
props.paddingBottom,
|
|
props.noteHash,
|
|
props.initialScroll,
|
|
);
|
|
|
|
const onResourceLongPress = useOnResourceLongPress(
|
|
{
|
|
onJoplinLinkClick: props.onJoplinLinkClick,
|
|
onRequestEditResource: props.onRequestEditResource,
|
|
},
|
|
dialogBoxRef,
|
|
);
|
|
|
|
const onMessage = useOnMessage(
|
|
props.noteBody,
|
|
{
|
|
onCheckboxChange: props.onCheckboxChange,
|
|
onMarkForDownload: props.onMarkForDownload,
|
|
onJoplinLinkClick: props.onJoplinLinkClick,
|
|
onRequestEditResource: props.onRequestEditResource,
|
|
onResourceLongPress,
|
|
onMainContainerScroll: props.onScroll,
|
|
},
|
|
);
|
|
|
|
const onLoadEnd = useCallback(() => {
|
|
if (props.onLoadEnd) props.onLoadEnd();
|
|
}, [props.onLoadEnd]);
|
|
|
|
function onError() {
|
|
reg.logger().error('WebView error');
|
|
}
|
|
|
|
const BackButtonDialogBox_ = BackButtonDialogBox as any;
|
|
|
|
// On iOS scalesPageToFit work like this:
|
|
//
|
|
// Find the widest image, resize it *and everything else* by x% so that
|
|
// the image fits within the viewport. The problem is that it means if there's
|
|
// a large image, everything is going to be scaled to a very small size, making
|
|
// the text unreadable.
|
|
//
|
|
// On Android:
|
|
//
|
|
// Find the widest elements and scale them (and them only) to fit within the viewport
|
|
// It means it's going to scale large images, but the text will remain at the normal
|
|
// size.
|
|
//
|
|
// That means we can use scalesPageToFix on Android but not on iOS.
|
|
// The weird thing is that on iOS, scalesPageToFix=false along with a CSS
|
|
// rule "img { max-width: 100% }", works like scalesPageToFix=true on Android.
|
|
// So we use scalesPageToFix=false on iOS along with that CSS rule.
|
|
//
|
|
// 2020-10-15: As we've now fully switched to WebKit for iOS (useWebKit=true) and
|
|
// since the WebView package went through many versions it's possible that
|
|
// the above no longer applies.
|
|
return (
|
|
<View style={props.style}>
|
|
<ExtendedWebView
|
|
ref={webviewRef}
|
|
webviewInstanceId='NoteBodyViewer'
|
|
html={html}
|
|
injectedJavaScript={injectedJs.join('\n')}
|
|
mixedContentMode="always"
|
|
onLoadEnd={onLoadEnd}
|
|
onError={onError}
|
|
onMessage={onMessage}
|
|
/>
|
|
<BackButtonDialogBox_ ref={dialogBoxRef}/>
|
|
</View>
|
|
);
|
|
}
|