mirror of
https://github.com/logos-blockchain/logos-blockchain-block-explorer-template.git
synced 2026-02-17 03:23:13 +00:00
560 lines
19 KiB
JavaScript
560 lines
19 KiB
JavaScript
// static/pages/TransactionDetail.js
|
||
import { h, Fragment } from 'preact';
|
||
import { useEffect, useMemo, useState } from 'preact/hooks';
|
||
import { API, PAGE, BASE_PATH } from '../lib/api.js';
|
||
import { shortenHex } from '../lib/utils.js';
|
||
|
||
// ————— helpers —————
|
||
const isNumber = (v) => typeof v === 'number' && !Number.isNaN(v);
|
||
const toLocaleNum = (n, opts = {}) => Number(n ?? 0).toLocaleString(undefined, { maximumFractionDigits: 8, ...opts });
|
||
|
||
// Best-effort pretty bytes/hex/string
|
||
function renderBytes(value) {
|
||
if (value == null) return '';
|
||
if (typeof value === 'string') return value; // hex/base64/plain
|
||
if (Array.isArray(value) && value.every((x) => Number.isInteger(x) && x >= 0 && x <= 255)) {
|
||
return '0x' + value.map((b) => b.toString(16).padStart(2, '0')).join('');
|
||
}
|
||
try {
|
||
return JSON.stringify(value);
|
||
} catch {
|
||
return String(value);
|
||
}
|
||
}
|
||
|
||
const opLabel = (op) => {
|
||
if (op == null) return 'op';
|
||
if (typeof op === 'string' || typeof op === 'number') return String(op);
|
||
if (typeof op !== 'object') return String(op);
|
||
if (typeof op.type === 'string') return op.type;
|
||
if (typeof op.kind === 'string') return op.kind;
|
||
if (op.content) {
|
||
if (typeof op.content.type === 'string') return op.content.type;
|
||
if (typeof op.content.kind === 'string') return op.content.kind;
|
||
}
|
||
const keys = Object.keys(op);
|
||
return keys.length ? keys[0] : 'op';
|
||
};
|
||
|
||
function opsToPills(ops, limit = 6) {
|
||
const arr = Array.isArray(ops) ? ops : [];
|
||
if (!arr.length) return h('span', { style: 'color:var(--muted); whiteSpace: "nowrap";' }, '—');
|
||
const labels = arr.map(opLabel);
|
||
const shown = labels.slice(0, limit);
|
||
const extra = labels.length - shown.length;
|
||
return h(
|
||
'div',
|
||
{ style: 'display:flex; gap:6px; flexWrap:"wrap"; alignItems:"center"' },
|
||
...shown.map((label, i) =>
|
||
h('span', { key: `${label}-${i}`, class: 'pill', title: label, style: 'flex:0 0 auto;' }, label),
|
||
),
|
||
extra > 0 && h('span', { class: 'pill', title: `${extra} more`, style: 'flex:0 0 auto;' }, `+${extra}`),
|
||
);
|
||
}
|
||
|
||
const toNumber = (v) => {
|
||
if (v == null) return 0;
|
||
if (typeof v === 'number') return v;
|
||
if (typeof v === 'bigint') return Number(v);
|
||
if (typeof v === 'string') {
|
||
const s = v.trim();
|
||
if (/^0x[0-9a-f]+$/i.test(s)) return Number(BigInt(s));
|
||
const n = Number(s);
|
||
return Number.isFinite(n) ? n : 0;
|
||
}
|
||
if (typeof v === 'object' && v !== null && 'value' in v) return toNumber(v.value);
|
||
return 0;
|
||
};
|
||
|
||
function CopyPill({ text, label = 'Copy' }) {
|
||
const onCopy = async (e) => {
|
||
e.preventDefault();
|
||
try {
|
||
await navigator.clipboard.writeText(String(text ?? ''));
|
||
} catch {}
|
||
};
|
||
return h(
|
||
'a',
|
||
{
|
||
class: 'pill linkish mono',
|
||
style: 'cursor:pointer; user-select:none;',
|
||
href: '#',
|
||
onClick: onCopy,
|
||
onKeyDown: (e) => {
|
||
if (e.key === 'Enter' || e.key === ' ') {
|
||
e.preventDefault();
|
||
onCopy(e);
|
||
}
|
||
},
|
||
tabIndex: 0,
|
||
role: 'button',
|
||
},
|
||
label,
|
||
);
|
||
}
|
||
|
||
// ————— normalizer for new TransactionRead —————
|
||
// { id, block_id, hash, operations:[Operation], inputs:[HexBytes], outputs:[Note{public_key:HexBytes,value:int}],
|
||
// proof, execution_gas_price, storage_gas_price }
|
||
function normalizeTransaction(raw) {
|
||
const ops = Array.isArray(raw?.operations) ? raw.operations : Array.isArray(raw?.ops) ? raw.ops : [];
|
||
|
||
const inputs = Array.isArray(raw?.inputs) ? raw.inputs : [];
|
||
const outputs = Array.isArray(raw?.outputs) ? raw.outputs : [];
|
||
|
||
const totalOutputValue = outputs.reduce((sum, note) => sum + toNumber(note?.value), 0);
|
||
|
||
return {
|
||
id: raw?.id ?? '',
|
||
blockHash: raw?.block_hash ?? null,
|
||
hash: renderBytes(raw?.hash),
|
||
proof: renderBytes(raw?.proof),
|
||
operations: ops, // keep objects, we’ll label in UI
|
||
executionGasPrice: isNumber(raw?.execution_gas_price)
|
||
? raw.execution_gas_price
|
||
: toNumber(raw?.execution_gas_price),
|
||
storageGasPrice: isNumber(raw?.storage_gas_price) ? raw.storage_gas_price : toNumber(raw?.storage_gas_price),
|
||
ledger: {
|
||
inputs: inputs.map((v) => renderBytes(v)),
|
||
outputs: outputs.map((n) => ({
|
||
public_key: renderBytes(n?.public_key),
|
||
value: toNumber(n?.value),
|
||
})),
|
||
totalOutputValue,
|
||
},
|
||
};
|
||
}
|
||
|
||
// ————— UI bits —————
|
||
function SectionCard({ title, children, style }) {
|
||
return h(
|
||
'div',
|
||
{ class: 'card', style: `margin-top:12px; ${style ?? ''}` },
|
||
h('div', { class: 'card-header' }, h('strong', null, title)),
|
||
h('div', { style: 'padding:12px 14px' }, children),
|
||
);
|
||
}
|
||
|
||
function Summary({ tx }) {
|
||
return h(
|
||
SectionCard,
|
||
{ title: 'Summary' },
|
||
h(
|
||
'div',
|
||
{ style: 'display:grid; gap:8px;' },
|
||
|
||
// Block link
|
||
tx.blockHash != null &&
|
||
h(
|
||
'div',
|
||
null,
|
||
h('b', null, 'Block: '),
|
||
h(
|
||
'a',
|
||
{ class: 'linkish mono', href: PAGE.BLOCK_DETAIL(tx.blockHash), title: String(tx.blockHash) },
|
||
shortenHex(tx.blockHash),
|
||
),
|
||
),
|
||
|
||
// Hash + copy
|
||
h(
|
||
'div',
|
||
null,
|
||
h('b', null, 'Hash: '),
|
||
h(
|
||
'span',
|
||
{ class: 'pill mono', title: tx.hash, style: 'max-width:100%; overflow-wrap:anywhere;' },
|
||
String(tx.hash || ''),
|
||
),
|
||
h(CopyPill, { text: tx.hash }),
|
||
),
|
||
|
||
// Proof + copy (if present)
|
||
tx.proof &&
|
||
h(
|
||
'div',
|
||
null,
|
||
h('b', null, 'Proof: '),
|
||
h(
|
||
'span',
|
||
{ class: 'pill mono', title: tx.proof, style: 'max-width:100%; overflow-wrap:anywhere;' },
|
||
String(tx.proof),
|
||
),
|
||
h(CopyPill, { text: tx.proof }),
|
||
),
|
||
|
||
// Gas
|
||
h(
|
||
'div',
|
||
null,
|
||
h('b', null, 'Execution Gas: '),
|
||
h('span', { class: 'mono' }, toLocaleNum(tx.executionGasPrice)),
|
||
),
|
||
h(
|
||
'div',
|
||
null,
|
||
h('b', null, 'Storage Gas: '),
|
||
h('span', { class: 'mono' }, toLocaleNum(tx.storageGasPrice)),
|
||
),
|
||
|
||
// Operations (labels as pills)
|
||
h('div', null, h('b', null, 'Operations: '), opsToPills(tx.operations)),
|
||
),
|
||
);
|
||
}
|
||
|
||
function InputsTable({ inputs }) {
|
||
if (!inputs?.length) return h('div', { style: 'color:var(--muted)' }, '—');
|
||
|
||
return h(
|
||
'div',
|
||
{ class: 'table-wrapper', style: 'margin-top:6px;' },
|
||
h(
|
||
'table',
|
||
{ class: 'table--transactions' },
|
||
h(
|
||
'colgroup',
|
||
null,
|
||
h('col', { style: 'width:80px' }), // #
|
||
h('col', null), // Value
|
||
),
|
||
h('thead', null, h('tr', null, h('th', { style: 'text-align:center;' }, '#'), h('th', null, 'Note ID'))),
|
||
h(
|
||
'tbody',
|
||
null,
|
||
...inputs.map((fr, i) =>
|
||
h(
|
||
'tr',
|
||
{ key: i },
|
||
h('td', { style: 'text-align:center;' }, String(i)),
|
||
h(
|
||
'td',
|
||
null,
|
||
h(
|
||
'span',
|
||
{ class: 'mono', style: 'overflow-wrap:anywhere; word-break:break-word;' },
|
||
String(fr),
|
||
),
|
||
),
|
||
),
|
||
),
|
||
),
|
||
),
|
||
);
|
||
}
|
||
|
||
function OutputsTable({ outputs }) {
|
||
if (!outputs?.length) return h('div', { style: 'color:var(--muted)' }, '—');
|
||
|
||
return h(
|
||
'div',
|
||
{ class: 'table-wrapper', style: 'margin-top:6px;' },
|
||
h(
|
||
'table',
|
||
{ class: 'table--transactions' },
|
||
h(
|
||
'colgroup',
|
||
null,
|
||
h('col', { style: 'width:80px' }), // #
|
||
h('col', null), // Public Key
|
||
h('col', { style: 'width:180px' }), // Value
|
||
),
|
||
h(
|
||
'thead',
|
||
null,
|
||
h(
|
||
'tr',
|
||
null,
|
||
h('th', { style: 'text-align:center;' }, '#'),
|
||
h('th', null, 'Public Key'),
|
||
h('th', { style: 'text-align:right;' }, 'Value'),
|
||
),
|
||
),
|
||
h(
|
||
'tbody',
|
||
null,
|
||
...outputs.map((note, idx) =>
|
||
h(
|
||
'tr',
|
||
{ key: idx },
|
||
h('td', { style: 'text-align:center;' }, String(idx)),
|
||
h(
|
||
'td',
|
||
null,
|
||
h(
|
||
'span',
|
||
{ class: 'mono', style: 'display:inline-block; overflow-wrap:anywhere;' },
|
||
String(note.public_key ?? ''),
|
||
),
|
||
h('span', { class: 'sr-only' }, ' '),
|
||
),
|
||
h('td', { class: 'amount', style: 'text-align:right;' }, toLocaleNum(note.value)),
|
||
),
|
||
),
|
||
),
|
||
),
|
||
);
|
||
}
|
||
|
||
// ————— operations detail —————
|
||
|
||
/** Try to decode a hex string as UTF-8. Returns the decoded string or null on failure. */
|
||
function tryDecodeUtf8Hex(hex) {
|
||
if (typeof hex !== 'string' || hex.length === 0 || hex.length % 2 !== 0) return null;
|
||
try {
|
||
const bytes = new Uint8Array(hex.length / 2);
|
||
for (let i = 0; i < hex.length; i += 2) {
|
||
const b = parseInt(hex.substring(i, i + 2), 16);
|
||
if (Number.isNaN(b)) return null;
|
||
bytes[i / 2] = b;
|
||
}
|
||
const text = new TextDecoder('utf-8', { fatal: true }).decode(bytes);
|
||
// Only accept if it contains at least one printable non-control character
|
||
if (/[\x20-\x7e]/.test(text)) return text;
|
||
return null;
|
||
} catch {
|
||
return null;
|
||
}
|
||
}
|
||
|
||
/** Human-friendly label for a content field key */
|
||
const fieldLabel = (key) =>
|
||
key
|
||
.replace(/_/g, ' ')
|
||
.replace(/\b\w/g, (c) => c.toUpperCase());
|
||
|
||
/** Render the value of a single content field */
|
||
function FieldValue({ value }) {
|
||
if (value == null) return h('span', { class: 'mono', style: 'color:var(--muted)' }, 'null');
|
||
if (typeof value === 'number') return h('span', { class: 'mono' }, toLocaleNum(value));
|
||
if (typeof value === 'string') {
|
||
// hex strings
|
||
if (value.length > 24) {
|
||
return h(
|
||
'span',
|
||
{ style: 'display:flex; align-items:center; gap:6px;' },
|
||
h('span', { class: 'mono', style: 'overflow-wrap:anywhere; word-break:break-all;' }, value),
|
||
h(CopyPill, { text: value }),
|
||
);
|
||
}
|
||
return h('span', { class: 'mono' }, value);
|
||
}
|
||
if (Array.isArray(value)) {
|
||
return h(
|
||
'div',
|
||
{ style: 'display:flex; flex-direction:column; gap:4px;' },
|
||
...value.map((item, i) => h('div', { key: i }, h(FieldValue, { value: renderBytes(item) }))),
|
||
);
|
||
}
|
||
return h('span', { class: 'mono' }, renderBytes(value));
|
||
}
|
||
|
||
function InscriptionValue({ value }) {
|
||
const decoded = tryDecodeUtf8Hex(value);
|
||
if (decoded != null) {
|
||
return h(
|
||
'span',
|
||
{ style: 'display:flex; align-items:center; gap:6px;' },
|
||
h('span', { style: 'overflow-wrap:anywhere; word-break:break-word;' }, decoded),
|
||
h(CopyPill, { text: decoded }),
|
||
);
|
||
}
|
||
return h(FieldValue, { value });
|
||
}
|
||
|
||
function OperationContent({ content }) {
|
||
// Get all fields except "type"
|
||
const entries = Object.entries(content).filter(([k]) => k !== 'type');
|
||
if (!entries.length) return h('div', { style: 'color:var(--muted)' }, 'No fields');
|
||
|
||
return h(
|
||
'div',
|
||
{ style: 'display:grid; grid-template-columns:auto 1fr; gap:6px 12px; align-items:baseline;' },
|
||
...entries.flatMap(([key, value]) => [
|
||
h('span', { style: 'color:var(--muted); font-size:13px; white-space:nowrap;' }, fieldLabel(key)),
|
||
key === 'inscription' ? h(InscriptionValue, { value }) : h(FieldValue, { value }),
|
||
]),
|
||
);
|
||
}
|
||
|
||
function OperationProof({ proof }) {
|
||
if (!proof) return null;
|
||
const proofType = proof.type ?? 'Unknown';
|
||
const entries = Object.entries(proof).filter(([k]) => k !== 'type');
|
||
|
||
return h(
|
||
'div',
|
||
{ style: 'margin-top:8px; padding-top:8px; border-top:1px solid #1f2435;' },
|
||
h('span', { style: 'color:var(--muted); font-size:12px;' }, `Proof: ${proofType}`),
|
||
entries.length > 0 &&
|
||
h(
|
||
'div',
|
||
{ style: 'margin-top:4px; display:grid; grid-template-columns:auto 1fr; gap:4px 12px; align-items:baseline;' },
|
||
...entries.flatMap(([key, value]) => [
|
||
h('span', { style: 'color:var(--muted); font-size:12px; white-space:nowrap;' }, fieldLabel(key)),
|
||
h('span', { class: 'mono', style: 'font-size:12px; overflow-wrap:anywhere; word-break:break-all;' }, renderBytes(value)),
|
||
]),
|
||
),
|
||
);
|
||
}
|
||
|
||
function OperationCard({ op, index }) {
|
||
const content = op?.content ?? op;
|
||
const proof = op?.proof ?? null;
|
||
const type = content?.type ?? opLabel(op);
|
||
|
||
return h(
|
||
'div',
|
||
{ style: 'background:#0e1320; border:1px solid #1f2435; border-radius:8px; padding:12px 14px;' },
|
||
h(
|
||
'div',
|
||
{ style: 'display:flex; align-items:center; gap:8px; margin-bottom:10px;' },
|
||
h('span', { class: 'pill', style: 'font-size:11px;' }, `#${index}`),
|
||
h('span', { class: 'pill', style: 'background:rgba(63,185,80,0.12); color:var(--accent);' }, type),
|
||
),
|
||
h(OperationContent, { content }),
|
||
h(OperationProof, { proof }),
|
||
);
|
||
}
|
||
|
||
function Operations({ operations }) {
|
||
const ops = Array.isArray(operations) ? operations : [];
|
||
if (!ops.length) return null;
|
||
|
||
return h(
|
||
SectionCard,
|
||
{ title: `Operations (${ops.length})` },
|
||
h(
|
||
'div',
|
||
{ style: 'display:flex; flex-direction:column; gap:12px;' },
|
||
...ops.map((op, i) => h(OperationCard, { key: i, op, index: i })),
|
||
),
|
||
);
|
||
}
|
||
|
||
function Ledger({ ledger }) {
|
||
const inputs = Array.isArray(ledger?.inputs) ? ledger.inputs : [];
|
||
const outputs = Array.isArray(ledger?.outputs) ? ledger.outputs : [];
|
||
const totalOutputValue = toNumber(ledger?.totalOutputValue);
|
||
|
||
return h(
|
||
SectionCard,
|
||
{ title: 'Ledger' },
|
||
h(
|
||
'div',
|
||
{ style: 'display:grid; gap:16px;' },
|
||
|
||
// Inputs
|
||
h(
|
||
'div',
|
||
null,
|
||
h(
|
||
'div',
|
||
{ style: 'display:flex; alignItems:center; gap:8px;' },
|
||
h('b', null, 'Inputs'),
|
||
h('span', { class: 'pill' }, String(inputs.length)),
|
||
),
|
||
h(InputsTable, { inputs }),
|
||
),
|
||
|
||
// Outputs
|
||
h(
|
||
'div',
|
||
null,
|
||
h(
|
||
'div',
|
||
{ style: 'display:flex; alignItems:center; gap:8px;' },
|
||
h('b', null, 'Outputs'),
|
||
h('span', { class: 'pill' }, String(outputs.length)),
|
||
h(
|
||
'span',
|
||
{ class: 'amount', style: 'margin-left:auto;' },
|
||
`Total: ${toLocaleNum(totalOutputValue)}`,
|
||
),
|
||
),
|
||
h(OutputsTable, { outputs }),
|
||
),
|
||
),
|
||
);
|
||
}
|
||
|
||
// ————— page —————
|
||
export default function TransactionDetail({ parameters }) {
|
||
const transactionHash = parameters?.[0];
|
||
const isValidHash = typeof transactionHash === 'string' && transactionHash.length > 0;
|
||
|
||
const [tx, setTx] = useState(null);
|
||
const [err, setErr] = useState(null); // { kind: 'invalid'|'not-found'|'network', msg: string }
|
||
|
||
const pageTitle = useMemo(() => `Transaction ${shortenHex(transactionHash)}`, [transactionHash]);
|
||
useEffect(() => {
|
||
document.title = pageTitle;
|
||
}, [pageTitle]);
|
||
|
||
useEffect(() => {
|
||
setTx(null);
|
||
setErr(null);
|
||
|
||
if (!isValidHash) {
|
||
setErr({ kind: 'invalid', msg: 'Invalid transaction hash.' });
|
||
return;
|
||
}
|
||
|
||
let alive = true;
|
||
const controller = new AbortController();
|
||
|
||
(async () => {
|
||
try {
|
||
const res = await fetch(API.TRANSACTION_DETAIL_BY_HASH(transactionHash), {
|
||
cache: 'no-cache',
|
||
signal: controller.signal,
|
||
});
|
||
if (res.status === 404 || res.status === 410) {
|
||
if (alive) setErr({ kind: 'not-found', msg: 'Transaction not found.' });
|
||
return;
|
||
}
|
||
if (!res.ok) throw new Error(`HTTP ${res.status}`);
|
||
const payload = await res.json();
|
||
if (!alive) return;
|
||
setTx(normalizeTransaction(payload));
|
||
} catch (e) {
|
||
if (!alive || e?.name === 'AbortError') return;
|
||
setErr({ kind: 'network', msg: e?.message ?? 'Failed to load transaction' });
|
||
}
|
||
})();
|
||
|
||
return () => {
|
||
alive = false;
|
||
controller.abort();
|
||
};
|
||
}, [transactionHash, isValidHash]);
|
||
|
||
return h(
|
||
'main',
|
||
{ class: 'wrap' },
|
||
|
||
h(
|
||
'header',
|
||
{ style: 'display:flex; gap:12px; alignItems:center; margin:12px 0;' },
|
||
h('a', { class: 'linkish', href: `${BASE_PATH}/` }, '← Back'),
|
||
h('h1', { style: 'margin:0' }, pageTitle),
|
||
),
|
||
|
||
// Errors
|
||
err?.kind === 'invalid' && h('p', { style: 'color:#ff8a8a' }, err.msg),
|
||
err?.kind === 'not-found' &&
|
||
h(
|
||
SectionCard,
|
||
{ title: 'Transaction not found' },
|
||
h('p', null, 'We could not find a transaction with that identifier.'),
|
||
),
|
||
err?.kind === 'network' && h('p', { style: 'color:#ff8a8a' }, `Error: ${err.msg}`),
|
||
|
||
// Loading
|
||
!tx && !err && h('p', null, 'Loading…'),
|
||
|
||
// Success
|
||
tx && h(Fragment, null, h(Summary, { tx }), h(Operations, { operations: tx.operations }), h(Ledger, { ledger: tx.ledger })),
|
||
);
|
||
}
|