"use client"; /** * TEE OFF ADMIN DASHBOARD v2.1 - MISSION CONTROL + INLINE EDIT * --------------------------------------------------------------------------- * FUNKSJON: "Mission Control" med faner for Banestatus og Medlemskap, * og klikk-for-å-redigere URL-er direkte i tabellen! * --------------------------------------------------------------------------- */ import { useState, useEffect, useMemo } from 'react'; import { API_URL } from "@/config/constants"; import ScrapeMethodSelect from "@/components/ScrapeMethodSelect"; import Link from 'next/link'; // KOMPONENT FOR HURTIGREDIGERING AV URL-ER const InlineEdit = ({ facilityId, field, initialValue, onSave }: { facilityId: number, field: string, initialValue: string, onSave: (id: number, field: string, val: string) => void }) => { const [isEditing, setIsEditing] = useState(false); const [value, setValue] = useState(initialValue || ''); const handleSave = () => { setIsEditing(false); if (value !== initialValue) { onSave(facilityId, field, value); } }; if (isEditing) { return (