refactor: UI enhancement in tools

This commit is contained in:
Siddhant Rai
2025-01-03 12:27:54 +05:30
parent c7d7dfbd50
commit 0031ca3159
10 changed files with 168 additions and 93 deletions

View File

@@ -84,7 +84,7 @@ export default function AddToolModal({
<h2 className="font-semibold text-xl text-jet dark:text-bright-gray px-3">
Select a tool to set up
</h2>
<div className="mt-5 grid grid-cols-3 gap-4 h-[73vh] overflow-auto px-3 py-px">
<div className="mt-5 flex flex-col sm:grid sm:grid-cols-3 gap-4 h-[73vh] overflow-auto px-3 py-px">
{availableTools.map((tool, index) => (
<div
role="button"

View File

@@ -1,7 +1,9 @@
import { ActiveState } from '../models/misc';
import { useTranslation } from 'react-i18next';
import { ActiveState } from '../models/misc';
import WrapperModal from './WrapperModal';
function ConfirmationModal({
export default function ConfirmationModal({
message,
modalState,
setModalState,
@@ -59,5 +61,3 @@ function ConfirmationModal({
</>
);
}
export default ConfirmationModal;

View File

@@ -1,12 +1,13 @@
import React, { useEffect, useRef } from 'react';
import { WrapperModalProps } from './types';
import Exit from '../assets/exit.svg';
const WrapperModal: React.FC<WrapperModalProps> = ({
import Exit from '../assets/exit.svg';
import { WrapperModalProps } from './types';
export default function WrapperModal({
children,
close,
isPerformingTask,
}) => {
}: WrapperModalProps) {
const modalRef = useRef<HTMLDivElement>(null);
useEffect(() => {
@@ -39,10 +40,13 @@ const WrapperModal: React.FC<WrapperModalProps> = ({
<div className="fixed top-0 left-0 z-30 flex h-screen w-screen items-center justify-center bg-gray-alpha bg-opacity-50">
<div
ref={modalRef}
className="relative w-11/12 rounded-2xl bg-white p-10 dark:bg-outer-space sm:w-[512px]"
className="relative w-11/12 rounded-2xl bg-white dark:bg-outer-space sm:w-[512px]"
>
{!isPerformingTask && (
<button className="absolute top-3 right-4 m-2 w-3" onClick={close}>
<button
className="absolute top-3 right-4 m-2 w-3 z-50"
onClick={close}
>
<img className="filter dark:invert" src={Exit} />
</button>
)}
@@ -50,6 +54,4 @@ const WrapperModal: React.FC<WrapperModalProps> = ({
</div>
</div>
);
};
export default WrapperModal;
}