@@ -5,7 +5,12 @@ import { eq } from '@cardstack/boxel-ui/helpers';
5
5
import { CheckMark , Exclamation } from ' @cardstack/boxel-ui/icons' ;
6
6
import { setCssVar } from ' @cardstack/boxel-ui/modifiers' ;
7
7
8
- export type ApplyButtonState = ' ready' | ' applying' | ' applied' | ' failed' ;
8
+ export type ApplyButtonState =
9
+ | ' ready'
10
+ | ' applying'
11
+ | ' applied'
12
+ | ' failed'
13
+ | ' preparing' ;
9
14
10
15
interface Signature {
11
16
Element: HTMLButtonElement | HTMLDivElement ;
@@ -34,6 +39,18 @@ const AiAssistantApplyButton: TemplateOnlyComponent<Signature> = <template>
34
39
<CheckMark width =' 16' height =' 16' />
35
40
{{else if ( eq @ state ' failed' ) }}
36
41
<Exclamation width =' 16' height =' 16' />
42
+ {{else if ( eq @ state ' preparing' ) }}
43
+ <BoxelButton
44
+ @ kind =' secondary-dark'
45
+ @ size =' small'
46
+ class =' apply-button'
47
+ tabindex =' -1'
48
+ {{setCssVar boxel-button-text-color =' var(--boxel-200)' }}
49
+ data-test-apply-state =' preparing'
50
+ ...attributes
51
+ >
52
+ Working…
53
+ </BoxelButton >
37
54
{{/if }}
38
55
</div >
39
56
{{/if }}
@@ -67,7 +84,68 @@ const AiAssistantApplyButton: TemplateOnlyComponent<Signature> = <template>
67
84
width : 58px ;
68
85
border-radius : 100px ;
69
86
}
70
- .state-indicator :not (.applying ) {
87
+
88
+ .state-indicator.preparing {
89
+ width : 78px ;
90
+ padding : 1px ;
91
+ border-radius : 100px ;
92
+ }
93
+ .state-indicator.preparing .apply-button {
94
+ border : 0 ;
95
+ min-width : 74px ;
96
+ }
97
+ .state-indicator.preparing .apply-button :focus {
98
+ --boxel-button-color : inherit ;
99
+ filter : none ;
100
+ cursor : not-allowed ;
101
+ }
102
+ .state-indicator.preparing ::before {
103
+ content : ' ' ;
104
+ position : absolute ;
105
+ top : -105px ;
106
+ left : -55px ;
107
+ width : 250px ;
108
+ height : 250px ;
109
+ background : conic-gradient (
110
+ #ffcc8f 0deg ,
111
+ #ff3966 45deg ,
112
+ #ff309e 90deg ,
113
+ #aa1dc9 135deg ,
114
+ #d7fad6 180deg ,
115
+ #5fdfea 225deg ,
116
+ #3d83f2 270deg ,
117
+ #5145e8 315deg ,
118
+ #ffcc8f 360deg
119
+ );
120
+ z-index : -1 ;
121
+ animation : spin 4s infinite linear ;
122
+ }
123
+
124
+ .state-indicator.preparing ::after {
125
+ content : ' ' ;
126
+ position : absolute ;
127
+ top : 1px ;
128
+ left : 1px ;
129
+ right : 1px ;
130
+ bottom : 1px ;
131
+ background : var (--ai-bot-message-background-color );
132
+ border-radius : inherit ;
133
+ z-index : -1 ;
134
+ }
135
+
136
+ .state-indicator.preparing {
137
+ position : relative ;
138
+ display : inline-block ;
139
+ border-radius : 3rem ;
140
+ color : white ;
141
+ background : var (--boxel-700 );
142
+ border : none ;
143
+ cursor : pointer ;
144
+ z-index : 1 ;
145
+ overflow : hidden ;
146
+ }
147
+
148
+ .state-indicator :not (.applying ):not (.preparing ) {
71
149
width : 1.5rem ;
72
150
aspect-ratio : 1 ;
73
151
border-radius : 50% ;
@@ -77,6 +155,12 @@ const AiAssistantApplyButton: TemplateOnlyComponent<Signature> = <template>
77
155
background-color : var (--boxel-error-200 );
78
156
border-color : var (--boxel-error-200 );
79
157
}
158
+
159
+ @keyframes spin {
160
+ to {
161
+ transform : rotate (360deg );
162
+ }
163
+ }
80
164
< /style >
81
165
</template >;
82
166
0 commit comments