สร้างร้านค้าเก็บเงินปลายทาง + แดชบอร์ดผู้ดูแล
สร้างร้านค้าเก็บเงินปลายทางพร้อมแบ็กเอนด์ Supabase และแดชบอร์ดผู้ดูแล
แผนการทำงานและแหล่งข้อมูล
สร้างระบบคำสั่งซื้อใน Supabase
สร้างโปรเจกต์ Supabase ใหม่
เปิด Supabase
https://supabase.com/?utm_source=partner&utm_medium=social&utm_campaign=supasquad&dub_id=faVfKdcLWvKCbYNp
เปิด SQL Editor
รันโค้ด SQL 1 — สร้างตาราง Orders
-- Create orders table create table if not exists public.orders ( id uuid primary key default gen_random_uuid(), customer_name text not null, phone text not null, email text, city text not null, address text not null, country text default 'United States', product_name text not null, product_variant text, quantity int not null default 1, notes text, status text not null default 'pending', -- pending, confirmed, shipped, cancelled created_at timestamptz default now() ); -- Enable RLS alter table public.orders enable row level security;
รันโค้ด SQL 2 — สร้างตาราง Profiles
-- Create profiles table create table if not exists public.profiles ( user_id uuid primary key references auth.users(id) on delete cascade, role text not null default 'user' ); -- Enable RLS alter table public.profiles enable row level security;
สร้างผู้ใช้ที่เป็นผู้ดูแลใน Authentication → Users
รันโค้ด SQL 3 — กำหนดสิทธิ์ผู้ดูแล
แทนที่ USER_ID ด้วย UID ของคุณ
insert into public.profiles (user_id, role) values ('PUT_USER_ID_HERE', 'admin');
โค้ด SQL — Policy ความปลอดภัย (RLS)
โค้ด SQL 4 — Policy อ่านตาราง Profiles
-- Profiles are readable by owner create policy "Profiles are readable by owner" on public.profiles for select to authenticated using (auth.uid() = user_id);
โค้ด SQL 5 — Policy ให้ผู้ใช้ทั่วไปสร้างคำสั่งซื้อ
-- Public can create orders create policy "Public can create orders" on public.orders for insert to anon with check ( status = 'pending' );
โค้ด SQL 6 — Policy ให้ผู้ดูแลดูคำสั่งซื้อ
-- Admins can view all orders create policy "Admins can view all orders" on public.orders for select to authenticated using ( exists ( select 1 from public.profiles where profiles.user_id = auth.uid() and profiles.role = 'admin' ) );
โค้ด SQL 7 — Policy ให้ผู้ดูแลแก้ไขคำสั่งซื้อ
-- Admins can update all orders create policy "Admins can update all orders" on public.orders for update to authenticated using ( exists ( select 1 from public.profiles where profiles.user_id = auth.uid() and profiles.role = 'admin' ) ) with check ( exists ( select 1 from public.profiles where profiles.user_id = auth.uid() and profiles.role = 'admin' ) );
คัดลอก Project URL และ Publishable Key
สร้างร้านค้าพร้อมฟอร์มสั่งซื้อ
เช็กลิสต์
ใส่ Supabase Project URL ของคุณ
ใส่ Supabase Publishable Key ของคุณ
คัดลอกพรอมต์ที่สร้างขึ้น
สร้างหน้าร้านค้าใน Google AI Studio
ลองส่งคำสั่งซื้อทดสอบ
ตรวจสอบคำสั่งซื้อใน Supabase → ตาราง Orders
พรอมต์ที่ใช้ในขั้นตอนนี้
พรอมต์ 1 — สร้างร้านค้า + ฟอร์มสั่งซื้อ
You are building a web app INSIDE this Google AI Studio project. Task: Create a beautiful, premium, light-mode single-page Cash-on-Delivery (COD) store TEMPLATE (one product) that is simple and beginner-friendly to customize. IMPORTANT OUTPUT RULES: - Do NOT paste the full HTML/CSS/JS code in the chat. - Instead, create/update the project files directly. - After you finish, reply with: 1) A short bullet summary of what you built 2) Where beginners should edit the template (the exact variables/sections) Design (Light Mode): - Clean white / soft light gray background with a subtle pastel gradient. - Modern premium SaaS look (Apple/Stripe style). - Elegant spacing, rounded corners, soft shadows. - Looks great on mobile. Template placeholders (make them easy to edit): - STORE_NAME: "YOUR STORE NAME" - PRODUCT_NAME: "YOUR PRODUCT NAME" - PRODUCT_DESCRIPTION: "YOUR PRODUCT DESCRIPTION" - PRICE_PER_UNIT: 49 - CURRENCY: "USD" - Variants: "Variant A", "Variant B", "Variant C" - Default country: "United States" Sections to include (keep it simple): 1) Header (store name + link scroll to “How COD Works”) 2) Hero (product name, description, CTA buttons) 3) Benefits (3 cards) 4) How COD Works (3 steps) 5) Order Form (most important) + Order Summary (price x quantity) 6) FAQ (3 items) 7) Footer Supabase (INSERT only): - Use Supabase JS client. - Use placeholders: SUPABASE_URL = "{{SUPABASE_URL}}" SUPABASE_PUBLISHABLE_KEY = "{{SUPABASE_PUBLISHABLE_KEY}}" - On form submit: INSERT into table "orders" with: customer_name, phone, email, city, address, country, product_name, product_variant, quantity, notes, status="pending" Critical rules: - INSERT only. Do NOT use select/update/delete. - Show success banner on success, generic error banner on failure. - Validate required fields with small inline errors. - Disable the submit button while sending. Now build it inside the project so I can run it immediately.
Supabase Project URL
วาง Supabase Project URL ของคุณตรงนี้
Supabase Publishable Key
วาง publishable key ของ Supabase ตรงนี้
สร้างแดชบอร์ดผู้ดูแล
เช็กลิสต์
ใส่ Supabase Project URL ของคุณ
ใส่ Supabase Publishable Key ของคุณ
คัดลอกพรอมต์ที่สร้างขึ้น
สร้างแดชบอร์ดผู้ดูแลใน Google AI Studio
ล็อกอินด้วยบัญชีผู้ดูแลของ Supabase
พรอมต์ที่ใช้ในขั้นตอนนี้
พรอมต์ 2 — สร้างแดชบอร์ดผู้ดูแล
You are an expert full-stack engineer. Build a modern admin dashboard for managing Cash-on-Delivery (COD) orders using Supabase. Use the following Supabase credentials: SUPABASE_URL = "{{SUPABASE_URL}}" SUPABASE_KEY = "{{SUPABASE_KEY}}" The database contains a table called: orders Fields include: customer_name, email, phone, city, address, product_variant, quantity, status, created_at. The dashboard should allow an admin to: • log in • view order statistics • see recent orders • search and filter orders • update order status • customize the application name in settings Design it as a clean modern SaaS dashboard with a light Apple-style UI. Keep the implementation simple and produce a fully working result.
Supabase Project URL
วาง Supabase Project URL ของคุณตรงนี้
Supabase Publishable Key
วาง Supabase Publishable Key ของคุณตรงนี้
ดีพลอยโปรเจกต์
เช็กลิสต์
บันทึกโปรเจกต์ขึ้น GitHub จาก Google AI Studio
สร้างโฮสติ้งแบบ Node.js Web App บน Hostinger
นำเข้า GitHub repository
เปิด URL ของโปรเจกต์ที่ใช้งานจริง
โฮสติ้งที่ใช้ในขั้นตอนนี้
ดีพลอยบน Hostinger
เผยแพร่โปรเจกต์นี้ด้วยการตั้งค่าเดียวกับในวิดีโอ
RECOMMENDED
https://www.hostg.xyz/SHJ9M
อัปเกรด — การแจ้งเตือนทางอีเมลอัตโนมัติ
การอัปเกรดนี้ทำให้ร้านค้าใช้งานได้จริงมากขึ้น ด้วยการส่งอีเมลอัตโนมัติทุกครั้งที่มีคำสั่งซื้อใหม่
- เจ้าของร้านได้รับอีเมลแจ้งคำสั่งซื้อใหม่
- ลูกค้าได้รับอีเมลยืนยันคำสั่งซื้อ
ทำให้ร้านค้า AI ของคุณส่งอีเมลอัตโนมัติ (บทเรียน Supabase)
ดูบทเรียน
https://www.youtube.com/watch?v=NK6ztA_-0cE