Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comments render #135

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,17 @@ const CommentBox = ({ commentsArray, tutorialId }) => {
const dispatch = useDispatch();
const [comments, setComments] = useState([]);
const [currCommentCount, setCurrCommentCount] = useState(3);
const handleSubmit = comment => {
const handleSubmit = async comment => {
const commentData = {
content: comment,
replyTo: tutorialId,
tutorial_id: tutorialId,
createdAt: firestore.FieldValue.serverTimestamp(),
userId: "codelabzuser"
};
addComment(commentData)(firebase, firestore, dispatch);
let x = await addComment(commentData)(firebase, firestore, dispatch);
console.log("new id ", x);
setComments(prevComments => [...prevComments, x]);
};

useEffect(() => {
Expand Down
5 changes: 5 additions & 0 deletions src/store/actions/tutorialPageActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,13 @@ export const getCommentReply =
export const addComment = comment => async (firebase, firestore, dispatch) => {
try {
dispatch({ type: actions.ADD_COMMENT_START });
let x = "";
await firestore
.collection("cl_comments")
.add(comment)
.then(docref => {
x = docref.id;
console.log("docref", docref.id);
firestore.collection("cl_comments").doc(docref.id).update({
comment_id: docref.id
});
Expand All @@ -213,7 +216,9 @@ export const addComment = comment => async (firebase, firestore, dispatch) => {
})
.then(() => {
dispatch({ type: actions.ADD_COMMENT_SUCCESS });
return x;
});
return x;
} catch (e) {
dispatch({ type: actions.ADD_COMMENT_FAILED, payload: e.message });
}
Expand Down
294 changes: 147 additions & 147 deletions src/store/actions/tutorialsActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,36 +230,36 @@ export const getCurrentTutorialData =

export const addNewTutorialStep =
({ owner, tutorial_id, title, time, id }) =>
async (firebase, firestore, dispatch) => {
try {
dispatch({ type: actions.CREATE_TUTORIAL_STEP_START });
async (firebase, firestore, dispatch) => {
try {
dispatch({ type: actions.CREATE_TUTORIAL_STEP_START });

await firestore
.collection("tutorials")
.doc(tutorial_id)
.collection("steps")
.doc(id)
.set({
content: `Switch to editor mode to begin <b>${title}</b> step`,
id,
time,
title,
visibility: true,
deleted: false
});
await firestore
.collection("tutorials")
.doc(tutorial_id)
.collection("steps")
.doc(id)
.set({
content: `Switch to editor mode to begin <b>${title}</b> step`,
id,
time,
title,
visibility: true,
deleted: false
});

await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);

dispatch({ type: actions.CREATE_TUTORIAL_STEP_SUCCESS });
} catch (e) {
console.log("CREATE_TUTORIAL_STEP_FAIL", e.message);
dispatch({ type: actions.CREATE_TUTORIAL_STEP_FAIL, payload: e.message });
}
};
dispatch({ type: actions.CREATE_TUTORIAL_STEP_SUCCESS });
} catch (e) {
console.log("CREATE_TUTORIAL_STEP_FAIL", e.message);
dispatch({ type: actions.CREATE_TUTORIAL_STEP_FAIL, payload: e.message });
}
};

export const clearCreateTutorials = () => dispatch =>
dispatch({ type: actions.CLEAR_CREATE_TUTORIALS_STATE });
Expand Down Expand Up @@ -305,78 +305,78 @@ export const setCurrentStepContent =

export const hideUnHideStep =
(owner, tutorial_id, step_id, visibility) =>
async (firebase, firestore, dispatch) => {
try {
/* not being used */
// const type = await checkUserOrOrgHandle(owner)(firebase);
await firestore
.collection("tutorials")
.doc(tutorial_id)
.collection("steps")
.doc(step_id)
.update({
[`visibility`]: !visibility,
updatedAt: firestore.FieldValue.serverTimestamp()
});
async (firebase, firestore, dispatch) => {
try {
/* not being used */
// const type = await checkUserOrOrgHandle(owner)(firebase);
await firestore
.collection("tutorials")
.doc(tutorial_id)
.collection("steps")
.doc(step_id)
.update({
[`visibility`]: !visibility,
updatedAt: firestore.FieldValue.serverTimestamp()
});

await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e.message);
}
};
await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e.message);
}
};

export const publishUnpublishTutorial =
(owner, tutorial_id, isPublished) =>
async (firebase, firestore, dispatch) => {
try {
await firestore
.collection("tutorials")
.doc(tutorial_id)
.update({
["isPublished"]: !isPublished
});
async (firebase, firestore, dispatch) => {
try {
await firestore
.collection("tutorials")
.doc(tutorial_id)
.update({
["isPublished"]: !isPublished
});

getCurrentTutorialData(owner, tutorial_id)(firebase, firestore, dispatch);
} catch (e) {
console.log(e.message);
}
};
getCurrentTutorialData(owner, tutorial_id)(firebase, firestore, dispatch);
} catch (e) {
console.log(e.message);
}
};

export const removeStep =
(owner, tutorial_id, step_id, current_step_no) =>
async (firebase, firestore, dispatch) => {
try {
await firestore
.collection("tutorials")
.doc(tutorial_id)
.collection("steps")
.doc(step_id)
.delete()

// const data = await firestore
// .collection("tutorials")
// .doc(tutorial_id)
// .collection("steps")
// .doc(step_id)
// .get();

await setCurrentStepNo(
current_step_no > 0 ? current_step_no - 1 : current_step_no
)(dispatch);

await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e.message);
}
};
async (firebase, firestore, dispatch) => {
try {
await firestore
.collection("tutorials")
.doc(tutorial_id)
.collection("steps")
.doc(step_id)
.delete();

// const data = await firestore
// .collection("tutorials")
// .doc(tutorial_id)
// .collection("steps")
// .doc(step_id)
// .get();

await setCurrentStepNo(
current_step_no > 0 ? current_step_no - 1 : current_step_no
)(dispatch);

await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e.message);
}
};

export const setCurrentStep = data => async dispatch =>
dispatch({ type: actions.SET_EDITOR_DATA, payload: data });
Expand Down Expand Up @@ -465,69 +465,69 @@ export const remoteTutorialImages =

export const updateStepTitle =
(owner, tutorial_id, step_id, step_title) =>
async (firebase, firestore, dispatch) => {
try {
const dbPath = `tutorials/${tutorial_id}/steps`;
await firestore
.collection(dbPath)
.doc(step_id)
.update({
[`title`]: step_title,
updatedAt: firestore.FieldValue.serverTimestamp()
});
async (firebase, firestore, dispatch) => {
try {
const dbPath = `tutorials/${tutorial_id}/steps`;
await firestore
.collection(dbPath)
.doc(step_id)
.update({
[`title`]: step_title,
updatedAt: firestore.FieldValue.serverTimestamp()
});

await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e);
}
};
await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e);
}
};

