wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'use client'
import type { FC } from 'react'
import React, { useCallback, useState } from 'react'
import { InstallStep } from '../../types'
import Install from './steps/install'
import Installed from './steps/installed'
import type { Dependency, InstallStatusResponse, Plugin } from '../../types'
 
type Props = {
  step: InstallStep
  onStepChange: (step: InstallStep) => void,
  onStartToInstall: () => void
  setIsInstalling: (isInstalling: boolean) => void
  allPlugins: Dependency[]
  onClose: () => void
  isFromMarketPlace?: boolean
}
 
const ReadyToInstall: FC<Props> = ({
  step,
  onStepChange,
  onStartToInstall,
  setIsInstalling,
  allPlugins,
  onClose,
  isFromMarketPlace,
}) => {
  const [installedPlugins, setInstalledPlugins] = useState<Plugin[]>([])
  const [installStatus, setInstallStatus] = useState<InstallStatusResponse[]>([])
  const handleInstalled = useCallback((plugins: Plugin[], installStatus: InstallStatusResponse[]) => {
    setInstallStatus(installStatus)
    setInstalledPlugins(plugins)
    onStepChange(InstallStep.installed)
    setIsInstalling(false)
  }, [onStepChange, setIsInstalling])
  return (
    <>
      {step === InstallStep.readyToInstall && (
        <Install
          allPlugins={allPlugins}
          onCancel={onClose}
          onStartToInstall={onStartToInstall}
          onInstalled={handleInstalled}
          isFromMarketPlace={isFromMarketPlace}
        />
      )}
      {step === InstallStep.installed && (
        <Installed
          list={installedPlugins}
          installStatus={installStatus}
          onCancel={onClose}
        />
      )}
    </>
  )
}
export default React.memo(ReadyToInstall)