// // NOTE - Change isTestMode to false prior to actual release ---- !important - You may also change identifier if you want to not show older cards. const testMode = false const cardIdentifierPrefix = "Minter-board-card" let isExistingCard = false let existingCardData = {} let existingCardIdentifier = {} const MIN_ADMIN_YES_VOTES = 9; const GROUP_APPROVAL_FEATURE_TRIGGER_HEIGHT = 9999950 //TODO update this to correct featureTrigger height when known, either that, or pull from core. let featureTriggerPassed = false let isApproved = false const loadMinterBoardPage = async () => { // Clear existing content on the page const bodyChildren = document.body.children for (let i = bodyChildren.length - 1; i >= 0; i--) { const child = bodyChildren[i]; if (!child.classList.contains("menu")) { child.remove() } } // Add the "Minter Board" content const mainContent = document.createElement("div") const publishButtonColor = '#527c9d' const minterBoardNameColor = '#527c9d' mainContent.innerHTML = `

Minter Board

Publish a Minter Card with Information, and obtain and view the support of the community. Welcome to the Minter Board!

` document.body.appendChild(mainContent) createScrollToTopButton() document.getElementById("publish-card-button").addEventListener("click", async () => { try { const fetchedCard = await fetchExistingCard() if (fetchedCard) { // An existing card is found if (testMode) { // In test mode, ask user what to do const updateCard = confirm("A card already exists. Do you want to update it?") if (updateCard) { isExistingCard = true await loadCardIntoForm(existingCardData) alert("Edit your existing card and publish.") } else { alert("Test mode: You can now create a new card.") isExistingCard = false existingCardData = {} document.getElementById("publish-card-form").reset() } } else { // Not in test mode, force editing alert("A card already exists. Publishing of multiple cards is not allowed. Please update your card."); isExistingCard = true; await loadCardIntoForm(existingCardData) } } else { // No existing card found console.log("No existing card found. Creating a new card.") isExistingCard = false } // Show the form const publishCardView = document.getElementById("publish-card-view") publishCardView.style.display = "flex"; document.getElementById("cards-container").style.display = "none" } catch (error) { console.error("Error checking for existing card:", error) alert("Failed to check for existing card. Please try again.") } }) document.getElementById("refresh-cards-button").addEventListener("click", async () => { const cardsContainer = document.getElementById("cards-container") cardsContainer.innerHTML = "

Refreshing cards...

" await loadCards(); }) document.getElementById("cancel-publish-button").addEventListener("click", async () => { const cardsContainer = document.getElementById("cards-container") cardsContainer.style.display = "flex"; // Restore visibility const publishCardView = document.getElementById("publish-card-view") publishCardView.style.display = "none"; // Hide the publish form }) document.getElementById("add-link-button").addEventListener("click", async () => { const linksContainer = document.getElementById("links-container") const newLinkInput = document.createElement("input") newLinkInput.type = "text" newLinkInput.className = "card-link" newLinkInput.placeholder = "Enter QDN link" linksContainer.appendChild(newLinkInput) }) document.getElementById("publish-card-form").addEventListener("submit", async (event) => { event.preventDefault() await publishCard() }) await featureTriggerCheck() await loadCards() } const extractMinterCardsMinterName = async (cardIdentifier) => { // Ensure the identifier starts with the prefix if (!cardIdentifier.startsWith(`${cardIdentifierPrefix}-`)) { throw new Error('Invalid identifier format or prefix mismatch') } // Split the identifier into parts const parts = cardIdentifier.split('-') // Ensure the format has at least 3 parts if (parts.length < 3) { throw new Error('Invalid identifier format') } try { const searchSimpleResults = await searchSimple('BLOG_POST', `${cardIdentifier}`, '', 1) const minterName = await searchSimpleResults.name return minterName } catch (error) { throw error } } const processMinterCards = async (validMinterCards) => { const latestCardsMap = new Map() validMinterCards.forEach(card => { const timestamp = card.updated || card.created || 0 const existingCard = latestCardsMap.get(card.identifier) if (!existingCard || timestamp > (existingCard.updated || existingCard.created || 0)) { latestCardsMap.set(card.identifier, card) } }) const minterGroupMembers = await fetchMinterGroupMembers() const minterGroupAddresses = minterGroupMembers.map(m => m.member) const minterNameMap = new Map() for (const card of validMinterCards) { const minterName = await extractMinterCardsMinterName(card.identifier) console.log(`minterName`, minterName) const minterNameInfo = await getNameInfo(minterName) if (!minterNameInfo) { console.warn(`minterNameInfo is null for minter: ${minterName}`) continue } const minterAddress = await minterNameInfo.owner if (!minterAddress) { console.warn(`minterAddress is FAKE or INVALID in some way! minter: ${minterName}`) continue } else if (minterGroupAddresses.includes(minterAddress)){ console.log(`existing minter FOUND and/or FAKE NAME FOUND (if following is null then fake name: ${minterAddress}), not including minter card: ${card.identifier}`) continue } const existingCard = minterNameMap.get(minterName) const cardTimestamp = card.updated || card.created || 0 const existingTimestamp = existingCard?.updated || existingCard?.created || 0 if (!existingCard || cardTimestamp > existingTimestamp) { minterNameMap.set(minterName, card) } } const finalCards = [] const seenMinterNames = new Set() for (const [minterName, card] of minterNameMap.entries()) { if (!seenMinterNames.has(minterName)) { finalCards.push(card) seenMinterNames.add(minterName) } } finalCards.sort((a, b) => { const timestampA = a.updated || a.created || 0 const timestampB = b.updated || b.created || 0 return timestampB - timestampA }) return finalCards } //Main function to load the Minter Cards ---------------------------------------- const loadCards = async () => { const cardsContainer = document.getElementById("cards-container") cardsContainer.innerHTML = "

Loading cards...

" try { const response = await searchSimple('BLOG_POST', `${cardIdentifierPrefix}`, '' , 0) if (!response || !Array.isArray(response) || response.length === 0) { cardsContainer.innerHTML = "

No cards found.

" return; } // Validate cards and filter const validatedCards = await Promise.all( response.map(async card => { const isValid = await validateCardStructure(card) return isValid ? card : null }) ); const validCards = validatedCards.filter(card => card !== null) if (validCards.length === 0) { cardsContainer.innerHTML = "

No valid cards found.

" return } const finalCards = await processMinterCards(validCards) // Display skeleton cards immediately cardsContainer.innerHTML = "" finalCards.forEach(card => { const skeletonHTML = createSkeletonCardHTML(card.identifier) cardsContainer.insertAdjacentHTML("beforeend", skeletonHTML) }) // Fetch and update each card finalCards.forEach(async card => { try { const cardDataResponse = await qortalRequest({ action: "FETCH_QDN_RESOURCE", name: card.name, service: "BLOG_POST", identifier: card.identifier, }) if (!cardDataResponse) { console.warn(`Skipping invalid card: ${JSON.stringify(card)}`) removeSkeleton(card.identifier) return } if (!cardDataResponse.poll) { console.warn(`Skipping card with no poll: ${card.identifier}`) removeSkeleton(card.identifier) return } const pollPublisherPublicKey = await getPollPublisherPublicKey(cardDataResponse.poll) const cardPublisherPublicKey = await getPublicKeyByName(card.name) if (pollPublisherPublicKey != cardPublisherPublicKey) { console.warn(`not displaying card, QuickMythril pollHijack attack found! Discarding card with identifier: ${card.identifier}`) removeSkeleton(card.identifier) return } const pollResults = await fetchPollResults(cardDataResponse.poll) const bgColor = generateDarkPastelBackgroundBy(card.name) const commentCount = await countComments(card.identifier) const cardUpdatedTime = card.updated || null const finalCardHTML = await createCardHTML(cardDataResponse, pollResults, card.identifier, commentCount, cardUpdatedTime, bgColor) replaceSkeleton(card.identifier, finalCardHTML) } catch (error) { console.error(`Error processing card ${card.identifier}:`, error) removeSkeleton(card.identifier) } }) } catch (error) { console.error("Error loading cards:", error) cardsContainer.innerHTML = "

Failed to load cards.

" } } const removeSkeleton = (cardIdentifier) => { const skeletonCard = document.getElementById(`skeleton-${cardIdentifier}`) if (skeletonCard) { skeletonCard.remove() } } const replaceSkeleton = (cardIdentifier, htmlContent) => { const skeletonCard = document.getElementById(`skeleton-${cardIdentifier}`) if (skeletonCard) { skeletonCard.outerHTML = htmlContent } } const createSkeletonCardHTML = (cardIdentifier) => { return `

LOADING CARD...

PLEASE BE PATIENT

While data loads from QDN...

` } // Function to check and fech an existing Minter Card if attempting to publish twice ---------------------------------------- const fetchExistingCard = async () => { try { const response = await searchSimple('BLOG_POST', `${cardIdentifierPrefix}`, `${userState.accountName}`, 0, 0, '', true) console.log(`SEARCH_QDN_RESOURCES response: ${JSON.stringify(response, null, 2)}`) if (!response || !Array.isArray(response) || response.length === 0) { console.log("No cards found for the current user.") return null } else if (response.length === 1) { // we don't need to go through all of the rest of the checks and filtering nonsense if there's only a single result, just return it. const mostRecentCard = response[0] isExistingCard = true const cardDataResponse = await qortalRequest({ action: "FETCH_QDN_RESOURCE", name: userState.accountName, // User's account name service: "BLOG_POST", identifier: mostRecentCard.identifier }) existingCardIdentifier = mostRecentCard.identifier existingCardData = cardDataResponse isExistingCard = true return cardDataResponse } const validatedCards = await Promise.all( response.map(async card => { const isValid = await validateCardStructure(card) return isValid ? card : null }) ) const validCards = validatedCards.filter(card => card !== null) if (validCards.length > 0) { const mostRecentCard = validCards.sort((a, b) => b.created - a.created)[0] const cardDataResponse = await qortalRequest({ action: "FETCH_QDN_RESOURCE", name: userState.accountName, // User's account name service: "BLOG_POST", identifier: mostRecentCard.identifier }) existingCardIdentifier = mostRecentCard.identifier existingCardData = cardDataResponse isExistingCard = true console.log("Full card data fetched successfully:", cardDataResponse) return cardDataResponse } console.log("No valid cards found.") return null } catch (error) { console.error("Error fetching existing card:", error) return null } } // Validate that a card is indeed a card and not a comment. ------------------------------------- const validateCardStructure = async (card) => { return ( typeof card === "object" && card.name && card.service === "BLOG_POST" && card.identifier && !card.identifier.includes("comment") && card.created ) } // Load existing card data passed, into the form for editing ------------------------------------- const loadCardIntoForm = async (cardData) => { console.log("Loading existing card data:", cardData) document.getElementById("card-header").value = cardData.header document.getElementById("card-content").value = cardData.content const linksContainer = document.getElementById("links-container") linksContainer.innerHTML = "" cardData.links.forEach(link => { const linkInput = document.createElement("input") linkInput.type = "text" linkInput.className = "card-link" linkInput.value = link; linksContainer.appendChild(linkInput) }) } // Main function to publish a new Minter Card ----------------------------------------------- const publishCard = async () => { const minterGroupData = await fetchMinterGroupMembers() const minterGroupAddresses = minterGroupData.map(m => m.member) const userAddress = userState.accountAddress; if (minterGroupAddresses.includes(userAddress)) { alert("You are already a Minter and cannot publish a new card!") return } const header = document.getElementById("card-header").value.trim() const content = document.getElementById("card-content").value.trim() const links = Array.from(document.querySelectorAll(".card-link")) .map(input => input.value.trim()) .filter(link => link.startsWith("qortal://")) if (!header || !content) { alert("Header and content are required!") return } const cardIdentifier = isExistingCard ? existingCardIdentifier : `${cardIdentifierPrefix}-${await uid()}` const pollName = `${cardIdentifier}-poll` const pollDescription = `Mintership Board Poll for ${userState.accountName}` const cardData = { header, content, links, creator: userState.accountName, timestamp: Date.now(), poll: pollName, } try { let base64CardData = await objectToBase64(cardData) if (!base64CardData) { console.log(`initial base64 object creation with objectToBase64 failed, using btoa...`) base64CardData = btoa(JSON.stringify(cardData)) } await qortalRequest({ action: "PUBLISH_QDN_RESOURCE", name: userState.accountName, service: "BLOG_POST", identifier: cardIdentifier, data64: base64CardData, }) if (!isExistingCard){ await qortalRequest({ action: "CREATE_POLL", pollName, pollDescription, pollOptions: ['Yes, No'], pollOwnerAddress: userState.accountAddress, }) alert("Card and poll published successfully!") } if (isExistingCard){ alert("Card Updated Successfully! (No poll updates are possible at this time...)") isExistingCard = false } document.getElementById("publish-card-form").reset() document.getElementById("publish-card-view").style.display = "none" document.getElementById("cards-container").style.display = "flex" await loadCards() } catch (error) { console.error("Error publishing card or poll:", error) alert("Failed to publish card and poll.") } } let globalVoterMap = new Map() const processPollData= async (pollData, minterGroupMembers, minterAdmins, creator, cardIdentifier) => { if (!pollData || !Array.isArray(pollData.voteWeights) || !Array.isArray(pollData.votes)) { console.warn("Poll data is missing or invalid. pollData:", pollData) return { adminYes: 0, adminNo: 0, minterYes: 0, minterNo: 0, totalYes: 0, totalNo: 0, totalYesWeight: 0, totalNoWeight: 0, detailsHtml: `

