Peter Komasinski

Sales Engineer at Seaway Plastics Engineering

Peter Komasinski has worked in the plastics engineering industry for over 25 years. Peter began their career in 1991 as a Sales Engineer at Apogee Plastics Technologies, Inc., where they provided technical sales support and tooling management for custom injection molders focused on electronic and consumer products. Peter then moved to McKechnie Plastic Components in 1995, where they worked as a Senior Tool Engineer. In 1998, they became a Strategic Account Manager at Mold-Masters, and then moved to Ring Precision Technologies in 2002. Peter then worked as a Technical Sales Representative at HASCO from 2006 to 2010, before becoming a Sales Engineer at Seaway Plastics Engineering, Inc., where they specialized in mold making, prototype injection molding, and low volume production with expedited deliveries.

import React from 'react';

import { Link, withRouter } from 'react-router-dom';

import { connect } from 'react-redux';

import { logout } from '../../actions/session_actions';

import { openModal } from '../../actions/modal_actions';

class NavBar extends React.Component {

constructor(props) {

super(props);

this.state = {

dropdown: false

};

this.toggleDropdown = this.toggleDropdown.bind(this);

this.handleLogout = this.handleLogout.bind(this);

}

toggleDropdown() {

this.setState({

dropdown: !this.state.dropdown

});

}

handleLogout() {

this.props.logout();

this.props.history.push('/');

}

render() {

const { currentUser, openModal } = this.props;

const { dropdown } = this.state;

const dropdownClass = dropdown ? 'dropdown-visible' : 'dropdown-hidden';

let display;

if (currentUser) {

display = (

<div className="nav-bar-right">

<div className="nav-bar-user-info">

<div className="nav-bar-user-icon">

<i className="fas fa-user-circle"></i>

</div>

<div className="nav-bar-user-name">

{currentUser.username}

</div>

<div className="nav-bar-user-dropdown" onClick={this.toggleDropdown}>

<i className="fas fa-caret-down"></i>

</div>

</div>

<div className={`nav-bar-user-dropdown-menu ${dropdownClass}`}>

<Link to="/account" className="nav-bar-user-dropdown-menu-item">

My Account

</Link>

<div

Links


Org chart

Timeline

  • Sales Engineer

    March, 2010 - present