mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-26 13:25:46 +08:00
* feat: optimize fonts rendering on windows (#385) * feat(styles): set Inter to highest font * docs(fonts): add guide for fonts rendering on windows * test: udpate snapshots * chore: release v2.1.0-canary.0 * feat(table): add update row action to Table (#378) * feat: add update to Table's actions. add test and doc fix(table): fix comments * feat(table): improve type for table actions chore: update docs chore: remove unused types chore(table): improve docs Co-authored-by: William Castandet <williamcastandet@williams-air.home> Co-authored-by: unix <unix.bio@gmail.com> * refactor(use-theme): move use-theme to the top directory (#397) * refactor(use-theme): move use-theme to the top directory * chore(jest): ignore use-theme of forwarding * chore: release v2.1.0-canary.1 * feat(select): add clearable option to select multiple with test and english doc (#396) * docs: add clearable option to select multiple with test and english doc * fix: fix types for onClear * fix: fix import path for use-theme add more test for coverage * docs(select): add chinese document Co-authored-by: unix <unix.bio@gmail.com> * chore: release v2.1.0-canary.2 * fix(tabs): scrollable (#404) docs(tabs): scroll behavior * feat(textarea): resize prop (#416) * feat: add resize prop to textarea * docs: add resize prop for textarea * docs(textarea): improve docs and attributes for cn * test(textarea): update snapshots Co-authored-by: unix <unix.bio@gmail.com> * fix(types): replace path aliases in type files (#432) * fix(types): replace path aliases in type files * chore(lint): upgrade eslint and optimize code style * chore: fix type error for context handler * test: update snapshots * fix: use ttsc to identify aliases in type paths * feat(hooks): add a tool hooks for react context (#439) * feat(hooks): add a tool hooks for react context * chore: move use-context-state to internal tools style: fix lint warning * chore: simplify the structure of the catalog * refactor(themes): refactor theme module to keep multiple themes (#440) * refactor(themes): refactor theme module to keep multiple themes * chore: migrate APIs to be compatible with new theme system * test: update snapshots * chore: migrate the path of the theme module * feat(themes): append static methods of themes * chore: hide custom theme when no custom content in the context * chore: manually add flush to preload styles in html * docs(themes): update to fit the new theme system * chore: release v2.1.0-canary.3 (#450) * docs: add link to GH discussions * chore: upgrade deps * chore: update code style for prettier * chore: release v2.1.0-canary.3 * chore(deps): upgrade babel * chore: replace enzyme adapter with community repo to fit react.17 * test: updatee snapshots for auto typesetting * test(config): ignore unexported parts of the tools Co-authored-by: William <wcastand@gmail.com> Co-authored-by: William Castandet <williamcastandet@williams-air.home> Co-authored-by: Vaibhav Acharya <vaibhavacharya111@gmail.com> Co-authored-by: Paul van Dyk <39598117+PaulPCIO@users.noreply.github.com>
202 lines
4.9 KiB
TypeScript
202 lines
4.9 KiB
TypeScript
import React, { useMemo } from 'react'
|
|
import Link from '../link'
|
|
import { Props as LinkProps } from '../link/link'
|
|
import useTheme from '../use-theme'
|
|
import withDefaults from '../utils/with-defaults'
|
|
import ImageBrowserHttpsIcon from './image-browser-https-icon'
|
|
import { getBrowserColors, BrowserColors } from './styles'
|
|
|
|
type AnchorProps = Omit<React.AnchorHTMLAttributes<any>, keyof LinkProps>
|
|
|
|
interface Props {
|
|
title?: string
|
|
url?: string
|
|
showFullLink?: boolean
|
|
invert?: boolean
|
|
anchorProps?: AnchorProps
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
className: '',
|
|
showFullLink: false,
|
|
anchorProps: {} as AnchorProps,
|
|
invert: false,
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type ImageBrowserProps = Props & typeof defaultProps & NativeAttrs
|
|
|
|
const getHostFromUrl = (url: string) => {
|
|
try {
|
|
return new URL(url).host
|
|
} catch (e) {
|
|
return url
|
|
}
|
|
}
|
|
|
|
const getTitle = (title: string, colors: BrowserColors) => (
|
|
<div className="title">
|
|
{title}
|
|
<style jsx>{`
|
|
.title {
|
|
color: ${colors.titleColor};
|
|
font-size: 0.75rem;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
|
|
const getAddressInput = (
|
|
url: string,
|
|
showFullLink: boolean,
|
|
colors: BrowserColors,
|
|
anchorProps: AnchorProps,
|
|
) => (
|
|
<div className="address-input">
|
|
<span className="https">
|
|
<ImageBrowserHttpsIcon />
|
|
</span>
|
|
<Link href={url} title={url} target="_blank" {...anchorProps}>
|
|
{showFullLink ? url : getHostFromUrl(url)}
|
|
</Link>
|
|
<style jsx>{`
|
|
.address-input {
|
|
height: 1.75rem;
|
|
max-width: 60%;
|
|
min-width: 40%;
|
|
background-color: ${colors.inputBgColor};
|
|
color: inherit;
|
|
border-radius: 3px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 10px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.address-input :global(*) {
|
|
font-size: 0.75rem;
|
|
color: inherit;
|
|
}
|
|
|
|
.address-input :global(a) {
|
|
max-width: 90%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
display: inline-block;
|
|
color: inherit;
|
|
}
|
|
|
|
.https {
|
|
width: 12px;
|
|
height: 12px;
|
|
margin-right: 5px;
|
|
user-select: none;
|
|
margin-top: -1px;
|
|
color: inherit;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
|
|
const ImageBrowser = React.forwardRef<
|
|
HTMLDivElement,
|
|
React.PropsWithChildren<ImageBrowserProps>
|
|
>(
|
|
(
|
|
{ url, title, children, showFullLink, invert, anchorProps, className, ...props },
|
|
ref: React.Ref<HTMLDivElement>,
|
|
) => {
|
|
const theme = useTheme()
|
|
const colors = useMemo(() => getBrowserColors(invert, theme.palette), [
|
|
invert,
|
|
theme.palette,
|
|
])
|
|
const input = useMemo(() => {
|
|
if (url) return getAddressInput(url, showFullLink, colors, anchorProps)
|
|
if (title) return getTitle(title, colors)
|
|
return null
|
|
}, [url, showFullLink, title, colors, anchorProps])
|
|
|
|
return (
|
|
<div className={`bowser ${className}`} ref={ref} {...props}>
|
|
<header>
|
|
<div className="traffic">
|
|
<span className="close" />
|
|
<span className="mini" />
|
|
<span className="full" />
|
|
</div>
|
|
{input}
|
|
</header>
|
|
{children}
|
|
<style jsx>{`
|
|
.bowser {
|
|
background-color: transparent;
|
|
box-shadow: ${theme.expressiveness.shadowLarge};
|
|
width: max-content;
|
|
max-width: 100%;
|
|
margin: 0 auto;
|
|
border-radius: ${theme.layout.radius};
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bowser :global(.image) {
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
header {
|
|
height: 2.5rem;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
color: ${colors.color};
|
|
background-color: ${colors.barBgColor};
|
|
border-bottom: 1px solid ${colors.borderColor};
|
|
}
|
|
|
|
.traffic {
|
|
width: auto;
|
|
position: absolute;
|
|
left: ${theme.layout.gapHalf};
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
bottom: 0;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
user-select: none;
|
|
}
|
|
|
|
.traffic span {
|
|
border-radius: 50%;
|
|
width: 0.75rem;
|
|
height: 0.75rem;
|
|
display: inline-block;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.close {
|
|
background-color: #ff5f56;
|
|
}
|
|
|
|
.mini {
|
|
background-color: #ffbd2e;
|
|
}
|
|
|
|
.full {
|
|
background-color: #27c93f;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
},
|
|
)
|
|
|
|
export default withDefaults(ImageBrowser, defaultProps)
|