mirror of
https://github.com/supabase/supabase.git
synced 2026-05-23 10:21:37 +08:00
* init * hovercard * adds button to install index advisor * hover card now now insert indexes * update * moved hook * align alert dialog to design syste, * Update index-advisor.utils.ts * shows all index statements now * Update query-performance.tsx * Some refactors * Clean up * Fix * One last nit refactor --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
29 lines
824 B
TypeScript
29 lines
824 B
TypeScript
import { HTMLAttributes } from 'react'
|
|
|
|
import { cn } from 'ui'
|
|
import { calculateImprovement } from './index-advisor.utils'
|
|
|
|
interface IndexImprovementTextProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
indexStatements: string[]
|
|
totalCostBefore: number
|
|
totalCostAfter: number
|
|
}
|
|
|
|
export const IndexImprovementText = ({
|
|
indexStatements,
|
|
totalCostBefore,
|
|
totalCostAfter,
|
|
className,
|
|
...props
|
|
}: IndexImprovementTextProps) => {
|
|
const improvement = calculateImprovement(totalCostBefore, totalCostAfter)
|
|
|
|
return (
|
|
<p className={cn('text-sm text-foreground-light', className)} {...props}>
|
|
Query's performance can be improved by{' '}
|
|
<span className="text-brand">{improvement.toFixed(2)}%</span> by creating this{' '}
|
|
{indexStatements.length > 1 ? 'indexes' : 'index'}:
|
|
</p>
|
|
)
|
|
}
|