Use custom icon

pull/5370/head
David Disu 3 years ago
parent 46e6cfa424
commit 3a01e3c244
  1. 71
      libs/remix-ui/workspace/src/lib/components/tooltipInput.tsx

@ -1,32 +1,53 @@
import React, { useState } from 'react' import React, { ReactNode, Ref } from 'react'
import { ButtonGroup, Dropdown } from 'react-bootstrap' import { Dropdown, FormControl } from 'react-bootstrap'
export function DeployButton (props: DeployButtonProps) { // The forwardRef is important!!
const [showOptions, setShowOptions] = useState<boolean>(false) // Dropdown needs access to the DOM node in order to position the Menu
const CustomToggle = React.forwardRef(({ children, onClick }: { children?: ReactNode, onClick: (e) => void }, ref: Ref<HTMLAnchorElement>) => (
<a
href=""
ref={ref}
onClick={(e) => {
e.preventDefault()
onClick(e)
}}
>
{children}
</a>
))
const toggleOptions = () => { export const cloneWorkspace = () => {
setShowOptions(!showOptions)
}
return ( return (
<> <Dropdown>
{ props.deployOptions && (props.deployOptions || []).length > 0 ? <Dropdown.Toggle as={CustomToggle} id="dropdown-custom-components">
<Dropdown as={ButtonGroup} autoClose="outside"> <span
<button onClick={props.handleActionClick} title={props.buttonOptions.title} className={`udapp_instanceButton ${props.buttonOptions.widthClass} btn btn-sm ${props.buttonOptions.classList}`} data-id={props.buttonOptions.dataId}>{ props.deployOptions[props.selectedIndex] ? props.deployOptions[props.selectedIndex].title : 'Deploy' }</button> id='workspacesRestore'
<Dropdown.Toggle split id="dropdown-split-basic" className={`btn btn-sm dropdown-toggle dropdown-toggle-split ${props.buttonOptions.classList}`} style={{ maxWidth: 25, minWidth: 0, height: 32 }} /> data-id='workspacesRestore'
<Dropdown.Menu className="deploy-items border-0"> onClick={() => {}}
{ className='far fa-upload remixui_menuicon'
(props.deployOptions).map(({ title, active }, index) => <Dropdown.Item onClick={() => { title='Restore Workspaces Backup'>
props.setSelectedIndex(index) </span>
toggleOptions() </Dropdown.Toggle>
}} key={index}> { props.selectedIndex === index ? <span>&#10003; {title} </span> : <span className="pl-3">{title}</span> }</Dropdown.Item>)
} <Dropdown.Menu>
{/* <Dropdown.Item eventKey="1">
<FormControl
autoFocus
className="mx-3 my-2 w-auto"
placeholder="Type to filter..."
onChange={(e) => setValue(e.target.value)}
value={value}
/>
</Dropdown.Item> */}
<FormControl
autoFocus
className="mx-3 my-2 w-auto"
placeholder="Type to filter..."
onChange={() => {}}
value=''
/>
</Dropdown.Menu> </Dropdown.Menu>
</Dropdown> : </Dropdown>
<button onClick={props.handleActionClick} title={props.buttonOptions.title} className={`udapp_instanceButton ${props.buttonOptions.widthClass} btn btn-sm ${props.buttonOptions.classList}`} data-id={props.buttonOptions.dataId}>
Deploy
</button>
}
</>
) )
} }
Loading…
Cancel
Save