Skip to content

Commit 128b78d

Browse files
committed
Enable new landing page experience by default
1 parent f2945e1 commit 128b78d

16 files changed

+135
-149
lines changed

app/scripts/app.js

+6-15
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,18 @@ angular
4141
templateUrl: 'views/projects.html',
4242
controller: 'ProjectsController'
4343
};
44-
if (_.get(window, 'OPENSHIFT_CONSTANTS.ENABLE_TECH_PREVIEW_FEATURE.service_catalog_landing_page')) {
44+
if (_.get(window, 'OPENSHIFT_CONSTANTS.DISABLE_SERVICE_CATALOG_LANDING_PAGE')) {
45+
landingPageRoute = projectsPageRoute;
46+
$routeProvider.when('/projects', {
47+
redirectTo: '/'
48+
});
49+
} else {
4550
landingPageRoute = {
4651
templateUrl: 'views/landing-page.html',
4752
controller: 'LandingPageController',
4853
reloadOnSearch: false
4954
};
5055
$routeProvider.when('/projects', projectsPageRoute);
51-
} else {
52-
landingPageRoute = projectsPageRoute;
53-
$routeProvider.when('/projects', {
54-
redirectTo: '/'
55-
});
5656
}
5757

5858
$routeProvider
@@ -496,15 +496,6 @@ angular
496496
// content (e.g. using :before pseudo-elements).
497497
$('body').addClass('ios');
498498
}
499-
})
500-
.run(function($rootScope){
501-
// if the service catalog landing page is enabled,
502-
// set global variable for use in views
503-
// and add class to body
504-
if (_.get(window, 'OPENSHIFT_CONSTANTS.ENABLE_TECH_PREVIEW_FEATURE.service_catalog_landing_page')) {
505-
$rootScope.globalTechPreviewIndicator = true;
506-
$('body').addClass('tech-preview');
507-
}
508499
});
509500

510501
hawtioPluginLoader.addModule('openshiftConsole');

app/scripts/constants.js

+11-5
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,21 @@ angular.extend(window.OPENSHIFT_CONSTANTS, {
8282
// when users navigate away from a page without saving.
8383
DISABLE_CONFIRM_ON_EXIT: false,
8484

85-
// This blacklist hides certain kinds from the "Other Resources" page because they are unpersisted, disallowed for most end users, or not supported by openshift but exist in kubernetes
85+
// Disable the new landing page and service catalog experience.
86+
DISABLE_SERVICE_CATALOG_LANDING_PAGE: false,
87+
88+
// This blacklist hides certain kinds from the "Other Resources" page because
89+
// they are unpersisted, disallowed for most end users, or not supported by
90+
// openshift but exist in kubernetes.
8691
AVAILABLE_KINDS_BLACKLIST: [],
87-
// Currently disables watch on events used by the drawer
92+
93+
// Currently disables watch on events used by the drawer.
8894
DISABLE_GLOBAL_EVENT_WATCH: false,
95+
8996
ENABLE_TECH_PREVIEW_FEATURE: {
90-
// Enable the new landing page and service catalog experience
91-
service_catalog_landing_page: false,
92-
// Set to `true` when the template service broker is enabled for the cluster in master-config.yaml
97+
// Set to true when the template service broker is enabled for the cluster in master-config.yaml.
9398
template_service_broker: false,
99+
// Set to true if the service catalog supports pod presets for binding services to applications.
94100
pod_presets: false
95101
},
96102

app/scripts/controllers/createProject.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ angular.module('openshiftConsole')
1414
$window,
1515
AuthService,
1616
Constants) {
17-
var landingPageEnabled = _.get(Constants, 'ENABLE_TECH_PREVIEW_FEATURE.service_catalog_landing_page');
17+
var landingPageEnabled = !Constants.DISABLE_SERVICE_CATALOG_LANDING_PAGE;
1818

1919
$scope.onProjectCreated = function(encodedProjectName) {
2020
if (landingPageEnabled) {

app/scripts/controllers/overview.js

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ function OverviewController($scope,
5959
var DEFAULT_POLL_INTERVAL = 60 * 1000; // milliseconds
6060

6161
$scope.projectName = $routeParams.project;
62+
overview.catalogLandingPageEnabled = !Constants.DISABLE_SERVICE_CATALOG_LANDING_PAGE;
6263

6364
// Filters used by this controller.
6465
var annotation = $filter('annotation');

app/scripts/directives/nav.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ angular.module('openshiftConsole')
257257
_.set($scope, 'ordering.panelName', panelName);
258258
};
259259

260-
$scope.catalogLandingPageEnabled = _.get(Constants, 'ENABLE_TECH_PREVIEW_FEATURE.service_catalog_landing_page');
260+
$scope.catalogLandingPageEnabled = !Constants.DISABLE_SERVICE_CATALOG_LANDING_PAGE;
261261
var select = $elem.find('.selectpicker');
262262
var options = [];
263263

app/scripts/extensions/nav/helpDropdown.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ angular.module('openshiftConsole')
1414
}
1515
);
1616

17-
if (_.get(window, 'OPENSHIFT_CONSTANTS.ENABLE_TECH_PREVIEW_FEATURE.service_catalog_landing_page')) {
17+
if (!_.get(window, 'OPENSHIFT_CONSTANTS.DISABLE_SERVICE_CATALOG_LANDING_PAGE')) {
1818
var tourConfig = _.get(window, 'OPENSHIFT_CONSTANTS.GUIDED_TOURS.landing_page_tour');
1919
if (tourConfig && tourConfig.enabled && tourConfig.steps) {
2020
options.push(

app/scripts/services/catalog.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ angular.module("openshiftConsole")
1010
// Enable service catalog features if the new experience is enabled and the
1111
// servicecatalog.k8s.io resources are available.
1212
var SERVICE_CATALOG_ENABLED =
13-
_.get(Constants, 'ENABLE_TECH_PREVIEW_FEATURE.service_catalog_landing_page') &&
13+
!Constants.SERVICE_CATALOG_ENABLED &&
1414
APIService.apiInfo({ group: 'servicecatalog.k8s.io', resource: 'serviceclasses' }) &&
1515
APIService.apiInfo({ group: 'servicecatalog.k8s.io', resource: 'serviceinstances' }) &&
1616
APIService.apiInfo({ group: 'servicecatalog.k8s.io', resource: 'serviceinstancecredentials' });

app/views/overview.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ <h2>Get started with your project.</h2>
1313
image, or add components like databases and message queues.
1414
</p>
1515
<p class="gutter-top">
16-
<a ng-if="!('service_catalog_landing_page' | enableTechPreviewFeature)" ng-href="project/{{projectName}}/create" class="btn btn-lg btn-primary">
17-
Add to Project
18-
</a>
19-
<a ng-if="'service_catalog_landing_page' | enableTechPreviewFeature" ng-href="./" class="btn btn-lg btn-primary">
16+
<a ng-if="overview.catalogLandingPageEnabled" href="./" class="btn btn-lg btn-primary">
2017
Browse Catalog
2118
</a>
19+
<a ng-if="!overview.catalogLandingPageEnabled" ng-href="project/{{projectName}}/create" class="btn btn-lg btn-primary">
20+
Add to Project
21+
</a>
2222
</p>
2323
</div>
2424
<div ng-if="!(project.metadata.name | canIAddToProject)">

0 commit comments

Comments
 (0)