Poll data is invalid or missing.

` } } const memberAddresses = minterGroupMembers.map(m => m.member) const minterAdminAddresses = minterAdmins.map(m => m.member) const adminGroupsMembers = await fetchAllAdminGroupsMembers() const featureTriggerPassed = await featureTriggerCheck() const groupAdminAddresses = adminGroupsMembers.map(m => m.member) let adminAddresses = [...minterAdminAddresses] if (!featureTriggerPassed) { console.log(`featureTrigger is NOT passed, only showing admin results from Minter Admins and Group Admins`) adminAddresses = [...minterAdminAddresses, ...groupAdminAddresses] } let adminYes = 0, adminNo = 0 let minterYes = 0, minterNo = 0 let yesWeight = 0, noWeight = 0 for (const w of pollData.voteWeights) { if (w.optionName.toLowerCase() === 'yes') { yesWeight = w.voteWeight } else if (w.optionName.toLowerCase() === 'no') { noWeight = w.voteWeight } } const voterPromises = pollData.votes.map(async (vote) => { const optionIndex = vote.optionIndex; // 0 => yes, 1 => no const voterPublicKey = vote.voterPublicKey const voterAddress = await getAddressFromPublicKey(voterPublicKey) if (optionIndex === 0) { if (adminAddresses.includes(voterAddress)) { adminYes++ } else if (memberAddresses.includes(voterAddress)) { minterYes++ } else { console.log(`voter ${voterAddress} is not a minter nor an admin... Not included in aggregates.`) } } else if (optionIndex === 1) { if (adminAddresses.includes(voterAddress)) { adminNo++ } else if (memberAddresses.includes(voterAddress)) { minterNo++ } else { console.log(`voter ${voterAddress} is not a minter nor an admin... Not included in aggregates.`) } } let voterName = '' try { const nameInfo = await getNameFromAddress(voterAddress) if (nameInfo) { voterName = nameInfo if (nameInfo === voterAddress) voterName = '' } } catch (err) { console.warn(`No name for address ${voterAddress}`, err) } let blocksMinted = 0 try { const addressInfo = await getAddressInfo(voterAddress) blocksMinted = addressInfo?.blocksMinted || 0 } catch (e) { console.warn(`Failed to get addressInfo for ${voterAddress}`, e) } const isAdmin = adminAddresses.includes(voterAddress) const isMinter = memberAddresses.includes(voterAddress) return { optionIndex, voterPublicKey, voterAddress, voterName, isAdmin, isMinter, blocksMinted } }) const allVoters = await Promise.all(voterPromises) const yesVoters = [] const noVoters = [] let totalMinterAndAdminYesWeight = 0 let totalMinterAndAdminNoWeight = 0 for (const v of allVoters) { if (v.optionIndex === 0) { yesVoters.push(v) totalMinterAndAdminYesWeight+=v.blocksMinted } else if (v.optionIndex === 1) { noVoters.push(v) totalMinterAndAdminNoWeight+=v.blocksMinted } } yesVoters.sort((a,b) => b.blocksMinted - a.blocksMinted) noVoters.sort((a,b) => b.blocksMinted - a.blocksMinted) const sortedAllVoters = allVoters.sort((a,b) => b.blocksMinted - a.blocksMinted) await createVoterMap(sortedAllVoters, cardIdentifier) const yesTableHtml = buildVotersTableHtml(yesVoters, /* tableColor= */ "green") const noTableHtml = buildVotersTableHtml(noVoters, /* tableColor= */ "red") const detailsHtml = `

