/home/smartbloks/.trash/extendify/src/Library/middleware/hasRequiredPlugins/index.js
import { render } from '@wordpress/element'
import { checkIfUserNeedsToInstallPlugins } from '../helpers'
import RequiredPluginsModal from './RequiredPluginsModal'

export const hasRequiredPlugins = async (template) => {
    return {
        id: 'hasRequiredPlugins',
        pass: !(await checkIfUserNeedsToInstallPlugins(template)),
        allow() {},
        deny() {
            return new Promise(() => {
                render(
                    <RequiredPluginsModal />,
                    document.getElementById('extendify-root'),
                )
            })
        },
    }
}