You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Mobile: Implement plugin screen redesign (#10465)
This commit is contained in:
@ -0,0 +1,39 @@
|
||||
import { PluginSettings } from '@joplin/lib/services/plugins/PluginService';
|
||||
import { useMemo } from 'react';
|
||||
|
||||
export enum UpdateState {
|
||||
Idle = 1,
|
||||
CanUpdate = 2,
|
||||
Updating = 3,
|
||||
HasBeenUpdated = 4,
|
||||
}
|
||||
|
||||
interface Props {
|
||||
pluginId: string;
|
||||
|
||||
pluginSettings: PluginSettings;
|
||||
updatingPluginIds: Record<string, boolean>;
|
||||
updatablePluginIds: Record<string, boolean>;
|
||||
}
|
||||
|
||||
const useUpdateState = ({ pluginId, pluginSettings, updatablePluginIds, updatingPluginIds }: Props) => {
|
||||
return useMemo(() => {
|
||||
const settings = pluginSettings[pluginId];
|
||||
|
||||
// Uninstalled
|
||||
if (!settings) return UpdateState.Idle;
|
||||
|
||||
if (settings.hasBeenUpdated) {
|
||||
return UpdateState.HasBeenUpdated;
|
||||
}
|
||||
if (updatingPluginIds[pluginId]) {
|
||||
return UpdateState.Updating;
|
||||
}
|
||||
if (updatablePluginIds[pluginId]) {
|
||||
return UpdateState.CanUpdate;
|
||||
}
|
||||
return UpdateState.Idle;
|
||||
}, [pluginSettings, updatingPluginIds, pluginId, updatablePluginIds]);
|
||||
};
|
||||
|
||||
export default useUpdateState;
|
Reference in New Issue
Block a user