Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
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
dataplatform
atlas
Commits
4f61fff2
Commit
4f61fff2
authored
Oct 10, 2015
by
Suma Shivaprasad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-188 Provide Ability to Add Tag to Entity (sanjayp via sumasai)
parent
461a2a4e
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
319 additions
and
8 deletions
+319
-8
details.css
dashboard/public/css/details.css
+0
-0
tags.css
dashboard/public/css/tags.css
+52
-0
index.html
dashboard/public/index.html
+1
-0
app.js
dashboard/public/js/app.js
+3
-1
detailsController.js
dashboard/public/modules/details/detailsController.js
+0
-2
detailsResource.js
dashboard/public/modules/details/detailsResource.js
+4
-0
details.html
dashboard/public/modules/details/views/details.html
+1
-0
search.html
dashboard/public/modules/search/views/search.html
+1
-1
definitionTagsController.js
...ublic/modules/tags/definition/definitionTagsController.js
+1
-1
definitionTagsModule.js
...rd/public/modules/tags/definition/definitionTagsModule.js
+21
-0
tagAttributeDefinition.js
.../public/modules/tags/definition/tagAttributeDefinition.js
+1
-1
add.html
dashboard/public/modules/tags/definition/views/add.html
+1
-1
createTagController.js
...board/public/modules/tags/instance/createTagController.js
+72
-0
instanceTagsController.js
...rd/public/modules/tags/instance/instanceTagsController.js
+40
-0
instanceTagsModule.js
dashboard/public/modules/tags/instance/instanceTagsModule.js
+21
-0
createTag.html
dashboard/public/modules/tags/instance/views/createTag.html
+42
-0
tags.html
dashboard/public/modules/tags/instance/views/tags.html
+29
-0
tagClasses.js
dashboard/public/modules/tags/tagClasses.js
+11
-0
tagsRoutes.js
dashboard/public/modules/tags/tagsRoutes.js
+18
-1
No files found.
dashboard/public/css/details.css
View file @
4f61fff2
dashboard/public/css/tags.css
0 → 100644
View file @
4f61fff2
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
.add-tag
{
text-decoration
:
underline
;
}
.input-spacing
{
padding-bottom
:
10px
!important
;
}
.create-tag-entity
.modal-footer
{
border-top
:
0
;
}
.tag-list
{
border
:
1px
solid
#ddd
;
padding
:
10px
;
background-color
:
#F5F5F5
;
}
.tag-list
ul
{
padding-left
:
0px
;
}
.error
{
color
:
red
;
}
.tag-list
ul
li
{
display
:
inline
;
line-height
:
30px
;
border
:
none
;
padding
:
0px
;
background-color
:
inherit
;
}
\ No newline at end of file
dashboard/public/index.html
View file @
4f61fff2
...
...
@@ -34,6 +34,7 @@
<link
rel=
"stylesheet"
href=
"/css/common.css"
>
<link
rel=
"stylesheet"
href=
"/css/details.css"
>
<link
rel=
"stylesheet"
href=
"/css/lineage.css"
>
<link
rel=
"stylesheet"
href=
"/css/tags.css"
>
<link
rel=
"stylesheet"
href=
"http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
>
</head>
...
...
dashboard/public/js/app.js
View file @
4f61fff2
...
...
@@ -27,7 +27,9 @@ angular.module('dgc', ['ngCookies',
'dgc.about'
,
'dgc.search'
,
'dgc.navigation'
,
'dgc.tags'
'dgc.tags'
,
'dgc.tags.instance'
,
'dgc.tags.definition'
]);
angular
.
module
(
'dgc.system'
,
[
'dgc.system.notification'
]);
...
...
dashboard/public/modules/details/detailsController.js
View file @
4f61fff2
...
...
@@ -36,7 +36,6 @@ angular.module('dgc.details').controller('DetailsController', ['$window', '$scop
$scope
.
isNumber
=
angular
.
isNumber
;
$scope
.
isString
=
angular
.
isString
;
$scope
.
onActivate
=
function
tabActivate
(
tabname
)
{
$scope
.
$broadcast
(
'render-lineage'
,
{
type
:
tabname
,
...
...
@@ -47,6 +46,5 @@ angular.module('dgc.details').controller('DetailsController', ['$window', '$scop
$scope
.
goBack
=
function
()
{
$window
.
history
.
back
();
};
}
]);
dashboard/public/modules/details/detailsResource.js
View file @
4f61fff2
...
...
@@ -28,6 +28,10 @@ angular.module('dgc.details').factory('DetailsResource', ['$resource', function(
}
},
responseType
:
'json'
},
saveTag
:
{
method
:
'POST'
,
url
:
'/api/atlas/entity/:id/traits'
}
});
...
...
dashboard/public/modules/details/views/details.html
View file @
4f61fff2
...
...
@@ -41,6 +41,7 @@
</tr>
</tbody>
</table>
<ng-include
src=
"'/modules/tags/instance/views/tags.html'"
/>
</tab>
<tab
data-heading=
"Schema"
data-ng-if=
"isTable"
><ng-include
src=
"'/modules/details/views/schema.html'"
/></tab>
<!-- <tab data-heading="Output" data-ng-if="isTable" data-disable="!tableName" data-select="onActivate('outputs')"><ng-include data-table-type="outputs" src="'/modules/lineage/views/lineage.html'"/></tab>
...
...
dashboard/public/modules/search/views/search.html
View file @
4f61fff2
...
...
@@ -55,7 +55,7 @@
<a
href
ng-show=
"isCollapsed && (keyLength > 4)"
ng-click=
"doToggle($event,isCollapsed)"
>
..show more
</a>
<a
href
ng-show=
"!isCollapsed"
ng-click=
"doToggle($event,isCollapsed)"
>
..show less
</a>
<h5
ng-show=
"!dataTransitioned"
>
Tags :
<a
ng-repeat=
"(key, value) in result['$traits$']"
data-ui-sref=
"search({query: key})"
>
{{key}}
</a></h5>
<h5
ng-show=
"!dataTransitioned"
>
Tags :
<a
ng-repeat=
"(key, value) in result['$traits$']"
data-ui-sref=
"search({query: key})"
>
{{key}}
<
span
ng-show=
"!{{$last}}"
>
,
</span>
<
/a></h5>
</li>
</ul>
...
...
dashboard/public/modules/tags/
t
agsController.js
→
dashboard/public/modules/tags/
definition/definitionT
agsController.js
View file @
4f61fff2
...
...
@@ -18,7 +18,7 @@
'use strict'
;
angular
.
module
(
'dgc.tags
'
).
controller
(
'
TagsController'
,
[
'$scope'
,
'$resource'
,
'$state'
,
'$stateParams'
,
'lodash'
,
'AttributeDefinition'
,
'TagClasses'
,
'TagsResource'
,
'NotificationService'
,
angular
.
module
(
'dgc.tags
.definition'
).
controller
(
'Definition
TagsController'
,
[
'$scope'
,
'$resource'
,
'$state'
,
'$stateParams'
,
'lodash'
,
'AttributeDefinition'
,
'TagClasses'
,
'TagsResource'
,
'NotificationService'
,
function
(
$scope
,
$resource
,
$state
,
$stateParams
,
_
,
AttributeDefinition
,
Categories
,
TagsResource
,
NotificationService
)
{
$scope
.
categoryList
=
Categories
;
$scope
.
category
=
'TRAIT'
;
...
...
dashboard/public/modules/tags/definition/definitionTagsModule.js
0 → 100644
View file @
4f61fff2
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
angular
.
module
(
'dgc.tags.definition'
,
[]);
dashboard/public/modules/tags/tagAttributeDefinition.js
→
dashboard/public/modules/tags/
definition/
tagAttributeDefinition.js
View file @
4f61fff2
...
...
@@ -18,7 +18,7 @@
'use strict'
;
angular
.
module
(
'dgc.tags'
).
service
(
'AttributeDefinition'
,
function
Attribute
()
{
angular
.
module
(
'dgc.tags
.definition
'
).
service
(
'AttributeDefinition'
,
function
Attribute
()
{
this
.
getModel
=
function
getJson
()
{
return
{
name
:
null
,
...
...
dashboard/public/modules/tags/views/add.html
→
dashboard/public/modules/tags/
definition/
views/add.html
View file @
4f61fff2
...
...
@@ -16,7 +16,7 @@
~ limitations under the License.
-->
<div
class=
"container"
>
<div
class=
"appForm"
data-ng-controller=
"TagsController"
>
<div
class=
"appForm"
data-ng-controller=
"
Definition
TagsController"
>
<h4>
Tag Definition
</h4>
<form
data-name=
"tagForm"
class=
"form-horizontal"
novalidate
role=
"form"
>
...
...
dashboard/public/modules/tags/instance/createTagController.js
0 → 100644
View file @
4f61fff2
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
angular
.
module
(
'dgc.tags.instance'
).
controller
(
'CreateTagController'
,
[
'$scope'
,
'DetailsResource'
,
'$modalInstance'
,
'typesList'
,
'lodash'
,
'TagsResource'
,
'$stateParams'
,
'$rootScope'
,
'TagClasses'
,
'NotificationService'
,
function
(
$scope
,
DetailsResource
,
$modalInstance
,
typesList
,
_
,
TagsResource
,
$stateParams
,
$rootScope
,
Categories
,
NotificationService
)
{
if
(
typesList
)
{
$scope
.
typesList
=
typesList
;
}
$scope
.
categoryList
=
Categories
;
$scope
.
category
=
'TRAIT'
;
$scope
.
getAttributeDefinations
=
function
()
{
TagsResource
.
get
({
id
:
$scope
.
selectedType
},
function
(
data
)
{
var
instanceType
=
Categories
[
$scope
.
category
].
instanceInfo
();
if
(
instanceType
)
{
var
traitTypes
=
angular
.
fromJson
(
data
.
definition
)[
instanceType
][
0
];
if
(
traitTypes
)
{
$scope
.
propertiesList
=
{};
$scope
.
isRequired
=
{};
_
.
each
(
traitTypes
.
attributeDefinitions
,
function
(
value
)
{
$scope
.
propertiesList
[
value
.
name
]
=
''
;
$scope
.
isRequired
[
value
.
name
]
=
value
.
isRequired
;
});
}
}
});
};
$scope
.
ok
=
function
(
tagDefinitionform
)
{
if
(
tagDefinitionform
.
$valid
)
{
var
requestObject
=
{
"jsonClass"
:
"org.apache.atlas.typesystem.json.InstanceSerialization$_Struct"
,
"typeName"
:
$scope
.
selectedType
,
"values"
:
$scope
.
propertiesList
};
DetailsResource
.
saveTag
({
id
:
$stateParams
.
id
},
requestObject
).
$promise
.
then
(
function
()
{
$rootScope
.
$broadcast
(
'refreshResourceData'
);
NotificationService
.
info
(
'Tag "'
+
$scope
.
selectedType
+
'" has been added to entity'
,
true
);
$modalInstance
.
close
(
true
);
}).
catch
(
function
(
err
)
{
$scope
.
isError
=
true
;
$scope
.
error
=
err
.
data
.
error
;
});
}
};
$scope
.
cancel
=
function
()
{
$modalInstance
.
dismiss
(
'cancel'
);
};
}
]);
dashboard/public/modules/tags/instance/instanceTagsController.js
0 → 100644
View file @
4f61fff2
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
angular
.
module
(
'dgc.tags.instance'
).
controller
(
'InstanceTagController'
,
[
'$scope'
,
'DetailsResource'
,
'$stateParams'
,
'$state'
,
function
(
$scope
,
DetailsResource
,
$stateParams
,
$state
)
{
$scope
.
id
=
$stateParams
.
id
;
function
getResourceData
()
{
DetailsResource
.
get
({
id
:
$stateParams
.
id
},
function
(
data
)
{
$scope
.
traitsList
=
data
.
traitNames
;
});
}
$scope
.
openAddTag
=
function
()
{
$state
.
go
(
'addTag'
,
{
id
:
$scope
.
id
});
};
getResourceData
();
$scope
.
$on
(
'refreshResourceData'
,
getResourceData
);
}
]);
dashboard/public/modules/tags/instance/instanceTagsModule.js
0 → 100644
View file @
4f61fff2
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict'
;
angular
.
module
(
'dgc.tags.instance'
,
[]);
dashboard/public/modules/tags/instance/views/createTag.html
0 → 100644
View file @
4f61fff2
<div
class=
"modal-header"
>
<h4
class=
"modal-title"
>
Add tag
</h4>
</div>
<div
class=
"modal-body"
>
<div
class=
"form-group"
>
<div
align=
"center"
class=
"error col-sm-12"
ng-if=
"isError"
>
{{error}}
</div>
</div>
<form
name=
"tagDefinitionform"
class=
"css-form"
novalidate
>
<div
class=
"form-group hide"
>
<label
for=
"category"
class=
"col-sm-4 control-label"
>
Category
</label>
<div
class=
"col-sm-8 input-spacing"
>
<select
class=
"form-control"
id=
"category"
name=
"category"
ng-model=
"category"
ng-change=
"categoryChange()"
required
>
<option
value=
"{{key}}"
ng-repeat=
"(key, value) in categoryList"
ng-selected=
"{{key===category}}"
>
{{key}}
</option>
</select>
</div>
</div>
<div
class=
"form-group"
ng-class=
"{'has-error': (tagDefinitionform.tagDefinition.$invalid && tagDefinitionform.tagDefinition.$dirty)}"
>
<label
class=
"control-label col-sm-4"
for=
"tagDefinition"
>
Tag definition
</label>
<div
class=
"col-sm-8 input-spacing"
>
<select
ng-model=
"selectedType"
class=
"form-control"
id=
"tagDefinition"
name=
"tagDefinition"
ng-change=
"getAttributeDefinations(); isError =false"
required
>
<option
ng-repeat=
"data in typesList"
>
{{data}}
</option>
</select>
</div>
</div>
<div
class=
"form-group"
ng-repeat=
"(key, value) in propertiesList"
ng-class=
"{'has-error': (tagDefinitionform.propertyId_{{$index}}.$invalid && tagDefinitionform.propertyId_{{$index}}.$dirty)}"
>
<label
class=
"control-label col-sm-4"
for=
"propertyId_{{$index}}"
>
{{key}}
</label>
<div
class=
"col-sm-8 input-spacing"
>
<input
type=
"text"
class=
"form-control"
id=
"propertyId_{{$index}}"
name=
"propertyId_{{$index}}"
ng-model=
"propertiesList[key]"
ng-required=
"isRequired[key]"
/>
</div>
</div>
<div
class=
"modal-footer"
>
<button
class=
"btn btn-success"
type=
"submit"
ng-click=
"ok(tagDefinitionform)"
ng-disabled=
"tagDefinitionform.$invalid"
>
Save
</button>
<button
class=
"btn btn-warning"
type=
"button"
ng-click=
"cancel()"
>
Cancel
</button>
</div>
</form>
</div>
dashboard/public/modules/tags/instance/views/tags.html
0 → 100644
View file @
4f61fff2
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<div
data-ng-controller=
"InstanceTagController"
>
<div
class=
"container tag-list"
>
<h4>
Tags
</h4>
<ul>
<li
ng-repeat=
"trait in traitsList"
class=
"list-group-item"
>
{{trait}},
</li>
<li
class=
"list-group-item"
><a
ng-click=
"openAddTag()"
href=
""
class=
"add-tag"
>
Add tag
</a></li>
</ul>
</div>
</div>
\ No newline at end of file
dashboard/public/modules/tags/tagClasses.js
View file @
4f61fff2
...
...
@@ -35,6 +35,13 @@ angular.module('dgc.tags').factory('TagClasses', ['lodash', function ClassFactor
CLASS
:
'org.apache.atlas.typesystem.types.ClassType'
};
var
instanceRespons
=
{
ENUM
:
'enumTypes'
,
STRUCT
:
'structTypes'
,
TRAIT
:
'traitTypes'
,
SUPER
:
'superTypes'
};
function
Class
(
classId
,
className
)
{
this
.
tags
=
[];
this
.
id
=
classId
;
...
...
@@ -65,6 +72,10 @@ angular.module('dgc.tags').factory('TagClasses', ['lodash', function ClassFactor
output
[
classTypeKey
]
=
this
.
tags
;
return
output
;
};
this
.
instanceInfo
=
function
()
{
return
instanceRespons
[
classId
];
};
}
return
_
.
chain
(
classes
)
...
...
dashboard/public/modules/tags/tagsRoutes.js
View file @
4f61fff2
...
...
@@ -22,7 +22,24 @@ angular.module('dgc.tags').config(['$stateProvider',
function
(
$stateProvider
)
{
$stateProvider
.
state
(
'tags'
,
{
url
:
'/tags'
,
templateUrl
:
'/modules/tags/views/add.html'
templateUrl
:
'/modules/tags/definition/views/add.html'
});
$stateProvider
.
state
(
'addTag'
,
{
parent
:
'details'
,
onEnter
:
[
'$stateParams'
,
'$state'
,
'$modal'
,
'NavigationResource'
,
function
(
$stateParams
,
$state
,
$modal
,
NavigationResource
)
{
$modal
.
open
({
templateUrl
:
'/modules/tags/instance/views/createTag.html'
,
controller
:
'CreateTagController'
,
windowClass
:
'create-tag-entity'
,
resolve
:
{
typesList
:
function
()
{
return
NavigationResource
.
get
().
$promise
;
}
}
}).
result
.
finally
(
function
()
{
$state
.
go
(
'^'
);
});
}]
});
}
]);
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