${creator}'s

Support Poll Result Details

Yes Vote Details

${yesTableHtml}

No Vote Details

${noTableHtml}
` const totalYes = adminYes + minterYes const totalNo = adminNo + minterNo return { adminYes, adminNo, minterYes, minterNo, totalYes, totalNo, totalYesWeight: totalMinterAndAdminYesWeight, totalNoWeight: totalMinterAndAdminNoWeight, detailsHtml } } const createVoterMap = async (voters, cardIdentifier) => { const voterMap = new Map() voters.forEach((voter) => { const voterNameOrAddress = voter.voterName || voter.voterAddress voterMap.set(voterNameOrAddress, { vote: voter.optionIndex === 0 ? "yes" : "no", // Use optionIndex directly voterType: voter.isAdmin ? "Admin" : voter.isMinter ? "Minter" : "User", blocksMinted: voter.blocksMinted, }) }) globalVoterMap.set(cardIdentifier, voterMap) } const buildVotersTableHtml = (voters, tableColor) => { if (!voters.length) { return `

No voters here.

` } // Decide extremely dark background for the let bodyBackground if (tableColor === "green") { bodyBackground = "rgba(0, 18, 0, 0.8)" // near-black green } else if (tableColor === "red") { bodyBackground = "rgba(30, 0, 0, 0.8)" // near-black red } else { // fallback color if needed bodyBackground = "rgba(40, 20, 10, 0.8)" } // tableColor is used for the , bodyBackground for the const minterColor = 'rgb(98, 122, 167)' const adminColor = 'rgb(44, 209, 151)' const userColor = 'rgb(102, 102, 102)' return ` ${voters .map(v => { const userType = v.isAdmin ? "Admin" : v.isMinter ? "Minter" : "User" const pollName = v.pollName const displayName = v.voterName ? v.voterName : v.voterAddress return ` ` }) .join("")}
Voter Name/Address Voter Type Voter Weight(=BlocksMinted)
${displayName} ${userType} ${v.blocksMinted}
` } // Post a comment on a card. --------------------------------- const postComment = async (cardIdentifier) => { const commentInput = document.getElementById(`new-comment-${cardIdentifier}`) const commentText = commentInput.value.trim() if (!commentText) { alert('Comment cannot be empty!') return } const commentData = { content: commentText, creator: userState.accountName, timestamp: Date.now(), } const commentIdentifier = `comment-${cardIdentifier}-${await uid()}` try { const base64CommentData = await objectToBase64(commentData) if (!base64CommentData) { console.log(`initial base64 object creation with objectToBase64 failed, using btoa...`) base64CommentData = btoa(JSON.stringify(commentData)) } await qortalRequest({ action: 'PUBLISH_QDN_RESOURCE', name: userState.accountName, service: 'BLOG_POST', identifier: commentIdentifier, data64: base64CommentData, }) alert('Comment posted successfully!') commentInput.value = '' } catch (error) { console.error('Error posting comment:', error) alert('Failed to post comment.') } } //Fetch the comments for a card with passed card identifier ---------------------------- const fetchCommentsForCard = async (cardIdentifier) => { try { const response = await searchSimple('BLOG_POST',`comment-${cardIdentifier}`, '', 0, 0, '', 'false') return response } catch (error) { console.error(`Error fetching comments for ${cardIdentifier}:`, error) return [] } } const displayComments = async (cardIdentifier) => { try { const comments = await fetchCommentsForCard(cardIdentifier) const commentsContainer = document.getElementById(`comments-container-${cardIdentifier}`) commentsContainer.innerHTML = '' const voterMap = globalVoterMap.get(cardIdentifier) || new Map() const commentHTMLArray = await Promise.all( comments.map(async (comment) => { try { const commentDataResponse = await qortalRequest({ action: "FETCH_QDN_RESOURCE", name: comment.name, service: "BLOG_POST", identifier: comment.identifier, }) const timestamp = await timestampToHumanReadableDate(commentDataResponse.timestamp); const commenter = commentDataResponse.creator const voterInfo = voterMap.get(commenter) let commentColor = "transparent" let adminBadge = "" if (voterInfo) { if (voterInfo.voterType === "Admin") { commentColor = voterInfo.vote === "yes" ? "rgba(21, 150, 21, 0.6)" : "rgba(212, 37, 64, 0.6)" // Light green for yes, light red for no const badgeColor = voterInfo.vote === "yes" ? "green" : "red" adminBadge = `(Admin)` } else { commentColor = voterInfo.vote === "yes" ? "rgba(0, 100, 0, 0.3)" : "rgba(100, 0, 0, 0.3)" // Darker green for yes, darker red for no } } return `

