@@ -21,16 +21,19 @@ import {
21
21
MenuTrigger ,
22
22
Textarea ,
23
23
Toast ,
24
- ToastBody ,
25
24
ToastTitle ,
25
+ useToastController ,
26
26
Toolbar ,
27
27
ToolbarButton ,
28
28
ToolbarProps ,
29
29
ToolbarDivider ,
30
30
useId ,
31
- useToastController ,
32
31
} from '@fluentui/react-components' ;
33
32
import { useNavigate } from 'react-router' ;
33
+ import { Card } from '@microsoft/spark.cards' ;
34
+
35
+ import { useCardStore } from '../../../stores/CardStore' ;
36
+ import Logger from '../../Logger/Logger' ;
34
37
35
38
import { useClasses } from './ComposeBoxToolbar.styles' ;
36
39
@@ -50,13 +53,15 @@ const ComposeBoxToolbar: FC<ComposeBoxToolbarProps> = ({
50
53
} ) => {
51
54
const classes = useClasses ( ) ;
52
55
const navigate = useNavigate ( ) ;
53
- const { dispatchToast } = useToastController ( ) ;
54
56
const [ isDialogOpen , setIsDialogOpen ] = useState ( false ) ;
55
57
const [ jsonInput , setJsonInput ] = useState ( '' ) ;
56
58
const [ menuOpen , setMenuOpen ] = useState ( false ) ;
57
59
const dialogTitleId = useId ( 'dialog-title' ) ;
58
60
const textareaId = useId ( 'json-input' ) ;
59
61
const jsonInputRef = useRef < HTMLTextAreaElement > ( null ) ;
62
+ const { currentCard } = useCardStore ( ) ;
63
+ const { dispatchToast } = useToastController ( ) ;
64
+ const childLog = Logger . child ( 'ComposeBoxToolbar' ) ;
60
65
61
66
const handleNavigateToCards = ( ) => {
62
67
navigate ( '/cards' ) ;
@@ -65,41 +70,51 @@ const ComposeBoxToolbar: FC<ComposeBoxToolbarProps> = ({
65
70
66
71
const handleSaveJson = useCallback ( ( ) => {
67
72
try {
68
- const card = JSON . parse ( jsonInput ) ;
73
+ const card = JSON . parse ( jsonInput ) as Card ;
69
74
70
75
if ( onAttachment ) {
71
76
onAttachment ( {
72
77
type : 'card' ,
73
78
content : card ,
79
+ contentType : 'application/vnd.microsoft.card.adaptive' ,
74
80
} ) ;
75
81
} else if ( onSend ) {
76
82
onSend ( [
77
83
{
78
- contentType : 'application/vnd.microsoft. card.adaptive ' ,
84
+ type : 'card' ,
79
85
content : card ,
86
+ contentType : 'application/vnd.microsoft.card.adaptive' ,
80
87
} ,
81
88
] ) ;
82
89
}
83
90
84
91
setIsDialogOpen ( false ) ;
92
+ setJsonInput ( '' ) ;
85
93
} catch ( error ) {
94
+ childLog . debug ( 'Failed to parse JSON:' , error ) ;
86
95
dispatchToast (
87
96
< Toast >
88
- < ToastTitle > Error</ ToastTitle >
89
- < ToastBody >
90
- Failed to parse JSON: { error instanceof Error ? error . message : String ( error ) }
91
- </ ToastBody >
97
+ < ToastTitle > Failed to parse JSON. Please check your input and try again.</ ToastTitle >
92
98
</ Toast > ,
93
99
{ intent : 'error' }
94
100
) ;
95
101
}
96
- } , [ jsonInput , onAttachment , onSend , dispatchToast , setIsDialogOpen ] ) ;
102
+ } , [ childLog , jsonInput , onAttachment , onSend , dispatchToast ] ) ;
97
103
98
104
const handleSend = useCallback ( ( ) => {
99
- if ( onSend && hasContent ) {
100
- onSend ( ) ;
105
+ if ( onSend ) {
106
+ if ( currentCard ) {
107
+ onSend ( [
108
+ {
109
+ contentType : 'application/vnd.microsoft.card.adaptive' ,
110
+ content : currentCard ,
111
+ } ,
112
+ ] ) ;
113
+ } else if ( hasContent ) {
114
+ onSend ( ) ;
115
+ }
101
116
}
102
- } , [ onSend , hasContent ] ) ;
117
+ } , [ onSend , hasContent , currentCard ] ) ;
103
118
104
119
return (
105
120
< Toolbar aria-label = "New message actions" { ...props } className = { classes . toolbar } >
@@ -144,7 +159,7 @@ const ComposeBoxToolbar: FC<ComposeBoxToolbarProps> = ({
144
159
Cancel
145
160
</ Button >
146
161
< Button appearance = "primary" onClick = { handleSaveJson } >
147
- Attach Card
162
+ Attach card
148
163
</ Button >
149
164
</ DialogActions >
150
165
</ DialogBody >
0 commit comments