Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Box, cssClass, Text } from '@adminjs/design-system'
import { styled } from '@adminjs/design-system/styled-components'
import React from 'react'
import { Link } from 'react-router-dom'
import ViewHelpers from '../../../backend/utils/view-helpers/view-helpers.js'
import allowOverride from '../../hoc/allow-override.js'
import { useTranslation } from '../../hooks/use-translation.js'
import { RecordJSON, ResourceJSON } from '../../interfaces/index.js'
import { getActionElementCss } from '../../utils/index.js'
export const BreadcrumbLink: any = styled(Link)`
color: ${({ theme }): string => theme.colors.grey60};
font-family: ${({ theme }): string => theme.font};
line-height: ${({ theme }): string => theme.lineHeights.default};
font-size: ${({ theme }): string => theme.fontSizes.default};
text-decoration: none;
&:hover {
color: ${({ theme }): string => theme.colors.primary100};
&:after {
color: ${({ theme }): string => theme.colors.grey60};
}
}
&:after {
content: '/';
padding: 0 ${({ theme }): string => theme.space.default};
}
&:last-child {
color: ${({ theme }): string => theme.colors.text};
&:after {
content: '';
}
}
`
export const BreadcrumbText: any = styled<any>(Text)`
color: ${({ theme }): string => theme.colors.grey100};
font-family: ${({ theme }): string => theme.font};
font-weight: ${({ theme }): string => theme.fontWeights.normal.toString()};
line-height: ${({ theme }): string => theme.lineHeights.default};
font-size: ${({ theme }): string => theme.fontSizes.default};
cursor: pointer;
display: inline;
&:after {
content: '/';
padding: 0 ${({ theme }): string => theme.space.default};
}
&:last-child {
&:after {
content: '';
}
}
`
/**
* @memberof Breadcrumbs
*/
export type BreadcrumbProps = {
/**
* Resource
*/
resource: ResourceJSON
/**
* record
*/
record?: RecordJSON | null
/**
* Name of an action
*/
actionName: string
}
/**
* @component
* @private
*/
const Breadcrumbs: React.FC<BreadcrumbProps> = (props) => {
const { resource, record, actionName } = props
const listAction = resource.resourceActions.find(({ name }) => name === 'list')
const action = resource.actions.find((a) => a.name === actionName)
const h = new ViewHelpers()
const { tl, ta } = useTranslation()
const contentTag = getActionElementCss(resource.id, actionName, 'breadcrumbs')
return (
<Box flexGrow={1} className={cssClass('Breadcrumbs')} data-css={contentTag}>
<BreadcrumbLink to={h.dashboardUrl()}>{tl('dashboard')}</BreadcrumbLink>
{listAction ? (
<BreadcrumbLink
to={resource.href ? resource.href : '/'}
className={record ? 'is-active' : ''}
>
{tl(resource.name, resource.id)}
</BreadcrumbLink>
) : (
<BreadcrumbText>{tl(resource.name, resource.id)}</BreadcrumbText>
)}
{action && action.name !== 'list' && (
<BreadcrumbLink to="#">{ta(action.label)}</BreadcrumbLink>
)}
</Box>
)
}
const OverridableBreadcrumbs = allowOverride(Breadcrumbs, 'Breadcrumbs')
export {
OverridableBreadcrumbs as default,
OverridableBreadcrumbs as Breadcrumbs,
Breadcrumbs as OriginalBreadcrumbs,
}