Skip to content

Commit ff72597

Browse files
add loading
1 parent 725691f commit ff72597

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

src/main/kotlin/com/budgetai/templates/components/ReportForms.htmk.kt

+13-1
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,26 @@ fun FlowContent.SavingsGoalForm(context: BaseTemplateContext) {
7777
}
7878

7979
fun FlowContent.AIInsightForm(context: BaseTemplateContext, budgets: List<BudgetDTO>) {
80+
div(classes = "loading-indicator") {
81+
id = "loading-indicator"
82+
style = "display: none"
83+
+"Generating AI Insight..."
84+
}
85+
8086
form(classes = "auth-form") {
8187
attributes["hx-post"] = "/api/reports/ai-insights"
8288
attributes["hx-target"] = "#response-message"
89+
// Add loading class during request
90+
attributes["hx-indicator"] = "#loading-indicator"
91+
attributes["hx-on::before-request"] = """
92+
document.querySelector('button[type="submit"]').disabled = true;
93+
"""
8394
attributes["hx-on::after-request"] = """
8495
if(event.detail.successful) {
8596
this.reset();
8697
}
87-
""".trimIndent()
98+
document.querySelector('button[type="submit"]').disabled = false;
99+
"""
88100

89101
input(type = InputType.hidden) {
90102
name = "userId"

src/main/resources/static/styles/misc.css

+4
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,8 @@
171171
@apply mt-2;
172172
@apply max-h-[calc(90vh-8rem)];
173173
@apply overflow-y-auto;
174+
}
175+
176+
.loading-indicator {
177+
@apply my-5 px-2.5 bg-gray-100 rounded text-center;
174178
}

0 commit comments

Comments
 (0)