${commentDataResponse.creator} ${adminBadge}

${commentDataResponse.content}

${timestamp}

` } catch (err) { console.error(`Error processing comment ${comment.identifier}:`, err) return null } }) ) commentHTMLArray .filter((html) => html !== null) // Filter out failed comments .forEach((commentHTML) => { commentsContainer.insertAdjacentHTML('beforeend', commentHTML) }) } catch (error) { console.error(`Error displaying comments (or no comments) for ${cardIdentifier}:`, error) } } // Toggle comments from being shown or not, with passed cardIdentifier for comments being toggled -------------------- const toggleComments = async (cardIdentifier) => { const commentsSection = document.getElementById(`comments-section-${cardIdentifier}`) const commentButton = document.getElementById(`comment-button-${cardIdentifier}`) if (!commentsSection || !commentButton) return const count = commentButton.dataset.commentCount const isHidden = (commentsSection.style.display === 'none' || !commentsSection.style.display) if (isHidden) { // Show comments commentButton.textContent = "LOADING..." await displayComments(cardIdentifier) commentsSection.style.display = 'block' // Change the button text to 'HIDE COMMENTS' commentButton.textContent = 'HIDE COMMENTS' } else { // Hide comments commentsSection.style.display = 'none' commentButton.textContent = `COMMENTS (${count})` } } const countComments = async (cardIdentifier) => { try { const response = await searchSimple('BLOG_POST', `comment-${cardIdentifier}`, '', 0, 0, '', 'false') return Array.isArray(response) ? response.length : 0 } catch (error) { console.error(`Error fetching comment count for ${cardIdentifier}:`, error) return 0 } } const createModal = (modalType='') => { if (document.getElementById(`${modalType}-modal`)) { return } const isIframe = (modalType === 'links') const modalHTML = ` ` document.body.insertAdjacentHTML('beforeend', modalHTML) const modal = document.getElementById(`${modalType}-modal`) window.addEventListener('click', (event) => { if (event.target === modal) { closeModal(modalType) } }) } const openLinksModal = async (link) => { const processedLink = await processLink(link) const modal = document.getElementById('links-modal') const modalContent = document.getElementById('links-modalContent') modalContent.src = processedLink modal.style.display = 'block' } const closeModal = async (modalType='links') => { const modal = document.getElementById(`${modalType}-modal`) const modalContent = document.getElementById(`${modalType}-modalContent`) if (modal) { modal.style.display = 'none' } if (modalContent) { modalContent.src = '' } } const processLink = async (link) => { if (link.startsWith('qortal://')) { const match = link.match(/^qortal:\/\/([^/]+)(\/.*)?$/) if (match) { const firstParam = match[1].toUpperCase() const remainingPath = match[2] || "" const themeColor = window._qdnTheme || 'default' await new Promise(resolve => setTimeout(resolve, 10)) return `/render/${firstParam}${remainingPath}?theme=${themeColor}` } } return link } const togglePollDetails = (cardIdentifier) => { const detailsDiv = document.getElementById(`poll-details-${cardIdentifier}`) const modal = document.getElementById(`poll-details-modal`) const modalContent = document.getElementById(`poll-details-modalContent`) if (!detailsDiv || !modal || !modalContent) return // modalContent.appendChild(detailsDiv) modalContent.innerHTML = detailsDiv.innerHTML modal.style.display = 'block' window.onclick = (event) => { if (event.target === modal) { modal.style.display = 'none' } } } const generateDarkPastelBackgroundBy = (name) => { let hash = 0 for (let i = 0; i < name.length; i++) { hash = (hash << 5) - hash + name.charCodeAt(i) hash |= 0 } const safeHash = Math.abs(hash) const hueSteps = 69.69 const hueIndex = safeHash % hueSteps const hueRange = 288 const hue = 140 + (hueIndex * (hueRange / hueSteps)) const satSteps = 13.69 const satIndex = safeHash % satSteps const saturation = 18 + (satIndex * 1.333) const lightSteps = 3.69 const lightIndex = safeHash % lightSteps const lightness = 7 + lightIndex return `hsl(${hue}, ${saturation}%, ${lightness}%)` } const handleInviteMinter = async (minterName) => { try { const blockInfo = await getLatestBlockInfo() const blockHeight = blockInfo.height const minterAccountInfo = await getNameInfo(minterName) const minterAddress = await minterAccountInfo.owner let adminPublicKey let txGroupId if (blockHeight >= GROUP_APPROVAL_FEATURE_TRIGGER_HEIGHT){ if (userState.isMinterAdmin){ adminPublicKey = await getPublicKeyByName(userState.accountName) txGroupId = 694 }else{ console.warn(`user is not a minter admin, cannot create invite!`) return } }else { adminPublicKey = await getPublicKeyByName(userState.accountName) txGroupId = 0 } const fee = 0.01 const timeToLive = 864000 console.log(`about to attempt group invite, minterAddress: ${minterAddress}, adminPublicKey: ${adminPublicKey}`) const inviteTransaction = await createGroupInviteTransaction(minterAddress, adminPublicKey, 694, minterAddress, timeToLive, txGroupId, fee) const signedTransaction = await qortalRequest({ action: "SIGN_TRANSACTION", unsignedBytes: inviteTransaction }) console.warn(`signed transaction`,signedTransaction) const processResponse = await processTransaction(signedTransaction) if (typeof processResponse === 'object') { // The successful object might have a "signature" or "type" or "approvalStatus" console.log("Invite transaction success object:", processResponse) alert(`${minterName} has been successfully invited! Wait for confirmation...Transaction Response: ${JSON.stringify(processResponse)}`) } else { // fallback string or something console.log("Invite transaction raw text response:", processResponse) alert(`Invite transaction response: ${JSON.stringify(processResponse)}`) } } catch (error) { console.error("Error inviting minter:", error) alert("Error inviting minter. Please try again.") } } const createInviteButtonHtml = (creator, cardIdentifier) => { return `
` } const featureTriggerCheck = async () => { const latestBlockInfo = await getLatestBlockInfo() const isBlockPassed = latestBlockInfo.height >= GROUP_APPROVAL_FEATURE_TRIGGER_HEIGHT if (isBlockPassed) { console.warn(`featureTrigger check (verifyFeatureTrigger) determined block has PASSED:`, isBlockPassed) featureTriggerPassed = true return true } else { console.warn(`featureTrigger check (verifyFeatureTrigger) determined block has NOT PASSED:`, isBlockPassed) featureTriggerPassed = false return false } } const checkAndDisplayInviteButton = async (adminYes, creator, cardIdentifier) => { const isBlockPassed = await featureTriggerCheck() let minAdminCount const minterAdmins = await fetchMinterGroupAdmins() if (!isBlockPassed){ console.warn(`feature trigger not passed, using static number for minAdminCount`) minAdminCount = 9 } if ((minterAdmins) && (minterAdmins.length === 1)){ console.warn(`simply a double-check that there is only one MINTER group admin, in which case the group hasn't been transferred to null...keeping default minAdminCount of: ${minAdminCount}`) } else if ((minterAdmins) && (minterAdmins.length > 1) && isBlockPassed){ const totalAdmins = minterAdmins.length const fortyPercent = totalAdmins * 0.40 minAdminCount = Math.round(fortyPercent) console.warn(`this is another check to ensure minterAdmin group has more than 1 admin. IF so we will calculate the 40% needed for GROUP_APPROVAL, that number is: ${minAdminCount}`) } if (isBlockPassed) { const minterNameInfo = await getNameInfo(creator) const minterAddress = await minterNameInfo.owner if (userState.isMinterAdmin){ let groupApprovalHtml = await checkGroupApprovalAndCreateButton(minterAddress, cardIdentifier, "GROUP_INVITE") if (groupApprovalHtml) { return groupApprovalHtml } }else{ console.log(`USER NOT ADMIN, no need for group approval buttons...`) } } if (adminYes >= minAdminCount && (userState.isMinterAdmin)) { const inviteButtonHtml = createInviteButtonHtml(creator, cardIdentifier) console.log(`admin votes over 9, creating invite button...`, adminYes) return inviteButtonHtml } return null } const findPendingApprovalTxForAddress = async (address, txType, limit = 0, offset = 0) => { // 1) Fetch all pending transactions const pendingTxs = await searchPendingTransactions(limit, offset) // if a txType is passed, return the results related to that type, if not, then return any pending tx of the potential types. let relevantTypes if (txType) { relevantTypes = new Set([txType]) } else { relevantTypes = new Set(["GROUP_INVITE", "GROUP_BAN", "GROUP_KICK"]) } // Filter pending TX for relevant types const relevantTxs = pendingTxs.filter((tx) => relevantTypes.has(tx.type)) // Further filter by whether 'address' matches the correct field // - GROUP_INVITE => invitee // - GROUP_BAN => offender // - GROUP_KICK => member // If the user passed a specific txType, only one branch might matter. const matchedTxs = relevantTxs.filter((tx) => { switch (tx.type) { case "GROUP_INVITE": return tx.invitee === address case "GROUP_BAN": return tx.offender === address case "GROUP_KICK": return tx.member === address default: return false } }) return matchedTxs // Array of matching pending transactions } const checkGroupApprovalAndCreateButton = async (address, cardIdentifier, transactionType) => { const txTypes = [transactionType] const txSearchResults = await searchTransactions({ txTypes, address: `${address}`, confirmationStatus: 'CONFIRMED', limit: 0, reverse: true, offset: 0, startBlock: 1990000, blockLimit: 0, txGroupId: 694 }) const approvalTxType = ['GROUP_APPROVAL'] const approvalSearchResults = await searchTransactions({ txTypes: approvalTxType, address: `${address}`, confirmationStatus: 'CONFIRMED', limit: 0, reverse: true, offset: 0, startBlock: 1990000, blockLimit: 0, txGroupId: 0 }) console.warn(`transaction search results, this is for comparison to pendingApprovals search, these are not used:`,txSearchResults) const pendingApprovals = await findPendingApprovalTxForAddress(address, transactionType) if (pendingApprovals) { console.warn(`this is what is used for pending results... pendingApprovals FOUND:`, pendingApprovals) } if ((pendingApprovals.length === 0) || (!pendingApprovals)) { console.warn(`no pending approval transactions found, returning null...`) return null } const existingApprovalCount = approvalSearchResults.length const txSig = pendingApprovals[0].signature if (transactionType === `GROUP_INVITE`){ const approvalButtonHtml = `

