define(['uiComponent','jquery','Magento_Customer/js/customer-data'],function(Component,$,customerData){'use strict';return Component.extend({initialize:function(){var consignmentDashboard=customerData.get('consignment_dashboard'),customerSectionData=customerData.get('customer'),self=this;this._super();consignmentDashboard.subscribe(function(){self._removeMenuItem(consignmentDashboard);self._showMyDevicesDropdown();});if(consignmentDashboard){self._removeMenuItem(consignmentDashboard);self._showMyDevicesDropdown();} if(!customerSectionData().can_show_uhc_order_link){$('#uhcTopMenu').remove();}},_removeMenuItem:function(consignmentDashboard){var menuItem=$('.consignmentDashboardMenuPoint');if(menuItem.length&&(consignmentDashboard().is_eligible===false)){menuItem.remove();}},_showMyDevicesDropdown:function(){var myDevicesMenuElement='.mydevices',firstSubMenuElement='#som .mydevices > ul > li',firstSubMenuWidgetUiElement='#sdm .mydevices > ul > li';if($(firstSubMenuElement).length!=0&&$(firstSubMenuWidgetUiElement).length!=0){$(myDevicesMenuElement).removeClass('hide');}else{$(myDevicesMenuElement).addClass('hide');}}});});