import type { Product } from './types' export const STUB_DATA: Product[] = [ { name: 'e1_prm', label: 'Portfolios', url: 'https://us.id.planview.com/api/go/E1_PRM/p-1234', secondaryLabel: 'Sandbox environment', }, { name: 'ea', label: 'EA', url: '', secondaryLabel: '', active: true, }, { name: 'okrs', label: "OKR's", url: '', secondaryLabel: '', }, { name: 'ppmpro', label: 'PPM Pro', url: 'https://innotas.ppmpro.com/', secondaryLabel: '', }, { name: 'leankit', label: 'LeanKit', url: 'https://planview.leankit.com/', secondaryLabel: '', }, { name: 'projectplace', label: 'Projectplace but with a reeeeeally long name that will most likely overflow and cause tooltip', url: 'https://service.projectplace.com/', secondaryLabel: '', }, { name: 'roadmaps', label: 'Roadmaps', url: 'https://us.roadmaps.planview.com/', secondaryLabel: '', }, { name: 'teamtap', label: 'Spigit', url: 'https://projectplaceideas.spigit.com/main/Page/AppHome', secondaryLabel: '', }, { name: 'viz', label: 'Tasktop Viz', url: 'https://www.planview.com/products-solutions/products/viz/', secondaryLabel: '', }, { name: 'pvadmin', label: 'Planview Admin', url: 'https://us.id.planview.com/', secondaryLabel: '', }, { name: 'planview_me', label: 'Planview.Me', url: '', secondaryLabel: 'My Planview Home', }, { name: 'project_advantage', label: 'Project Advantage', url: 'https://www.planview.com/products-solutions/products/planview-vantage/', secondaryLabel: '', }, { name: 'release_and_verify', label: 'Release and Verify', url: 'https://www.planview.com/products-solutions/products/release-and-verify/', secondaryLabel: '', }, ] export const STUB_DATA_PLUS_ENSEMBLE: Product[] = [ { name: 'ensemble', label: 'Planview.Me Labs', url: '', }, ...STUB_DATA, ]