Skip to content

Commit 7f81a73

Browse files
nikkufake-join[bot]
authored andcommitted
style: update code style
1 parent 5e24a1d commit 7f81a73

9 files changed

+24
-21
lines changed

app/custom-modeler/custom/CustomContextPadProvider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function CustomContextPadProvider(injector, connect, translate) {
2727
connect.start(event, element, autoActivate);
2828
}
2929

30-
if (isAny(businessObject, [ 'custom:triangle', 'custom:circle'])) {
30+
if (isAny(businessObject, [ 'custom:triangle', 'custom:circle' ])) {
3131
assign(actions, {
3232
'connect': {
3333
group: 'connect',

app/custom-modeler/custom/CustomElementFactory.js

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export default function CustomElementFactory(bpmnFactory, moddle) {
6363
}
6464

6565
if (!('$instanceOf' in attrs.businessObject)) {
66+
6667
// ensures we can use ModelUtil#is for type checks
6768
Object.defineProperty(attrs.businessObject, '$instanceOf', {
6869
value: function(type) {

app/custom-modeler/custom/CustomPalette.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ PaletteProvider.$inject = [
2727

2828
PaletteProvider.prototype.getPaletteEntries = function(element) {
2929

30-
var actions = {},
30+
var actions = {},
3131
create = this._create,
3232
elementFactory = this._elementFactory,
3333
spaceTool = this._spaceTool,

app/custom-modeler/custom/CustomRenderer.js

+11-11
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ export default function CustomRenderer(eventBus, styles) {
5959
height = element.height;
6060

6161
var trianglePath = [
62-
['M', x + width / 2, y],
63-
['l', width / 2, height],
64-
['l', -width, 0 ],
65-
['z']
62+
[ 'M', x + width / 2, y ],
63+
[ 'l', width / 2, height ],
64+
[ 'l', -width, 0 ],
65+
[ 'z' ]
6666
];
6767

6868
return componentsToPath(trianglePath);
@@ -99,11 +99,11 @@ export default function CustomRenderer(eventBus, styles) {
9999
radius = shape.width / 2;
100100

101101
var circlePath = [
102-
['M', cx, cy],
103-
['m', 0, -radius],
104-
['a', radius, radius, 0, 1, 1, 0, 2 * radius],
105-
['a', radius, radius, 0, 1, 1, 0, -2 * radius],
106-
['z']
102+
[ 'M', cx, cy ],
103+
[ 'm', 0, -radius ],
104+
[ 'a', radius, radius, 0, 1, 1, 0, 2 * radius ],
105+
[ 'a', radius, radius, 0, 1, 1, 0, -2 * radius ],
106+
[ 'z' ]
107107
];
108108

109109
return componentsToPath(circlePath);
@@ -124,12 +124,12 @@ export default function CustomRenderer(eventBus, styles) {
124124
});
125125

126126
var connectionPath = [
127-
['M', waypoints[0].x, waypoints[0].y]
127+
[ 'M', waypoints[0].x, waypoints[0].y ]
128128
];
129129

130130
waypoints.forEach(function(waypoint, index) {
131131
if (index !== 0) {
132-
connectionPath.push(['L', waypoint.x, waypoint.y]);
132+
connectionPath.push([ 'L', waypoint.x, waypoint.y ]);
133133
}
134134
});
135135

app/custom-modeler/custom/CustomRules.js

+1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ CustomRules.prototype.init = function() {
108108
var shape = context.shape;
109109

110110
if (isCustom(shape)) {
111+
111112
// cannot resize custom elements
112113
return false;
113114
}

app/custom-modeler/custom/CustomUpdater.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ inherits(CustomUpdater, CommandInterceptor);
136136
CustomUpdater.$inject = [ 'eventBus', 'modeling', 'bpmnjs' ];
137137

138138

139-
/////// helpers ///////////////////////////////////
139+
// helpers ///////////////////////////////////
140140

141141
function copyWaypoints(connection) {
142142
return connection.waypoints.map(function(p) {

test/spec/CustomModelerSpec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ describe('custom modeler', function() {
7676

7777
modeler.importXML(diagramXML, function(err) {
7878
if (!err) {
79-
modeler.addCustomElements([{
79+
modeler.addCustomElements([ {
8080
type: 'custom:triangle',
8181
id: 'CustomTriangle_1',
8282
x: 300,
8383
y: 200
84-
}]);
84+
} ]);
8585

8686
done();
8787
}

test/spec/CustomModelingSpec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,12 @@ describe('custom modeling', function() {
205205
type: 'custom:connection'
206206
});
207207

208-
bpmnjs.addCustomElements([{
208+
bpmnjs.addCustomElements([ {
209209
type: 'custom:circle',
210210
id: 'CustomCircle_1',
211211
x: 200,
212212
y: 300
213-
}]);
213+
} ]);
214214

215215
var customCircle = elementRegistry.get('CustomCircle_1');
216216

webpack.config.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ module.exports = {
2121
{
2222
test: /\.less$/i,
2323
use: [
24+
2425
// compiles Less to CSS
25-
"style-loader",
26-
"css-loader",
27-
"less-loader",
26+
'style-loader',
27+
'css-loader',
28+
'less-loader',
2829
],
2930
},
3031
{

0 commit comments

Comments
 (0)