From 04572a8e5081b1e4871e273cde9dbaaa44c52fe0 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Wed, 13 Mar 2024 21:43:44 +0000 Subject: structure: Create apps dir and copy tooling dir from t3-turbo repo --- apps/browser-extension/src/SavePage.tsx | 60 +++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 apps/browser-extension/src/SavePage.tsx (limited to 'apps/browser-extension/src/SavePage.tsx') diff --git a/apps/browser-extension/src/SavePage.tsx b/apps/browser-extension/src/SavePage.tsx new file mode 100644 index 00000000..638af149 --- /dev/null +++ b/apps/browser-extension/src/SavePage.tsx @@ -0,0 +1,60 @@ +import { useEffect, useState } from "react"; +import Spinner from "./Spinner"; +import { api } from "./utils/trpc"; +import { Navigate } from "react-router-dom"; + +export default function SavePage() { + const [error, setError] = useState(undefined); + + const { + data, + mutate: createBookmark, + status, + } = api.bookmarks.createBookmark.useMutation({ + onError: (e) => { + setError("Something went wrong: " + e.message); + }, + }); + + useEffect(() => { + async function runSave() { + let currentUrl; + const [currentTab] = await chrome.tabs.query({ + active: true, + lastFocusedWindow: true, + }); + if (currentTab?.url) { + currentUrl = currentTab.url; + } else { + setError("Couldn't find the URL of the current tab"); + return; + } + + createBookmark({ + type: "link", + url: currentUrl, + }); + } + runSave(); + }, [createBookmark]); + + switch (status) { + case "error": { + return
{error}
; + } + case "success": { + return ; + } + case "pending": { + return ( +
+ Saving Bookmark + +
+ ); + } + case "idle": { + return
; + } + } +} -- cgit v1.2.3-70-g09d2