Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
apollo
Commits
c4967e8d
Commit
c4967e8d
authored
Sep 20, 2016
by
Jason Song
Committed by
GitHub
Sep 20, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #415 from lepdou/bugfix_0920
bugfix: update other cluster's item
parents
15e41ed3
9936e2f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
80 additions
and
78 deletions
+80
-78
ConfigNamespaceController.js
...ic/scripts/controller/config/ConfigNamespaceController.js
+80
-78
No files found.
apollo-portal/src/main/resources/static/scripts/controller/config/ConfigNamespaceController.js
View file @
c4967e8d
...
...
@@ -24,7 +24,7 @@ application_module.controller("ConfigNamespaceController",
$scope
.
prepareReleaseNamespace
=
prepareReleaseNamespace
;
$scope
.
release
=
release
;
$scope
.
switchReleaseChangeViewType
=
switchReleaseChangeViewType
;
$scope
.
showRollbackAlertDialog
=
showRollbackAlertDialog
;
...
...
@@ -38,22 +38,22 @@ application_module.controller("ConfigNamespaceController",
$scope
.
deleteItem
=
deleteItem
;
$scope
.
editItem
=
editItem
;
$scope
.
createItem
=
createItem
;
$scope
.
doItem
=
doItem
;
$scope
.
closeTip
=
closeTip
;
$scope
.
showText
=
showText
;
$scope
.
releaseBtnDisabled
=
false
;
$scope
.
rollbackBtnDisabled
=
false
;
$scope
.
addItemBtnDisabled
=
false
;
$scope
.
commitChangeBtnDisabled
=
false
;
init
();
function
init
()
{
PermissionService
.
get_app_role_users
(
$rootScope
.
pageContext
.
appId
)
.
then
(
function
(
result
)
{
...
...
@@ -69,10 +69,8 @@ application_module.controller("ConfigNamespaceController",
UserService
.
load_user
().
then
(
function
(
result
)
{
$scope
.
currentUser
=
result
.
userId
;
});
}
}
function
refreshNamespaces
(
viewType
)
{
if
(
$rootScope
.
pageContext
.
env
==
''
)
{
...
...
@@ -85,7 +83,7 @@ application_module.controller("ConfigNamespaceController",
function
(
result
)
{
$scope
.
namespaces
=
result
;
},
function
(
result
)
{
toastr
.
error
(
AppUtil
.
errorMsg
(
result
),
"加载配置信息出错"
);
});
...
...
@@ -162,7 +160,7 @@ application_module.controller("ConfigNamespaceController",
}
);
}
$scope
.
releaseChangeViewType
=
'change'
;
function
switchReleaseChangeViewType
(
type
)
{
$scope
.
releaseChangeViewType
=
type
;
...
...
@@ -173,7 +171,6 @@ application_module.controller("ConfigNamespaceController",
$
(
"#rollbackAlertDialog"
).
modal
(
'show'
);
}
$scope
.
toRollbackNamespace
=
{};
function
preRollback
(
namespace
)
{
$scope
.
toRollbackNamespace
=
namespace
;
...
...
@@ -181,7 +178,8 @@ application_module.controller("ConfigNamespaceController",
ReleaseService
.
findActiveReleases
(
$rootScope
.
pageContext
.
appId
,
$rootScope
.
pageContext
.
env
,
$rootScope
.
pageContext
.
clusterName
,
$scope
.
toRollbackNamespace
.
baseInfo
.
namespaceName
,
0
,
2
)
$scope
.
toRollbackNamespace
.
baseInfo
.
namespaceName
,
0
,
2
)
.
then
(
function
(
result
)
{
if
(
result
.
length
<=
1
)
{
toastr
.
error
(
"没有可以回滚的发布历史"
);
...
...
@@ -208,8 +206,8 @@ application_module.controller("ConfigNamespaceController",
function
rollback
()
{
$scope
.
rollbackBtnDisabled
=
true
;
ReleaseService
.
rollback
(
$rootScope
.
pageContext
.
env
,
$scope
.
firstRelease
.
id
)
$rootScope
.
pageContext
.
env
,
$scope
.
firstRelease
.
id
)
.
then
(
function
(
result
)
{
toastr
.
success
(
"回滚成功"
);
$scope
.
rollbackBtnDisabled
=
false
;
...
...
@@ -262,7 +260,7 @@ application_module.controller("ConfigNamespaceController",
$
(
"#itemModal"
).
modal
(
"show"
);
}
//新增配置
function
createItem
(
namespace
)
{
if
(
!
lockCheck
(
namespace
))
{
...
...
@@ -290,63 +288,65 @@ application_module.controller("ConfigNamespaceController",
if
(
selectedClusters
.
length
==
0
)
{
toastr
.
error
(
"请选择集群"
);
}
else
{
if
(
!
$scope
.
item
.
value
)
{
$scope
.
item
.
value
=
""
;
return
;
}
if
(
!
$scope
.
item
.
value
)
{
$scope
.
item
.
value
=
""
;
}
if
(
$scope
.
tableViewOperType
==
TABLE_VIEW_OPER_TYPE
.
CREATE
)
{
//check key unique
var
hasRepeatKey
=
false
;
toOperationNamespace
.
items
.
forEach
(
function
(
item
)
{
if
(
!
item
.
isDeleted
&&
$scope
.
item
.
key
==
item
.
item
.
key
)
{
toastr
.
error
(
"key="
+
$scope
.
item
.
key
+
" 已存在"
);
hasRepeatKey
=
true
;
return
;
}
});
if
(
hasRepeatKey
)
{
return
;
}
$scope
.
addItemBtnDisabled
=
true
;
selectedClusters
.
forEach
(
function
(
cluster
)
{
if
(
$scope
.
tableViewOperType
==
TABLE_VIEW_OPER_TYPE
.
CREATE
)
{
//check key unique
var
hasRepeatKey
=
false
;
toOperationNamespace
.
items
.
forEach
(
function
(
item
)
{
if
(
!
item
.
isDeleted
&&
$scope
.
item
.
key
==
item
.
item
.
key
)
{
toastr
.
error
(
"key="
+
$scope
.
item
.
key
+
" 已存在"
);
hasRepeatKey
=
true
;
return
;
}
ConfigService
.
create_item
(
$rootScope
.
pageContext
.
appId
,
cluster
.
env
,
cluster
.
name
,
toOperationNamespace
.
baseInfo
.
namespaceName
,
$scope
.
item
).
then
(
function
(
result
)
{
toastr
.
success
(
cluster
.
env
+
" , "
+
$scope
.
item
.
key
,
"添加成功"
);
},
function
(
result
)
{
toastr
.
error
(
AppUtil
.
errorMsg
(
result
),
"添加失败"
);
});
if
(
hasRepeatKey
)
{
return
;
}
$scope
.
addItemBtnDisabled
=
true
;
ConfigService
.
create_item
(
$rootScope
.
pageContext
.
appId
,
cluster
.
env
,
cluster
.
name
,
toOperationNamespace
.
baseInfo
.
namespaceName
,
$scope
.
item
).
then
(
function
(
result
)
{
toastr
.
success
(
cluster
.
env
+
" , "
+
$scope
.
item
.
key
,
"添加成功"
);
itemModal
.
modal
(
'hide'
);
$scope
.
addItemBtnDisabled
=
false
;
$rootScope
.
refreshNamespaces
(
namespace_view_type
.
TABLE
);
},
function
(
result
)
{
$scope
.
addItemBtnDisabled
=
false
;
toastr
.
error
(
AppUtil
.
errorMsg
(
result
),
"添加失败"
);
});
}
else
if
(
$scope
.
tableViewOperType
==
TABLE_VIEW_OPER_TYPE
.
UPDATE
)
{
if
(
!
$scope
.
item
.
comment
)
{
$scope
.
item
.
comment
=
""
;
}
ConfigService
.
update_item
(
$rootScope
.
pageContext
.
appId
,
cluster
.
env
,
cluster
.
name
,
toOperationNamespace
.
baseInfo
.
namespaceName
,
$scope
.
item
).
then
(
function
(
result
)
{
toastr
.
success
(
"更新成功, 如需生效请发布"
);
itemModal
.
modal
(
'hide'
);
$rootScope
.
refreshNamespaces
(
namespace_view_type
.
TABLE
);
},
function
(
result
)
{
toastr
.
error
(
AppUtil
.
errorMsg
(
result
),
"更新失败"
);
});
}
});
$scope
.
addItemBtnDisabled
=
false
;
itemModal
.
modal
(
'hide'
);
$rootScope
.
refreshNamespaces
(
namespace_view_type
.
TABLE
);
}
else
{
if
(
!
$scope
.
item
.
comment
)
{
$scope
.
item
.
comment
=
""
;
}
ConfigService
.
update_item
(
$rootScope
.
pageContext
.
appId
,
$rootScope
.
pageContext
.
env
,
$rootScope
.
pageContext
.
clusterName
,
toOperationNamespace
.
baseInfo
.
namespaceName
,
$scope
.
item
).
then
(
function
(
result
)
{
toastr
.
success
(
"更新成功, 如需生效请发布"
);
itemModal
.
modal
(
'hide'
);
$rootScope
.
refreshNamespaces
(
namespace_view_type
.
TABLE
);
},
function
(
result
)
{
toastr
.
error
(
AppUtil
.
errorMsg
(
result
),
"更新失败"
);
});
}
}
...
...
@@ -362,30 +362,32 @@ application_module.controller("ConfigNamespaceController",
function
closeTip
(
clusterName
)
{
var
hideTip
=
JSON
.
parse
(
localStorage
.
getItem
(
"hideTip"
));
if
(
!
hideTip
){
if
(
!
hideTip
)
{
hideTip
=
{};
hideTip
[
$rootScope
.
pageContext
.
appId
]
=
{};
}
if
(
!
hideTip
[
$rootScope
.
pageContext
.
appId
]){
if
(
!
hideTip
[
$rootScope
.
pageContext
.
appId
])
{
hideTip
[
$rootScope
.
pageContext
.
appId
]
=
{};
}
hideTip
[
$rootScope
.
pageContext
.
appId
][
clusterName
]
=
true
;
$rootScope
.
hideTip
=
hideTip
;
localStorage
.
setItem
(
"hideTip"
,
JSON
.
stringify
(
hideTip
));
}
function
showText
(
text
)
{
$scope
.
text
=
text
;
$
(
'#showText'
).
modal
(
'show'
);
}
$
(
'.config-item-container'
).
removeClass
(
'hide'
);
new
Clipboard
(
'.clipboard'
);
}]);
}
]);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment