Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
claude/adoring-hopper-5x74bqclaude/affectionate-feynman-ykrf1hclaude/architecture-audit-design-wxprenclaude/build-status-update-3MXsfclaude/charming-meitner-mllb5rclaude/compare-gate-gluecron-s4mFQclaude/confident-faraday-tikcwbclaude/continue-work-XMTlIclaude/crontech-gluecron-deploy-7MIECclaude/crontech-platform-setup-SeKfwclaude/design-2026claude/ecstatic-ptolemy-jMdigclaude/enhance-github-integration-QNHdGclaude/fix-aa-loop-issue-PonMQclaude/fix-actions-and-processclaude/fix-desktop-errors-XqoW8claude/fix-red-workflowsclaude/fix-website-access-6FKJNclaude/gatetest-integration-hardeningclaude/github-audit-improvements-bDFr9claude/gluecron-launch-status-FoMRlclaude/hopeful-lamport-olfCTclaude/issue-to-pr-and-protectionsclaude/jolly-heisenberg-2sg1Qclaude/launch-preparation-QmTb6claude/new-session-xk1l7claude/plan-platform-architecture-kkN4yclaude/platform-analysis-roadmap-1nUGLclaude/platform-launch-assessment-8dWV8claude/polish-platform-release-AeDrUclaude/resume-previous-work-KzyLwclaude/review-crontech-handoff-qYEVqclaude/review-project-completeness-lHhS2claude/review-readme-docs-ulqPKclaude/serene-edison-rj87weclaude/setup-multi-repo-dev-BCwNQclaude/ship-fixes-and-tests-Jvz1cclaude/site-audit-competitive-pctlwgclaude/site-migration-vercel-XstpKclaude/standalone-product-repos-XHFTDcopilot/feat-smart-empty-states-keyboard-first-enhancementcopilot/feat-smart-morning-digest-review-context-restorecopilot/fix-and-process-workflowscopilot/update-ai-powered-code-reviewfeat/debt-mapfeat/push-policy-codeowners-hardeningfeat/smart-digest-contextfeat/stage-impactfeat/t1-secret-migrationfeat/u-polishfeat/w-self-hostfeat/w2-claude-configfix/agent-journey-orphan-sweepgatetest/auto-fix-1776586424172gatetest/auto-fix-1776586534814gatetest/auto-fix-1776590685143gatetest/auto-fix-1776590808199mainops/redeploy-retriggerstyle/dxt-cta-themeworktree-agent-a3377aad30d55da26worktree-agent-a7ef607b7ee1d6c74
discussions.tsx52.2 KB · 1577 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
/**
 * Block E2 — Discussions: forum-style threaded conversations attached to a repo.
 *
 * Similar to GitHub Discussions: categorised, pinnable, answer-able threads
 * that sit alongside issues but are conversational (Q&A, ideas, announcements).
 *
 * Categories are stored in `discussion_categories` (migration 0077) and seeded
 * lazily on first discussion creation:
 *   - General    💬  (not answerable)
 *   - Q&A        ❓  (answerable — surfaces "Mark as answer")
 *   - Announcements 📢  (not answerable)
 *   - Ideas      💡  (not answerable)
 *
 * 2026 polish: gradient-hairline hero + radial orb + thread cards with
 * author chip + reply count + recent timestamp + category chip. Every class
 * prefixed `.disc-` so this surface doesn't bleed into the rest of the repo
 * polish. All data fetches, queries, and POST handlers preserved exactly.
 *
 * Never throws — all DB paths wrapped in try/catch; callers see a 500-like
 * shell page or a redirect on any failure.
 */

import { Hono } from "hono";
import { and, eq, desc, sql, asc } from "drizzle-orm";
import { db } from "../db";
import {
  discussions,
  discussionCategories,
  discussionComments,
  repositories,
  users,
} from "../db/schema";
import { Layout } from "../views/layout";
import { RepoHeader, RepoNav } from "../views/components";
import { renderMarkdown } from "../lib/markdown";
import { softAuth, requireAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";

// ---------------------------------------------------------------------------
// Legacy category validation helper — kept for test compatibility.
// The new system validates against the discussion_categories DB table;
// this covers the old text-enum values so existing tests don't break.
// ---------------------------------------------------------------------------
const LEGACY_CATEGORIES = [
  "general",
  "q-and-a",
  "ideas",
  "announcements",
  "show-and-tell",
] as const;

/** @deprecated Use DB-backed discussion_categories instead. Kept for test compat. */
export function isValidCategory(c: string): boolean {
  return (LEGACY_CATEGORIES as readonly string[]).includes(c);
}

// ---------------------------------------------------------------------------
// Default categories seeded on first discussion creation per repo.
// ---------------------------------------------------------------------------
const DEFAULT_CATEGORIES: Array<{
  name: string;
  emoji: string;
  description: string;
  isAnswerable: boolean;
}> = [
  {
    name: "General",
    emoji: "💬",
    description: "General discussion — anything that doesn't fit elsewhere.",
    isAnswerable: false,
  },
  {
    name: "Q&A",
    emoji: "❓",
    description: "Ask questions and get answers from the community.",
    isAnswerable: true,
  },
  {
    name: "Announcements",
    emoji: "📢",
    description: "Important updates and announcements from maintainers.",
    isAnswerable: false,
  },
  {
    name: "Ideas",
    emoji: "💡",
    description: "Feature requests, proposals, and brainstorming.",
    isAnswerable: false,
  },
];

/**
 * Ensure the 4 default categories exist for a repository.
 * Idempotent — checks count before inserting to avoid duplicates.
 * Called lazily on first discussion creation so no migration data seeding
 * is needed; existing repos get their categories on first use.
 */
async function ensureDefaultCategories(repositoryId: string): Promise<void> {
  try {
    const existing = await db
      .select({ id: discussionCategories.id })
      .from(discussionCategories)
      .where(eq(discussionCategories.repositoryId, repositoryId))
      .limit(1);
    if (existing.length > 0) return; // already seeded
    await db.insert(discussionCategories).values(
      DEFAULT_CATEGORIES.map((cat) => ({
        repositoryId,
        name: cat.name,
        emoji: cat.emoji,
        description: cat.description,
        isAnswerable: cat.isAnswerable,
      }))
    );
  } catch {
    // Silently ignore — categories are cosmetic; a missing row is not fatal.
  }
}

const discussionRoutes = new Hono<AuthEnv>();

/* ─────────────────────────────────────────────────────────────────────────
 * Scoped CSS — every class prefixed `.disc-` so this surface can't bleed
 * into the wider repo polish. Mirrors the gradient-hairline hero + radial
 * orb + card patterns from `insights.tsx` and `error-page.tsx`.
 * ───────────────────────────────────────────────────────────────────── */
const styles = `
  .disc-wrap { max-width: 1680px; margin: 0 auto; padding: var(--space-5) var(--space-4); }

  .disc-hero {
    position: relative;
    margin-bottom: var(--space-5);
    padding: var(--space-5) var(--space-6);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .disc-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8c6dff 30%, #36c5d6 70%, transparent 100%);
    opacity: 0.75;
    pointer-events: none;
  }
  .disc-hero-orb {
    position: absolute;
    inset: -30% -15% auto auto;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(140,109,255,0.22), rgba(54,197,214,0.10) 45%, transparent 70%);
    filter: blur(80px);
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
  }
  .disc-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
  }
  .disc-hero-text { max-width: 720px; }
  .disc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .disc-eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #8c6dff, #36c5d6);
    box-shadow: 0 0 0 3px rgba(140,109,255,0.18);
  }
  .disc-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.028em;
    line-height: 1.05;
    margin: 0 0 var(--space-2);
    color: var(--text-strong);
  }
  .disc-title-grad {
    background-image: linear-gradient(135deg, #a48bff 0%, #8c6dff 50%, #36c5d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .disc-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
  }

  /* Primary CTA — gradient pill that matches the hero stripe. */
  .disc-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #8c6dff 0%, #36c5d6 100%);
    color: #fff;
    box-shadow: 0 6px 18px -4px rgba(140,109,255,0.45), inset 0 1px 0 rgba(255,255,255,0.16);
    transition: transform 120ms ease, box-shadow 120ms ease;
    white-space: nowrap;
  }
  .disc-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -6px rgba(140,109,255,0.55), inset 0 1px 0 rgba(255,255,255,0.20);
    color: #fff;
    text-decoration: none;
  }

  /* Category filter chips */
  .disc-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 var(--space-4);
  }
  .disc-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 120ms ease, color 120ms ease, background 120ms ease;
  }
  .disc-chip:hover { border-color: rgba(140,109,255,0.45); color: var(--text-strong); text-decoration: none; }
  .disc-chip.is-active {
    color: #fff;
    background: linear-gradient(135deg, rgba(140,109,255,0.85), rgba(54,197,214,0.85));
    border-color: rgba(140,109,255,0.55);
  }

  /* Thread card list */
  .disc-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
  }
  .disc-card {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-3) var(--space-4);
    transition: border-color 120ms ease, transform 120ms ease;
  }
  .disc-card:hover { border-color: var(--border-strong, var(--border)); transform: translateY(-1px); }
  .disc-card.is-pinned { border-color: rgba(140,109,255,0.32); }

  .disc-card-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .disc-avatar {
    flex: none;
    width: 36px; height: 36px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #8c6dff, #36c5d6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  }
  .disc-card-main { flex: 1; min-width: 0; }
  .disc-card-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-strong);
    letter-spacing: -0.005em;
    line-height: 1.3;
    margin: 0 0 4px;
    word-break: break-word;
  }
  .disc-card-title a { color: inherit; text-decoration: none; }
  .disc-card-title a:hover { color: var(--accent); }
  .disc-card-sub {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
  }
  .disc-card-sub a { color: var(--text); text-decoration: none; }
  .disc-card-sub a:hover { color: var(--text-strong); }
  .disc-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
  }

  .disc-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 1px 8px;
    border-radius: 9999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(140,109,255,0.10);
    color: #b69dff;
    box-shadow: inset 0 0 0 1px rgba(140,109,255,0.32);
  }
  .disc-tag.is-pinned { background: rgba(252,211,77,0.10); color: #fcd34d; box-shadow: inset 0 0 0 1px rgba(252,211,77,0.32); }
  .disc-tag.is-closed { background: rgba(248,113,113,0.10); color: #fca5a5; box-shadow: inset 0 0 0 1px rgba(248,113,113,0.32); }
  .disc-tag.is-locked { background: rgba(148,163,184,0.10); color: #cbd5e1; box-shadow: inset 0 0 0 1px rgba(148,163,184,0.32); }

  .disc-card-meta {
    flex: none;
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 80px;
  }
  .disc-card-meta .replies {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1;
  }
  .disc-card-meta .replies-label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
  }

  /* Empty state — dashed orb card */
  .disc-empty {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: var(--space-6) var(--space-4);
    border: 1px dashed var(--border-strong, var(--border));
    border-radius: 16px;
    background: rgba(255,255,255,0.012);
    color: var(--text-muted);
    margin-bottom: var(--space-5);
  }
  .disc-empty::before {
    content: '';
    position: absolute;
    inset: -40% -20% auto auto;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(140,109,255,0.14), rgba(54,197,214,0.06) 45%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }
  .disc-empty-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .disc-empty strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0;
  }
  .disc-empty p { font-size: 13px; margin: 0; max-width: 420px; }

  /* New-discussion form polish (preserves form action + field names) */
  .disc-form-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: var(--space-4) var(--space-5);
    margin-top: var(--space-4);
  }
  .disc-form { display: flex; flex-direction: column; gap: 12px; }
  .disc-input,
  .disc-textarea,
  .disc-select {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 120ms ease, box-shadow 120ms ease;
  }
  .disc-textarea { font-family: var(--font-mono); font-size: 13px; line-height: 1.55; }
  .disc-input:focus,
  .disc-textarea:focus,
  .disc-select:focus {
    border-color: var(--border-focus, rgba(140,109,255,0.55));
    box-shadow: 0 0 0 3px rgba(140,109,255,0.18);
  }

  /* Category cards on the form */
  .disc-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
  }
  .disc-cat-option {
    position: relative;
  }
  .disc-cat-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
  }
  .disc-cat-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    cursor: pointer;
    transition: border-color 120ms ease, background 120ms ease;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }
  .disc-cat-label:hover { border-color: rgba(140,109,255,0.45); }
  .disc-cat-option input[type="radio"]:checked + .disc-cat-label {
    border-color: rgba(140,109,255,0.6);
    background: rgba(140,109,255,0.08);
    color: var(--text-strong);
  }
  .disc-cat-emoji { font-size: 18px; line-height: 1; }
  .disc-cat-desc { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-top: 1px; }

  /* Answer highlight */
  .disc-answer {
    border: 1.5px solid rgba(52,211,153,0.55) !important;
    box-shadow: 0 0 0 3px rgba(52,211,153,0.10);
  }
  .disc-answer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 9px;
    border-radius: 9999px;
    background: rgba(52,211,153,0.12);
    color: #34d399;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(52,211,153,0.35);
  }

  /* Thread detail comment cards */
  .disc-thread { margin-top: 18px; }
  .disc-comment {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-elevated);
    margin-bottom: 14px;
  }
  .disc-comment-header {
    background: var(--bg-secondary);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
  }
  .disc-comment-header strong { color: var(--text-strong); font-weight: 600; }
  .disc-comment-body { padding: 14px 18px; }
`;

function relTime(d: Date | string | null | undefined): string {
  if (!d) return "";
  const t = typeof d === "string" ? new Date(d).getTime() : (d as Date).getTime();
  if (!Number.isFinite(t)) return "";
  const diff = (Date.now() - t) / 1000;
  if (diff < 60) return "just now";
  if (diff < 3600) return `${Math.floor(diff / 60)}m ago`;
  if (diff < 86400) return `${Math.floor(diff / 3600)}h ago`;
  if (diff < 86400 * 7) return `${Math.floor(diff / 86400)}d ago`;
  if (diff < 86400 * 30) return `${Math.floor(diff / (86400 * 7))}w ago`;
  return new Date(t).toLocaleDateString();
}

function initials(name: string): string {
  if (!name) return "?";
  return name.slice(0, 2);
}

async function resolveRepo(ownerName: string, repoName: string) {
  try {
    const [owner] = await db
      .select()
      .from(users)
      .where(eq(users.username, ownerName))
      .limit(1);
    if (!owner) return null;
    const [repo] = await db
      .select()
      .from(repositories)
      .where(
        and(
          eq(repositories.ownerId, owner.id),
          eq(repositories.name, repoName)
        )
      )
      .limit(1);
    if (!repo) return null;
    return { owner, repo };
  } catch {
    return null;
  }
}

function notFound(user: ReturnType<typeof Object>, label = "Not found") {
  return (
    <Layout title={label} user={user as any}>
      <div class="empty-state">
        <h2>{label}</h2>
      </div>
    </Layout>
  );
}

// ---------------------------------------------------------------------------
// GET /:owner/:repo/discussions — list discussions, filter by category
// ---------------------------------------------------------------------------
discussionRoutes.get("/:owner/:repo/discussions", softAuth, async (c) => {
  const { owner: ownerName, repo: repoName } = c.req.param();
  const user = c.get("user");
  const categoryParam = c.req.query("category") || "";

  const resolved = await resolveRepo(ownerName, repoName);
  if (!resolved) return c.html(notFound(user, "Repository not found"), 404);
  const { repo } = resolved;

  // Load categories for this repo (may be empty if never seeded yet)
  let categories: Array<{ id: number; name: string; emoji: string; description: string | null; isAnswerable: boolean }> = [];
  try {
    categories = await db
      .select()
      .from(discussionCategories)
      .where(eq(discussionCategories.repositoryId, repo.id))
      .orderBy(asc(discussionCategories.id));
  } catch {
    categories = [];
  }

  // Find the active category object by name (URL param is the category name)
  const activeCategory = categories.find(
    (cat) => cat.name.toLowerCase() === categoryParam.toLowerCase()
  ) ?? null;

  let rows: Array<{
    d: typeof discussions.$inferSelect;
    author: { username: string };
    commentCount: number;
    catName: string | null;
    catEmoji: string | null;
  }> = [];

  try {
    const whereClause = activeCategory
      ? and(
          eq(discussions.repositoryId, repo.id),
          eq(discussions.category, activeCategory.name)
        )
      : eq(discussions.repositoryId, repo.id);

    const rawRows = await db
      .select({
        d: discussions,
        author: { username: users.username },
        commentCount: sql<number>`(SELECT count(*)::int FROM discussion_comments WHERE discussion_id = ${discussions.id})`,
      })
      .from(discussions)
      .innerJoin(users, eq(discussions.authorId, users.id))
      .where(whereClause)
      .orderBy(desc(discussions.pinned), desc(discussions.updatedAt));

    rows = rawRows.map((r) => {
      const cat = categories.find((c) => c.name === r.d.category) ?? null;
      return {
        d: r.d,
        author: r.author,
        commentCount: Number(r.commentCount || 0),
        catName: cat ? cat.name : r.d.category,
        catEmoji: cat ? cat.emoji : "💬",
      };
    });
  } catch {
    rows = [];
  }

  return c.html(
    <Layout title={`Discussions — ${ownerName}/${repoName}`} user={user}>
      <RepoHeader owner={ownerName} repo={repoName} />
      <RepoNav owner={ownerName} repo={repoName} active="discussions" />

      <div class="disc-wrap">
        <section class="disc-hero">
          <div class="disc-hero-orb" aria-hidden="true" />
          <div class="disc-hero-inner">
            <div class="disc-hero-text">
              <div class="disc-eyebrow">
                <span class="disc-eyebrow-dot" aria-hidden="true" />
                Discussions · {ownerName}/{repoName}
              </div>
              <h2 class="disc-title">
                <span class="disc-title-grad">Talk it out.</span>
              </h2>
              <p class="disc-sub">
                Q&amp;A, ideas, announcements, and show-and-tell — the
                conversational space alongside issues and PRs.
              </p>
            </div>
            {user && (
              <a
                href={`/${ownerName}/${repoName}/discussions/new`}
                class="disc-cta"
              >
                + New discussion
              </a>
            )}
          </div>
        </section>

        {categories.length > 0 && (
          <div class="disc-filters" aria-label="Filter by category">
            <a
              href={`/${ownerName}/${repoName}/discussions`}
              class={"disc-chip" + (!activeCategory ? " is-active" : "")}
            >
              All
            </a>
            {categories.map((cat) => (
              <a
                href={`/${ownerName}/${repoName}/discussions?category=${encodeURIComponent(cat.name)}`}
                class={"disc-chip" + (cat.id === activeCategory?.id ? " is-active" : "")}
              >
                {cat.emoji} {cat.name}
              </a>
            ))}
          </div>
        )}

        {rows.length === 0 ? (
          <div class="disc-empty">
            <div class="disc-empty-inner">
              <strong>No discussions yet</strong>
              <p>
                Start a thread to ask a question, float an idea, or share an
                announcement with the community.
              </p>
              {user && (
                <a
                  href={`/${ownerName}/${repoName}/discussions/new`}
                  class="disc-cta"
                  style="margin-top:6px"
                >
                  + Start a discussion
                </a>
              )}
            </div>
          </div>
        ) : (
          <div class="disc-list">
            {rows.map((r) => {
              const replies = r.commentCount;
              const updated = r.d.updatedAt || r.d.createdAt;
              return (
                <article
                  class={"disc-card" + (r.d.pinned ? " is-pinned" : "")}
                >
                  <div class="disc-card-row">
                    <div
                      class="disc-avatar"
                      aria-label={`@${r.author.username}`}
                    >
                      {initials(r.author.username)}
                    </div>
                    <div class="disc-card-main">
                      <h3 class="disc-card-title">
                        <a
                          href={`/${ownerName}/${repoName}/discussions/${r.d.number}`}
                        >
                          {r.d.title}
                        </a>
                      </h3>
                      <div class="disc-card-sub">
                        <span class="disc-num">#{r.d.number}</span>
                        <span>by @{r.author.username}</span>
                        {updated && <span>· active {relTime(updated)}</span>}
                        {r.catName && (
                          <span class="disc-tag">
                            {r.catEmoji} {r.catName}
                          </span>
                        )}
                        {r.d.pinned && (
                          <span class="disc-tag is-pinned">📌 pinned</span>
                        )}
                        {r.d.state === "closed" && (
                          <span class="disc-tag is-closed">closed</span>
                        )}
                        {r.d.locked && (
                          <span class="disc-tag is-locked">🔒 locked</span>
                        )}
                      </div>
                    </div>
                    <div class="disc-card-meta">
                      <span class="replies">{replies}</span>
                      <span class="replies-label">
                        {replies === 1 ? "reply" : "replies"}
                      </span>
                    </div>
                  </div>
                </article>
              );
            })}
          </div>
        )}
      </div>
      <style dangerouslySetInnerHTML={{ __html: styles }} />
    </Layout>
  );
});

// ---------------------------------------------------------------------------
// GET /:owner/:repo/discussions/new — new discussion form (pick category)
// ---------------------------------------------------------------------------
discussionRoutes.get(
  "/:owner/:repo/discussions/new",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName } = c.req.param();
    const user = c.get("user");
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.html(notFound(user, "Repository not found"), 404);

    // Ensure default categories exist (lazy seed)
    await ensureDefaultCategories(resolved.repo.id);

    let categories: Array<{ id: number; name: string; emoji: string; description: string | null; isAnswerable: boolean }> = [];
    try {
      categories = await db
        .select()
        .from(discussionCategories)
        .where(eq(discussionCategories.repositoryId, resolved.repo.id))
        .orderBy(asc(discussionCategories.id));
    } catch {
      categories = [];
    }

    return c.html(
      <Layout title="New discussion" user={user}>
        <RepoHeader owner={ownerName} repo={repoName} />
        <RepoNav owner={ownerName} repo={repoName} active="discussions" />
        <div class="disc-wrap">
          <section class="disc-hero">
            <div class="disc-hero-orb" aria-hidden="true" />
            <div class="disc-hero-inner">
              <div class="disc-hero-text">
                <div class="disc-eyebrow">
                  <span class="disc-eyebrow-dot" aria-hidden="true" />
                  New discussion · {ownerName}/{repoName}
                </div>
                <h2 class="disc-title">
                  <span class="disc-title-grad">Start a thread.</span>
                </h2>
                <p class="disc-sub">
                  Pick a category, add a clear title, and tell folks what's on
                  your mind. Markdown supported.
                </p>
              </div>
            </div>
          </section>

          <div class="disc-form-card">
            <form
              method="post"
              action={`/${ownerName}/${repoName}/discussions`}
              class="disc-form"
            >
              <input
                type="text"
                name="title"
                placeholder="Title"
                required
                aria-label="Discussion title"
                class="disc-input"
              />

              {categories.length > 0 ? (
                <fieldset style="border:none;padding:0;margin:0">
                  <legend style="font-size:13px;font-weight:600;color:var(--text-muted);margin-bottom:10px">
                    Category
                  </legend>
                  <div class="disc-cat-grid">
                    {categories.map((cat, i) => (
                      <div class="disc-cat-option">
                        <input
                          type="radio"
                          name="category"
                          id={`cat-${cat.id}`}
                          value={cat.name}
                          checked={i === 0}
                        />
                        <label for={`cat-${cat.id}`} class="disc-cat-label">
                          <span class="disc-cat-emoji" aria-hidden="true">{cat.emoji}</span>
                          <span>
                            <span style="display:block">{cat.name}</span>
                            {cat.description && (
                              <span class="disc-cat-desc">{cat.description}</span>
                            )}
                          </span>
                        </label>
                      </div>
                    ))}
                  </div>
                </fieldset>
              ) : (
                <select name="category" class="disc-select">
                  <option value="General">💬 General</option>
                  <option value="Q&A">❓ Q&amp;A</option>
                  <option value="Announcements">📢 Announcements</option>
                  <option value="Ideas">💡 Ideas</option>
                </select>
              )}

              <textarea
                name="body"
                rows={10}
                placeholder="Write your post (markdown supported)"
                class="disc-textarea"
              ></textarea>
              <div>
                <button type="submit" class="disc-cta">
                  Start discussion
                </button>
              </div>
            </form>
          </div>
        </div>
        <style dangerouslySetInnerHTML={{ __html: styles }} />
      </Layout>
    );
  }
);

// ---------------------------------------------------------------------------
// POST /:owner/:repo/discussions — create discussion
// ---------------------------------------------------------------------------
discussionRoutes.post(
  "/:owner/:repo/discussions",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName } = c.req.param();
    const user = c.get("user")!;
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.redirect(`/${ownerName}/${repoName}`);

    // Ensure default categories are seeded before we create the first discussion
    await ensureDefaultCategories(resolved.repo.id);

    const form = await c.req.formData();
    const title = (form.get("title") as string || "").trim();
    const body = (form.get("body") as string || "").trim();
    const categoryRaw = (form.get("category") as string || "General").trim();

    if (!title) {
      return c.redirect(`/${ownerName}/${repoName}/discussions/new`);
    }

    // Validate category against the DB — fall back to "General"
    let category = "General";
    try {
      const [cat] = await db
        .select({ name: discussionCategories.name })
        .from(discussionCategories)
        .where(
          and(
            eq(discussionCategories.repositoryId, resolved.repo.id),
            eq(discussionCategories.name, categoryRaw)
          )
        )
        .limit(1);
      if (cat) category = cat.name;
    } catch {
      category = "General";
    }

    try {
      const [row] = await db
        .insert(discussions)
        .values({
          repositoryId: resolved.repo.id,
          authorId: user.id,
          category,
          title,
          body,
        })
        .returning({ number: discussions.number });
      return c.redirect(
        `/${ownerName}/${repoName}/discussions/${row.number}`
      );
    } catch {
      return c.redirect(`/${ownerName}/${repoName}/discussions`);
    }
  }
);

// ---------------------------------------------------------------------------
// GET /:owner/:repo/discussions/:id — view discussion thread with replies
// ---------------------------------------------------------------------------
discussionRoutes.get(
  "/:owner/:repo/discussions/:number",
  softAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName } = c.req.param();
    const user = c.get("user");
    const numParam = Number(c.req.param("number"));
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.html(notFound(user, "Repository not found"), 404);

    let discussion: { d: typeof discussions.$inferSelect; author: { username: string } } | null = null;
    let comments: Array<{ c: typeof discussionComments.$inferSelect; author: { username: string } }> = [];
    let category: { id: number; name: string; emoji: string; isAnswerable: boolean } | null = null;

    try {
      const [row] = await db
        .select({ d: discussions, author: { username: users.username } })
        .from(discussions)
        .innerJoin(users, eq(discussions.authorId, users.id))
        .where(
          and(
            eq(discussions.repositoryId, resolved.repo.id),
            eq(discussions.number, numParam)
          )
        )
        .limit(1);
      if (row) discussion = row;

      if (discussion) {
        comments = await db
          .select({
            c: discussionComments,
            author: { username: users.username },
          })
          .from(discussionComments)
          .innerJoin(users, eq(discussionComments.authorId, users.id))
          .where(eq(discussionComments.discussionId, discussion.d.id))
          .orderBy(asc(discussionComments.createdAt));

        // Look up the full category record so we know if it's answerable
        const [catRow] = await db
          .select()
          .from(discussionCategories)
          .where(
            and(
              eq(discussionCategories.repositoryId, resolved.repo.id),
              eq(discussionCategories.name, discussion.d.category)
            )
          )
          .limit(1);
        if (catRow) category = catRow;
      }
    } catch {
      // leave nulls
    }

    if (!discussion) return c.html(notFound(user, "Discussion not found"), 404);

    const isOwner = !!(user && user.id === resolved.repo.ownerId);
    const isAuthor = !!(user && user.id === discussion.d.authorId);
    const canModerate = isOwner || isAuthor;

    // A discussion is answerable if its category is marked is_answerable
    // OR if the legacy category string is "q-and-a" (backwards-compat).
    const isAnswerable =
      (category?.isAnswerable ?? false) ||
      discussion.d.category === "q-and-a" ||
      discussion.d.category === "Q&A";

    return c.html(
      <Layout
        title={`${discussion.d.title} · discussion #${discussion.d.number}`}
        user={user}
      >
        <RepoHeader owner={ownerName} repo={repoName} />
        <RepoNav owner={ownerName} repo={repoName} active="discussions" />

        <div class="disc-wrap">
          {/* ── Discussion header ── */}
          <section class="disc-hero" style="margin-bottom:var(--space-4)">
            <div class="disc-hero-orb" aria-hidden="true" />
            <div class="disc-hero-inner">
              <div class="disc-hero-text" style="max-width:100%">
                <div class="disc-eyebrow">
                  <span class="disc-eyebrow-dot" aria-hidden="true" />
                  {ownerName}/{repoName} · Discussions
                </div>
                <h1 class="disc-title" style="font-size:clamp(20px,3vw,30px)">
                  {discussion.d.title}
                  <span style="color:var(--text-muted);font-weight:500;font-size:0.65em;margin-left:8px">
                    #{discussion.d.number}
                  </span>
                </h1>
                <div style="display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-top:8px">
                  <span style="font-size:13px;color:var(--text-muted)">
                    Started by <strong style="color:var(--text)">@{discussion.author.username}</strong>
                    {" · "}{relTime(discussion.d.createdAt)}
                  </span>
                  {category && (
                    <span class="disc-tag">
                      {category.emoji} {category.name}
                    </span>
                  )}
                  {discussion.d.state === "closed" && (
                    <span class="disc-tag is-closed">closed</span>
                  )}
                  {discussion.d.locked && (
                    <span class="disc-tag is-locked">🔒 locked</span>
                  )}
                  {discussion.d.pinned && (
                    <span class="disc-tag is-pinned">📌 pinned</span>
                  )}
                </div>
              </div>
            </div>
          </section>

          {/* ── Original post ── */}
          <div class="disc-thread">
            {discussion.d.body && (
              <article class="disc-comment">
                <header class="disc-comment-header">
                  <strong>@{discussion.author.username}</strong>
                  <span style="background:rgba(140,109,255,0.10);color:var(--accent);font-size:11px;font-weight:700;padding:1px 8px;border-radius:9999px;text-transform:uppercase;letter-spacing:0.02em">
                    Author
                  </span>
                  <span>{relTime(discussion.d.createdAt)}</span>
                </header>
                <div
                  class="disc-comment-body markdown-body"
                  dangerouslySetInnerHTML={{
                    __html: renderMarkdown(discussion.d.body || ""),
                  }}
                />
              </article>
            )}

            {/* ── Replies ── */}
            {comments.length > 0 && (
              <h3 style="font-size:15px;font-weight:700;color:var(--text-muted);margin:24px 0 12px">
                {comments.length} {comments.length === 1 ? "reply" : "replies"}
              </h3>
            )}

            {comments.map((com) => {
              const isAnswer = com.c.id === discussion!.d.answerCommentId;
              return (
                <article
                  class={"disc-comment" + (isAnswer ? " disc-answer" : "")}
                  id={`comment-${com.c.id}`}
                >
                  <header class="disc-comment-header">
                    <strong>@{com.author.username}</strong>
                    {isAnswer && (
                      <span class="disc-answer-badge">
                        ✅ Answer
                      </span>
                    )}
                    <span>{relTime(com.c.createdAt)}</span>
                    {/* Mark-as-answer — only for answerable categories, only for owner/author, only when not already answered */}
                    {isAnswerable &&
                      canModerate &&
                      !isAnswer &&
                      discussion!.d.state === "open" && (
                        <form
                          method="post"
                          action={`/${ownerName}/${repoName}/discussions/${discussion!.d.number}/comments/${com.c.id}/answer`}
                          style="display:inline;margin-left:auto"
                        >
                          <button type="submit" class="btn" style="font-size:12px;padding:4px 10px">
                            Mark as answer
                          </button>
                        </form>
                      )}
                  </header>
                  <div
                    class="disc-comment-body markdown-body"
                    dangerouslySetInnerHTML={{
                      __html: renderMarkdown(com.c.body || ""),
                    }}
                  />
                </article>
              );
            })}

            {/* ── Reply composer ── */}
            {user && !discussion.d.locked && discussion.d.state === "open" && (
              <form
                method="post"
                action={`/${ownerName}/${repoName}/discussions/${discussion.d.number}/comments`}
                style="margin-top:24px;display:flex;flex-direction:column;gap:8px"
              >
                <textarea
                  name="body"
                  rows={5}
                  placeholder="Add a reply (markdown supported)"
                  required
                  class="disc-textarea"
                  style="border-radius:10px"
                ></textarea>
                <button type="submit" class="disc-cta" style="align-self:flex-start">
                  Comment
                </button>
              </form>
            )}

            {/* ── Moderation actions ── */}
            {user && (
              <div style="margin-top:24px;display:flex;gap:8px;flex-wrap:wrap">
                {canModerate && (
                  <form
                    method="post"
                    action={`/${ownerName}/${repoName}/discussions/${discussion.d.number}/close`}
                    style="display:inline"
                  >
                    <button type="submit" class="btn">
                      {discussion.d.state === "open" ? "Close" : "Reopen"}
                    </button>
                  </form>
                )}
                {isOwner && (
                  <>
                    <form
                      method="post"
                      action={`/${ownerName}/${repoName}/discussions/${discussion.d.number}/lock`}
                      style="display:inline"
                    >
                      <button type="submit" class="btn">
                        {discussion.d.locked ? "Unlock" : "Lock"}
                      </button>
                    </form>
                    <form
                      method="post"
                      action={`/${ownerName}/${repoName}/discussions/${discussion.d.number}/pin`}
                      style="display:inline"
                    >
                      <button type="submit" class="btn">
                        {discussion.d.pinned ? "Unpin" : "Pin"}
                      </button>
                    </form>
                  </>
                )}
              </div>
            )}
          </div>
        </div>
        <style dangerouslySetInnerHTML={{ __html: styles }} />
      </Layout>
    );
  }
);

// ---------------------------------------------------------------------------
// POST /:owner/:repo/discussions/:id/comments — post reply
// ---------------------------------------------------------------------------
discussionRoutes.post(
  "/:owner/:repo/discussions/:number/comments",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName } = c.req.param();
    const user = c.get("user")!;
    const numParam = Number(c.req.param("number"));
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.redirect(`/${ownerName}/${repoName}`);

    const form = await c.req.formData();
    const body = (form.get("body") as string || "").trim();
    const parentCommentId = (form.get("parent_comment_id") as string) || null;
    if (!body) {
      return c.redirect(
        `/${ownerName}/${repoName}/discussions/${numParam}`
      );
    }

    try {
      const [row] = await db
        .select()
        .from(discussions)
        .where(
          and(
            eq(discussions.repositoryId, resolved.repo.id),
            eq(discussions.number, numParam)
          )
        )
        .limit(1);
      if (!row || row.locked || row.state === "closed") {
        return c.redirect(
          `/${ownerName}/${repoName}/discussions/${numParam}`
        );
      }
      await db.insert(discussionComments).values({
        discussionId: row.id,
        authorId: user.id,
        body,
        parentCommentId: parentCommentId || null,
      });
      await db
        .update(discussions)
        .set({ updatedAt: new Date() })
        .where(eq(discussions.id, row.id));
    } catch {
      // swallow
    }
    return c.redirect(`/${ownerName}/${repoName}/discussions/${numParam}`);
  }
);

// ---------------------------------------------------------------------------
// POST /:owner/:repo/discussions/:id/comments/:commentId/answer
// Mark as answer (author or repo owner only)
// ---------------------------------------------------------------------------
discussionRoutes.post(
  "/:owner/:repo/discussions/:number/comments/:commentId/answer",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName, commentId } = c.req.param();
    const user = c.get("user")!;
    const numParam = Number(c.req.param("number"));
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.redirect(`/${ownerName}/${repoName}`);

    try {
      const [row] = await db
        .select()
        .from(discussions)
        .where(
          and(
            eq(discussions.repositoryId, resolved.repo.id),
            eq(discussions.number, numParam)
          )
        )
        .limit(1);
      if (!row) {
        return c.redirect(`/${ownerName}/${repoName}/discussions`);
      }
      const isOwner = user.id === resolved.repo.ownerId;
      const isAuthor = user.id === row.authorId;
      if (!isOwner && !isAuthor) {
        return c.redirect(
          `/${ownerName}/${repoName}/discussions/${numParam}`
        );
      }

      // Verify the category is answerable
      const [cat] = await db
        .select({ isAnswerable: discussionCategories.isAnswerable })
        .from(discussionCategories)
        .where(
          and(
            eq(discussionCategories.repositoryId, resolved.repo.id),
            eq(discussionCategories.name, row.category)
          )
        )
        .limit(1);

      const answerable =
        (cat?.isAnswerable ?? false) ||
        row.category === "q-and-a" ||
        row.category === "Q&A";

      if (!answerable) {
        return c.text("Only answerable discussions can have a marked answer", 400);
      }

      // Clear any previous answer flag, then set the new one
      await db
        .update(discussionComments)
        .set({ isAnswer: false })
        .where(eq(discussionComments.discussionId, row.id));

      await db
        .update(discussions)
        .set({ answerCommentId: commentId })
        .where(eq(discussions.id, row.id));

      await db
        .update(discussionComments)
        .set({ isAnswer: true })
        .where(eq(discussionComments.id, commentId));
    } catch {
      // swallow
    }
    return c.redirect(`/${ownerName}/${repoName}/discussions/${numParam}`);
  }
);

