Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
essence-appbar
Advanced tools
import ClassNames from 'classnames';
import AppBar from 'essence-appbar';
import Input from 'essence-input';
import Menu from 'essence-menu';
import Toast from 'essence-toast';
class AppBarTest extends React.Component {
constructor(props) {
super(props);
this.state = {
search: 'close',
toast: false,
classes: ClassNames(
this.props.classes,
this.props.className
)
};
}
renderSearch() {
let classes = ClassNames('e-no-margin e-text-white e-left', this.state.search);
return (
<Input
type={'search'}
name='search-input'
placeholder='Search...'
classes={classes}/>
);
}
renderToast() {
if (this.state.toast) {
return (
<Toast classes={'e-text-green-500'} visible={true} delay={5000}>
Adaugat la Favorite
</Toast>
);
}
return;
}
toggleSearch() {
this.setState({
search: (this.state.search === 'close' ? 'open' : 'close')
});
}
toggleToast() {
var toastStatus = !this.state.toast;
this.setState({
toast: toastStatus
});
}
render() {
return(
<AppBar classes={'e-background-cyan-400'}>
<Button className={'flat e-background-cyan-400 e-text-white e-left'} type={'primary'} icon={'navigation-menu'}/>
<Text className={'e-text-white'}>Essence - test</Text>
<Menu type={'cover'} icon={'navigation-more-vert'} classes={'e-right e-text-white e-background-cyan-400'}>
<Text classes={'e-text-black'}>Profile</Text>
<Text classes={'e-text-black'}>Settings</Text>
<Text classes={'e-text-black'}>Logout</Text>
</Menu>
<Block className={'e-right'}>
{this.renderToast()}
<Button onClick={this.toggleToast.bind(this)} className={'flat e-background-cyan-400 e-text-white e-right'} type={'primary'} icon={'action-favorite'}/>
</Block>
<Block className={'e-right search-block'}>
{this.renderSearch()}
<Button onClick={this.toggleSearch.bind(this)} className={'flat e-background-cyan-400 e-text-white e-right'} type={'primary'} icon={'action-search'}/>
</Block>
</AppBar>
);
}
};
FAQs
Essence AppBar - AppBar component
The npm package essence-appbar receives a total of 2 weekly downloads. As such, essence-appbar popularity was classified as not popular.
We found that essence-appbar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.