File tree 2 files changed +17
-1
lines changed
kotlin/com/budgetai/templates/components
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -77,14 +77,26 @@ fun FlowContent.SavingsGoalForm(context: BaseTemplateContext) {
77
77
}
78
78
79
79
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
+
80
86
form(classes = " auth-form" ) {
81
87
attributes[" hx-post" ] = " /api/reports/ai-insights"
82
88
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
+ """
83
94
attributes[" hx-on::after-request" ] = """
84
95
if(event.detail.successful) {
85
96
this.reset();
86
97
}
87
- """ .trimIndent()
98
+ document.querySelector('button[type="submit"]').disabled = false;
99
+ """
88
100
89
101
input(type = InputType .hidden) {
90
102
name = " userId"
Original file line number Diff line number Diff line change 171
171
@apply mt-2;
172
172
@apply max-h-[calc (90 vh-8rem)];
173
173
@apply overflow-y-auto;
174
+ }
175
+
176
+ .loading-indicator {
177
+ @apply my-5 px-2.5 bg-gray-100 rounded text-center;
174
178
}
You can’t perform that action at this time.
0 commit comments