glass-app-manager
Version:
Informatica's Glass Framework CLI for bootstrapping
91 lines (90 loc) • 3.03 kB
JavaScript
var GLASS_CONFIG = {
glassUI: {
platform: {
pageNames: {
fixed: ['HomePage', 'InfraPage'],
floating: ['RuntimeEnvPage', 'SecureAgentPage']
},
pages: {
HomePage: {
contribution: true,
// panelNames: ['WorldMapPanel', 'DataVolumeStatPanel', 'InsightsPanel'],
panels: {
WorldMapPanel: {
order: 1,
colSpan: 12,
rowSpan: 1,
height: 'auto'
},
DataVolumeStatPanel: {
order: 2,
colSpan: 4,
rowSpan: 1,
height: 'auto'
},
InsightsPanel: {
order: 3,
colSpan: 4,
rowSpan: 1,
height: 'auto'
}
}
}
}
},
supportedProductNames: ['$productname'],
products: {
// CDI: {
// enabled: false,
// pageNames: {
// fixed: ['About', 'CDIWorkspace'],
// floating: ['CDIAsset']
// },
// pages: {
// CDIPage: {
// path: '/cdi',
// name: 'cdi',
// label: 'CDI',
// tooltip: 'Cloud Data Integration'
// },
// CDIAgentServicePage: {
// path: '/cdi/agent/{id}',
// name: 'cdi_agent',
// label: 'CDI Agent Service',
// tooltip: 'CDI Agent Service'
// },
// HomePage: {
// panelNames: ['CDIPanelContributionToHomePage'],
// panels: {
// CDIPanelContributionToHomePage: {
// order: 4,
// colSpan: 4,
// rowSpan: 1,
// height: 'auto'
// }
// }
// }
// }
// },
$productname: {
enabled: true,
pageNames: {
fixed: ['SampleWorkspace']
},
pages: {
HomePage: {
panelNames: ['SamplePanel'],
panels: {
SamplePanel: {
order: 4,
colSpan: 12,
rowSpan: 1,
height: 'auto'
}
}
}
}
}
}
}
};