Existing Invite Approvals: ${existingApprovalCount}

` return approvalButtonHtml } if (transactionType === `GROUP_KICK`){ const approvalButtonHtml = `

Existing Kick Approvals: ${existingApprovalCount}

` return approvalButtonHtml } if (transactionType === `GROUP_BAN`){ const approvalButtonHtml = `

Existing Ban Approvals: ${existingApprovalCount}

` return approvalButtonHtml } } const handleGroupApproval = async (pendingSignature) => { try{ if (!userState.isMinterAdmin) { console.warn(`non-admin attempting to sign approval!`) return } const fee = 0.01 const adminPublicKey = await getPublicKeyByName(userState.accountName) const txGroupId = 0 const rawGroupApprovalTransaction = await createGroupApprovalTransaction(adminPublicKey, pendingSignature, txGroupId, fee) const signedGroupApprovalTransaction = await qortalRequest({ action: "SIGN_TRANSACTION", unsignedBytes: rawGroupApprovalTransaction }) let txToProcess = signedGroupApprovalTransaction const processGroupApprovalTx = await processTransaction(txToProcess) if (processGroupApprovalTx) { alert(`transaction processed, please wait for CONFIRMATION: ${JSON.stringify(processGroupApprovalTx)}`) } else { alert(`creating tx failed for some reason`) } }catch(error){ console.error(error) throw error } } const handleJoinGroup = async (minterAddress) => { try{ if (userState.accountAddress === minterAddress) { console.log(`minter user found `) const qRequestAttempt = await qortalRequest({ action: "JOIN_GROUP", groupId: 694 }) if (qRequestAttempt) { return true } const joinerPublicKey = getPublicKeyFromAddress(minterAddress) const fee = 0.01 const joinGroupTransactionData = await createGroupJoinTransaction(minterAddress, joinerPublicKey, 694, 0, fee) const signedJoinGroupTransaction = await qortalRequest({ action: "SIGN_TRANSACTION", unsignedBytes: joinGroupTransactionData }) let txToProcess = signedJoinGroupTransaction const processJoinGroupTransaction = await processTransaction(txToProcess) if (processJoinGroupTransaction){ console.warn(`processed JOIN_GROUP tx`,processJoinGroupTransaction) alert(`JOIN GROUP Transaction Processed Successfully, please WAIT FOR CONFIRMATION txData: ${JSON.stringify(processJoinGroupTransaction)}`) } } else { console.warn(`user is not the minter`) return '' } } catch(error){ throw error } } const getMinterAvatar = async (minterName) => { const avatarUrl = `/arbitrary/THUMBNAIL/${minterName}/qortal_avatar` try { const response = await fetch(avatarUrl, { method: 'HEAD' }) if (response.ok) { return `User Avatar` } else { return '' } } catch (error) { console.error('Error checking avatar availability:', error) return '' } } // Create the overall Minter Card HTML ----------------------------------------------- const createCardHTML = async (cardData, pollResults, cardIdentifier, commentCount, cardUpdatedTime, bgColor) => { const { header, content, links, creator, timestamp, poll } = cardData const formattedDate = cardUpdatedTime ? new Date(cardUpdatedTime).toLocaleString() : new Date(timestamp).toLocaleString() const avatarHtml = await getMinterAvatar(creator) const linksHTML = links.map((link, index) => ` `).join("") const minterGroupMembers = await fetchMinterGroupMembers() const minterAdmins = await fetchMinterGroupAdmins() const { adminYes = 0, adminNo = 0, minterYes = 0, minterNo = 0, totalYes = 0, totalNo = 0, totalYesWeight = 0, totalNoWeight = 0, detailsHtml } = await processPollData(pollResults, minterGroupMembers, minterAdmins, creator, cardIdentifier) createModal('links') createModal('poll-details') const inviteButtonHtml = await checkAndDisplayInviteButton(adminYes, creator, cardIdentifier) let inviteHtmlAdd = (inviteButtonHtml) ? inviteButtonHtml : '' let finalBgColor = bgColor let invitedText = "" // for "INVITED" label if found try { const minterAddress = await fetchOwnerAddressFromName(creator) const invites = await fetchGroupInvitesByAddress(minterAddress) const hasMinterInvite = invites.some((invite) => invite.groupId === 694) if (hasMinterInvite) { // If so, override background color & add an "INVITED" label finalBgColor = "black"; invitedText = `

INVITED

` if (userState.accountName === creator){ //Check also if the creator is the user, and display the join group button if so. inviteHtmlAdd = `
` }else{ console.log(`user is not the minter... NOT displaying any join button`) inviteHtmlAdd = '' } } //do not display invite button as they're already invited. Create a join button instead. } catch (error) { console.error("Error checking invites for user:", error) } return `
${avatarHtml}

${creator}

${header}

${invitedText}
USER'S POST
${content}
USER'S LINKS
CURRENT SUPPORT RESULTS
${inviteHtmlAdd}
Admin Yes: ${adminYes} Admin No: ${adminNo}
Minter Yes: ${minterYes} Minter No: ${minterNo}
Total Yes: ${totalYes} Weight: ${totalYesWeight} Total No: ${totalNo} Weight: ${totalNoWeight}
SUPPORT ACTION FOR
${creator}

(click COMMENTS button to open/close card comments)

By: ${creator} - ${formattedDate}

` }