added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / modeler / custom-elements / log-test-result / draw / LogTestResultRenderer.js
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 import inherits from 'inherits';\r
18 \r
19 import BaseRenderer from 'diagram-js/lib/draw/BaseRenderer';\r
20 \r
21 import {\r
22   is\r
23 } from 'bpmn-js/lib/util/ModelUtil';\r
24 \r
25 import Cat from '../image';\r
26 \r
27 import {\r
28   append as svgAppend,\r
29   create as svgCreate\r
30 } from 'tiny-svg';\r
31 \r
32 \r
33 export default function NyanRender(eventBus) {\r
34   BaseRenderer.call(this, eventBus, 1500);\r
35 \r
36   this.canRender = function(element) {\r
37     return is(element, 'custom:Log');\r
38   };\r
39 \r
40 \r
41   this.drawShape = function(parent, shape) {\r
42     var url = Cat.dataURL;\r
43 \r
44     var catGfx = svgCreate('image', {\r
45       x: 0,\r
46       y: 0,\r
47       width: shape.width,\r
48       height: shape.height,\r
49       href: url\r
50     });\r
51 \r
52     svgAppend(parent, catGfx);\r
53 \r
54     return catGfx;\r
55   };\r
56 }\r
57 \r
58 inherits(NyanRender, BaseRenderer);\r
59 \r
60 NyanRender.$inject = [ 'eventBus' ];