mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
feat(console): make billing history item clickable (#4239)
This commit is contained in:
parent
9cae293610
commit
7814f098a8
2 changed files with 10 additions and 1 deletions
|
@ -14,9 +14,10 @@ type Props = {
|
|||
to?: To;
|
||||
size?: 'default' | 'compact';
|
||||
suffix?: ReactNode;
|
||||
toTarget?: HTMLAnchorElement['target'];
|
||||
};
|
||||
|
||||
function ItemPreview({ title, subtitle, icon, to, size = 'default', suffix }: Props) {
|
||||
function ItemPreview({ title, subtitle, icon, to, size = 'default', suffix, toTarget }: Props) {
|
||||
const { getTo } = useTenantPathname();
|
||||
|
||||
return (
|
||||
|
@ -28,6 +29,7 @@ function ItemPreview({ title, subtitle, icon, to, size = 'default', suffix }: Pr
|
|||
<Link
|
||||
className={styles.title}
|
||||
to={getTo(to)}
|
||||
target={toTarget}
|
||||
onClick={(event) => {
|
||||
event.stopPropagation();
|
||||
}}
|
||||
|
|
|
@ -41,6 +41,7 @@ function BillingHistory() {
|
|||
title={formatPeriod({ periodStart, periodEnd, displayYear: true })}
|
||||
subtitle={conditional(planName && <PlanName name={planName} />)}
|
||||
to={conditional(hostedInvoiceUrl)}
|
||||
toTarget="_blank"
|
||||
/>
|
||||
);
|
||||
},
|
||||
|
@ -69,6 +70,12 @@ function BillingHistory() {
|
|||
]}
|
||||
isLoading={isLoadingInvoices}
|
||||
placeholder={<EmptyDataPlaceholder />}
|
||||
rowClickHandler={({ hostedInvoiceUrl }) => {
|
||||
if (!hostedInvoiceUrl) {
|
||||
return;
|
||||
}
|
||||
window.open(hostedInvoiceUrl, '_blank');
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue