2024-12-03 05:39:37 +00:00
|
|
|
import ignore from 'ignore';
|
2024-12-02 21:53:22 +00:00
|
|
|
import { useGit } from '~/lib/hooks/useGit';
|
2024-12-03 05:39:37 +00:00
|
|
|
import type { Message } from 'ai';
|
|
|
|
import WithTooltip from '~/components/ui/Tooltip';
|
2024-11-25 14:23:54 +00:00
|
|
|
|
2024-12-03 05:39:37 +00:00
|
|
|
const IGNORE_PATTERNS = [
|
|
|
|
'node_modules/**',
|
|
|
|
'.git/**',
|
|
|
|
'.github/**',
|
2024-12-03 07:24:49 +00:00
|
|
|
'.vscode/**',
|
|
|
|
'**/*.jpg',
|
|
|
|
'**/*.jpeg',
|
|
|
|
'**/*.png',
|
2024-12-03 05:39:37 +00:00
|
|
|
'dist/**',
|
|
|
|
'build/**',
|
|
|
|
'.next/**',
|
|
|
|
'coverage/**',
|
|
|
|
'.cache/**',
|
|
|
|
'.vscode/**',
|
|
|
|
'.idea/**',
|
|
|
|
'**/*.log',
|
|
|
|
'**/.DS_Store',
|
|
|
|
'**/npm-debug.log*',
|
|
|
|
'**/yarn-debug.log*',
|
|
|
|
'**/yarn-error.log*',
|
|
|
|
'**/*lock.json',
|
|
|
|
];
|
|
|
|
|
|
|
|
const ig = ignore().add(IGNORE_PATTERNS);
|
|
|
|
const generateId = () => Math.random().toString(36).substring(2, 15);
|
|
|
|
|
|
|
|
interface GitCloneButtonProps {
|
|
|
|
className?: string;
|
|
|
|
importChat?: (description: string, messages: Message[]) => Promise<void>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function GitCloneButton({ importChat }: GitCloneButtonProps) {
|
2024-12-02 21:53:22 +00:00
|
|
|
const { ready, gitClone } = useGit();
|
|
|
|
const onClick = async (_e: any) => {
|
|
|
|
if (!ready) {
|
|
|
|
return;
|
2024-11-25 14:23:54 +00:00
|
|
|
}
|
2024-12-02 21:53:22 +00:00
|
|
|
|
|
|
|
const repoUrl = prompt('Enter the Git url');
|
|
|
|
|
|
|
|
if (repoUrl) {
|
2024-12-03 05:39:37 +00:00
|
|
|
const { workdir, data } = await gitClone(repoUrl);
|
|
|
|
|
|
|
|
if (importChat) {
|
|
|
|
const filePaths = Object.keys(data).filter((filePath) => !ig.ignores(filePath));
|
|
|
|
console.log(filePaths);
|
|
|
|
|
|
|
|
const textDecoder = new TextDecoder('utf-8');
|
|
|
|
const message: Message = {
|
|
|
|
role: 'assistant',
|
|
|
|
content: `Cloning the repo ${repoUrl} into ${workdir}
|
2024-12-03 06:42:02 +00:00
|
|
|
<boltArtifact id="imported-files" title="Git Cloned Files" type="bundled" >
|
2024-12-03 05:39:37 +00:00
|
|
|
${filePaths
|
|
|
|
.map((filePath) => {
|
|
|
|
const { data: content, encoding } = data[filePath];
|
|
|
|
|
|
|
|
if (encoding === 'utf8') {
|
|
|
|
return `<boltAction type="file" filePath="${filePath}">
|
|
|
|
${content}
|
|
|
|
</boltAction>`;
|
|
|
|
} else if (content instanceof Uint8Array) {
|
|
|
|
return `<boltAction type="file" filePath="${filePath}">
|
|
|
|
${textDecoder.decode(content)}
|
|
|
|
</boltAction>`;
|
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.join('\n')}
|
|
|
|
</boltArtifact>`,
|
|
|
|
id: generateId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
};
|
|
|
|
console.log(JSON.stringify(message));
|
|
|
|
|
|
|
|
importChat(`Git Project:${repoUrl.split('/').slice(-1)[0]}`, [message]);
|
|
|
|
|
|
|
|
// console.log(files);
|
|
|
|
}
|
2024-12-02 21:53:22 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-11-25 14:23:54 +00:00
|
|
|
return (
|
2024-12-03 05:39:37 +00:00
|
|
|
<WithTooltip tooltip="Clone A Git Repo">
|
|
|
|
<button
|
|
|
|
onClick={(e) => {
|
|
|
|
onClick(e);
|
|
|
|
}}
|
|
|
|
title="Clone A Git Repo"
|
|
|
|
className="px-4 py-2 rounded-lg border border-bolt-elements-borderColor bg-bolt-elements-prompt-background text-bolt-elements-textPrimary hover:bg-bolt-elements-background-depth-3 transition-all flex items-center gap-2"
|
|
|
|
>
|
|
|
|
<span className="i-ph:git-branch" />
|
|
|
|
Clone A Git Repo
|
|
|
|
</button>
|
|
|
|
</WithTooltip>
|
2024-12-02 21:53:22 +00:00
|
|
|
);
|
2024-11-25 14:23:54 +00:00
|
|
|
}
|