export const updateStepTime =
(owner, tutorial_id, step_id, step_time) =>
async (firebase, firestore, dispatch) => {
try {
const dbPath = `tutorials/${tutorial_id}/steps`;

await firestore
.collection(dbPath)
.doc(step_id)
.update({
[`time`]: step_time,
updatedAt: firestore.FieldValue.serverTimestamp()
});
async (firebase, firestore, dispatch) => {
try {
const dbPath = `tutorials/${tutorial_id}/steps`;

await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e.message);
}
};
await firestore
.collection(dbPath)
.doc(step_id)
.update({
[`time`]: step_time,
updatedAt: firestore.FieldValue.serverTimestamp()
});

await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e.message);
}
};

export const setTutorialTheme =
({ tutorial_id, owner, bgColor, textColor }) =>
async (firebase, firestore, dispatch) => {
try {
const dbPath = `tutorials`;
async (firebase, firestore, dispatch) => {
try {
const dbPath = `tutorials`;

await firestore.collection(dbPath).doc(tutorial_id).update({
text_color: textColor,
background_color: bgColor,
updatedAt: firestore.FieldValue.serverTimestamp()
});
await firestore.collection(dbPath).doc(tutorial_id).update({
text_color: textColor,
background_color: bgColor,
updatedAt: firestore.FieldValue.serverTimestamp()
});

await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e.message);
}
};
await getCurrentTutorialData(owner, tutorial_id)(
firebase,
firestore,
dispatch
);
} catch (e) {
console.log(e.message);
}
};
Loading