@ -1,50 +1,120 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import React , { useEffect , useState , useRef } from 'react'
import PluginButton from './pluginButton'
import { ThemeContext , themes } from '../themeContext'
import Carousel from 'react-multi-carousel'
import 'react-multi-carousel/lib/styles.css'
import CustomNavButtons from './customNavButtons'
declare global {
interface Window {
_paq : any
}
}
const _paq = window . _paq = window . _paq || [ ] //eslint-disable-line
interface HomeTabFeaturedPluginsProps {
plugin : any
}
function HomeTabFeaturedPlugins ( ) {
function HomeTabFeaturedPlugins ( { plugin } : HomeTabFeaturedPluginsProps ) {
const [ state , setState ] = useState < {
searchInput : string
themeQuality : { filter : string , name : string } ,
showMediaPanel : 'none' | 'twitter' | 'medium'
} > ( {
searchInput : ''
themeQuality : themes.light ,
showMediaPanel : 'none'
} )
useEffect ( ( ) = > {
document . addEventListener ( "keyup" , ( e ) = > handleSearchKeyDown ( e ) )
return ( ) = > {
document . removeEventListener ( "keyup" , handleSearchKeyDown )
}
} , [ ] )
const searchInputRef = useRef ( null )
const remiAudioEl = useRef ( null )
const playRemi = async ( ) = > {
remiAudioEl . current . play ( )
const startSolidity = async ( ) = > {
await plugin . appManager . activatePlugin ( [ 'solidity' , 'udapp' , 'solidityStaticAnalysis' , 'solidityUnitTesting' ] )
plugin . verticalIcons . select ( 'solidity' )
_paq . push ( [ 'trackEvent' , 'pluginManager' , 'userActivate' , 'solidity' ] )
}
const handleSearchKeyDown = ( e : KeyboardEvent ) = > {
if ( e . target !== searchInputRef . current ) return
if ( e . key === "Enter" ) {
openLink ( )
setState ( prevState = > {
return { . . . prevState , searchInput : '' }
} )
searchInputRef . current . value = ""
}
const startStarkNet = async ( ) = > {
await plugin . appManager . activatePlugin ( 'starkNet_compiler' )
plugin . verticalIcons . select ( 'starkNet_compiler' )
_paq . push ( [ 'trackEvent' , 'pluginManager' , 'userActivate' , 'starkNet_compiler' ] )
}
const openLink = ( url = "" ) = > {
if ( url === "" ) {
window . open ( "https://remix-ide.readthedocs.io/en/latest/search.html?q=" + state . searchInput + "&check_keywords=yes&area=default" , '_blank' )
} else {
window . open ( url , '_blank' )
}
const startSolhint = async ( ) = > {
await plugin . appManager . activatePlugin ( [ 'solidity' , 'solhint' ] )
plugin . verticalIcons . select ( 'solhint' )
_paq . push ( [ 'trackEvent' , 'pluginManager' , 'userActivate' , 'solhint' ] )
}
const startLearnEth = async ( ) = > {
await plugin . appManager . activatePlugin ( [ 'solidity' , 'LearnEth' , 'solidityUnitTesting' ] )
plugin . verticalIcons . select ( 'LearnEth' )
_paq . push ( [ 'trackEvent' , 'pluginManager' , 'userActivate' , 'learnEth' ] )
}
const startSourceVerify = async ( ) = > {
await plugin . appManager . activatePlugin ( [ 'solidity' , 'sourcify' ] )
plugin . verticalIcons . select ( 'sourcify' )
_paq . push ( [ 'trackEvent' , 'pluginManager' , 'userActivate' , 'sourcify' ] )
}
const startPluginManager = async ( ) = > {
plugin . verticalIcons . select ( 'pluginManager' )
}
const responsive = {
desktop : {
breakpoint : { max : 3000 , min : 1024 } ,
items : 4 ,
slidesToSlide : 3 // optional, default to 1.
} ,
tablet : {
breakpoint : { max : 1024 , min : 464 } ,
items : 2 ,
slidesToSlide : 2 // optional, default to 1.
} ,
mobile : {
breakpoint : { max : 464 , min : 0 } ,
items : 1 ,
slidesToSlide : 1 // optional, default to 1.
}
} ;
const CustomNavButtons = ( { next , previous , goToSlide , . . . rest } ) = > {
const { carouselState : { currentSlide } } = rest ;
return (
< div className = "d-flex justify-content-end carousel-button-group" >
< button className = { currentSlide === 0 ? 'disable py-0 border btn' : 'py-0 border btn' } onClick = { ( ) = > previous ( ) } >
< i className = "fas fa-angle-left" > < / i >
< / button >
< button className = "py-0 border btn" onClick = { ( ) = > next ( ) } >
< i className = "fas fa-angle-right" > < / i >
< / button >
< / div >
) ;
} ;
return (
< div className = "" id = "hTFeaturedPlugins" >
< label style = { { fontSize : "1.2rem" } } > Featured Plugins < / label >
< div className = "border" > < / div >
< div className = "w-100" id = "hTFeaturedPlugins" >
< label className = "pl-2" style = { { fontSize : "1.2rem" } } > Featured Plugins < / label >
< div className = "w-100 d-flex flex-column" >
< ThemeContext.Provider value = { state . themeQuality } >
< Carousel
customButtonGroup = { < CustomNavButtons next = { undefined } previous = { undefined } goToSlide = { undefined } / > }
arrows = { false }
swipeable = { false }
draggable = { true }
showDots = { false }
responsive = { responsive }
renderDotsOutside = { false }
renderButtonGroupOutside = { true }
ssr = { true } // means to render carousel on server-side.
infinite = { false }
keyBoardControl = { true }
containerClass = "carousel-container"
deviceType = { "desktop" }
itemClass = "carousel-item-padding-10-px"
>
< PluginButton imgPath = "assets/img/solidityLogo.webp" envID = "solidityLogo" envText = "Solidity" description = "Compile, test and analyse smart contract." remixMaintained = { true } callback = { ( ) = > startSolidity ( ) } / >
< PluginButton imgPath = "assets/img/starkNetLogo.webp" envID = "starkNetLogo" envText = "StarkNet" description = "Compile and deploy contracts with Cairo, a native language for StarkNet." l2 = { true } callback = { ( ) = > startStarkNet ( ) } / >
< PluginButton imgPath = "assets/img/solhintLogo.webp" envID = "solhintLogo" envText = "Solhint linter" description = "Solhint is an open source project for linting Solidity code." callback = { ( ) = > startSolhint ( ) } / >
< PluginButton imgPath = "assets/img/sourcifyNewLogo.webp" envID = "sourcifyLogo" envText = "Sourcify" description = "Solidity contract and metadata verification service." callback = { ( ) = > startSourceVerify ( ) } / >
< PluginButton imgPath = "assets/img/moreLogo.webp" envID = "moreLogo" envText = "Plugin Manager" description = "Discover more plugins." callback = { startPluginManager } / >
< / Carousel >
< / ThemeContext.Provider >
< / div >
< / div >
)
}