Remove AngularJS testing code

This commit is contained in:
Ronald Barendse
2021-06-30 15:29:34 +02:00
parent 48d96ee918
commit 64d98666ef
2 changed files with 1 additions and 63 deletions

View File

@@ -222,65 +222,10 @@
//we are editing so get the content item from the server
return $scope.getMethod()($scope.contentId)
.then(function (data) {
.then(function (data) {
$scope.content = data;
// TODO: remove all of this - hacking for testing with starter kit
if ($scope.content.contentTypeAlias === 'home') {
$scope.content.apps = $scope.content.apps.filter(app => app.alias !== 'umbContent');
$scope.content.test = [
{
id: '1',
name: 'Content',
alias: 'contentTest',
icon: 'icon-document',
view: 'views/content/apps/content/content.html'
},
{
id: '2',
name: 'Design',
alias: 'designTest',
icon: 'icon-brush',
view: 'views/content/apps/content/content.html'
},
{
id: '3',
name: 'SEO',
alias: 'seoTest',
icon: 'icon-search',
view: 'views/content/apps/content/content.html'
}
];
$scope.content.variants.forEach(variant => {
variant.tabs.forEach(tab => {
if (tab.alias === 'Hero') {
tab.testId = '1';
}
if (tab.alias === 'Content') {
tab.testId = '1';
}
if (tab.alias === 'Footer') {
tab.testId = '1';
}
if (tab.alias === 'Design') {
tab.testId = '2';
}
if (tab.seo === 'Media') {
tab.testId = '3';
}
});
});
$scope.content.apps = [...$scope.content.test, ...$scope.content.apps];
}
appendRuntimeData();
init();
@@ -291,10 +236,7 @@
eventsService.emit("content.loaded", { content: $scope.content });
return $q.resolve($scope.content);
});
}
/**
@@ -338,8 +280,6 @@
// only create the save/publish/preview buttons if the
// content app is "Conent"
// TODO: Add this back - only for testing purposes
/*
if ($scope.activeApp && !contentAppHelper.isContentBasedApp($scope.activeApp)) {
$scope.defaultButton = null;
$scope.subButtons = null;
@@ -347,7 +287,6 @@
$scope.page.showPreviewButton = false;
return;
}
*/
// create the save button
if (_.contains($scope.content.allowedActions, "A")) {

View File

@@ -111,7 +111,6 @@
// disable the name field if the active content app is not "Content" or "Info"
vm.nameDisabled = (activeApp && !contentAppHelper.isContentBasedApp(activeApp));
vm.nameDisabled = false; // TODO - remove this. Only for testing purposes
}
/**