Compare commits

..

3 Commits

Author SHA1 Message Date
025ce8f763 fixed docker 2026-02-04 15:37:59 +00:00
6d271ef65b fixed docker 2026-02-04 14:32:19 +00:00
b0ef60ff32 fixed docker 2026-02-04 14:29:42 +00:00
22 changed files with 798 additions and 259 deletions

View File

@@ -5,7 +5,7 @@ ENV NEXT_TELEMETRY_DISABLED=1
FROM base AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
RUN npm ci --include=dev
FROM base AS builder
WORKDIR /app

View File

@@ -90,7 +90,7 @@ export async function POST(request: NextRequest) {
status: "failed",
error: "OpenAI API key not configured",
timeline: timeline.map((item) =>
item.status === "running" ? { ...item, status: "failed" } : item
item.status === "running" ? { ...item, status: "failed" as const } : item
),
},
{ token }
@@ -259,7 +259,7 @@ export async function POST(request: NextRequest) {
status: "failed",
error: error.message || "Manual analysis failed",
timeline: timeline.map((item) =>
item.status === "running" ? { ...item, status: "failed" } : item
item.status === "running" ? { ...item, status: "failed" as const } : item
),
},
{ token }

View File

@@ -89,7 +89,7 @@ export async function POST(request: NextRequest) {
status: "failed",
error: "OpenAI API key not configured",
timeline: timeline.map((item) =>
item.status === "running" ? { ...item, status: "failed" } : item
item.status === "running" ? { ...item, status: "failed" as const } : item
),
},
{ token }
@@ -270,7 +270,7 @@ export async function POST(request: NextRequest) {
status: "failed",
error: error.message || "Analysis failed",
timeline: timeline.map((item) =>
item.status === "running" ? { ...item, status: "failed" } : item
item.status === "running" ? { ...item, status: "failed" as const } : item
),
},
{ token }

View File

@@ -1,7 +1,7 @@
import { Checkout } from "@polar-sh/nextjs";
import { NextResponse } from "next/server";
import { NextRequest, NextResponse } from "next/server";
export const GET = async () => {
export const GET = async (request: NextRequest) => {
if (!process.env.POLAR_ACCESS_TOKEN || !process.env.POLAR_SUCCESS_URL) {
return NextResponse.json(
{
@@ -17,5 +17,5 @@ export const GET = async () => {
successUrl: process.env.POLAR_SUCCESS_URL,
});
return handler();
return handler(request);
};

View File

@@ -23,7 +23,7 @@ const searchSchema = z.object({
custom: z.boolean().optional()
})),
strategies: z.array(z.string()),
maxResults: z.number().default(50)
maxResults: z.number().default(50),
minAgeDays: z.number().min(0).max(365).optional(),
maxAgeDays: z.number().min(0).max(365).optional()
})

View File

