Skip to content

Commit 8f5a90e

Browse files
committed
Add delete question
1 parent eb2e57e commit 8f5a90e

File tree

5 files changed

+74
-33
lines changed

5 files changed

+74
-33
lines changed

server/src/index.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ import { createBookmarkLoader } from './utils/createBookmarkLoader';
2929

3030
const main = async () => {
3131
// command for generating tables: npx typeorm migration:generate -n Initial
32-
// @ts-ignore
32+
3333
const conn = await createConnection({
3434
type: 'postgres',
3535
url: process.env.DATABASE_URL,
36-
// ssl: {
37-
// rejectUnauthorized: false,
38-
// },
36+
ssl: {
37+
rejectUnauthorized: false,
38+
},
3939
// dropSchema: true,
4040
logging: true,
41-
synchronize: true,
41+
// synchronize: true,
4242
migrations: [path.join(__dirname, './migrations/*')],
4343
entities: [Question, User, Comment, Upvote, Bookmark],
4444
});
4545

46-
// await conn.runMigrations();
46+
await conn.runMigrations();
4747

4848
const app = express();
4949

server/src/resolvers/question.ts

+14
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,20 @@ export class QuestionResolver {
111111
return Question.create({ ...input, githubId: req.session.githubId }).save();
112112
}
113113

114+
@Mutation(() => Boolean)
115+
async deleteQuestion(
116+
@Arg('id', () => Int) id: number
117+
): Promise<boolean> {
118+
await Question.delete({ id });
119+
const comments = await Comment.find({ where: { questionId: id } });
120+
121+
if(comments) {
122+
await Comment.delete({ questionId: id });
123+
}
124+
125+
return true;
126+
}
127+
114128
@Mutation(() => Boolean)
115129
@UseMiddleware(isAuth)
116130
async acceptAnswer(

web/Components/CreateQuestion.tsx

+26-27
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { useRouter } from 'next/router';
33
import React, { useEffect, useState, useRef } from 'react';
44
import Autosuggest from 'react-autosuggest';
55
import TagsInput from 'react-tagsinput';
6-
import { useCreateQuestionMutation } from '../generated/graphql';
6+
import {
7+
useCreateQuestionMutation,
8+
useDeleteQuestionMutation,
9+
} from '../generated/graphql';
710
import { DEFAULT_AVATARS_BUCKET } from '../lib/constants';
811
import { createUrqlClient } from '../utils/createUrqlClient';
912
import { supabase } from '../utils/supabaseClient';
@@ -29,31 +32,20 @@ const CreateQuestion = () => {
2932

3033
const [submitting, setSubmitting] = useState<boolean>(false);
3134
const [, createQuestion] = useCreateQuestionMutation();
35+
const [, deleteQuestion] = useDeleteQuestionMutation();
3236

3337
const onSubmitClick = async () => {
3438
setSubmitting(true);
3539

3640
const uploadedImagePaths = await uploadImages();
37-
const { data, error } = await createQuestion({
41+
const { data } = await createQuestion({
3842
...question,
3943
title,
4044
imageUrls: uploadedImagePaths,
4145
tags,
4246
bountyAmount: bountyValue,
4347
});
4448

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);
5749
try {
5850
if (bountyValue && bountyValue >= 1) {
5951
const accounts = await web3.eth.getAccounts();
@@ -65,6 +57,13 @@ const CreateQuestion = () => {
6557
setSubmitting(false);
6658
router.push('/');
6759
} 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+
}
6867
setSubmitting(false);
6968
}
7069
};
@@ -141,12 +140,12 @@ const CreateQuestion = () => {
141140

142141
return (
143142
<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>
148147
<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'
150149
value={title}
151150
onChange={(e) => {
152151
setTitle(e.target.value);
@@ -155,21 +154,21 @@ const CreateQuestion = () => {
155154
/>
156155
</div>
157156

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'>
160159
Enter Question
161160
</label>
162-
<div className="w-full h-64 overflow-y-auto">
161+
<div className='w-full h-64 overflow-y-auto'>
163162
<MarkDown value={question} setValue={setQuestion} />
164163
</div>
165164
</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'>
167166
<UploadComponent files={files} setFiles={setFiles} />
168167
</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>
171170
<TagsInput
172-
className="rounded-md w-full bg-iconGrey"
171+
className='rounded-md w-full bg-iconGrey'
173172
renderInput={autosuggestRenderInput}
174173
value={tags}
175174
onChange={(e) => onChange(e)}
@@ -191,7 +190,7 @@ const CreateQuestion = () => {
191190
>
192191
{submitting ? (
193192
<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 ...
195194
</div>
196195
) : (
197196
<div>Create Question</div>

web/generated/graphql.tsx

+25
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export type CommentInput = {
5050
export type Mutation = {
5151
__typename?: 'Mutation';
5252
createQuestion: Question;
53+
deleteQuestion: Scalars['Boolean'];
5354
acceptAnswer: Scalars['Boolean'];
5455
vote: Scalars['Boolean'];
5556
logout: Scalars['Boolean'];
@@ -64,6 +65,11 @@ export type MutationCreateQuestionArgs = {
6465
};
6566

6667

68+
export type MutationDeleteQuestionArgs = {
69+
id: Scalars['Int'];
70+
};
71+
72+
6773
export type MutationAcceptAnswerArgs = {
6874
answerId: Scalars['Int'];
6975
questionId: Scalars['Int'];
@@ -252,6 +258,16 @@ export type DeleteCommentMutation = (
252258
& Pick<Mutation, 'deleteComment'>
253259
);
254260

261+
export type DeleteQuestionMutationVariables = Exact<{
262+
id: Scalars['Int'];
263+
}>;
264+
265+
266+
export type DeleteQuestionMutation = (
267+
{ __typename?: 'Mutation' }
268+
& Pick<Mutation, 'deleteQuestion'>
269+
);
270+
255271
export type LogoutMutationVariables = Exact<{ [key: string]: never; }>;
256272

257273

@@ -455,6 +471,15 @@ export const DeleteCommentDocument = gql`
455471
export function useDeleteCommentMutation() {
456472
return Urql.useMutation<DeleteCommentMutation, DeleteCommentMutationVariables>(DeleteCommentDocument);
457473
};
474+
export const DeleteQuestionDocument = gql`
475+
mutation DeleteQuestion($id: Int!) {
476+
deleteQuestion(id: $id)
477+
}
478+
`;
479+
480+
export function useDeleteQuestionMutation() {
481+
return Urql.useMutation<DeleteQuestionMutation, DeleteQuestionMutationVariables>(DeleteQuestionDocument);
482+
};
458483
export const LogoutDocument = gql`
459484
mutation Logout {
460485
logout
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
mutation DeleteQuestion($id: Int!) {
2+
deleteQuestion(id: $id)
3+
}

0 commit comments

Comments
 (0)