{ "version": 3, "sources": ["../../profiler.ts"], "sourcesContent": ["import {ui_state} from \"./state/index\"\nimport type {Board} from \"@cling/lib.shared.model\"\nimport {report_info} from \"@cling/lib.shared.debug\"\nimport {log} from \"@cling/lib.shared.logging\"\n\nlet page_mounted_counter = 0\nlet board_mounted_counter = 0\nlet should_report_ttfc = false\n\nexport const profiler = {\n on_page_mounted() {\n page_mounted_counter += 1\n },\n\n on_board_mounted(board: Board) {\n board_mounted_counter += 1\n if (\n page_mounted_counter === 0 &&\n board_mounted_counter === 1 &&\n ui_state.search_state.is_a_card_visible(board)\n ) {\n should_report_ttfc = true\n }\n },\n\n on_card_mounted() {\n if (should_report_ttfc) {\n should_report_ttfc = false\n if (cling.tab_was_in_background) {\n return\n }\n const ttfc = Math.round(performance.now() - cling.t0)\n cling.ttfc = ttfc\n log.info(\"TTFC\", {ttfc})\n if (!cling.dev && ttfc > 5000) {\n report_info(`TTFC too large: ${ttfc}`)\n }\n }\n },\n}\n"], "mappings": "uFAKA,IAAIA,EAAuB,EACvBC,EAAwB,EACxBC,EAAqB,GAEZC,EAAW,CACpB,iBAAkB,CACdH,GAAwB,CAC5B,EAEA,iBAAiBI,EAAc,CAC3BH,GAAyB,EAErBD,IAAyB,GACzBC,IAA0B,GAC1BI,EAAS,aAAa,kBAAkBD,CAAK,IAE7CF,EAAqB,GAE7B,EAEA,iBAAkB,CACd,GAAIA,EAAoB,CAEpB,GADAA,EAAqB,GACjB,MAAM,sBACN,OAEJ,IAAMI,EAAO,KAAK,MAAM,YAAY,IAAI,EAAI,MAAM,EAAE,EACpD,MAAM,KAAOA,EACbC,EAAI,KAAK,OAAQ,CAAC,KAAAD,CAAI,CAAC,EACnB,CAAC,MAAM,KAAOA,EAAO,KACrBE,EAAY,mBAAmBF,CAAI,EAAE,CAE7C,CACJ,CACJ", "names": ["page_mounted_counter", "board_mounted_counter", "should_report_ttfc", "profiler", "board", "ui_state", "ttfc", "log", "report_info"] }