// ---------------------------------------------------------------------------
// Legacy comment route (kept for backwards compat — old forms post here)
// ---------------------------------------------------------------------------
discussionRoutes.post(
  "/:owner/:repo/discussions/:number/comment",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName } = c.req.param();
    const user = c.get("user")!;
    const numParam = Number(c.req.param("number"));
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.redirect(`/${ownerName}/${repoName}`);

    const form = await c.req.formData();
    const body = (form.get("body") as string || "").trim();
    const parentCommentId = (form.get("parent_comment_id") as string) || null;
    if (!body) {
      return c.redirect(
        `/${ownerName}/${repoName}/discussions/${numParam}`
      );
    }

    try {
      const [row] = await db
        .select()
        .from(discussions)
        .where(
          and(
            eq(discussions.repositoryId, resolved.repo.id),
            eq(discussions.number, numParam)
          )
        )
        .limit(1);
      if (!row || row.locked || row.state === "closed") {
        return c.redirect(
          `/${ownerName}/${repoName}/discussions/${numParam}`
        );
      }
      await db.insert(discussionComments).values({
        discussionId: row.id,
        authorId: user.id,
        body,
        parentCommentId: parentCommentId || null,
      });
      await db
        .update(discussions)
        .set({ updatedAt: new Date() })
        .where(eq(discussions.id, row.id));
    } catch {
      // swallow
    }
    return c.redirect(`/${ownerName}/${repoName}/discussions/${numParam}`);
  }
);

