/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at . */ import { getSelectedLocation } from "./sources"; import { getSelectedFrame } from "./pause"; function getGeneratedId(source) { if (source.isOriginal) { return source.generatedSource.id; } return source.id; } /* * Checks to if the selected frame's source is currently * selected. */ export function isSelectedFrameVisible(state) { const selectedLocation = getSelectedLocation(state); const selectedFrame = getSelectedFrame(state); if (!selectedFrame || !selectedLocation) { return false; } if (selectedLocation.source.isOriginal) { return selectedLocation.source.id === selectedFrame.location.source.id; } return ( selectedLocation.source.id === getGeneratedId(selectedFrame.location.source) ); }