theme-ui#Image TypeScript Examples
The following examples show how to use
theme-ui#Image.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WidgetToggle.tsx From chat-widget with MIT License | 6 votes |
ToggleIcon = ({
isOpen,
customIconUrl,
iconVariant,
}: {
isOpen?: boolean;
customIconUrl?: string;
iconVariant?: 'outlined' | 'filled';
}) => {
if (!customIconUrl) {
return iconVariant === 'filled' ? (
<ToggleIconFilled />
) : (
<DefaultToggleIcon />
);
}
if (isOpen) {
return <DefaultCloseIcon />;
} else {
return <Image src={customIconUrl} style={{maxHeight: 40, maxWidth: 40}} />;
}
}
Example #2
Source File: ChatMessageBody.tsx From chat-window with MIT License | 6 votes |
ChatMessageAttachment = ({attachment}: {attachment: Attachment}) => {
const {
id,
filename,
file_url: fileUrl,
content_type: contentType,
} = attachment;
const isImageFile = contentType.indexOf('image') !== -1;
return (
<Box key={id} mb={1}>
<a
href={fileUrl}
style={{
textDecoration: 'underline',
}}
target="_blank"
rel="noopener noreferrer"
>
{isImageFile && false ? (
<Box>
<Image alt={filename} src={fileUrl} />
</Box>
) : (
filename
)}
</a>
</Box>
);
}
Example #3
Source File: onboarding.tsx From slice-machine with Apache License 2.0 | 6 votes |
PushPagesSlide = () => (
<>
<Image sx={imageSx} src="/send.svg" />
<Header>Push your pages to Prismic</Header>
<SubHeader>
Give your content writers the freedom to build whatever they need
</SubHeader>
<Video publicId="SMONBOARDING/PUSH_TO_PRISMIC" />
</>
)
Example #4
Source File: MetamaskLogin.tsx From nft-market with MIT License | 6 votes |
MetamaskLogin = ({ onClickConnect }: MetamaskLoginProps) => {
return (
<Flex sx={{ flexDirection: 'column', alignItems: 'center' }}>
<Button sx={{ maxWidth: 200, mt: 5 }} variant="quartiary" onClick={onClickConnect}>
Sign in with
<Image
sx={{ width: 35, height: 35 }}
ml={3}
src="https://docs.metamask.io/metamask-fox.svg"
/>
</Button>
</Flex>
)
}
Example #5
Source File: Error.tsx From nft-market with MIT License | 6 votes |
Error = () => {
return (
<Flex>
<Image sx={{ width: 100, height: 100 }} src="/icons/icon-512x512.png" />
<Box mt={4} ml={4}>
<Heading as="h2">Metamask not installed</Heading>
<Text mt={2}>
Go to{' '}
<Link href="https://metamask.io" target="_blank">
https://metamask.io
</Link>{' '}
to install it.
</Text>
</Box>
</Flex>
)
}
Example #6
Source File: ModalMapSelect.tsx From HappyIslandDesigner with MIT License | 5 votes |
export default function ModalMapSelect(){
const [modalIsOpen,setIsOpen] = useState(false);
function openModal() {
setIsOpen(true);
}
function afterOpenModal() {
}
function closeModal(){
if (!isMapEmpty())
setIsOpen(false);
}
useEffect(() => {
Modal.setAppElement('body');
}, []);
const refCallback = useBlockZoom();
return (
<div>
<button id="open-map-select" style={{display: 'none'}} onClick={openModal}>Open Modal</button>
<button id="close-map-select" style={{display: 'none'}} onClick={closeModal}>Open Modal</button>
<Modal
isOpen={modalIsOpen}
closeTimeoutMS={200} // keep in sync with modal.scss
onAfterOpen={afterOpenModal}
onRequestClose={closeModal}
style={customStyles}
sx={{}}
contentLabel="Example Modal"
>
<Flex
ref={refCallback}
p={3}
sx={{
backgroundColor : colors.paper.cssColor,
border: 0,
borderRadius: 8,
flexDirection: 'column',
overflow: 'auto',
//borderRadius: 60,
//minWidth: 260,
}}>
<Box p={2} sx={{
backgroundColor: colors.level3.cssColor,
borderRadius: '30px 4px 4px 30px',
}}>
<Image variant='block' sx={{maxWidth: 150}} src='static/img/nook-inc-white.png'/>
</Box>
<IslandLayoutSelector />
<Box p={3} sx={{
backgroundColor: colors.level3.cssColor,
borderRadius: '4px 30px 30px 4px',
}} />
</Flex>
</Modal>
</div>
);
}
Example #7
Source File: ImagePreview.tsx From slice-machine with Apache License 2.0 | 5 votes |
DefaultImage: React.FC<{ src: string | undefined }> = ({ src }) => (
<Image src={src} alt="Preview image" />
)
Example #8
Source File: onboarding.tsx From slice-machine with Apache License 2.0 | 5 votes |
BuildSlicesSlide = () => (
<>
<Image sx={imageSx} src="/horizontal_split.svg" />
<Header>Build Slices</Header>
<SubHeader>The building blocks used to create your website</SubHeader>
<Video publicId="SMONBOARDING/BUILD_SLICE" />
</>
)
Example #9
Source File: onboarding.tsx From slice-machine with Apache License 2.0 | 5 votes |
CreatePageTypesSlide = () => (
<>
<Image sx={imageSx} src="/insert_page_break.svg" />
<Header>Create Page Types</Header>
<SubHeader>Group your Slices as page builders</SubHeader>
<Video publicId="SMONBOARDING/ADD_TO_PAGE" />
</>
)
Example #10
Source File: Header.tsx From nft-market with MIT License | 5 votes |
Header = () => {
const history = useHistory()
const location = useLocation()
const { user, isAuthenticated } = useAppState()
return (
<Box bg="black">
<Flex sx={{ alignItems: 'center', p: 3 }} as="nav">
<Image
onClick={() => {
history.push('/')
}}
sx={{ width: 50, cursor: 'pointer' }}
src="/static/logo.png"
/>
<Heading sx={{ ml: [1, 2], color: 'white' }} as="h4">
ERC721 Marketplace{' '}
<Text sx={{ display: ['none', 'block'] }}>+ OpenSea.io on Rinkeby Network</Text>
</Heading>
<UserMenu />
</Flex>
{isAuthenticated && user && (
<Flex bg="midGray" py={3} sx={{ justifyContent: 'center' }}>
<NavLink
sx={{
pointerEvents: location.pathname === '/' ? 'none' : 'visible',
color: location.pathname === '/' ? 'green' : 'white',
}}
onClick={() => history.push('/')}
>
Marketplace
</NavLink>
<Box sx={{ width: 50 }} />
<NavLink
sx={{
pointerEvents: location.pathname === '/profile' ? 'none' : 'visible',
color: location.pathname === '/profile' ? 'green' : 'white',
}}
onClick={() => history.push('/profile')}
>
Profile
</NavLink>
</Flex>
)}
</Box>
)
}
Example #11
Source File: Login.tsx From nft-market with MIT License | 5 votes |
Login = () => {
const { activatingConnector, setActivatingConnector } = useAppState()
const { connector, activate } = useWeb3React()
return (
<Flex sx={{ justifyContent: 'center' }}>
{Object.keys(connectorsByName).map((name: string) => {
const currentConnector = connectorsByName[name as keyof typeof connectorsByName]
const activating = currentConnector === activatingConnector
const connected = currentConnector === connector
return (
<Button
mt={2}
mr={2}
variant="connect"
sx={{
borderColor: activating ? 'orange' : connected ? 'green' : 'unset',
position: 'relative',
maxWidth: 250,
}}
key={name}
onClick={() => {
setActivatingConnector(currentConnector)
activate(connectorsByName[name as keyof typeof connectorsByName] as AbstractConnector)
}}
>
{iconsMap[name as keyof typeof connectorsByName] && (
<Image
sx={{ width: 35, height: 35 }}
mr={3}
src={iconsMap[name as keyof typeof connectorsByName]}
/>
)}
{name}
{activating && <Spinner size={20} color="white" sx={{ ml: 3 }} />}
</Button>
)
})}
</Flex>
)
}
Example #12
Source File: Login.tsx From nft-market with MIT License | 5 votes |
Login = () => {
const { activatingConnector, setActivatingConnector } = useAppState()
const { connector, activate } = useWeb3React()
return (
<Flex sx={{ justifyContent: 'center' }}>
{Object.keys(connectorsByName).map((name: string) => {
const currentConnector = connectorsByName[name as keyof typeof connectorsByName]
const activating = currentConnector === activatingConnector
const connected = currentConnector === connector
return (
<Button
mt={2}
mr={2}
variant="connect"
sx={{
borderColor: activating ? 'orange' : connected ? 'green' : 'unset',
position: 'relative',
maxWidth: 250,
}}
key={name}
onClick={() => {
setActivatingConnector(currentConnector)
activate(connectorsByName[name as keyof typeof connectorsByName] as AbstractConnector)
}}
>
{iconsMap[name as keyof typeof connectorsByName] && (
<Image
sx={{ width: 35, height: 35 }}
mr={3}
src={iconsMap[name as keyof typeof connectorsByName]}
/>
)}
{name}
{activating && <Spinner size={20} color="white" sx={{ ml: 3 }} />}
</Button>
)
})}
</Flex>
)
}
Example #13
Source File: ModalMapSelect.tsx From HappyIslandDesigner with MIT License | 4 votes |
function IslandLayoutSelector() {
const [layoutType, setLayoutType] = useState<LayoutType>(LayoutType.none);
const [layout, setLayout] = useState<number>(-1);
const [help, setHelp] = useState<boolean>(false);
useEffect(() => {
if (layout != -1)
{
const layoutData = getLayouts(layoutType)[layout];
loadMapFromJSONString(layoutData.data);
CloseMapSelectModal();
}
}, [layoutType, layout]);
function getLayouts(type: LayoutType) {
switch (type) {
case LayoutType.west:
return Layouts.west;
case LayoutType.south:
return Layouts.south;
case LayoutType.east:
return Layouts.east;
case LayoutType.blank:
return Layouts.blank;
}
return [];
}
if (help) {
return (
<Flex p={[0, 3]} sx={{flexDirection: 'column', alignItems: 'center', position: 'relative'}}>
<Box sx={{position: 'absolute', left: 0, top: [1, 30]}}>
<Button variant='icon' onClick={() => setHelp(false)}>
<Image sx={{width: 'auto'}} src='static/img/back.png' />
</Button>
</Box>
<Image sx={{width: 100, margin: 'auto'}} src={'static/img/blathers.png'}/>
<Heading m={3} sx={{px: layoutType ? 4 : 0, textAlign: 'center'}}>{'Please help contribute!'}</Heading>
<Text my={2}>{'Sorry, we don\'t have all the map templates yet (there are almost 100 river layouts in the game!). Each option you see here has been hand-made by a member of the community.'}</Text>
<Text my={2}>{'You can use the \'Upload Screenshot\' tool to trace an image of your island. When you\'re done please consider contributing your island map in either the '}<Link href={'https://github.com/eugeneration/HappyIslandDesigner/issues/59'}>Github</Link>{' or '}<Link href={'https://discord.gg/EtaqD5H'}>Discord</Link>!</Text>
<Text my={2}>{'Please note that your island may have different shaped rock formations, beaches, and building positions than another island with the same river layout.'}</Text>
</Flex>
)
}
let content;
if (layoutType != LayoutType.none) {
var layouts: Array<Layout> = getLayouts(layoutType);
content = (
<Grid
gap={0}
columns={[2, 3, 4]}
sx={{justifyItems: 'center' }}>
{
layouts.map((layout, index) => (
<Card
key={index}
onClick={() => {
confirmDestructiveAction(
'Clear your map? You will lose all unsaved changes.',
() => {
setLayout(index);
});
}}>
<Image variant='card' src={`static/img/layouts/${layoutType}-${layout.name}.png`}/>
</Card>
)).concat(
<Card key={'help'} onClick={()=>{setHelp(true)}}>
<Image sx={{width: 24}} src={'static/img/menu-help.png'} />
<Text sx={{fontFamily: 'body'}}>{'Why isn\'t my map here?'}</Text>
</Card>
)
}
</Grid>
);
}
else {
content = (
<Flex sx={{flexDirection: ['column', 'row'], alignItems: 'center'}}>
<Card onClick={() => setLayoutType(LayoutType.west)}><Image variant='card' src={'static/img/island-type-west.png'}/></Card>
<Card onClick={() => setLayoutType(LayoutType.south)}><Image variant='card' src={'static/img/island-type-south.png'}/></Card>
<Card onClick={() => setLayoutType(LayoutType.east)}><Image variant='card' src={'static/img/island-type-east.png'}/></Card>
<Card onClick={() => {
setLayoutType(LayoutType.blank);
confirmDestructiveAction(
'Clear your map? You will lose all unsaved changes.',
() => {
setLayout(0);
});
}}><Image variant='card' src={'static/img/island-type-blank.png'}/></Card> </Flex>
);
}
return (
<Box p={[0, 3]} sx={{position: 'relative'}}>
{layoutType && <Box sx={{position: 'absolute', top: [1, 3]}}>
<Button variant='icon' onClick={() => setLayoutType(LayoutType.none)}>
<Image src='static/img/back.png' />
</Button>
</Box>}
<Heading m={2} sx={{px: layoutType ? 4 : 0, textAlign: 'center'}}>{layoutType ? 'Choose your Island!' : 'Choose your Layout!'}</Heading>
{layoutType && <Text m={2} sx={{textAlign: 'center'}}>{'You probably won\'t find an exact match, but pick one that roughly resembles your island.'}</Text>}
{content}
</Box>
);
}
Example #14
Source File: Token.tsx From nft-market with MIT License | 4 votes |
Token = ({ token, isOnSale, onTransfer, onBuy, onSale }: TokenCompProps) => {
const [transfer, setTransfer] = useState<boolean>(false)
const [onSaleActive, setOnSale] = useState<boolean>(false)
const [address, setAddress] = useState<string>('')
const [price, setPrice] = useState<string>('')
const { user, ethPrice, contractDetails, transferToken, buyToken, setTokenSale } = useAppState()
const onTransferClick = async (e: FormEvent | MouseEvent) => {
e.preventDefault()
if (onTransfer && utils.isAddress(address)) {
transferToken(token.id, address)
setTransfer(false)
}
}
const onBuyClick = (e: MouseEvent) => {
e.preventDefault()
onBuy && buyToken(token.id, token.price)
}
const onSaleClick = async (e: MouseEvent) => {
e.preventDefault()
if (!onSale) return
try {
await setTokenSale(token.id, utils.parseEther(price), true)
setOnSale(false)
} catch (e) {
throw e
}
}
const { data: owner } = useSWR(token.id, fetchOwner)
const { data } = useSWR(`${METADATA_API}/token/${token.id}`, fetcherMetadata)
const tokenPriceEth = formatPriceEth(token.price, ethPrice)
if (!data)
return (
<Card variant="nft">
<Spinner />
</Card>
)
if (!data.name) return null
return (
<Card variant="nft">
<Image
sx={{ width: '100%', bg: 'white', borderBottom: '1px solid black' }}
src={data.image}
/>
<Box p={3} pt={2}>
<Heading as="h2">{data.name}</Heading>
<Divider variant="divider.nft" />
<Box>
<Text sx={{ color: 'lightBlue', fontSize: 1, fontWeight: 'bold' }}>Price</Text>
<Heading as="h3" sx={{ color: 'green', m: 0, fontWeight: 'bold' }}>
{constants.EtherSymbol} {Number(utils.formatEther(token.price)).toFixed(2)}{' '}
<Text sx={{ color: 'navy' }} as="span" variant="text.body">
({tokenPriceEth})
</Text>
</Heading>
{owner && typeof owner === 'string' && !onTransfer && (
<Box mt={2}>
<Text as="p" sx={{ color: 'lightBlue', fontSize: 1, fontWeight: 'bold' }}>
Owner
</Text>
<NavLink
target="_blank"
href={`https://rinkeby.etherscan.io/address/${owner}`}
variant="owner"
style={{
textOverflow: 'ellipsis',
width: '100%',
position: 'relative',
overflow: 'hidden',
}}
>
{toShort(owner)}
</NavLink>
</Box>
)}
<Box mt={2}>
<NavLink
target="_blank"
href={`https://testnets.opensea.io/assets/${contractDetails?.address}/${token.id}`}
variant="openSea"
>
View on Opensea.io
</NavLink>
</Box>
</Box>
{onTransfer && (
<Flex mt={3} sx={{ justifyContent: 'center' }}>
{transfer && (
<Box sx={{ width: '100%' }}>
<Flex
onSubmit={onTransferClick}
sx={{ width: '100%', flexDirection: 'column' }}
as="form"
>
<Input
onChange={e => setAddress(e.currentTarget.value)}
placeholder="ETH Address 0x0..."
/>
</Flex>
<Flex mt={2}>
<Button sx={{ bg: 'green' }} onClick={onTransferClick} variant="quartiary">
Confirm
</Button>
<Button
sx={{ bg: 'red' }}
ml={2}
onClick={() => setTransfer(false)}
variant="quartiary"
>
Cancel
</Button>
</Flex>
</Box>
)}
{onSaleActive && (
<Box sx={{ width: '100%' }}>
<Flex
onSubmit={onTransferClick}
sx={{ width: '100%', flexDirection: 'column' }}
as="form"
>
<Input
onChange={e => setPrice(e.currentTarget.value)}
placeholder="Token Price in ETH"
/>
</Flex>
<Flex mt={2}>
<Button sx={{ bg: 'green' }} onClick={onSaleClick} variant="quartiary">
Confirm
</Button>
<Button
sx={{ bg: 'red' }}
ml={2}
onClick={() => setOnSale(false)}
variant="quartiary"
>
Cancel
</Button>
</Flex>
</Box>
)}
{!transfer && !onSaleActive && (
<Flex sx={{ flexDirection: 'column', width: '100%', justifyContent: 'center' }}>
<Button onClick={() => setTransfer(!transfer)} variant="tertiary">
Transfer
</Button>
{isOnSale ? (
<Button
mt={2}
onClick={() => onSale && setTokenSale(token.id, token.price, false)}
variant="tertiary"
>
Remove from Sale
</Button>
) : (
<Button mt={2} onClick={() => setOnSale(!onSaleActive)} variant="tertiary">
Put Token for Sale
</Button>
)}
</Flex>
)}
</Flex>
)}
{onBuy && (
<Flex mt={3} sx={{ justifyContent: 'center', width: '100%' }}>
<Button
sx={{
opacity: !!user?.ownedTokens.find(
a => utils.formatUnits(a.id) === utils.formatUnits(token.id)
)
? 0.5
: 1,
pointerEvents: !!user?.ownedTokens.find(
a => utils.formatUnits(a.id) === utils.formatUnits(token.id)
)
? 'none'
: 'visible',
}}
onClick={onBuyClick}
variant="quartiary"
>
Buy Token
</Button>
</Flex>
)}
</Box>
</Card>
)
}