File size: 867 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { Button } from "@nextui-org/react";
import React from "react";

export interface Action {
  action: () => void;
  isDisabled?: boolean;
  label: string;
  className?: string;
  closeAfterAction?: boolean;
}

interface FooterContentProps {
  actions: Action[];
  closeModal: () => void;
}

export function FooterContent({ actions, closeModal }: FooterContentProps) {
  return (
    <>

      {actions.map(

        ({ action, isDisabled, label, className, closeAfterAction }) => (

          <Button

            key={label}

            type="button"

            isDisabled={isDisabled}

            onPress={() => {

              action();

              if (closeAfterAction) closeModal();

            }}

            className={className}

          >

            {label}

          </Button>

        ),

      )}

    </>
  );
}