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

Bugfix: Unable to publish edited posts #268

Merged
merged 4 commits into from
Oct 17, 2023
Merged
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
191 changes: 105 additions & 86 deletions packages/app/src/components/layout/ArticleHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import usePublication from "../../services/publications/hooks/usePublication"
import { INITIAL_ARTICLE_VALUE, useArticleContext, usePublicationContext } from "../../services/publications/contexts"
import { UserOptions } from "../commons/UserOptions"
import Avatar from "../commons/Avatar"
// import { useOnClickOutside } from "../../hooks/useOnClickOutside"
import { useIpfs } from "../../hooks/useIpfs"
import useLocalStorage from "../../hooks/useLocalStorage"
import { Pinning } from "../../models/pinning"
Expand All @@ -20,15 +19,19 @@ import useArticle from "../../services/publications/hooks/useArticle"
import { removeHashPrefixFromImages } from "../../utils/modifyHTML"
import PinningConfigurationModal, { PinningConfigurationOption } from "../commons/PinningConfigurationModal"
import { checkPinningRequirements } from "../../utils/pinning"
import { PosterArticle, PosterUpdateArticle } from "../../services/poster/type"
import { useNotification } from "../../hooks/useNotification"
import { SupportedChainId, chainParameters } from "../../constants/chain"

type Props = {
publication?: Publication
type: "edit" | "new"
}

