2025-01-22 05:23:25 +00:00
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
const isEncryptedTestMode = false
2024-12-24 08:27:17 +00:00
const encryptedCardIdentifierPrefix = "card-MAC"
2025-01-01 03:48:34 +00:00
let isUpdateCard = false
2024-12-20 05:28:36 +00:00
let existingDecryptedCardData = { }
let existingEncryptedCardIdentifier = { }
2024-12-19 03:39:15 +00:00
let cardMinterName = { }
let existingCardMinterNames = [ ]
2024-12-24 08:27:17 +00:00
let isTopic = false
let attemptLoadAdminDataCount = 0
let adminMemberCount = 0
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
let adminPublicKeys = [ ]
2025-01-09 04:26:24 +00:00
let kickTransactions = [ ]
let banTransactions = [ ]
2025-01-16 03:14:16 +00:00
let adminBoardState = {
2025-01-22 05:23:25 +00:00
kickedCards : new Set ( ) , // store identifiers
2025-01-16 03:14:16 +00:00
bannedCards : new Set ( ) , // likewise
hiddenList : new Set ( ) , // user-hidden
// ... we can add other things to state if needed...
}
const loadAdminBoardState = ( ) => {
// Load from localStorage if available
const rawState = localStorage . getItem ( 'adminBoardState' )
if ( rawState ) {
try {
const parsed = JSON . parse ( rawState ) ;
// Make sure bannedCards and kickedCards are sets
return {
bannedCards : new Set ( parsed . bannedCards ? ? [ ] ) ,
kickedCards : new Set ( parsed . kickedCards ? ? [ ] ) ,
hiddenList : new Set ( parsed . hiddenList ? ? [ ] ) ,
// ... any other fields
} ;
} catch ( e ) {
console . warn ( "Failed to parse adminBoardState from storage:" , e )
}
}
// If nothing found or parse error, return a default
return {
bannedCards : new Set ( ) ,
kickedCards : new Set ( ) ,
hiddenList : new Set ( ) ,
}
}
// Saving the state back into localStorage as needed:
const saveAdminBoardState = ( ) => {
const stateToSave = {
bannedCards : Array . from ( adminBoardState . bannedCards ) ,
kickedCards : Array . from ( adminBoardState . kickedCards ) ,
hiddenList : Array . from ( adminBoardState . hiddenList ) ,
}
localStorage . setItem ( 'adminBoardState' , JSON . stringify ( stateToSave ) )
}
2024-12-19 03:39:15 +00:00
2024-12-31 05:39:18 +00:00
console . log ( "Attempting to load AdminBoard.js" )
2024-12-19 03:39:15 +00:00
const loadAdminBoardPage = async ( ) => {
// Clear existing content on the page
2025-01-16 03:14:16 +00:00
const bodyChildren = document . body . children
2024-12-19 03:39:15 +00:00
for ( let i = bodyChildren . length - 1 ; i >= 0 ; i -- ) {
const child = bodyChildren [ i ] ;
if ( ! child . classList . contains ( "menu" ) ) {
2025-01-01 03:48:34 +00:00
child . remove ( )
2024-12-19 03:39:15 +00:00
}
}
// Add the "Minter Board" content
2024-12-31 05:39:18 +00:00
const mainContent = document . createElement ( "div" )
2024-12-19 03:39:15 +00:00
mainContent . innerHTML = `
< div class = "minter-board-main" style = "padding: 20px; text-align: center;" >
< h1 style = "color: lightblue;" > AdminBoard < / h 1 >
< p style = "font-size: 1.25em;" > The Admin Board is an encrypted card publishing board to keep track of minter data for the Minter Admins . Any Admin may publish a card , and related data , make comments on existing cards , and vote on existing card data in support or not of the name on the card . It is essentially a 'project management' tool to assist the Minter Admins in keeping track of the data related to minters they are adding / removing from the minter group . < / p >
< p > More functionality will be added over time . One of the first features will be the ability to output the existing card data 'decisions' , to a json formatted list in order to allow crowetic to run his script easily until the final Mintership proposal changes are completed , and the MINTER group is transferred to 'null' . < / p >
< button id = "publish-card-button" class = "publish-card-button" style = "margin: 20px; padding: 10px;" > Publish Encrypted Card < / b u t t o n >
< button id = "refresh-cards-button" class = "refresh-cards-button" style = "padding: 10px;" > Refresh Cards < / b u t t o n >
2025-01-22 06:52:41 +00:00
< select id = "sort-select" style = "margin-left: 10px; padding: 5px;" >
< option value = "newest" selected > Sort by Date < / o p t i o n >
< option value = "name" > Sort by Name < / o p t i o n >
< option value = "recent-comments" > Newest Comments < / o p t i o n >
< option value = "least-votes" > Least Votes < / o p t i o n >
< option value = "most-votes" > Most Votes < / o p t i o n >
< / s e l e c t >
2025-01-16 03:14:16 +00:00
< div class = "show-card-checkbox" style = "margin-top: 1em;" >
< input type = "checkbox" id = "admin-show-hidden-checkbox" name = "adminHidden" / >
< label for = "admin-show-hidden-checkbox" > Show User - Hidden Cards ? < / l a b e l >
< input type = "checkbox" id = "admin-show-kicked-banned-checkbox" name = "kickedBanned" / >
< label for = "admin-show-kicked-banned-checkbox" > Show Kicked / Banned Cards ? < / l a b e l >
< / d i v >
2024-12-19 03:39:15 +00:00
< div id = "encrypted-cards-container" class = "cards-container" style = "margin-top: 20px;" > < / d i v >
< div id = "publish-card-view" class = "publish-card-view" style = "display: none; text-align: left; padding: 20px;" >
< form id = "publish-card-form" >
2025-01-01 03:48:34 +00:00
< h3 > Create or Update an Admin Card < / h 3 >
2024-12-24 08:27:17 +00:00
< div class = "publish-card-checkbox" style = "margin-top: 1em;" >
< input type = "checkbox" id = "topic-checkbox" name = "topicMode" / >
< label for = "topic-checkbox" > Is this a Topic instead of a Minter ? < / l a b e l >
< / d i v >
2025-01-01 03:48:34 +00:00
< label for = "minter-name-input" > Input TOPIC or NAME : < / l a b e l >
< input type = "text" id = "minter-name-input" maxlength = "100" placeholder = "input NAME or TOPIC" required >
2024-12-19 03:39:15 +00:00
< label for = "card-header" > Header : < / l a b e l >
< input type = "text" id = "card-header" maxlength = "100" placeholder = "Explain main point/issue" required >
< label for = "card-content" > Content : < / l a b e l >
2025-01-01 03:48:34 +00:00
< textarea id = "card-content" placeholder = "Enter any information you like... CHECK THE TOPIC CHECKBOX if you do not want to publish a NAME card. NAME cards are verified and can only be one per name. Links are displayed in in-app pop-up." required > < / t e x t a r e a >
2024-12-19 03:39:15 +00:00
< label for = "card-links" > Links ( qortal : //...):</label>
< div id = "links-container" >
< input type = "text" class = "card-link" placeholder = "Enter QDN link" >
< / d i v >
< button type = "button" id = "add-link-button" > Add Another Link < / b u t t o n >
< button type = "submit" id = "submit-publish-button" > Publish Card < / b u t t o n >
< button type = "button" id = "cancel-publish-button" > Cancel < / b u t t o n >
< / f o r m >
< / d i v >
< / d i v >
2024-12-31 05:39:18 +00:00
`
2025-01-22 05:23:25 +00:00
2024-12-31 05:39:18 +00:00
document . body . appendChild ( mainContent )
2024-12-19 03:39:15 +00:00
const publishCardButton = document . getElementById ( "publish-card-button" )
2025-01-16 03:14:16 +00:00
2024-12-19 03:39:15 +00:00
if ( publishCardButton ) {
publishCardButton . addEventListener ( "click" , async ( ) => {
const publishCardView = document . getElementById ( "publish-card-view" )
publishCardView . style . display = "flex"
document . getElementById ( "encrypted-cards-container" ) . style . display = "none"
} )
}
const refreshCardsButton = document . getElementById ( "refresh-cards-button" )
2025-01-16 03:14:16 +00:00
2024-12-19 03:39:15 +00:00
if ( refreshCardsButton ) {
refreshCardsButton . addEventListener ( "click" , async ( ) => {
const encryptedCardsContainer = document . getElementById ( "encrypted-cards-container" )
encryptedCardsContainer . innerHTML = "<p>Refreshing cards...</p>"
2025-01-01 03:48:34 +00:00
await fetchAllEncryptedCards ( true )
2024-12-19 03:39:15 +00:00
} )
}
const cancelPublishButton = document . getElementById ( "cancel-publish-button" )
2025-01-16 03:14:16 +00:00
2024-12-19 03:39:15 +00:00
if ( cancelPublishButton ) {
cancelPublishButton . addEventListener ( "click" , async ( ) => {
const encryptedCardsContainer = document . getElementById ( "encrypted-cards-container" )
encryptedCardsContainer . style . display = "flex" ; // Restore visibility
const publishCardView = document . getElementById ( "publish-card-view" )
publishCardView . style . display = "none" ; // Hide the publish form
} )
}
const addLinkButton = document . getElementById ( "add-link-button" )
2025-01-16 03:14:16 +00:00
2024-12-19 03:39:15 +00:00
if ( addLinkButton ) {
addLinkButton . 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 )
} )
}
2025-01-22 05:23:25 +00:00
const showKickedBannedCheckbox = document . getElementById ( 'admin-show-kicked-banned-checkbox' )
2025-01-16 03:14:16 +00:00
2025-01-22 05:23:25 +00:00
if ( showKickedBannedCheckbox ) {
showKickedBannedCheckbox . addEventListener ( 'change' , async ( event ) => {
await fetchAllEncryptedCards ( true ) ;
} )
}
const showHiddenCardsCheckbox = document . getElementById ( 'admin-show-hidden-checkbox' )
if ( showHiddenCardsCheckbox ) {
showHiddenCardsCheckbox . addEventListener ( 'change' , async ( event ) => {
await fetchAllEncryptedCards ( true )
} )
}
2025-01-16 03:14:16 +00:00
2024-12-19 03:39:15 +00:00
document . getElementById ( "publish-card-form" ) . addEventListener ( "submit" , async ( event ) => {
2024-12-31 05:39:18 +00:00
event . preventDefault ( )
const isTopicChecked = document . getElementById ( "topic-checkbox" ) . checked
2024-12-24 08:27:17 +00:00
// Pass that boolean to publishEncryptedCard
2024-12-31 05:39:18 +00:00
await publishEncryptedCard ( isTopicChecked )
} )
2025-01-16 03:14:16 +00:00
2025-01-22 06:52:41 +00:00
document . getElementById ( "sort-select" ) . addEventListener ( "change" , async ( ) => {
// Re-load the cards whenever user chooses a new sort option.
await fetchAllEncryptedCards ( )
} )
2025-01-05 04:28:26 +00:00
createScrollToTopButton ( )
2024-12-31 05:39:18 +00:00
// await fetchAndValidateAllAdminCards()
await updateOrSaveAdminGroupsDataLocally ( )
2025-01-09 04:26:24 +00:00
await fetchAllKicKBanTxData ( )
await fetchAllEncryptedCards ( )
2024-12-24 08:27:17 +00:00
}
2025-01-09 04:26:24 +00:00
const fetchAllKicKBanTxData = async ( ) => {
2025-01-22 05:23:25 +00:00
const kickTxType = "GROUP_KICK"
const banTxType = "GROUP_BAN"
// Helper function to filter transactions
const filterTransactions = ( rawTransactions ) => {
// Group transactions by member
const memberTxMap = rawTransactions . reduce ( ( map , tx ) => {
if ( ! map [ tx . member ] ) {
map [ tx . member ] = [ ]
}
map [ tx . member ] . push ( tx )
return map
} , { } )
// Filter out members with both pending and non-pending transactions
return Object . values ( memberTxMap )
. filter ( txs => txs . every ( tx => tx . approvalStatus !== 'PENDING' ) )
. flat ( )
// .filter((txs) => !(txs.some(tx => tx.approvalStatus === 'PENDING') &&
// txs.some(tx => tx.approvalStatus !== 'PENDING')))
// .flat()
}
2025-01-16 03:14:16 +00:00
2025-01-22 05:23:25 +00:00
// Fetch ban transactions
2025-01-16 03:14:16 +00:00
const rawBanTransactions = await searchTransactions ( {
txTypes : [ banTxType ] ,
address : '' ,
2025-01-09 04:26:24 +00:00
confirmationStatus : 'CONFIRMED' ,
limit : 0 ,
reverse : true ,
offset : 0 ,
startBlock : 1990000 ,
blockLimit : 0 ,
2025-01-16 03:14:16 +00:00
txGroupId : 0 ,
2025-01-22 05:23:25 +00:00
} )
// Filter transactions for bans
banTransactions = filterTransactions ( rawBanTransactions )
console . warn ( 'banTxData (filtered):' , banTransactions )
2025-01-09 04:26:24 +00:00
2025-01-22 05:23:25 +00:00
// Fetch kick transactions
2025-01-16 03:14:16 +00:00
const rawKickTransactions = await searchTransactions ( {
txTypes : [ kickTxType ] ,
2025-01-09 04:26:24 +00:00
address : '' ,
confirmationStatus : 'CONFIRMED' ,
limit : 0 ,
reverse : true ,
offset : 0 ,
startBlock : 1990000 ,
blockLimit : 0 ,
2025-01-16 03:14:16 +00:00
txGroupId : 0 ,
2025-01-22 05:23:25 +00:00
} )
2025-01-16 03:14:16 +00:00
2025-01-22 05:23:25 +00:00
// Filter transactions for kicks
kickTransactions = filterTransactions ( rawKickTransactions )
console . warn ( 'kickTxData (filtered):' , kickTransactions )
}
2025-01-09 04:26:24 +00:00
2024-12-24 08:27:17 +00:00
// Example: fetch and save admin public keys and count
const updateOrSaveAdminGroupsDataLocally = async ( ) => {
try {
// Fetch the array of admin public keys
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
const verifiedAdminPublicKeys = await fetchAdminGroupsMembersPublicKeys ( )
2024-12-24 08:27:17 +00:00
// Build an object containing the count and the array
const adminData = {
keysCount : verifiedAdminPublicKeys . length ,
publicKeys : verifiedAdminPublicKeys
2025-01-16 03:14:16 +00:00
}
2024-12-24 08:27:17 +00:00
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
adminPublicKeys = verifiedAdminPublicKeys
2024-12-24 08:27:17 +00:00
// Stringify and save to localStorage
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
localStorage . setItem ( 'savedAdminData' , JSON . stringify ( adminData ) )
2024-12-24 08:27:17 +00:00
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
console . log ( 'Admin public keys saved locally:' , adminData )
2024-12-24 08:27:17 +00:00
} catch ( error ) {
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
console . error ( 'Error fetching/storing admin public keys:' , error )
2024-12-24 08:27:17 +00:00
attemptLoadAdminDataCount ++
}
2024-12-31 05:39:18 +00:00
}
2024-12-24 08:27:17 +00:00
const loadOrFetchAdminGroupsData = async ( ) => {
try {
// Pull the JSON from localStorage
const storedData = localStorage . getItem ( 'savedAdminData' )
2025-01-16 03:14:16 +00:00
2024-12-24 08:27:17 +00:00
if ( ! storedData && attemptLoadAdminDataCount <= 3 ) {
console . log ( 'No saved admin public keys found in local storage. Fetching...' )
await updateOrSaveAdminGroupsDataLocally ( )
attemptLoadAdminDataCount ++
2025-01-16 03:14:16 +00:00
return null
2024-12-24 08:27:17 +00:00
}
// Parse the JSON, then store the global variables.
const parsedData = JSON . parse ( storedData )
adminMemberCount = parsedData . keysCount
adminPublicKeys = parsedData . publicKeys
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
console . log ( typeof adminPublicKeys ) ; // Should be "object"
console . log ( Array . isArray ( adminPublicKeys ) )
console . log ( ` Loaded admins 'keysCount'= ${ adminMemberCount } , publicKeys= ` , adminPublicKeys )
2024-12-24 08:27:17 +00:00
attemptLoadAdminDataCount = 0
2025-01-16 03:14:16 +00:00
return parsedData // and return { adminMemberCount, adminKeys } to the caller
2024-12-24 08:27:17 +00:00
} catch ( error ) {
console . error ( 'Error loading/parsing saved admin public keys:' , error )
return null
}
2024-12-19 03:39:15 +00:00
}
2024-12-29 06:49:18 +00:00
const extractEncryptedCardsMinterName = ( cardIdentifier ) => {
2025-01-16 03:14:16 +00:00
const parts = cardIdentifier . split ( '-' )
2024-12-19 03:39:15 +00:00
// Ensure the format has at least 3 parts
if ( parts . length < 3 ) {
2025-01-16 03:14:16 +00:00
throw new Error ( 'Invalid identifier format' )
2024-12-19 03:39:15 +00:00
}
2024-12-28 07:04:16 +00:00
2024-12-24 08:27:17 +00:00
if ( parts . slice ( 2 , - 1 ) . join ( '-' ) === 'TOPIC' ) {
console . log ( ` TOPIC found in identifier: ${ cardIdentifier } - not including in duplicatesList ` )
2024-12-29 06:49:18 +00:00
return
2024-12-24 08:27:17 +00:00
}
2024-12-19 03:39:15 +00:00
// Extract minterName (everything from the second part to the second-to-last part)
2024-12-31 05:39:18 +00:00
const minterName = parts . slice ( 2 , - 1 ) . join ( '-' )
2024-12-19 03:39:15 +00:00
// Return the extracted minterName
2024-12-31 05:39:18 +00:00
return minterName
2024-12-19 03:39:15 +00:00
}
2025-01-02 21:27:31 +00:00
const fetchAllEncryptedCards = async ( isRefresh = false ) => {
2024-12-31 05:39:18 +00:00
const encryptedCardsContainer = document . getElementById ( "encrypted-cards-container" )
encryptedCardsContainer . innerHTML = "<p>Loading cards...</p>"
2024-12-19 03:39:15 +00:00
try {
2024-12-28 07:04:16 +00:00
const response = await searchSimple ( 'MAIL_PRIVATE' , ` ${ encryptedCardIdentifierPrefix } ` , '' , 0 )
2024-12-19 03:39:15 +00:00
if ( ! response || ! Array . isArray ( response ) || response . length === 0 ) {
2024-12-31 05:39:18 +00:00
encryptedCardsContainer . innerHTML = "<p>No cards found.</p>"
return
2024-12-19 03:39:15 +00:00
}
2025-01-02 21:27:31 +00:00
// Validate and decrypt cards asynchronously
const validatedCards = await Promise . all (
response . map ( async ( card ) => {
try {
// Validate the card identifier
const isValid = await validateEncryptedCardIdentifier ( card )
if ( ! isValid ) return null
// Fetch and decrypt the card data
const cardDataResponse = await qortalRequest ( {
action : "FETCH_QDN_RESOURCE" ,
name : card . name ,
service : "MAIL_PRIVATE" ,
identifier : card . identifier ,
encoding : "base64" ,
} )
if ( ! cardDataResponse ) return null
const decryptedCardData = await decryptAndParseObject ( cardDataResponse )
// Skip cards without polls
if ( ! decryptedCardData . poll ) return null
return { card , decryptedCardData }
} catch ( error ) {
console . warn ( ` Error processing card ${ card . identifier } : ` , error )
return null
}
2024-12-19 03:39:15 +00:00
} )
2024-12-28 07:04:16 +00:00
)
2024-12-19 03:39:15 +00:00
2025-01-02 21:27:31 +00:00
// Filter out invalid or skipped cards
const validCardsWithData = validatedCards . filter ( ( entry ) => entry !== null )
if ( validCardsWithData . length === 0 ) {
encryptedCardsContainer . innerHTML = "<p>No valid cards found.</p>"
2025-01-16 03:14:16 +00:00
return
2024-12-19 03:39:15 +00:00
}
2025-01-02 21:27:31 +00:00
// Combine `processCards` logic: Deduplicate cards by identifier and keep latest timestamp
const latestCardsMap = new Map ( )
validCardsWithData . forEach ( ( { card , decryptedCardData } ) => {
const timestamp = card . updated || card . created || 0
const existingCard = latestCardsMap . get ( card . identifier )
if ( ! existingCard || timestamp > ( existingCard . card . updated || existingCard . card . created || 0 ) ) {
latestCardsMap . set ( card . identifier , { card , decryptedCardData } )
}
2024-12-31 05:39:18 +00:00
} )
2024-12-19 03:39:15 +00:00
2025-01-02 21:27:31 +00:00
const uniqueValidCards = Array . from ( latestCardsMap . values ( ) )
2024-12-19 03:39:15 +00:00
2025-01-02 21:27:31 +00:00
// Map to track the most recent card per minterName
const mostRecentCardsMap = new Map ( )
2024-12-19 03:39:15 +00:00
2025-01-02 21:27:31 +00:00
uniqueValidCards . forEach ( ( { card , decryptedCardData } ) => {
const obtainedMinterName = decryptedCardData . minterName
// Only check for cards that are NOT topic-based cards
if ( ( ! decryptedCardData . isTopic ) || decryptedCardData . isTopic === 'false' ) {
const cardTimestamp = card . updated || card . created || 0
2024-12-31 05:39:18 +00:00
2025-01-02 21:27:31 +00:00
if ( obtainedMinterName ) {
const existingEntry = mostRecentCardsMap . get ( obtainedMinterName )
// Replace only if the current card is more recent
if ( ! existingEntry || cardTimestamp > ( existingEntry . card . updated || existingEntry . card . created || 0 ) ) {
mostRecentCardsMap . set ( obtainedMinterName , { card , decryptedCardData } )
}
2024-12-19 03:39:15 +00:00
}
2025-01-02 21:27:31 +00:00
} else {
console . log ( ` topic card detected, skipping most recent by name mapping... ` )
// We still need to add the topic-based cards to the map, as it will be utilized in the next step
mostRecentCardsMap . set ( obtainedMinterName , { card , decryptedCardData } )
}
} )
2024-12-19 03:39:15 +00:00
2025-01-02 21:27:31 +00:00
// Convert the map into an array of final cards
const finalCards = Array . from ( mostRecentCardsMap . values ( ) ) ;
2024-12-27 19:49:07 +00:00
2025-01-22 06:52:41 +00:00
let selectedSort = 'newest'
const sortSelect = document . getElementById ( 'sort-select' )
if ( sortSelect ) {
selectedSort = sortSelect . value
}
if ( selectedSort === 'name' ) {
// Sort alphabetically by the minter's name
finalCards . sort ( ( a , b ) => {
const nameA = a . decryptedCardData . minterName ? . toLowerCase ( ) || ''
const nameB = b . decryptedCardData . minterName ? . toLowerCase ( ) || ''
return nameA . localeCompare ( nameB )
} )
} else if ( selectedSort === 'recent-comments' ) {
// We need each card's newest comment timestamp for sorting
for ( let card of finalCards ) {
card . newestCommentTimestamp = await getNewestAdminCommentTimestamp ( card . card . identifier )
}
// Then sort descending by newest comment
finalCards . sort ( ( a , b ) =>
( b . newestCommentTimestamp || 0 ) - ( a . newestCommentTimestamp || 0 )
)
} else if ( selectedSort === 'least-votes' ) {
// TODO: Add the logic to sort by LEAST total ADMIN votes, then totalYesWeight
const minterGroupMembers = await fetchMinterGroupMembers ( )
const minterAdmins = await fetchMinterGroupAdmins ( )
for ( const finalCard of finalCards ) {
try {
const pollName = finalCard . decryptedCardData . poll
// If card or poll is missing, default to zero
if ( ! pollName ) {
finalCard . _adminTotalVotes = 0
finalCard . _yesWeight = 0
continue
}
const pollResults = await fetchPollResults ( pollName )
if ( ! pollResults || pollResults . error ) {
finalCard . _adminTotalVotes = 0
finalCard . _yesWeight = 0
continue
}
// Pull only the adminYes/adminNo/totalYesWeight from processPollData
const {
adminYes ,
adminNo ,
totalYesWeight
} = await processPollData (
pollResults ,
minterGroupMembers ,
minterAdmins ,
finalCard . decryptedCardData . creator ,
finalCard . card . identifier
)
finalCard . _adminTotalVotes = adminYes + adminNo
finalCard . _yesWeight = totalYesWeight
} catch ( error ) {
console . warn ( ` Error fetching or processing poll for card ${ finalCard . card . identifier } : ` , error )
finalCard . _adminTotalVotes = 0
finalCard . _yesWeight = 0
}
}
// Sort ascending by (adminYes + adminNo), then descending by totalYesWeight
finalCards . sort ( ( a , b ) => {
const diffAdminTotal = a . _adminTotalVotes - b . _adminTotalVotes
if ( diffAdminTotal !== 0 ) return diffAdminTotal
// If there's a tie, show the card with higher yesWeight first
return b . _yesWeight - a . _yesWeight
} )
} else if ( selectedSort === 'most-votes' ) {
// TODO: Add the logic to sort by MOST total ADMIN votes, then totalYesWeight
const minterGroupMembers = await fetchMinterGroupMembers ( )
const minterAdmins = await fetchMinterGroupAdmins ( )
for ( const finalCard of finalCards ) {
try {
const pollName = finalCard . decryptedCardData . poll
if ( ! pollName ) {
finalCard . _adminTotalVotes = 0
finalCard . _yesWeight = 0
continue
}
const pollResults = await fetchPollResults ( pollName )
if ( ! pollResults || pollResults . error ) {
finalCard . _adminTotalVotes = 0
finalCard . _yesWeight = 0
continue
}
const {
adminYes ,
adminNo ,
totalYesWeight
} = await processPollData (
pollResults ,
minterGroupMembers ,
minterAdmins ,
finalCard . decryptedCardData . creator ,
finalCard . card . identifier
)
finalCard . _adminTotalVotes = adminYes + adminNo
finalCard . _yesWeight = totalYesWeight
} catch ( error ) {
console . warn ( ` Error fetching or processing poll for card ${ finalCard . card . identifier } : ` , error )
finalCard . _adminTotalVotes = 0
finalCard . _yesWeight = 0
}
}
// Sort descending by (adminYes + adminNo), then descending by totalYesWeight
finalCards . sort ( ( a , b ) => {
const diffAdminTotal = b . _adminTotalVotes - a . _adminTotalVotes
if ( diffAdminTotal !== 0 ) return diffAdminTotal
return b . _yesWeight - a . _yesWeight
} )
} else {
// Sort cards by timestamp (most recent first)
finalCards . sort ( ( a , b ) => {
const timestampA = a . card . updated || a . card . created || 0
const timestampB = b . card . updated || b . card . created || 0
return timestampB - timestampA ;
} )
}
2025-01-02 21:27:31 +00:00
encryptedCardsContainer . innerHTML = ""
2025-01-16 03:14:16 +00:00
const finalVisualFilterCards = finalCards . filter ( ( { card } ) => {
const showKickedBanned = document . getElementById ( 'admin-show-kicked-banned-checkbox' ) ? . checked ? ? false
const showHiddenAdminCards = document . getElementById ( 'admin-show-hidden-checkbox' ) ? . checked ? ? false
if ( ! showKickedBanned ) {
if ( adminBoardState . bannedCards . has ( card . identifier ) ) {
return false // skip
}
if ( adminBoardState . kickedCards . has ( card . identifier ) ) {
return false // skip
}
}
if ( ! showHiddenAdminCards ) {
if ( adminBoardState . hiddenList . has ( card . identifier ) ) {
return false // skip
}
}
return true
} )
console . warn ( ` sharing current adminBoardState... ` , adminBoardState )
2025-01-02 21:27:31 +00:00
// Display skeleton cards immediately
2025-01-16 03:14:16 +00:00
finalVisualFilterCards . forEach ( ( { card } ) => {
2025-01-02 21:27:31 +00:00
const skeletonHTML = createSkeletonCardHTML ( card . identifier )
encryptedCardsContainer . insertAdjacentHTML ( "beforeend" , skeletonHTML )
2025-01-16 03:14:16 +00:00
} )
2025-01-01 03:48:34 +00:00
2025-01-02 21:27:31 +00:00
// Fetch poll results and update each card
await Promise . all (
2025-01-16 03:14:16 +00:00
finalVisualFilterCards . map ( async ( { card , decryptedCardData } ) => {
2025-01-02 21:27:31 +00:00
try {
// Validate poll publisher keys
const encryptedCardPollPublisherPublicKey = await getPollPublisherPublicKey ( decryptedCardData . poll )
const encryptedCardPublisherPublicKey = await getPublicKeyByName ( card . name )
if ( encryptedCardPollPublisherPublicKey !== encryptedCardPublisherPublicKey ) {
console . warn ( ` QuickMythril cardPollHijack attack detected! Skipping card: ${ card . identifier } ` )
2025-01-01 03:48:34 +00:00
removeSkeleton ( card . identifier )
return
}
2024-12-19 03:39:15 +00:00
2025-01-02 21:27:31 +00:00
// Fetch poll results
const pollResults = await fetchPollResults ( decryptedCardData . poll )
if ( pollResults ? . error ) {
console . warn ( ` Skipping card with failed poll results: ${ card . identifier } ` )
removeSkeleton ( card . identifier ) ;
return ;
}
const encryptedCommentCount = await getEncryptedCommentCount ( card . identifier )
// Generate final card HTML
const finalCardHTML = await createEncryptedCardHTML (
decryptedCardData ,
pollResults ,
card . identifier ,
encryptedCommentCount
)
2025-01-16 03:14:16 +00:00
if ( ( ! finalCardHTML ) || ( finalCardHTML === '' ) ) {
removeSkeleton ( card . identifier )
}
2025-01-02 21:27:31 +00:00
replaceSkeleton ( card . identifier , finalCardHTML )
} catch ( error ) {
console . error ( ` Error finalizing card ${ card . identifier } : ` , error )
removeSkeleton ( card . identifier )
}
} )
)
2024-12-19 03:39:15 +00:00
} catch ( error ) {
2024-12-31 05:39:18 +00:00
console . error ( "Error loading cards:" , error )
encryptedCardsContainer . innerHTML = "<p>Failed to load cards.</p>"
2024-12-19 03:39:15 +00:00
}
2024-12-31 05:39:18 +00:00
}
2024-12-19 03:39:15 +00:00
// Function to create a skeleton card
const createEncryptedSkeletonCardHTML = ( cardIdentifier ) => {
return `
< div id = "skeleton-${cardIdentifier}" class = "skeleton-card" style = "padding: 10px; border: 1px solid gray; margin: 10px 0;" >
< div style = "display: flex; align-items: center;" >
< div style = "width: 50px; height: 50px; background-color: #ccc; border-radius: 50%;" > < / d i v >
< div style = "margin-left: 10px;" >
< div style = "width: 120px; height: 20px; background-color: #ccc; margin-bottom: 5px;" > < / d i v >
< div style = "width: 80px; height: 15px; background-color: #ddd;" > < / d i v >
< / d i v >
< / d i v >
< div style = "margin-top: 10px;" >
< div style = "width: 100%; height: 40px; background-color: #eee;" > < / d i v >
< / d i v >
< / d i v >
2024-12-31 05:39:18 +00:00
`
}
2024-12-19 03:39:15 +00:00
// Function to check and fech an existing Minter Card if attempting to publish twice ----------------------------------------
2025-01-01 03:48:34 +00:00
const fetchExistingEncryptedCard = async ( minterName , existingIdentifier ) => {
try {
const cardDataResponse = await qortalRequest ( {
action : "FETCH_QDN_RESOURCE" ,
name : minterName ,
service : "MAIL_PRIVATE" ,
identifier : existingIdentifier ,
encoding : "base64"
} )
2024-12-19 03:39:15 +00:00
2025-01-01 03:48:34 +00:00
const decryptedCardData = await decryptAndParseObject ( cardDataResponse )
console . log ( "Full card data fetched successfully:" , decryptedCardData )
2024-12-19 03:39:15 +00:00
2025-01-01 03:48:34 +00:00
return decryptedCardData
2024-12-19 03:39:15 +00:00
} catch ( error ) {
2025-01-01 21:47:45 +00:00
console . error ( "Error fetching existing card:" , error )
2024-12-31 05:39:18 +00:00
return null
2024-12-19 03:39:15 +00:00
}
2024-12-31 05:39:18 +00:00
}
2024-12-19 03:39:15 +00:00
// Validate that a card is indeed a card and not a comment. -------------------------------------
const validateEncryptedCardIdentifier = async ( card ) => {
return (
typeof card === "object" &&
card . name &&
card . service === "MAIL_PRIVATE" &&
2025-01-02 21:27:31 +00:00
card . identifier && ! card . identifier . includes ( "comment" ) && ! card . identifier . includes ( "card-MAC-NC-function now() { [native code] }-Y6CmuY" ) && // Added check for failed name card publish due to identifier issue.
2024-12-19 03:39:15 +00:00
card . created
2024-12-31 05:39:18 +00:00
)
2024-12-19 03:39:15 +00:00
}
// Load existing card data passed, into the form for editing -------------------------------------
2025-01-01 03:48:34 +00:00
const loadEncryptedCardIntoForm = async ( decryptedCardData ) => {
if ( decryptedCardData ) {
2025-01-16 03:14:16 +00:00
console . log ( "Loading existing card data:" , decryptedCardData )
2025-01-01 03:48:34 +00:00
document . getElementById ( "minter-name-input" ) . value = decryptedCardData . minterName
document . getElementById ( "card-header" ) . value = decryptedCardData . header
document . getElementById ( "card-content" ) . value = decryptedCardData . content
2024-12-19 03:39:15 +00:00
2024-12-31 05:39:18 +00:00
const linksContainer = document . getElementById ( "links-container" )
2024-12-19 03:39:15 +00:00
linksContainer . innerHTML = "" ; // Clear previous links
2025-01-01 03:48:34 +00:00
decryptedCardData . links . forEach ( link => {
2024-12-31 05:39:18 +00:00
const linkInput = document . createElement ( "input" )
linkInput . type = "text"
linkInput . className = "card-link"
linkInput . value = link
linksContainer . appendChild ( linkInput )
} )
2024-12-19 03:39:15 +00:00
}
}
const validateMinterName = async ( minterName ) => {
try {
const nameInfo = await getNameInfo ( minterName )
const name = nameInfo . name
2025-01-13 23:53:20 +00:00
if ( name ) {
console . log ( ` name information found, returning: ` , name )
return name
} else {
console . warn ( ` no name information found, this is not a registered name: ' ${ minterName } ', Returning null ` , name )
return null
}
2024-12-19 03:39:15 +00:00
} catch ( error ) {
console . error ( ` extracting name from name info: ${ minterName } failed. ` , error )
2025-01-07 02:43:54 +00:00
return null
2024-12-19 03:39:15 +00:00
}
}
2024-12-24 08:27:17 +00:00
const publishEncryptedCard = async ( isTopicModePassed = false ) => {
// If the user wants it to be a topic, we set global isTopic = true, else false
2024-12-29 06:49:18 +00:00
isTopic = isTopicModePassed || isTopic
2024-12-24 08:27:17 +00:00
2024-12-31 05:39:18 +00:00
const minterNameInput = document . getElementById ( "minter-name-input" ) . value . trim ( )
const header = document . getElementById ( "card-header" ) . value . trim ( )
const content = document . getElementById ( "card-content" ) . value . trim ( )
2024-12-19 03:39:15 +00:00
const links = Array . from ( document . querySelectorAll ( ".card-link" ) )
. map ( input => input . value . trim ( ) )
2024-12-31 05:39:18 +00:00
. filter ( link => link . startsWith ( "qortal://" ) )
2024-12-19 03:39:15 +00:00
2024-12-24 08:27:17 +00:00
// Basic validation
2024-12-19 03:39:15 +00:00
if ( ! header || ! content ) {
2024-12-31 05:39:18 +00:00
alert ( "Header and Content are required!" )
return
2024-12-19 03:39:15 +00:00
}
2024-12-31 05:39:18 +00:00
let publishedMinterName = minterNameInput
2024-12-19 03:39:15 +00:00
2024-12-24 08:27:17 +00:00
// If not topic mode, validate the user actually entered a valid Minter name
if ( ! isTopic ) {
2024-12-29 06:49:18 +00:00
publishedMinterName = await validateMinterName ( minterNameInput )
2024-12-24 08:27:17 +00:00
if ( ! publishedMinterName ) {
2025-01-01 03:48:34 +00:00
alert ( ` " ${ minterNameInput } " doesn't seem to be a valid name. Please check or use topic mode. ` )
2024-12-29 06:49:18 +00:00
return
2024-12-24 08:27:17 +00:00
}
// Also check for existing card if not topic
2025-01-01 03:48:34 +00:00
if ( ! isUpdateCard && existingCardMinterNames . some ( item => item . minterName === publishedMinterName ) ) {
const duplicateCardData = existingCardMinterNames . find ( item => item . minterName === publishedMinterName )
2024-12-24 08:27:17 +00:00
const updateCard = confirm (
2025-01-01 03:48:34 +00:00
` Minter Name: ${ publishedMinterName } already has a card. Duplicate name-based cards are not allowed. You can OVERWRITE it or Cancel publishing. UPDATE CARD? `
2024-12-29 06:49:18 +00:00
)
2024-12-24 08:27:17 +00:00
if ( updateCard ) {
2025-01-01 03:48:34 +00:00
existingEncryptedCardIdentifier = duplicateCardData . identifier
isUpdateCard = true
2024-12-24 08:27:17 +00:00
} else {
2024-12-29 06:49:18 +00:00
return
2024-12-19 03:39:15 +00:00
}
}
}
2024-12-24 08:27:17 +00:00
// Determine final card identifier
2025-01-02 21:27:31 +00:00
const currentTimestamp = Date . now ( )
2024-12-24 08:27:17 +00:00
const newCardIdentifier = isTopic
? ` ${ encryptedCardIdentifierPrefix } -TOPIC- ${ await uid ( ) } `
2025-01-02 21:27:31 +00:00
: ` ${ encryptedCardIdentifierPrefix } -NC- ${ currentTimestamp } - ${ await uid ( ) } `
2024-12-19 03:39:15 +00:00
2025-01-01 03:48:34 +00:00
const cardIdentifier = isUpdateCard ? existingEncryptedCardIdentifier : newCardIdentifier
2024-12-24 08:27:17 +00:00
// Build cardData
2024-12-29 06:49:18 +00:00
const pollName = ` ${ cardIdentifier } -poll `
2024-12-19 03:39:15 +00:00
const cardData = {
2024-12-24 08:27:17 +00:00
minterName : publishedMinterName ,
2024-12-19 03:39:15 +00:00
header ,
content ,
links ,
creator : userState . accountName ,
timestamp : Date . now ( ) ,
poll : pollName ,
2024-12-24 08:27:17 +00:00
topicMode : isTopic
2024-12-29 06:49:18 +00:00
}
2024-12-19 03:39:15 +00:00
2024-12-24 08:27:17 +00:00
try {
// Convert to base64 or fallback
2024-12-31 05:39:18 +00:00
let base64CardData = await objectToBase64 ( cardData )
2024-12-19 03:39:15 +00:00
if ( ! base64CardData ) {
2024-12-31 05:39:18 +00:00
base64CardData = btoa ( JSON . stringify ( cardData ) )
2024-12-19 03:39:15 +00:00
}
2024-12-24 08:27:17 +00:00
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
let verifiedAdminPublicKeys = adminPublicKeys
if ( ( ! verifiedAdminPublicKeys ) || verifiedAdminPublicKeys . length <= 5 || ! Array . isArray ( verifiedAdminPublicKeys ) ) {
console . log ( ` adminPublicKeys variable failed check, attempting to load from localStorage ` , adminPublicKeys )
const savedAdminData = localStorage . getItem ( 'savedAdminData' )
const parsedAdminData = JSON . parse ( savedAdminData )
const loadedAdminKeys = parsedAdminData . publicKeys
if ( ( ! loadedAdminKeys ) || ( ! Array . isArray ( loadedAdminKeys ) ) || ( loadedAdminKeys . length === 0 ) ) {
console . log ( 'loaded admin keys from localStorage failed, falling back to API call...' )
verifiedAdminPublicKeys = await fetchAdminGroupsMembersPublicKeys ( )
}
verifiedAdminPublicKeys = loadedAdminKeys
}
2024-12-24 08:27:17 +00:00
2024-12-19 03:39:15 +00:00
await qortalRequest ( {
action : "PUBLISH_QDN_RESOURCE" ,
name : userState . accountName ,
service : "MAIL_PRIVATE" ,
identifier : cardIdentifier ,
data64 : base64CardData ,
encrypt : true ,
publicKeys : verifiedAdminPublicKeys
2024-12-29 06:49:18 +00:00
} )
2024-12-19 03:39:15 +00:00
2025-01-22 06:52:41 +00:00
// Possibly create a poll if it's a brand new card
2025-01-01 03:48:34 +00:00
if ( ! isUpdateCard ) {
2024-12-24 08:27:17 +00:00
await qortalRequest ( {
action : "CREATE_POLL" ,
pollName ,
pollDescription : ` Admin Board Poll Published By ${ userState . accountName } ` ,
pollOptions : [ "Yes, No" ] ,
pollOwnerAddress : userState . accountAddress
2024-12-29 06:49:18 +00:00
} )
alert ( "Card and poll published successfully!" )
2024-12-24 08:27:17 +00:00
} else {
alert ( "Card updated successfully! (No poll updates possible currently...)" ) ;
2024-12-19 03:39:15 +00:00
}
2024-12-31 05:39:18 +00:00
document . getElementById ( "publish-card-form" ) . reset ( )
document . getElementById ( "publish-card-view" ) . style . display = "none"
document . getElementById ( "encrypted-cards-container" ) . style . display = "flex"
2024-12-24 08:27:17 +00:00
isTopic = false ; // reset global
2024-12-19 03:39:15 +00:00
} catch ( error ) {
2024-12-31 05:39:18 +00:00
console . error ( "Error publishing card or poll:" , error )
alert ( "Failed to publish card and poll." )
2024-12-19 03:39:15 +00:00
}
2024-12-31 05:39:18 +00:00
}
2024-12-24 08:27:17 +00:00
2024-12-19 03:39:15 +00:00
2024-12-21 06:07:18 +00:00
const getEncryptedCommentCount = async ( cardIdentifier ) => {
2024-12-20 05:28:36 +00:00
try {
2024-12-28 07:04:16 +00:00
const response = await searchSimple ( 'MAIL_PRIVATE' , ` comment- ${ cardIdentifier } ` , '' , 0 )
2024-12-29 06:49:18 +00:00
2024-12-28 07:04:16 +00:00
return Array . isArray ( response ) ? response . length : 0
2024-12-20 05:28:36 +00:00
} catch ( error ) {
2024-12-28 07:04:16 +00:00
console . error ( ` Error fetching comment count for ${ cardIdentifier } : ` , error )
return 0
2024-12-20 05:28:36 +00:00
}
2024-12-29 06:49:18 +00:00
}
2024-12-20 05:28:36 +00:00
2024-12-19 03:39:15 +00:00
// Post a comment on a card. ---------------------------------
const postEncryptedComment = async ( cardIdentifier ) => {
2024-12-29 06:49:18 +00:00
const commentInput = document . getElementById ( ` new-comment- ${ cardIdentifier } ` )
const commentText = commentInput . value . trim ( )
2024-12-19 03:39:15 +00:00
if ( ! commentText ) {
2024-12-29 06:49:18 +00:00
alert ( 'Comment cannot be empty!' )
return
2024-12-19 03:39:15 +00:00
}
2024-12-20 05:28:36 +00:00
const postTimestamp = Date . now ( )
2024-12-19 03:39:15 +00:00
const commentData = {
content : commentText ,
creator : userState . accountName ,
timestamp : postTimestamp ,
2024-12-29 06:49:18 +00:00
}
const commentIdentifier = ` comment- ${ cardIdentifier } - ${ await uid ( ) } `
2024-12-19 03:39:15 +00:00
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
if ( ! Array . isArray ( adminPublicKeys ) || ( adminPublicKeys . length === 0 ) || ( ! adminPublicKeys ) ) {
console . log ( 'adminPpublicKeys variable failed checks, calling for admin public keys from API (comment)' , adminPublicKeys )
const verifiedAdminPublicKeys = await fetchAdminGroupsMembersPublicKeys ( )
2024-12-19 03:39:15 +00:00
adminPublicKeys = verifiedAdminPublicKeys
2024-12-24 08:27:17 +00:00
}
2024-12-19 03:39:15 +00:00
try {
2024-12-29 06:49:18 +00:00
const base64CommentData = await objectToBase64 ( commentData )
2024-12-19 03:39:15 +00:00
if ( ! base64CommentData ) {
2024-12-29 06:49:18 +00:00
console . log ( ` initial base64 object creation with objectToBase64 failed, using btoa... ` )
base64CommentData = btoa ( JSON . stringify ( commentData ) )
2024-12-19 03:39:15 +00:00
}
2024-12-29 06:49:18 +00:00
await qortalRequest ( {
action : "PUBLISH_QDN_RESOURCE" ,
name : userState . accountName ,
service : "MAIL_PRIVATE" ,
identifier : commentIdentifier ,
data64 : base64CommentData ,
encrypt : true ,
publicKeys : adminPublicKeys
} )
2025-01-16 03:14:16 +00:00
// alert('Comment posted successfully!')
2024-12-29 06:49:18 +00:00
commentInput . value = ''
2024-12-19 03:39:15 +00:00
} catch ( error ) {
2024-12-29 06:49:18 +00:00
console . error ( 'Error posting comment:' , error )
alert ( 'Failed to post comment.' )
2024-12-19 03:39:15 +00:00
}
2024-12-29 06:49:18 +00:00
}
2024-12-19 03:39:15 +00:00
//Fetch the comments for a card with passed card identifier ----------------------------
const fetchEncryptedComments = async ( cardIdentifier ) => {
try {
2024-12-31 05:39:18 +00:00
const response = await searchSimple ( 'MAIL_PRIVATE' , ` comment- ${ cardIdentifier } ` , '' , 0 , 0 , '' , false )
2024-12-28 07:04:16 +00:00
if ( response ) {
2025-01-01 21:47:45 +00:00
return response
2024-12-28 07:04:16 +00:00
}
2024-12-19 03:39:15 +00:00
} catch ( error ) {
2024-12-29 06:49:18 +00:00
console . error ( ` Error fetching comments for ${ cardIdentifier } : ` , error )
return [ ]
2024-12-19 03:39:15 +00:00
}
2024-12-29 06:49:18 +00:00
}
2024-12-19 03:39:15 +00:00
const displayEncryptedComments = async ( cardIdentifier ) => {
try {
2024-12-29 06:49:18 +00:00
const comments = await fetchEncryptedComments ( cardIdentifier )
const commentsContainer = document . getElementById ( ` comments-container- ${ cardIdentifier } ` )
2025-01-01 21:47:45 +00:00
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 : "MAIL_PRIVATE" ,
identifier : comment . identifier ,
encoding : "base64" ,
} )
const decryptedCommentData = await decryptAndParseObject ( commentDataResponse )
const timestampCheck = comment . updated || comment . created || 0
const timestamp = await timestampToHumanReadableDate ( timestampCheck )
const commenter = decryptedCommentData . creator
const voterInfo = voterMap . get ( commenter )
let commentColor = "transparent"
let adminBadge = ""
if ( voterInfo ) {
if ( voterInfo . voterType === "Admin" ) {
// Admin-specific colors
commentColor = voterInfo . vote === "yes" ? "rgba(25, 175, 25, 0.6)" : "rgba(194, 39, 62, 0.6)" // Light green for yes, light red for no
const badgeColor = voterInfo . vote === "yes" ? "green" : "red"
adminBadge = ` <span style="color: ${ badgeColor } ; font-weight: bold; margin-left: 0.5em;">(Admin)</span> `
} else {
// Non-admin colors
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 `
< div class = "comment" style = "border: 1px solid gray; margin: 1vh 0; padding: 1vh; background: ${commentColor};" >
< p >
< strong > < u > $ { decryptedCommentData . creator } < / u > < / s t r o n g >
$ { adminBadge }
< / p >
< p > $ { decryptedCommentData . content } < / p >
< p > < i > $ { timestamp } < / i > < / p >
< / d i v >
`
} catch ( err ) {
console . error ( ` Error processing comment ${ comment . identifier } : ` , err )
return null // Skip this comment if it fails
}
2024-12-29 06:49:18 +00:00
} )
2025-01-01 21:47:45 +00:00
)
2024-12-19 03:39:15 +00:00
2025-01-01 21:47:45 +00:00
// Add all comments to the container
commentHTMLArray
. filter ( ( html ) => html !== null ) // Filter out failed comments
. forEach ( ( commentHTML ) => {
commentsContainer . insertAdjacentHTML ( 'beforeend' , commentHTML )
} )
2024-12-19 03:39:15 +00:00
} catch ( error ) {
2024-12-29 06:49:18 +00:00
console . error ( ` Error displaying comments (or no comments) for ${ cardIdentifier } : ` , error )
2024-12-19 03:39:15 +00:00
}
2024-12-29 06:49:18 +00:00
}
2024-12-19 03:39:15 +00:00
2025-01-01 21:47:45 +00:00
2024-12-19 03:39:15 +00:00
const toggleEncryptedComments = async ( cardIdentifier ) => {
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
const commentsSection = document . getElementById ( ` comments-section- ${ cardIdentifier } ` )
const commentButton = document . getElementById ( ` comment-button- ${ cardIdentifier } ` )
2024-12-29 06:49:18 +00:00
if ( ! commentsSection || ! commentButton ) return
const count = commentButton . dataset . commentCount ;
const isHidden = ( commentsSection . style . display === 'none' || ! commentsSection . style . display )
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
if ( isHidden ) {
// Show comments
2024-12-29 06:49:18 +00:00
commentButton . textContent = "LOADING..."
await displayEncryptedComments ( cardIdentifier )
commentsSection . style . display = 'block'
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
// Change the button text to 'HIDE COMMENTS'
2024-12-29 06:49:18 +00:00
commentButton . textContent = 'HIDE COMMENTS'
2024-12-19 03:39:15 +00:00
} else {
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
// Hide comments
2024-12-29 06:49:18 +00:00
commentsSection . style . display = 'none'
commentButton . textContent = ` COMMENTS ( ${ count } ) `
2024-12-19 03:39:15 +00:00
}
2024-12-29 06:49:18 +00:00
}
2024-12-19 03:39:15 +00:00
const createLinkDisplayModal = async ( ) => {
const modalHTML = `
2024-12-29 06:49:18 +00:00
< div id = "links-modal" style = "display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 1000;" >
2024-12-19 03:39:15 +00:00
< div style = "position: relative; margin: 10% auto; width: 95%; height: 80%; background: white; border-radius: 10px; overflow: hidden;" >
2024-12-29 06:49:18 +00:00
< iframe id = "links-modalContent" src = "" style = "width: 100%; height: 100%; border: none;" > < / i f r a m e >
2024-12-19 03:39:15 +00:00
< button onclick = "closeLinkDisplayModal()" style = "position: absolute; top: 10px; right: 10px; background: red; color: white; border: none; padding: 5px 10px; border-radius: 5px;" > Close < / b u t t o n >
< / d i v >
< / d i v >
2024-12-29 06:49:18 +00:00
`
document . body . insertAdjacentHTML ( 'beforeend' , modalHTML )
2024-12-19 03:39:15 +00:00
}
// Function to open the modal
const openLinkDisplayModal = async ( link ) => {
const processedLink = await processQortalLinkForRendering ( link ) // Process the link to replace `qortal://` for rendering in modal
2025-01-01 21:47:45 +00:00
const modal = document . getElementById ( 'links-modal' )
const modalContent = document . getElementById ( 'links-modalContent' )
modalContent . src = processedLink // Set the iframe source to the link
modal . style . display = 'block' // Show the modal
2024-12-19 03:39:15 +00:00
}
// Function to close the modal
const closeLinkDisplayModal = async ( ) => {
2025-01-01 21:47:45 +00:00
const modal = document . getElementById ( 'links-modal' )
const modalContent = document . getElementById ( 'links-modalContent' )
modal . style . display = 'none' // Hide the modal
modalContent . src = '' // Clear the iframe source
2024-12-19 03:39:15 +00:00
}
const processQortalLinkForRendering = async ( link ) => {
if ( link . startsWith ( 'qortal://' ) ) {
2024-12-29 06:49:18 +00:00
const match = link . match ( /^qortal:\/\/([^/]+)(\/.*)?$/ )
2024-12-19 03:39:15 +00:00
if ( match ) {
2025-01-01 21:47:45 +00:00
const firstParam = match [ 1 ] . toUpperCase ( )
2024-12-29 06:49:18 +00:00
const remainingPath = match [ 2 ] || ""
const themeColor = window . _qdnTheme || 'default' // Fallback to 'default' if undefined
2024-12-21 06:07:18 +00:00
// Simulating async operation if needed
2024-12-29 06:49:18 +00:00
await new Promise ( resolve => setTimeout ( resolve , 10 ) )
2024-12-21 06:07:18 +00:00
2024-12-29 06:49:18 +00:00
return ` /render/ ${ firstParam } ${ remainingPath } ?theme= ${ themeColor } `
2024-12-21 06:07:18 +00:00
}
}
2024-12-29 06:49:18 +00:00
return link
}
2024-12-21 06:07:18 +00:00
2025-01-09 04:26:24 +00:00
const checkAndDisplayRemoveActions = async ( adminYes , name , cardIdentifier ) => {
2025-01-07 02:43:54 +00:00
const latestBlockInfo = await getLatestBlockInfo ( )
const isBlockPassed = latestBlockInfo . height >= GROUP _APPROVAL _FEATURE _TRIGGER _HEIGHT
2025-01-09 04:26:24 +00:00
let minAdminCount
2025-01-07 02:43:54 +00:00
const minterAdmins = await fetchMinterGroupAdmins ( )
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 } ` )
2025-01-09 04:26:24 +00:00
minAdminCount = 9
2025-01-07 02:43:54 +00:00
} 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 } ` )
}
2025-01-09 04:26:24 +00:00
if ( isBlockPassed && userState . isMinterAdmin ) {
console . warn ( ` feature trigger has passed, checking for approval requirements ` )
const addressInfo = await getNameInfo ( name )
const address = addressInfo . owner
const kickApprovalHtml = await checkGroupApprovalAndCreateButton ( address , cardIdentifier , "GROUP_KICK" )
const banApprovalHtml = await checkGroupApprovalAndCreateButton ( address , cardIdentifier , "GROUP_BAN" )
if ( kickApprovalHtml ) {
return kickApprovalHtml
}
if ( banApprovalHtml ) {
return banApprovalHtml
}
}
2025-01-07 02:43:54 +00:00
2025-01-09 04:26:24 +00:00
if ( adminYes >= minAdminCount && userState . isMinterAdmin ) {
const removeButtonHtml = createRemoveButtonHtml ( name , cardIdentifier )
2025-01-07 02:43:54 +00:00
return removeButtonHtml
2025-01-09 04:26:24 +00:00
} else {
return ''
2025-01-07 02:43:54 +00:00
}
2025-01-09 04:26:24 +00:00
2025-01-07 02:43:54 +00:00
}
const createRemoveButtonHtml = ( name , cardIdentifier ) => {
return `
< div id = "remove-button-container-${cardIdentifier}" style = "margin-top: 1em;" >
< button onclick = "handleKickMinter('${name}')"
style = "padding: 10px; background: rgb(134, 80, 4); color: white; border: none; cursor: pointer; border-radius: 5px;"
onmouseover = "this.style.backgroundColor='rgb(47, 28, 11) '"
onmouseout = "this.style.backgroundColor='rgb(134, 80, 4) '" >
2025-01-13 23:53:20 +00:00
Create KICK Tx
2025-01-07 02:43:54 +00:00
< / b u t t o n >
< button onclick = "handleBanMinter('${name}')"
style = "padding: 10px; background:rgb(93, 7, 7); color: white; border: none; cursor: pointer; border-radius: 5px;"
onmouseover = "this.style.backgroundColor='rgb(39, 9, 9) '"
onmouseout = "this.style.backgroundColor='rgb(93, 7, 7) '" >
2025-01-13 23:53:20 +00:00
Create BAN Tx
2025-01-07 02:43:54 +00:00
< / b u t t o n >
< / d i v >
`
}
const handleKickMinter = async ( minterName ) => {
2024-12-21 06:07:18 +00:00
try {
2025-01-07 02:43:54 +00:00
// Optional block check
2025-01-09 04:26:24 +00:00
let txGroupId = 0
2025-01-13 23:53:20 +00:00
// const { height: currentHeight } = await getLatestBlockInfo()
const isBlockPassed = await featureTriggerCheck ( )
2025-01-09 04:26:24 +00:00
if ( isBlockPassed ) {
console . log ( ` block height above featureTrigger Height, using group approval method...txGroupId 694 ` )
txGroupId = 694
2025-01-07 02:43:54 +00:00
}
// Get the minter address from name info
2025-01-13 23:53:20 +00:00
const minterNameInfo = await getNameInfo ( minterName )
const minterAddress = minterNameInfo ? . owner
2025-01-07 02:43:54 +00:00
if ( ! minterAddress ) {
2025-01-13 23:53:20 +00:00
alert ( ` No valid address found for minter name: ${ minterName } , this should NOT have happened, please report to developers... ` )
2025-01-07 02:43:54 +00:00
return
}
const adminPublicKey = await getPublicKeyByName ( userState . accountName )
2025-01-09 04:26:24 +00:00
const reason = 'Kicked by Minter Admins'
const fee = 0.01
2025-01-07 02:43:54 +00:00
2025-01-09 04:26:24 +00:00
const rawKickTransaction = await createGroupKickTransaction ( minterAddress , adminPublicKey , 694 , minterAddress , reason , txGroupId , fee )
2024-12-29 06:49:18 +00:00
2025-01-07 02:43:54 +00:00
const signedKickTransaction = await qortalRequest ( {
action : "SIGN_TRANSACTION" ,
unsignedBytes : rawKickTransaction
} )
2025-01-13 23:53:20 +00:00
if ( ! signedKickTransaction ) {
console . warn ( ` this only happens if the SIGN_TRANSACTION qortalRequest failed... are you using the legacy UI prior to this qortalRequest being added? ` )
alert ( ` this only happens if the SIGN_TRANSACTION qortalRequest failed... are you using the legacy UI prior to this qortalRequest being added? Please talk to developers. ` )
return
}
2025-01-09 04:26:24 +00:00
let txToProcess = signedKickTransaction
2025-01-07 02:43:54 +00:00
2025-01-09 04:26:24 +00:00
const processKickTx = await processTransaction ( txToProcess )
2025-01-07 02:43:54 +00:00
2025-01-09 04:26:24 +00:00
if ( typeof processKickTx === 'object' ) {
console . log ( "transaction success object:" , processKickTx )
alert ( ` ${ minterName } kick successfully issued! Wait for confirmation...Transaction Response: ${ JSON . stringify ( processKickTx ) } ` )
2024-12-21 06:07:18 +00:00
} else {
2025-01-09 04:26:24 +00:00
console . log ( "transaction raw text response:" , processKickTx )
alert ( ` TxResponse: ${ JSON . stringify ( processKickTx ) } ` )
2024-12-19 03:39:15 +00:00
}
2024-12-29 06:49:18 +00:00
2024-12-21 06:07:18 +00:00
} catch ( error ) {
2025-01-07 02:43:54 +00:00
console . error ( "Error removing minter:" , error )
2025-01-09 04:26:24 +00:00
alert ( ` Error: ${ error } . Please try again. ` )
2024-12-19 03:39:15 +00:00
}
}
2025-01-07 02:43:54 +00:00
const handleBanMinter = async ( minterName ) => {
try {
2025-01-09 04:26:24 +00:00
let txGroupId = 0
2025-01-13 23:53:20 +00:00
// const { height: currentHeight } = await getLatestBlockInfo()
const isBlockPassed = await featureTriggerCheck ( )
if ( ! isBlockPassed ) {
2025-01-09 04:26:24 +00:00
console . log ( ` block height is under the removal featureTrigger height, using txGroupId 0 ` )
txGroupId = 0
} else {
console . log ( ` featureTrigger block is passed, using txGroupId 694 ` )
txGroupId = 694
2025-01-07 02:43:54 +00:00
}
2025-01-13 23:53:20 +00:00
const minterNameInfo = await getNameInfo ( minterName )
const minterAddress = minterNameInfo ? . owner
2025-01-09 04:26:24 +00:00
2025-01-07 02:43:54 +00:00
if ( ! minterAddress ) {
2025-01-13 23:53:20 +00:00
alert ( ` No valid address found for minter name: ${ minterName } , this should NOT have happened, please report to developers... ` )
2025-01-07 02:43:54 +00:00
return
}
const adminPublicKey = await getPublicKeyByName ( userState . accountName )
2025-01-09 04:26:24 +00:00
const reason = 'Banned by Minter Admins'
const fee = 0.01
2025-01-07 02:43:54 +00:00
2025-01-09 04:26:24 +00:00
const rawBanTransaction = await createGroupBanTransaction ( minterAddress , adminPublicKey , 694 , minterAddress , reason , txGroupId , fee )
2025-01-07 02:43:54 +00:00
const signedBanTransaction = await qortalRequest ( {
action : "SIGN_TRANSACTION" ,
unsignedBytes : rawBanTransaction
} )
2025-01-13 23:53:20 +00:00
if ( ! signedBanTransaction ) {
console . warn ( ` this only happens if the SIGN_TRANSACTION qortalRequest failed... are you using the legacy UI prior to this qortalRequest being added? ` )
alert ( ` this only happens if the SIGN_TRANSACTION qortalRequest failed... are you using the legacy UI prior to this qortalRequest being added? Please talk to developers. ` )
return
}
2025-01-07 02:43:54 +00:00
2025-01-09 04:26:24 +00:00
let txToProcess = signedBanTransaction
const processedTx = await processTransaction ( txToProcess )
2025-01-07 02:43:54 +00:00
2025-01-09 04:26:24 +00:00
if ( typeof processedTx === 'object' ) {
console . log ( "transaction success object:" , processedTx )
alert ( ` ${ minterName } BAN successfully issued! Wait for confirmation...Transaction Response: ${ JSON . stringify ( processedTx ) } ` )
2025-01-07 02:43:54 +00:00
} else {
2025-01-09 04:26:24 +00:00
// fallback string or something
console . log ( "transaction raw text response:" , processedTx )
alert ( ` transaction response: ${ JSON . stringify ( processedTx ) } ` )
2025-01-07 02:43:54 +00:00
}
} catch ( error ) {
console . error ( "Error removing minter:" , error )
2025-01-09 04:26:24 +00:00
alert ( ` Error ${ error } . Please try again. ` )
2025-01-07 02:43:54 +00:00
}
}
2024-12-29 06:49:18 +00:00
2025-01-22 06:52:41 +00:00
const getNewestAdminCommentTimestamp = async ( cardIdentifier ) => {
try {
const comments = await fetchEncryptedComments ( cardIdentifier )
if ( ! comments || comments . length === 0 ) {
return 0
}
const newestTimestamp = comments . reduce ( ( acc , comment ) => {
const cTime = comment . updated || comment . created || 0
return cTime > acc ? cTime : acc
} , 0 )
return newestTimestamp
} catch ( err ) {
console . error ( 'Failed to get newest comment timestamp:' , err )
return 0
}
}
2024-12-19 03:39:15 +00:00
// Create the overall Minter Card HTML -----------------------------------------------
2024-12-20 05:28:36 +00:00
const createEncryptedCardHTML = async ( cardData , pollResults , cardIdentifier , commentCount ) => {
2024-12-24 08:27:17 +00:00
const { minterName , header , content , links , creator , timestamp , poll , topicMode } = cardData
const formattedDate = new Date ( timestamp ) . toLocaleString ( )
const minterAvatar = ! topicMode ? await getMinterAvatar ( minterName ) : null
2024-12-21 06:07:18 +00:00
const creatorAvatar = await getMinterAvatar ( creator )
2024-12-19 03:39:15 +00:00
const linksHTML = links . map ( ( link , index ) => `
< button onclick = "openLinkDisplayModal('${link}')" >
$ { ` Link ${ index + 1 } - ${ link } ` }
< / b u t t o n >
2024-12-24 08:27:17 +00:00
` ).join("")
2025-01-16 03:14:16 +00:00
const showKickedBanned = document . getElementById ( 'admin-show-kicked-banned-checkbox' ) ? . checked ? ? false
const showHiddenAdminCards = document . getElementById ( 'admin-show-hidden-checkbox' ) ? . checked ? ? false
2024-12-24 08:27:17 +00:00
const isUndefinedUser = ( minterName === 'undefined' )
2024-12-19 03:39:15 +00:00
2024-12-24 08:27:17 +00:00
const hasTopicMode = Object . prototype . hasOwnProperty . call ( cardData , 'topicMode' )
2024-12-29 06:49:18 +00:00
2024-12-24 08:27:17 +00:00
let showTopic = false
2024-12-29 06:49:18 +00:00
2024-12-24 08:27:17 +00:00
if ( hasTopicMode ) {
2024-12-29 06:49:18 +00:00
const modeVal = cardData . topicMode
2024-12-24 08:27:17 +00:00
showTopic = ( modeVal === true || modeVal === 'true' )
} else {
if ( ! isUndefinedUser ) {
showTopic = false
}
}
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
2025-01-09 04:26:24 +00:00
let cardColorCode = showTopic ? '#0e1b15' : '#151f28'
2024-12-24 08:27:17 +00:00
const minterOrTopicHtml = ( ( showTopic ) || ( isUndefinedUser ) ) ? `
< div class = "support-header" > < h5 > REGARDING ( Topic ) : < / h 5 > < / d i v >
2025-01-22 06:52:41 +00:00
< h3 > $ { minterName } ` :
2024-12-24 08:27:17 +00:00
`
< div class = "support-header" > < h5 > REGARDING ( Name ) : < / h 5 > < / d i v >
$ { minterAvatar }
2025-01-22 06:52:41 +00:00
< h3 > $ { minterName } `
2024-12-24 08:27:17 +00:00
const minterGroupMembers = await fetchMinterGroupMembers ( )
const minterAdmins = await fetchMinterGroupAdmins ( )
2025-01-22 06:52:41 +00:00
const { adminYes = 0 , adminNo = 0 , minterYes = 0 , minterNo = 0 , totalYes = 0 , totalNo = 0 , totalYesWeight = 0 , totalNoWeight = 0 , detailsHtml , userVote = null } = await processPollData ( pollResults , minterGroupMembers , minterAdmins , creator , cardIdentifier )
2025-01-07 02:43:54 +00:00
2024-12-29 06:49:18 +00:00
createModal ( 'links' )
createModal ( 'poll-details' )
2025-01-07 02:43:54 +00:00
let showRemoveHtml
2025-01-22 06:52:41 +00:00
let altText = ''
let penaltyText = ''
let adjustmentText = ''
2025-01-07 02:43:54 +00:00
const verifiedName = await validateMinterName ( minterName )
2025-01-22 06:52:41 +00:00
let levelText = '</h3>'
2025-01-09 04:26:24 +00:00
2025-01-07 02:43:54 +00:00
if ( verifiedName ) {
2025-01-09 04:26:24 +00:00
const accountInfo = await getNameInfo ( verifiedName )
const accountAddress = accountInfo . owner
2025-01-22 06:52:41 +00:00
const addressInfo = await getAddressInfo ( accountAddress )
levelText = ` - Level ${ addressInfo . level } </h3> `
2025-01-07 02:43:54 +00:00
console . log ( ` name is validated, utilizing for removal features... ${ verifiedName } ` )
2025-01-22 06:52:41 +00:00
penaltyText = addressInfo . blocksMintedPenalty == 0 ? '' : '<p>(has Blocks Penalty)<p>'
adjustmentText = addressInfo . blocksMintedAdjustment == 0 ? '' : '<p>(has Blocks Adjustment)<p>'
2025-01-07 02:43:54 +00:00
const removeActionsHtml = await checkAndDisplayRemoveActions ( adminYes , verifiedName , cardIdentifier )
showRemoveHtml = removeActionsHtml
2025-01-22 06:52:41 +00:00
if ( userVote === 0 ) {
2025-01-22 16:56:51 +00:00
cardColorCode = "rgba(1, 65, 39, 0.41)" ; // or any green you want
2025-01-22 06:52:41 +00:00
} else if ( userVote === 1 ) {
2025-01-22 16:56:51 +00:00
cardColorCode = "rgba(55, 12, 12, 0.61)" ; // or any red you want
2025-01-22 06:52:41 +00:00
}
2025-01-09 04:26:24 +00:00
if ( banTransactions . some ( ( banTx ) => banTx . groupId === 694 && banTx . offender === accountAddress ) ) {
console . warn ( ` account was already banned, displaying as such... ` )
cardColorCode = 'rgb(24, 3, 3)'
altText = ` <h4 style="color:rgb(106, 2, 2); margin-bottom: 0.5em;">BANNED From MINTER Group</h4> `
showRemoveHtml = ''
2025-01-16 03:14:16 +00:00
if ( ! adminBoardState . bannedCards . has ( cardIdentifier ) ) {
adminBoardState . bannedCards . add ( cardIdentifier )
}
if ( ! showKickedBanned ) {
console . warn ( ` kick/bank checkbox is unchecked, and card is banned, not displaying... ` )
return ''
}
2025-01-09 04:26:24 +00:00
}
if ( kickTransactions . some ( ( kickTx ) => kickTx . groupId === 694 && kickTx . member === accountAddress ) ) {
console . warn ( ` account was already kicked, displaying as such... ` )
cardColorCode = 'rgb(29, 7, 4)'
altText = ` <h4 style="color:rgb(143, 117, 21); margin-bottom: 0.5em;">KICKED From MINTER Group</h4> `
showRemoveHtml = ''
2025-01-16 03:14:16 +00:00
if ( ! adminBoardState . kickedCards . has ( cardIdentifier ) ) {
adminBoardState . kickedCards . add ( cardIdentifier )
}
if ( ! showKickedBanned ) {
console . warn ( ` kick/ban checkbox is unchecked, card is kicked, not displaying... ` )
return ''
}
2025-01-09 04:26:24 +00:00
}
2025-01-07 02:43:54 +00:00
} else {
console . log ( ` name could not be validated, assuming topic card (or some other issue with name validation) for removalActions ` )
showRemoveHtml = ''
}
2024-12-19 03:39:15 +00:00
return `
2024-12-24 08:27:17 +00:00
< div class = "admin-card" style = "background-color: ${cardColorCode}" >
2024-12-19 03:39:15 +00:00
< div class = "minter-card-header" >
2024-12-21 06:07:18 +00:00
< h2 class = "support-header" > Created By : < / h 2 >
$ { creatorAvatar }
2024-12-19 03:39:15 +00:00
< h2 > $ { creator } < / h 2 >
2025-01-22 06:52:41 +00:00
$ { minterOrTopicHtml } $ { levelText }
2024-12-19 03:39:15 +00:00
< p > $ { header } < / p >
2025-01-22 06:52:41 +00:00
$ { penaltyText } $ { adjustmentText } $ { altText }
2024-12-19 03:39:15 +00:00
< / d i v >
< div class = "info" >
$ { content }
< / d i v >
2024-12-21 06:07:18 +00:00
< div class = "support-header" > < h5 > LINKS < / h 5 > < / d i v >
2024-12-19 03:39:15 +00:00
< div class = "info-links" >
$ { linksHTML }
< / d i v >
2024-12-21 06:07:18 +00:00
< div class = "results-header support-header" > < h5 > CURRENT RESULTS < / h 5 > < / d i v >
2024-12-19 03:39:15 +00:00
< div class = "minter-card-results" >
2024-12-29 06:49:18 +00:00
< button onclick = "togglePollDetails('${cardIdentifier}')" > Display Poll Details < / b u t t o n >
< div id = "poll-details-${cardIdentifier}" style = "display: none;" >
$ { detailsHtml }
< / d i v >
2025-01-07 02:43:54 +00:00
$ { showRemoveHtml }
2024-12-19 03:39:15 +00:00
< div class = "admin-results" >
2024-12-21 06:07:18 +00:00
< span class = "admin-yes" > Admin Support : $ { adminYes } < / s p a n >
< span class = "admin-no" > Admin Against : $ { adminNo } < / s p a n >
2024-12-19 03:39:15 +00:00
< / d i v >
< div class = "minter-results" >
2024-12-21 06:07:18 +00:00
< span class = "minter-yes" > Supporting Weight $ { totalYesWeight } < / s p a n >
< span class = "minter-no" > Denial Weight $ { totalNoWeight } < / s p a n >
2024-12-19 03:39:15 +00:00
< / d i v >
< / d i v >
2024-12-24 08:27:17 +00:00
< div class = "support-header" > < h5 > ACTIONS FOR < / h 5 > < h 5 s t y l e = " c o l o r : # f f a e 4 2 ; " > $ { m i n t e r N a m e } < / h 5 >
2024-12-21 06:07:18 +00:00
< p style = "color: #c7c7c7; font-size: .65rem; margin-top: 1vh" > ( click COMMENTS button to open / close card comments ) < / p >
< / d i v >
2024-12-19 03:39:15 +00:00
< div class = "actions" >
< div class = "actions-buttons" >
2024-12-24 08:27:17 +00:00
< button class = "yes" onclick = "voteYesOnPoll('${poll}')" > YES < / b u t t o n >
This version includes many changes and performance improvements. Further performance improvements will be coming soon. This change includes a cache for the published data on the forum. Messages of up to 2000 in number, will be stored locally in browser storage, that way if the message has already been loaded by that computer, it will not have to pull the data again from QDN. It will be stored in encrypted format for the Admin room. This same caching will be applied to the Minter and Admin boards in the future. Also, reply issues that were present before should be resolved, all replies, regardless of when they were published, will now show their previews in the message pane as they are supposed to. Previously if a reply was on another page, it would not load this preview. The encrypted portions of the app now include a method of caching the admin public keys, for faster publishing. The Minter and Admin boards have a new comment loading display when the comments button is clicked to let users know that data is being loaded, on top of the existing comment count. Other new features and additional performance improvements are in planning. Also, the issue preventing comments from those that had not already loaded the forum, in the Admin Board, has been resolved as well.
2024-12-27 04:06:51 +00:00
< button id = "comment-button-${cardIdentifier}" data - comment - count = "${commentCount}" class = "comment" onclick = "toggleEncryptedComments('${cardIdentifier}')" > COMMENTS ( $ { commentCount } ) < / b u t t o n >
2024-12-24 08:27:17 +00:00
< button class = "no" onclick = "voteNoOnPoll('${poll}')" > NO < / b u t t o n >
2024-12-19 03:39:15 +00:00
< / d i v >
< / d i v >
< div id = "comments-section-${cardIdentifier}" class = "comments-section" style = "display: none; margin-top: 20px;" >
< div id = "comments-container-${cardIdentifier}" class = "comments-container" > < / d i v >
2024-12-21 06:07:18 +00:00
< textarea id = "new-comment-${cardIdentifier}" placeholder = "Input your comment..." style = "width: 100%; margin-top: 10px;" > < / t e x t a r e a >
2024-12-19 03:39:15 +00:00
< button onclick = "postEncryptedComment('${cardIdentifier}')" > Post Comment < / b u t t o n >
< / d i v >
2024-12-21 06:07:18 +00:00
< p style = "font-size: 0.75rem; margin-top: 1vh; color: #4496a1" > By : $ { creator } - $ { formattedDate } < / p >
2024-12-19 03:39:15 +00:00
< / d i v >
2024-12-24 08:27:17 +00:00
`
2024-12-19 03:39:15 +00:00
}