1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Mobile: Plugins: Support the showToast API (#11787)

This commit is contained in:
Henry Heino
2025-02-06 10:03:50 -08:00
committed by GitHub
parent c55c8d62ec
commit 6e3258a5d8
5 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,45 @@
import { _ } from '@joplin/lib/locale';
import * as React from 'react';
import { Portal, Snackbar } from 'react-native-paper';
import { connect } from 'react-redux';
import { AppState } from '../../utils/types';
import { Toast } from '@joplin/lib/services/plugins/api/types';
import { useCallback } from 'react';
import { Dispatch } from 'redux';
import { ViewStyle } from 'react-native';
interface Props {
dispatch: Dispatch;
toast: Toast;
}
const snackbarAction = {
label: _('Close'),
};
const wrapperStyle: ViewStyle = {
maxWidth: 600,
alignSelf: 'center',
};
const PluginNotification: React.FC<Props> = props => {
const onDismiss = useCallback(() => {
props.dispatch({ type: 'TOAST_HIDE' });
}, [props.dispatch]);
// Reload the <Portal> for each new toast. This keeps the toast notification on top
// of other <Portal> components and resets the toast timestamp when its message changes.
return <Portal key={`toast-${props.toast?.timestamp}`}>
<Snackbar
visible={!!props.toast}
onDismiss={onDismiss}
duration={props.toast?.duration}
wrapperStyle={wrapperStyle}
action={snackbarAction}
>{props.toast?.message ?? ''}</Snackbar>
</Portal>;
};
export default connect((state: AppState) => ({
toast: state.toast,
}))(PluginNotification);