const ArticleHeader: React.FC<Props> = ({ publication, type }) => {
const openNotification = useNotification()
const { publicationSlug } = useParams<{ publicationSlug: string }>()
const { account, active } = useWeb3React()
const { account, active, chainId } = useWeb3React()
const navigate = useNavigate()
const location = useLocation()
const ipfs = useIpfs()
Expand All @@ -51,6 +54,7 @@ const ArticleHeader: React.FC<Props> = ({ publication, type }) => {
contentImageFiles,
storeArticleContent,
setArticleEditorState,
saveArticle,
} = useArticleContext()

const {
Expand All @@ -61,18 +65,17 @@ const ArticleHeader: React.FC<Props> = ({ publication, type }) => {
} = useArticles()
const {
indexing: updateArticleIndexing,
setExecutePollInterval: updatePoll,
transactionCompleted: updateTransaction,
newArticleId: updateArticleId,
setOldArticleHash,
setArticleId,
setCurrentTimestamp,
} = useArticle(draftArticle?.id ?? "")
const {
refetch,
chainId: publicationChainId,
transactionCompleted,
} = usePublication(publicationSlug || publication?.id || "")
const parameters = chainParameters(chainId ? chainId : SupportedChainId.GOERLI)
const URL = parameters && parameters.blockExplorerUrls[0]
const [showSettingModal, setShowSettingModal] = useState<boolean>(false)
const [show, setShow] = useState<boolean>(false)
const [prepareArticleTransaction, setPrepareArticleTransaction] = useState<boolean>(false)
Expand Down Expand Up @@ -181,30 +184,25 @@ const ArticleHeader: React.FC<Props> = ({ publication, type }) => {
setLoading(false)
}

//V2
const prepareTransaction = async () => {
let initialError = false
const validateArticleContent = () => {
if (draftArticle?.title === "") {
setExecuteArticleTransaction(false)
setArticleTitleError(true)
initialError = true
return false
}
if (!articleEditorState || articleEditorState === "<p></p>") {
setArticleContentError(true)
initialError = true
}
if (initialError) {
return
return false
}
setArticleTitleError(false)
setArticleContentError(false)
setLoading(true)
let articleContent = ""
if (contentImageFiles && checkPinningRequirements(pinning)) {
const articleWithHash = removeHashPrefixFromImages(articleEditorState as string)
const parser = new DOMParser()
let doc = parser.parseFromString(articleWithHash as string, "text/html")
let imgs = Array.from(doc.getElementsByTagName("img"))
return true
}

const processImagesInContent = async () => {
const articleWithHash = removeHashPrefixFromImages(articleEditorState as string)
const parser = new DOMParser()
let doc = parser.parseFromString(articleWithHash as string, "text/html")
let imgs = Array.from(doc.getElementsByTagName("img"))
if (contentImageFiles?.length) {
for (const img of imgs) {
let altValue = img.alt
let file = contentImageFiles.find((file: File) => file.lastModified.toString() === altValue)
Expand All @@ -213,39 +211,92 @@ const ArticleHeader: React.FC<Props> = ({ publication, type }) => {
img.src = hash
}
}

let newDoc = parser.parseFromString(doc.body.innerHTML, "text/html")
let modifiedHTMLString = newDoc.body.innerHTML
articleContent = modifiedHTMLString
}
let newDoc = parser.parseFromString(doc.body.innerHTML, "text/html")
return newDoc.body.innerHTML
}

if (!contentImageFiles && articleEditorState?.includes("img")) {
const prepareTransaction = async () => {
if (!validateArticleContent()) return

setArticleTitleError(false)
setArticleContentError(false)
setLoading(true)

let articleContent = ""
if (contentImageFiles && checkPinningRequirements(pinning)) {
articleContent = await processImagesInContent()
} else if (!contentImageFiles && articleEditorState?.includes("img")) {
articleContent = removeHashPrefixFromImages(articleEditorState)
}
if (!contentImageFiles && articleEditorState && !articleEditorState.includes("img")) {
} else if (!contentImageFiles && articleEditorState && !articleEditorState.includes("img")) {
articleContent = articleEditorState
}

if (draftArticle) {
const newArticle = {
...draftArticle,
article: articleContent as string,
}

await handleArticleAction(newArticle)
}

setLoading(false)
setExecuteArticleTransaction(false)
}

const handleArticleAction = async (article: Article) => {
const uploadThumbnail = async () => {
let articleThumbnail = ""
let hashArticle
const { title, article: draftArticleText, description, tags } = article
if (draftArticleThumbnail && checkPinningRequirements(pinning)) {
await ipfs.uploadContent(draftArticleThumbnail).then(async (img) => {
await ipfs.uploadContent(draftArticleThumbnail).then((img) => {
articleThumbnail = img.path
})
}
return articleThumbnail
}

const createNewArticle = async (articleData: PosterArticle, hashArticle: boolean) => {
console.log("before start")
return await createArticle(articleData, hashArticle).then((res) => {
if (res?.error) {
clearTransactionStates()
} else {
createPoll(true)
}
})
}

const updateExistingArticle = async (articleData: PosterUpdateArticle, hashArticle: boolean, article: Article) => {
await updateArticle(articleData, hashArticle).then((res) => {
if (res && res.error) {
clearTransactionStates()
} else if (article && article.lastUpdated) {
const date = new Date()
const timestamp = Math.floor(date.getTime() / 1000)
const temporalArticle = { ...article }
temporalArticle.lastUpdated = timestamp.toString()
openNotification({
message: "Execute transaction confirmed!",
autoHideDuration: 5000,
variant: "success",
detailsLink: `${URL}tx/${res.transaction.transactionHash}`,
preventDuplicate: true,
})
saveArticle(temporalArticle)
saveDraftArticle(undefined)
navigate(`/${publicationSlug ?? publication?.id ?? publicationId}/${temporalArticle.id}`)
return
}
})
}

const handleArticleAction = async (article: Article) => {
const { title, article: draftArticleText, description, tags } = article
const articleThumbnail = await uploadThumbnail()
let hashArticle

if (draftArticleText && checkPinningRequirements(pinning)) {
hashArticle = await ipfs.uploadContent(draftArticleText)
}

if (article && (publication || article.publication) && account) {
setPublicationId(article.publication?.id ?? "")
Expand All @@ -255,61 +306,28 @@ const ArticleHeader: React.FC<Props> = ({ publication, type }) => {
clearTransactionStates()
throw new Error("Publication id is null")
}
if (draftArticleText && checkPinningRequirements(pinning)) {
hashArticle = await ipfs.uploadContent(draftArticleText)

const articleData = {
action: type === "new" ? "article/create" : "article/update",
publicationId: id,
id: article.id,
title,
article: hashArticle ? hashArticle.path : draftArticleText,
description,
tags,
image: articleThumbnail,
authors: [account],
}
if (title) {
if (type === "new") {
console.log("before start")

return await createArticle(
{
action: "article/create",
publicationId: id,
title,
article: hashArticle ? hashArticle.path : draftArticleText,
description,
tags,
image: articleThumbnail,
authors: [account],
},
hashArticle ? true : false,
).then((res) => {
console.log("response of the create article", res)
if (res?.error) {
clearTransactionStates()
} else {
createPoll(true)
}
})
}
if (type === "edit" && article && article.id && article.lastUpdated) {
setCurrentTimestamp(parseInt(article.lastUpdated))
await updateArticle(
{
action: "article/update",
id: article.id,
title,
article: hashArticle ? hashArticle.path : draftArticleText,
description,
tags,
image: articleThumbnail,
},
hashArticle ? true : false,
).then((res) => {
if (res && res.error) {
clearTransactionStates()
} else if (article && article.lastUpdated) {
setOldArticleHash(article.article)
setArticleId(article.id)
updatePoll(true)
}
})
}

if (type === "new") {
await createNewArticle(articleData as PosterArticle, hashArticle ? true : false)
} else if (type === "edit" && article && article.id && article.lastUpdated) {
setCurrentTimestamp(parseInt(article.lastUpdated))
await updateExistingArticle(articleData as PosterUpdateArticle, hashArticle ? true : false, article)
}
return
} else {
clearTransactionStates()
}
clearTransactionStates()
}

const handleClosePinningConfigurationModal = (event: {}, _reason: "backdropClick" | "escapeKeyDown") => {
Expand All @@ -323,6 +341,7 @@ const ArticleHeader: React.FC<Props> = ({ publication, type }) => {
}
setShowSettingModal(false)
}

return (
<Stack
component="header"
Expand Down
3 changes: 2 additions & 1 deletion packages/app/src/services/poster/hooks/usePoster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ const usePoster = () => {
console.log("Starting transaction")
const tx = await poster.post(JSON.stringify(content), PUBLICATION_TAG)
const receipt: TransactionReceipt = await tx.wait()
console.log("Transaction completed", receipt)
setLoading(false)
setTransactionUrl(`${URL}tx/${receipt.transactionHash}`)

return { error: false, transaction: receipt }
} catch (error: any) {
setLoading(false)
Expand Down Expand Up @@ -157,6 +157,7 @@ const usePoster = () => {
const updateArticle = useCallback(
async (fields: PosterUpdateArticle, pin: boolean): Promise<any> => {
const result = await executeTransaction(fields)
console.log("result", result)
if (!result.error) {
if (pinning && ![PinningService.PUBLIC, PinningService.NONE].includes(pinning.service)) {
if (fields.image) {
Expand Down
6 changes: 3 additions & 3 deletions packages/subgraph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
"auth": "bash -c 'source .env || true && graph auth --studio $SUBGRAPH_DEPLOYMENT_KEY'"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.28.0",
"@graphprotocol/graph-ts": "0.26.0"
"@graphprotocol/graph-cli": "^0.59.0",
"@graphprotocol/graph-ts": "^0.31.0"
},
"resolutions": {
"concat-stream": "1.6.2"
},
"devDependencies": {
"matchstick-as": "^0.4.0",
"matchstick-as": "^0.6.0",
"mustache": "^4.2.0",
"prettier": "^2.5.1"
}
Expand Down
4 changes: 4 additions & 0 deletions packages/subgraph/tests/.latest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"version": "0.6.0",
"timestamp": 1697561210140
}
Loading
Loading