@@ -39,6 +39,7 @@ const bodySchema = z.object({
})
export async function POST(request: NextRequest) {
let ageFilters: SerperAgeFilter | undefined
try {
const requestId = request.headers.get("x-request-id") ?? undefined;
if (!(await isAuthenticatedNextjs())) {
@@ -51,7 +52,7 @@ export async function POST(request: NextRequest) {
const body = await request.json()
const { analysis, minAgeDays, maxAgeDays } = bodySchema.parse(body)
const ageFilters: SerperAgeFilter = {
ageFilters = {
minAgeDays,
maxAgeDays,
}
@@ -287,15 +288,15 @@ async function analyzeOpportunities(
const relevanceScore = Math.min(keywordScore + problemScore, 1)
// Determine intent
let intent: Opportunity['intent'] = 'looking-for'
let intent: Opportunity['intent'] = 'looking'
if (content.includes('frustrated') || content.includes('hate') || content.includes('sucks')) {
intent = 'frustrated'
} else if (content.includes('alternative') || content.includes('switching')) {
intent = 'alternative'
intent = 'comparing'
} else if (content.includes('vs') || content.includes('comparison') || content.includes('better')) {
intent = 'comparison'
intent = 'comparing'
} else if (content.includes('how to') || content.includes('fix') || content.includes('solution')) {
intent = 'problem-solving'
intent = 'learning'
}
// Find matching persona
@@ -305,16 +306,21 @@ async function analyzeOpportunities(
if (relevanceScore >= 0.3) {
opportunities.push({
id: result.url,
title: result.title,
url: result.url,
platform: result.source,
source: result.source,
snippet: result.snippet.slice(0, 300),
relevanceScore,
painPoints: matchedProblems.slice(0, 3),
suggestedApproach: generateApproach(intent, analysis.productName),
matchedKeywords: matchedKeywords.slice(0, 5),
matchedProblems: matchedProblems.slice(0, 3),
matchedPersona,
intent
intent,
emotionalIntensity: intent === 'frustrated' ? 'high' : matchedProblems.length > 0 ? 'medium' : 'low',
status: 'new',
suggestedApproach: generateApproach(intent, analysis.productName),
softPitch: false
})
}
}

View File

@@ -68,6 +68,8 @@ import type {
} from '@/lib/types'
import { estimateSearchTime } from '@/lib/query-generator'
const AGE_OPTIONS = [0, 1, 3, 7, 14, 30, 60, 90, 180, 365]
const STRATEGY_INFO: Record<SearchStrategy, { name: string; description: string }> = {
'direct-keywords': { name: 'Direct Keywords', description: 'People looking for your product category' },
'problem-pain': { name: 'Problem/Pain', description: 'People experiencing problems you solve' },
@@ -176,21 +178,21 @@ const GOAL_PRESETS: {
title: "High-intent leads",
description: "Shortlist people actively searching to buy or switch.",
strategies: ["direct-keywords", "competitor-alternative", "comparison", "recommendation"],
maxQueries: 30,
maxQueries: 10,
},
{
id: "pain-first",
title: "Problem pain",
description: "Find people expressing frustration or blockers.",
strategies: ["problem-pain", "emotional-frustrated"],
maxQueries: 40,
maxQueries: 15,
},
{
id: "market-scan",
title: "Market scan",
description: "Broader sweep to map demand and platforms.",
strategies: ["direct-keywords", "problem-pain", "how-to", "recommendation"],
maxQueries: 50,
maxQueries: 20,
},
]
@@ -208,7 +210,7 @@ export default function OpportunitiesPage() {
'problem-pain',
'competitor-alternative'
])
const [maxQueries, setMaxQueries] = useState(50)
const [maxQueries, setMaxQueries] = useState(20)
const [minAgeDays, setMinAgeDays] = useState(0)
const [maxAgeDays, setMaxAgeDays] = useState(30)
const [goalPreset, setGoalPreset] = useState<string>('high-intent')
@@ -338,7 +340,7 @@ export default function OpportunitiesPage() {
setStrategies(parsed.strategies)
}
if (typeof parsed.maxQueries === 'number') {
setMaxQueries(Math.min(Math.max(parsed.maxQueries, 10), 50))
setMaxQueries(Math.min(Math.max(parsed.maxQueries, 5), 20))
}
if (typeof parsed.goalPreset === 'string') {
setGoalPreset(parsed.goalPreset)
@@ -366,7 +368,7 @@ export default function OpportunitiesPage() {
}
} else if (defaultPlatformsRef.current) {
setStrategies(['direct-keywords', 'problem-pain', 'competitor-alternative'])
setMaxQueries(50)
setMaxQueries(20)
setGoalPreset('high-intent')
setPlatforms(defaultPlatformsRef.current)
}
@@ -495,7 +497,7 @@ export default function OpportunitiesPage() {
searchTemplate: platform.searchTemplate ?? "",
})),
strategies,
maxResults: Math.min(maxQueries, 50),
maxResults: Math.min(maxQueries, 20),
minAgeDays: minAgeDays > 0 ? minAgeDays : undefined,
maxAgeDays: maxAgeDays > 0 ? maxAgeDays : undefined,
}
@@ -745,7 +747,68 @@ export default function OpportunitiesPage() {
</ScrollArea>
<div className="p-4 border-t border-border space-y-2">
<div className="p-4 border-t border-border space-y-4">
<div className="space-y-3">
<Label className="text-sm font-medium uppercase text-muted-foreground">Lead freshness</Label>
<div className="text-xs text-muted-foreground flex items-center justify-between">
<span>Set min/max age to target thread freshness</span>
<span>
{minAgeDays === 0 ? 'newest' : `${minAgeDays}+ days`} {maxAgeDays > 0 ? `up to ${maxAgeDays} days` : 'any age'}
</span>
</div>
<div className="space-y-2">
<div className="space-y-1.5">
<div className="flex items-center justify-between text-xs text-muted-foreground">
<span>Min age (older)</span>
<span>{minAgeDays} day{minAgeDays === 1 ? '' : 's'}</span>
</div>
<select
value={String(minAgeDays)}
onChange={(event) => {
const next = Number(event.target.value)
const limited = maxAgeDays > 0 ? Math.min(next, maxAgeDays) : next
setMinAgeDays(limited)
}}
className="h-9 w-full rounded-md border border-input bg-background px-3 py-1 text-sm shadow-sm focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50"
>
{AGE_OPTIONS.map((value) => (
<option
key={`min-age-${value}`}
value={value}
disabled={maxAgeDays > 0 && value > maxAgeDays}
>
{value === 0 ? 'Newest (0 days)' : `${value} day${value === 1 ? '' : 's'}`}
</option>
))}
</select>
</div>
<div className="space-y-1.5">
<div className="flex items-center justify-between text-xs text-muted-foreground">
<span>Max age (newer)</span>
<span>{maxAgeDays > 0 ? `${maxAgeDays} days` : 'Any'}</span>
</div>
<select
value={String(maxAgeDays)}
onChange={(event) => {
const next = Number(event.target.value)
const adjusted = next === 0 ? 0 : Math.max(next, minAgeDays)
setMaxAgeDays(adjusted)
}}
className="h-9 w-full rounded-md border border-input bg-background px-3 py-1 text-sm shadow-sm focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50"
>
{AGE_OPTIONS.map((value) => (
<option
key={`max-age-${value}`}
value={value}
disabled={value !== 0 && value < minAgeDays}
>
{value === 0 ? 'Any age' : `${value} day${value === 1 ? '' : 's'}`}
</option>
))}
</select>
</div>
</div>
</div>
<div className="space-y-2">
<Label className="text-sm font-medium uppercase text-muted-foreground">Search Volume</Label>
<div className="space-y-2">
@@ -756,8 +819,8 @@ export default function OpportunitiesPage() {
<Slider
value={[maxQueries]}
onValueChange={([v]) => setMaxQueries(v)}
min={10}
max={50}
min={5}
max={20}
step={5}
/>
<div className="text-xs text-muted-foreground">
@@ -783,9 +846,6 @@ export default function OpportunitiesPage() {
<span>·</span>
<span>max {maxQueries} queries</span>
</div>
<div className="text-xs text-muted-foreground">
Lead age window: {minAgeDays === 0 ? 'newest' : `${minAgeDays}+ days old`} {maxAgeDays > 0 ? `up to ${maxAgeDays} days` : 'any age'}
</div>
{platforms.filter(p => p.enabled).length === 0 && (
<p className="text-xs text-muted-foreground">Select at least one source to search.</p>
)}
@@ -852,42 +912,6 @@ export default function OpportunitiesPage() {
</div>
))}
</div>
<div className="space-y-3">
<Label className="text-sm font-medium uppercase text-muted-foreground">Lead freshness</Label>
<p className="text-xs text-muted-foreground">
Restrict opportunities by lead age. Set a maximum age to avoid archived threads and an optional minimum age to skip brand-new posts.
</p>
<div className="space-y-2">
<div className="flex items-center justify-between text-xs text-muted-foreground">
<span>Min age (older than)</span>
<span>{minAgeDays} day{minAgeDays === 1 ? '' : 's'}</span>
</div>
<Slider
value={[minAgeDays]}
onValueChange={([value]) => {
const limited = maxAgeDays > 0 ? Math.min(value, maxAgeDays) : value
setMinAgeDays(limited)
}}
min={0}
max={365}
step={1}
/>
<div className="flex items-center justify-between text-xs text-muted-foreground">
<span>Max age (newer than)</span>
<span>{maxAgeDays > 0 ? `${maxAgeDays} days` : 'Any'}</span>
</div>
<Slider
value={[maxAgeDays]}
onValueChange={([value]) => {
const nextMax = Math.max(value, minAgeDays)
setMaxAgeDays(nextMax)
}}
min={0}
max={365}
step={1}
/>
</div>
</div>
</div>
</ScrollArea>
</DialogContent>

View File

@@ -1,12 +1,9 @@
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
import ConvexClientProvider from './ConvexClientProvider'
import { ConvexAuthNextjsServerProvider } from "@convex-dev/auth/nextjs/server";
import { ThemeProvider } from "@/components/theme-provider";
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'Sanati - Find Product Opportunities',
description: 'AI-powered product research and opportunity finding',
@@ -20,7 +17,7 @@ export default function RootLayout({
return (
<ConvexAuthNextjsServerProvider>
<html lang="en" suppressHydrationWarning>
<body className={inter.className}>
<body className="font-sans">
<ThemeProvider
attribute="class"
defaultTheme="dark"

View File

@@ -69,19 +69,19 @@ export default function OnboardingPage() {
try {
await createAnalysis({
projectId: resolved.projectId,
dataSourceId: resolved.sourceId,
projectId: resolved.projectId as any,
dataSourceId: resolved.sourceId as any,
analysis,
})
await updateDataSourceStatus({
dataSourceId: resolved.sourceId,
dataSourceId: resolved.sourceId as any,
analysisStatus: 'completed',
lastAnalyzedAt: Date.now(),
})
} catch (err: any) {
await updateDataSourceStatus({
dataSourceId: resolved.sourceId,
dataSourceId: resolved.sourceId as any,
analysisStatus: 'failed',
lastError: err?.message || 'Failed to save analysis',
lastAnalyzedAt: Date.now(),
@@ -106,7 +106,7 @@ export default function OnboardingPage() {
})
await updateDataSourceStatus({
dataSourceId: sourceId,
dataSourceId: sourceId as any,
analysisStatus: 'pending',
lastError: undefined,
lastAnalyzedAt: undefined,
@@ -116,8 +116,8 @@ export default function OnboardingPage() {
setPendingProjectId(projectId)
const jobId = await createAnalysisJob({
projectId,
dataSourceId: sourceId,
projectId: projectId as any,
dataSourceId: sourceId as any,
})
setPendingJobId(jobId)
@@ -175,7 +175,7 @@ export default function OnboardingPage() {
setError(err.message || 'Failed to analyze website')
if (pendingSourceId && !manualFallback) {
await updateDataSourceStatus({
dataSourceId: pendingSourceId,
dataSourceId: pendingSourceId as any,
analysisStatus: 'failed',
lastError: err?.message || 'Failed to analyze',
lastAnalyzedAt: Date.now(),
@@ -255,8 +255,8 @@ export default function OnboardingPage() {
if (!resolvedJobId && resolvedProjectId && resolvedSourceId) {
resolvedJobId = await createAnalysisJob({
projectId: resolvedProjectId,
dataSourceId: resolvedSourceId,
projectId: resolvedProjectId as any,
dataSourceId: resolvedSourceId as any,
})
setPendingJobId(resolvedJobId)
}
@@ -307,8 +307,8 @@ export default function OnboardingPage() {
analysis: finalAnalysis,
sourceUrl: manualSourceUrl,
sourceName: finalAnalysis.productName,
projectId: resolvedProjectId || undefined,
dataSourceId: resolvedSourceId || undefined,
projectId: (resolvedProjectId || undefined) as any,
dataSourceId: (resolvedSourceId || undefined) as any,
})
}
@@ -324,7 +324,7 @@ export default function OnboardingPage() {
setError(err.message || 'Failed to analyze')
if (pendingSourceId) {
await updateDataSourceStatus({
dataSourceId: pendingSourceId,
dataSourceId: pendingSourceId as any,
analysisStatus: 'failed',
lastError: err?.message || 'Failed to analyze',
lastAnalyzedAt: Date.now(),

View File

@@ -96,6 +96,15 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
api.analysisJobs.getById,
pendingJobId ? { jobId: pendingJobId as any } : "skip"
);
const opportunities = useQuery(
api.opportunities.listByProject,
selectedProjectId
? {
projectId: selectedProjectId as any,
limit: 200,
}
: "skip"
);
// Set default selected project
React.useEffect(() => {
@@ -118,6 +127,18 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
const editingProject = projects?.find((project) => project._id === editingProjectId);
const canDeleteProject = (projects?.length ?? 0) > 1;
const selectedSourceIds = selectedProject?.dorkingConfig?.selectedSourceIds || [];
const inboxCount = React.useMemo(() => {
if (!opportunities) return 0;
const normalized = opportunities as { status?: string }[];
return normalized.filter((lead) => {
const status = lead.status ?? "new";
if (status === "ignored") return false;
if (status === "converted") return false;
if (status === "archived") return false;
if (status === "sent") return false;
return true;
}).length;
}, [opportunities]);
const selectedProjectName = selectedProject?.name || "Select Project";
const handleToggle = async (sourceId: string, checked: boolean) => {
@@ -416,7 +437,13 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
>
<Link href="/app/inbox">
<Inbox />
<span>Inbox</span>
<span className="truncate">Inbox</span>
{inboxCount > 0 && (
<div className="relative ml-auto flex h-5 min-w-[1.25rem] items-center justify-center rounded-full bg-primary px-1 text-[10px] font-semibold text-primary-foreground group-data-[collapsible=icon]:hidden">
<span className="absolute -inset-0.5 animate-ping rounded-full bg-primary/60" />
<span className="relative">{inboxCount}</span>
</div>
)}
</Link>
</SidebarMenuButton>
</SidebarMenuItem>

View File

@@ -45,7 +45,7 @@ const itemVariants = {
y: 0,
transition: {
duration: 0.5,
ease: "easeOut",
ease: [0.16, 1, 0.3, 1] as [number, number, number, number],
},
},
};

View File

@@ -23,7 +23,7 @@ const itemVariants = {
y: 0,
transition: {
duration: 0.8,
ease: [0.22, 1, 0.36, 1], // Custom easing (approx. easeOutQuint/Expo) for a premium feel
ease: [0.22, 1, 0.36, 1] as [number, number, number, number], // Custom easing (approx. easeOutQuint/Expo) for a premium feel
},
},
};

View File

@@ -100,7 +100,12 @@ export const getById = query({
export const listByProject = query({
args: {
projectId: v.id("projects"),
status: v.optional(v.string()),
status: v.optional(v.union(
v.literal("pending"),
v.literal("running"),
v.literal("completed"),
v.literal("failed")
)),
},
handler: async (ctx, args) => {
const userId = await getAuthUserId(ctx);

View File

@@ -58,7 +58,7 @@ export const listByProject = query({
if (args.minScore !== undefined) {
queryBuilder = queryBuilder.filter((q) =>
q.gte(q.field("relevanceScore"), args.minScore)
q.gte(q.field("relevanceScore"), args.minScore as number)
);
}

View File

@@ -64,7 +64,12 @@ export const update = mutation({
export const listByProject = query({
args: {
projectId: v.id("projects"),
status: v.optional(v.string()),
status: v.optional(v.union(
v.literal("pending"),
v.literal("running"),
v.literal("completed"),
v.literal("failed")
)),
},
handler: async (ctx, args) => {
const userId = await getAuthUserId(ctx);

View File

@@ -15,3 +15,4 @@
- Changed global font from Montserrat back to Inter in `app/layout.tsx`
- Fixed syntax error in `app/api/opportunities/route.ts` by adding a missing comma in the `searchSchema` definition.

View File

@@ -180,13 +180,20 @@ Return JSON:
const analysis = JSON.parse(jsonStr)
return {
id: result.url,
title: result.title,
url: result.url,
platform: result.source,
source: result.source,
snippet: result.snippet.slice(0, 300),
relevanceScore: analysis.relevanceScore || 0,
painPoints: analysis.painPoints || [],
suggestedApproach: analysis.suggestedApproach || ''
emotionalIntensity: (analysis.painPoints || []).length > 2 ? "high" : (analysis.painPoints || []).length > 0 ? "medium" : "low",
intent: "looking",
matchedKeywords: [],
matchedProblems: analysis.painPoints || [],
status: "new",
suggestedApproach: analysis.suggestedApproach || '',
softPitch: false,
}
} catch (e) {
// Fallback simple analysis
@@ -195,13 +202,20 @@ Return JSON:
const relevance = Math.min(overlap / Math.max(product.keywords.length * 0.5, 1), 1)
return {
id: result.url,
title: result.title,
url: result.url,
platform: result.source,
source: result.source,
snippet: result.snippet.slice(0, 300),
relevanceScore: relevance,
painPoints: ['Related to product domain'],
suggestedApproach: 'Share relevant insights about their problem'
emotionalIntensity: "low",
intent: "looking",
matchedKeywords: product.keywords.slice(0, 5),
matchedProblems: ['Related to product domain'],
status: "new",
suggestedApproach: 'Share relevant insights about their problem',
softPitch: false,
}
}
}

View File

@@ -24,7 +24,7 @@ export async function scrapeWebsite(url: string): Promise<ScrapedContent> {
let browser
try {
browser = await puppeteer.launch({
headless: 'new',
headless: true,
args: ['--no-sandbox', '--disable-setuid-sandbox']
})

View File

@@ -1,9 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverComponentsExternalPackages: ['puppeteer']
}
serverExternalPackages: ['puppeteer']
}
module.exports = nextConfig

755
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "NEXT_DISABLE_TURBOPACK=1 next build",
"start": "next start",
"lint": "next lint"
},
@@ -34,7 +34,7 @@
"jose": "^6.1.3",
"lucide-react": "^0.563.0",
"mini-svg-data-uri": "^1.4.4",
"next": "14.1.0",
"next": "16.1.6",
"next-themes": "^0.4.6",
"openai": "^4.28.0",
"puppeteer": "^22.0.0",

View File

@@ -1,6 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -10,7 +14,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
@@ -18,9 +22,20 @@
}
],
"paths": {
"@/*": ["./*"]
}
"@/*": [
"./*"
]
},
"target": "ES2017"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}