{"version":3,"file":"src_stimulus_controllers_dynamic_overview-header_controller_ts.b84f2aa0009ddf83.js","mappings":"0OAgCc,MAAOA,iCAAiCC,EAAAA,GAAtDC,WAAAA,G,oBASE,KAAAC,uBAA0BC,IACxB,MAAMC,EAAOD,EAAME,OACbC,EAAUC,KAAKD,QAER,aAATF,EACFE,EAAQE,UAAUC,OAAO,UAEzBH,EAAQE,UAAUE,IAAI,SACxB,CAEJ,CAlBEC,OAAAA,GACEC,OAAOC,iBAAiB,gCAAiCN,KAAKL,uBAChE,CAEAY,UAAAA,GACEF,OAAOG,oBAAoB,gCAAiCR,KAAKL,uBACnE,E","sources":["./src/stimulus/controllers/dynamic/overview-header.controller.ts"],"sourcesContent":["/*\n * -- copyright\n * OpenProject is an open source project management software.\n * Copyright (C) the OpenProject GmbH\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License version 3.\n *\n * OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:\n * Copyright (C) 2006-2013 Jean-Philippe Lang\n * Copyright (C) 2010-2013 the ChiliProject Team\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License\n * as published by the Free Software Foundation; either version 2\n * of the License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n *\n * See COPYRIGHT and LICENSE files for more details.\n * ++\n */\n\nimport { Controller } from '@hotwired/stimulus';\n\nexport default class OverviewHeaderController extends Controller {\n connect() {\n window.addEventListener('angular:router:module-changed', this.toggleHeaderVisibility);\n }\n\n disconnect() {\n window.removeEventListener('angular:router:module-changed', this.toggleHeaderVisibility);\n }\n\n toggleHeaderVisibility = (event:CustomEvent) => {\n const name = event.detail as string;\n const element = this.element as HTMLElement;\n\n if (name === 'overview') {\n element.classList.remove('d-none');\n } else {\n element.classList.add('d-none');\n }\n };\n}\n"],"names":["OverviewHeaderController","Controller","constructor","toggleHeaderVisibility","event","name","detail","element","this","classList","remove","add","connect","window","addEventListener","disconnect","removeEventListener"],"sourceRoot":"webpack:///","x_google_ignoreList":[]}