@@ -3,7 +3,10 @@ import { useRouter } from 'next/router';
3
3
import React , { useEffect , useState , useRef } from 'react' ;
4
4
import Autosuggest from 'react-autosuggest' ;
5
5
import TagsInput from 'react-tagsinput' ;
6
- import { useCreateQuestionMutation } from '../generated/graphql' ;
6
+ import {
7
+ useCreateQuestionMutation ,
8
+ useDeleteQuestionMutation ,
9
+ } from '../generated/graphql' ;
7
10
import { DEFAULT_AVATARS_BUCKET } from '../lib/constants' ;
8
11
import { createUrqlClient } from '../utils/createUrqlClient' ;
9
12
import { supabase } from '../utils/supabaseClient' ;
@@ -29,31 +32,20 @@ const CreateQuestion = () => {
29
32
30
33
const [ submitting , setSubmitting ] = useState < boolean > ( false ) ;
31
34
const [ , createQuestion ] = useCreateQuestionMutation ( ) ;
35
+ const [ , deleteQuestion ] = useDeleteQuestionMutation ( ) ;
32
36
33
37
const onSubmitClick = async ( ) => {
34
38
setSubmitting ( true ) ;
35
39
36
40
const uploadedImagePaths = await uploadImages ( ) ;
37
- const { data, error } = await createQuestion ( {
41
+ const { data } = await createQuestion ( {
38
42
...question ,
39
43
title,
40
44
imageUrls : uploadedImagePaths ,
41
45
tags,
42
46
bountyAmount : bountyValue ,
43
47
} ) ;
44
48
45
- // if (!error) {
46
- // if(bountyValue && bountyValue >= 1) {
47
- // const accounts = await web3.eth.getAccounts();
48
- // await Meshare.methods.createQuestion(data.createQuestion.id).send({
49
- // from: accounts[0],
50
- // value: web3.utils.toWei(bountyValue.toString(), "ether"),
51
- // })
52
- // }
53
- // setSubmitting(false);
54
- // router.push("/");
55
- // }
56
- // setSubmitting(false);
57
49
try {
58
50
if ( bountyValue && bountyValue >= 1 ) {
59
51
const accounts = await web3 . eth . getAccounts ( ) ;
@@ -65,6 +57,13 @@ const CreateQuestion = () => {
65
57
setSubmitting ( false ) ;
66
58
router . push ( '/' ) ;
67
59
} catch ( err ) {
60
+ const { error } = await deleteQuestion ( { id : data . createQuestion . id } ) ;
61
+
62
+ if ( ! error ) {
63
+ alert (
64
+ 'An error occured while creating the question. Please try again.'
65
+ ) ;
66
+ }
68
67
setSubmitting ( false ) ;
69
68
}
70
69
} ;
@@ -141,12 +140,12 @@ const CreateQuestion = () => {
141
140
142
141
return (
143
142
< div >
144
- < div className = " h-full overflow-y-auto overflow-x-hidden" >
145
- < div className = " text-3xl font-bold mt-2 mb-4" > Create Question</ div >
146
- < div className = " w-full" >
147
- < label className = " mt-2 mb-2 font-semibold text-xl" > Enter Title</ label >
143
+ < div className = ' h-full overflow-y-auto overflow-x-hidden' >
144
+ < div className = ' text-3xl font-bold mt-2 mb-4' > Create Question</ div >
145
+ < div className = ' w-full' >
146
+ < label className = ' mt-2 mb-2 font-semibold text-xl' > Enter Title</ label >
148
147
< input
149
- className = " w-full bg-gray-400 rounded-md outline-none placeholder-gray-600 p-2"
148
+ className = ' w-full bg-gray-400 rounded-md outline-none placeholder-gray-600 p-2'
150
149
value = { title }
151
150
onChange = { ( e ) => {
152
151
setTitle ( e . target . value ) ;
@@ -155,21 +154,21 @@ const CreateQuestion = () => {
155
154
/>
156
155
</ div >
157
156
158
- < div className = " w-full mt-4 mb-4 m-auto " >
159
- < label className = " mt-2 mb-2 font-semibold text-xl" >
157
+ < div className = ' w-full mt-4 mb-4 m-auto ' >
158
+ < label className = ' mt-2 mb-2 font-semibold text-xl' >
160
159
Enter Question
161
160
</ label >
162
- < div className = " w-full h-64 overflow-y-auto" >
161
+ < div className = ' w-full h-64 overflow-y-auto' >
163
162
< MarkDown value = { question } setValue = { setQuestion } />
164
163
</ div >
165
164
</ div >
166
- < div className = " w-full min-h-24 h-auto mb-5 pb-1 bg-iconGrey rounded-md" >
165
+ < div className = ' w-full min-h-24 h-auto mb-5 pb-1 bg-iconGrey rounded-md' >
167
166
< UploadComponent files = { files } setFiles = { setFiles } />
168
167
</ div >
169
- < div className = " mt-8" >
170
- < label className = " mt-2 mb-2 font-semibold text-xl" > Add Tags</ label >
168
+ < div className = ' mt-8' >
169
+ < label className = ' mt-2 mb-2 font-semibold text-xl' > Add Tags</ label >
171
170
< TagsInput
172
- className = " rounded-md w-full bg-iconGrey"
171
+ className = ' rounded-md w-full bg-iconGrey'
173
172
renderInput = { autosuggestRenderInput }
174
173
value = { tags }
175
174
onChange = { ( e ) => onChange ( e ) }
@@ -191,7 +190,7 @@ const CreateQuestion = () => {
191
190
>
192
191
{ submitting ? (
193
192
< div >
194
- < i className = " fa fa-spinner fa-spin -ml-3 mr-2" > </ i > Creating ...
193
+ < i className = ' fa fa-spinner fa-spin -ml-3 mr-2' > </ i > Creating ...
195
194
</ div >
196
195
) : (
197
196
< div > Create Question</ div >
0 commit comments