// ---------------------------------------------------------------------------
// Legacy answer route (kept for backwards compat)
// ---------------------------------------------------------------------------
discussionRoutes.post(
  "/:owner/:repo/discussions/:number/answer/:commentId",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName, commentId } = c.req.param();
    const user = c.get("user")!;
    const numParam = Number(c.req.param("number"));
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.redirect(`/${ownerName}/${repoName}`);

    try {
      const [row] = await db
        .select()
        .from(discussions)
        .where(
          and(
            eq(discussions.repositoryId, resolved.repo.id),
            eq(discussions.number, numParam)
          )
        )
        .limit(1);
      if (!row) {
        return c.redirect(`/${ownerName}/${repoName}/discussions`);
      }
      const isOwner = user.id === resolved.repo.ownerId;
      const isAuthor = user.id === row.authorId;
      if (!isOwner && !isAuthor) {
        return c.redirect(
          `/${ownerName}/${repoName}/discussions/${numParam}`
        );
      }

      await db
        .update(discussions)
        .set({ answerCommentId: commentId })
        .where(eq(discussions.id, row.id));
      await db
        .update(discussionComments)
        .set({ isAnswer: true })
        .where(eq(discussionComments.id, commentId));
    } catch {
      // swallow
    }
    return c.redirect(`/${ownerName}/${repoName}/discussions/${numParam}`);
  }
);

// ---------------------------------------------------------------------------
// Toggle lock (owner)
// ---------------------------------------------------------------------------
discussionRoutes.post(
  "/:owner/:repo/discussions/:number/lock",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName } = c.req.param();
    const user = c.get("user")!;
    const numParam = Number(c.req.param("number"));
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.redirect(`/${ownerName}/${repoName}`);
    if (user.id !== resolved.repo.ownerId) {
      return c.redirect(
        `/${ownerName}/${repoName}/discussions/${numParam}`
      );
    }
    try {
      const [row] = await db
        .select()
        .from(discussions)
        .where(
          and(
            eq(discussions.repositoryId, resolved.repo.id),
            eq(discussions.number, numParam)
          )
        )
        .limit(1);
      if (row) {
        await db
          .update(discussions)
          .set({ locked: !row.locked })
          .where(eq(discussions.id, row.id));
      }
    } catch {
      // swallow
    }
    return c.redirect(`/${ownerName}/${repoName}/discussions/${numParam}`);
  }
);

// ---------------------------------------------------------------------------
// Toggle pin (owner)
// ---------------------------------------------------------------------------
discussionRoutes.post(
  "/:owner/:repo/discussions/:number/pin",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName } = c.req.param();
    const user = c.get("user")!;
    const numParam = Number(c.req.param("number"));
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.redirect(`/${ownerName}/${repoName}`);
    if (user.id !== resolved.repo.ownerId) {
      return c.redirect(
        `/${ownerName}/${repoName}/discussions/${numParam}`
      );
    }
    try {
      const [row] = await db
        .select()
        .from(discussions)
        .where(
          and(
            eq(discussions.repositoryId, resolved.repo.id),
            eq(discussions.number, numParam)
          )
        )
        .limit(1);
      if (row) {
        await db
          .update(discussions)
          .set({ pinned: !row.pinned })
          .where(eq(discussions.id, row.id));
      }
    } catch {
      // swallow
    }
    return c.redirect(`/${ownerName}/${repoName}/discussions/${numParam}`);
  }
);

// ---------------------------------------------------------------------------
// Toggle close (owner or author)
// ---------------------------------------------------------------------------
discussionRoutes.post(
  "/:owner/:repo/discussions/:number/close",
  requireAuth,
  async (c) => {
    const { owner: ownerName, repo: repoName } = c.req.param();
    const user = c.get("user")!;
    const numParam = Number(c.req.param("number"));
    const resolved = await resolveRepo(ownerName, repoName);
    if (!resolved) return c.redirect(`/${ownerName}/${repoName}`);
    try {
      const [row] = await db
        .select()
        .from(discussions)
        .where(
          and(
            eq(discussions.repositoryId, resolved.repo.id),
            eq(discussions.number, numParam)
          )
        )
        .limit(1);
      if (!row) {
        return c.redirect(`/${ownerName}/${repoName}/discussions`);
      }
      const isOwner = user.id === resolved.repo.ownerId;
      const isAuthor = user.id === row.authorId;
      if (!isOwner && !isAuthor) {
        return c.redirect(
          `/${ownerName}/${repoName}/discussions/${numParam}`
        );
      }
      await db
        .update(discussions)
        .set({ state: row.state === "open" ? "closed" : "open" })
        .where(eq(discussions.id, row.id));
    } catch {
      // swallow
    }
    return c.redirect(`/${ownerName}/${repoName}/discussions/${numParam}`);
  }
);

export default discussionRoutes;