Phase 703: pin registry CSV & reaction summary export mesh parity (v0.8.678)
Add signed pin registry CSV mesh modal and guild reaction summary CSV export (RPC 124/125) following the poll/ban CSV parity pattern. Includes pin-csv-ui, platform pin-csv-mixin, ui-flow IPC, deep link ?pin-csv=1, agentctl journeys, test:ci-phase703 regression bundle, and documentation updates.
This commit is contained in:
@@ -2762,6 +2762,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
|
||||
if (t === 'sync-poll-registry-csv') { const out = await platform.pushPollRegistryCsvToMesh(); pushState(); send({ type: 'poll-registry-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'clear-poll-registry-csv') { await platform.clearPollRegistryCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'push-scheduled-message-export-csv') { await platform.pushScheduledMessageExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'pin-csv-modal-open') { pushState(); send({ type: 'pin-csv-modal-opened' }); return true }
|
||||
if (t === 'sync-pin-registry-csv') { const out = await platform.pushPinRegistryCsvToMesh(); pushState(); send({ type: 'pin-registry-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'clear-pin-registry-csv') { await platform.clearPinRegistryCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'push-reaction-summary-export-csv') { await platform.pushReactionSummaryExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
|
||||
if (t === 'push-sticker-pack-export-csv') {
|
||||
await platform.pushStickerPackExportToMesh()
|
||||
pushState()
|
||||
|
||||
Reference in New Issue
Block a user