mirror of
https://github.com/arkorty/Reduce.git
synced 2026-03-18 00:47:10 +00:00
Fix: new link isn't created for existing long url
This commit is contained in:
@@ -7,7 +7,7 @@ dotenv.config();
|
|||||||
const inter = Inter({ subsets: ["latin"] });
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
|
|
||||||
export const metadata = {
|
export const metadata = {
|
||||||
title: "URL Shortener",
|
title: "Reduce",
|
||||||
description: "A simple URL shortener application",
|
description: "A simple URL shortener application",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useState } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import dotenv from "dotenv";
|
import dotenv from "dotenv";
|
||||||
import { MdContentCopy } from "react-icons/md";
|
import { MdContentCopy } from "react-icons/md";
|
||||||
@@ -11,10 +11,21 @@ export default function Home() {
|
|||||||
const [longUrl, setLongUrl] = useState("");
|
const [longUrl, setLongUrl] = useState("");
|
||||||
const [shortUrl, setShortUrl] = useState("");
|
const [shortUrl, setShortUrl] = useState("");
|
||||||
const [copied, setCopied] = useState(false);
|
const [copied, setCopied] = useState(false);
|
||||||
|
const [prevLongUrl, setPrevLongUrl] = useState("");
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (prevLongUrl !== longUrl) {
|
||||||
|
setShortUrl("");
|
||||||
|
}
|
||||||
|
}, [longUrl, prevLongUrl]);
|
||||||
|
|
||||||
const handleSubmit = async (e) => {
|
const handleSubmit = async (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
|
if (longUrl === prevLongUrl && shortUrl) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Use the frontend domain as the base URL
|
// Use the frontend domain as the base URL
|
||||||
const baseURL = window.location.origin;
|
const baseURL = window.location.origin;
|
||||||
|
|
||||||
@@ -28,6 +39,7 @@ export default function Home() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
setShortUrl(response.data.short_url);
|
setShortUrl(response.data.short_url);
|
||||||
|
setPrevLongUrl(longUrl);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error shortening URL:", error);
|
console.error("Error shortening URL:", error);
|
||||||
}
|
}
|
||||||
@@ -69,15 +81,20 @@ export default function Home() {
|
|||||||
{shortUrl && (
|
{shortUrl && (
|
||||||
<div className="mt-4 text-center text-gray-800">
|
<div className="mt-4 text-center text-gray-800">
|
||||||
<div className="flex items-center justify-center space-x-2">
|
<div className="flex items-center justify-center space-x-2">
|
||||||
<span className="text-blue-500 text-xl underline">
|
<a
|
||||||
|
href={shortUrl}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="text-blue-500 text-lg underline"
|
||||||
|
>
|
||||||
{shortUrl}
|
{shortUrl}
|
||||||
</span>
|
</a>
|
||||||
<button
|
<button
|
||||||
onClick={handleCopy}
|
onClick={handleCopy}
|
||||||
className={`flex items-center justify-center p-2 rounded-lg transition duration-200 ${copied ? "text-gray-400" : "text-blue-500 hover:text-blue-600"}`}
|
className={`flex items-center justify-center p-2 rounded-lg transition duration-200 ${copied ? "text-gray-400" : "text-blue-500 hover:text-blue-600"}`}
|
||||||
aria-label="Copy to clipboard"
|
aria-label="Copy to clipboard"
|
||||||
>
|
>
|
||||||
<MdContentCopy className="text-xl" />{" "}
|
<MdContentCopy className="text-2xl" />{" "}
|
||||||
{/* Adjust the size here */}
|
{/* Adjust the size here */}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user