-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathfunnel.py
387 lines (325 loc) · 14 KB
/
funnel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
"""
funnel
"""
version = "0.1"
import csv
import io
from rectangle import Rectangle
from pptx.util import Inches, Pt
from pptx.enum.text import PP_ALIGN
from pptx.dml.color import RGBColor, MSO_THEME_COLOR
from colour import setColour
from symbols import resolveSymbols
def massageFunnelText(text):
fragment = ""
for c in text:
if ord(c) == 236:
fragment = fragment + "<"
elif ord(c) == 237:
fragment = fragment + ">"
else:
fragment = fragment + c
return fragment
class Funnel:
def __init__(
self,
):
pass
def makeFunnel(
self,
slide,
renderingRectangle,
funnelParts,
partColours,
codeType,
funnelBorderColour,
funnelTitleColour,
funnelTextColour,
funnelLabelsPercent,
funnelLabelPosition,
funnelWidest,
):
if funnelWidest in ["left", "right", "pipe", "hpipe"]:
direction = "horizontal"
else:
direction = "vertical"
# Turn label percentage into decimal number to multiply by
funnelLabelsProportion = funnelLabelsPercent / 100
# Proportion of the stage that the tip - narrowest / shortest
# part is relative to widest / tallest
tipProportion = 1 / 3
# Define labels rectangle then funnel body rectangle
if direction == "horizontal":
if funnelLabelPosition == "before":
# Labels above stages
funnelLabelsRectangle = Rectangle(
renderingRectangle.top,
renderingRectangle.left,
int(renderingRectangle.height * funnelLabelsProportion),
renderingRectangle.width,
)
funnelBodyRectangle = Rectangle(
renderingRectangle.top
+ int(renderingRectangle.height * funnelLabelsProportion),
renderingRectangle.left,
int(renderingRectangle.height * (1 - funnelLabelsProportion)),
renderingRectangle.width,
)
else:
# Labels below stages
funnelLabelsRectangle = Rectangle(
renderingRectangle.top
+ renderingRectangle.height * (1 - funnelLabelsProportion),
renderingRectangle.left,
int(renderingRectangle.height * funnelLabelsProportion),
renderingRectangle.width,
)
funnelBodyRectangle = Rectangle(
renderingRectangle.top,
renderingRectangle.left,
int(renderingRectangle.height * (1 - funnelLabelsProportion)),
renderingRectangle.width,
)
else:
if funnelLabelPosition == "before":
# Labels left of stages
funnelLabelsRectangle = Rectangle(
renderingRectangle.top,
renderingRectangle.left,
renderingRectangle.height,
int(renderingRectangle.width * funnelLabelsProportion),
)
funnelBodyRectangle = Rectangle(
renderingRectangle.top,
renderingRectangle.left
+ int(renderingRectangle.width * funnelLabelsProportion),
renderingRectangle.height,
int(renderingRectangle.width * (1 - funnelLabelsProportion)),
)
else:
# Labels right of stages
funnelLabelsRectangle = Rectangle(
renderingRectangle.top,
renderingRectangle.left
+ renderingRectangle.width * (1 - funnelLabelsProportion),
renderingRectangle.height,
int(renderingRectangle.width * funnelLabelsProportion),
)
funnelBodyRectangle = Rectangle(
renderingRectangle.top,
renderingRectangle.left,
renderingRectangle.height,
int(renderingRectangle.width * (1 - funnelLabelsProportion)),
)
if direction == "horizontal":
# How high the narrowest part of the funnel / pipe is
tipHeight = funnelBodyRectangle.height * tipProportion
else:
# How wide the narrowest part of the funnel / pipe is
tipWidth = funnelBodyRectangle.width * tipProportion
partColourCount = len(partColours)
# Get the underlying rows. Only first 2 cells of each row used
funnelPartRows = [
r
for r in csv.reader(
io.StringIO(str.join("\n", funnelParts)),
escapechar="\\",
skipinitialspace=True,
)
]
funnelPartCount = len(funnelPartRows)
# Build lists of labels and Body
funnelLabels = []
funnelBody = []
for row in funnelPartRows:
cell1 = row[0].strip()
if len(row) == 0:
funnelLabels.append("")
funnelBody.append("")
else:
funnelLabels.append(cell1)
if len(row) == 1:
funnelBody.append("")
else:
cell2 = row[1].strip()
funnelBody.append(cell2)
if direction == "horizontal":
partWidth = renderingRectangle.width / funnelPartCount
else:
partHeight = renderingRectangle.height / funnelPartCount
# Create the labels
for l, label in enumerate(funnelLabels):
if direction == "horizontal":
tb = slide.shapes.add_textbox(
funnelLabelsRectangle.left + l * partWidth,
funnelLabelsRectangle.top,
partWidth,
funnelLabelsRectangle.height,
)
else:
tb = slide.shapes.add_textbox(
funnelLabelsRectangle.left,
funnelLabelsRectangle.top + l * partHeight,
funnelLabelsRectangle.width,
partHeight,
)
tb.text = massageFunnelText(resolveSymbols(label.replace("<br/>", "\n")))
for p in tb.text_frame.paragraphs:
p.alignment = PP_ALIGN.CENTER
if funnelTitleColour != ("None", ""):
setColour(p.font.color, funnelTitleColour)
# Create the parts of the funnel
for b, body in enumerate(funnelBody):
if direction == "horizontal":
# Horizontal stages
# Left extremity of stage - both top and bottom
partLeft = funnelBodyRectangle.left + b * partWidth
# Right extremity of stage - both top and bottom
partRight = partLeft + partWidth
if (
((b == funnelPartCount - 1) & (funnelWidest == "left"))
| ((b == 0) & (funnelWidest == "right"))
| (funnelWidest in ["pipe", "hpipe"])
):
# Rectangular / pipe stage
# Calculate space to be above and below rectangular stage
leftSpaceAboveBelow = (funnelBodyRectangle.height - tipHeight) / 2
rightSpaceAboveBelow = leftSpaceAboveBelow
elif funnelWidest == "left":
# Calculate space to be above and below left end of stage
leftSpaceAboveBelow = (
(funnelBodyRectangle.height - tipHeight)
/ 2
* b
/ (funnelPartCount - 1)
)
# Calculate space to be above and below right end of stage
rightSpaceAboveBelow = (
(funnelBodyRectangle.height - tipHeight)
/ 2
* (b + 1)
/ (funnelPartCount - 1)
)
else:
# Calculate space to be above and below left end of stage
leftSpaceAboveBelow = (
(funnelBodyRectangle.height - tipHeight)
/ 2
* (funnelPartCount - b)
/ (funnelPartCount - 1)
)
# Calculate space to be above and below right end of stage
rightSpaceAboveBelow = (
(funnelBodyRectangle.height - tipHeight)
/ 2
* (funnelPartCount - b - 1)
/ (funnelPartCount - 1)
)
# Calculate y coordinate of top left corner
partTopLeft = funnelBodyRectangle.top + leftSpaceAboveBelow
# Calculate y coordinate of top right corner
partTopRight = funnelBodyRectangle.top + rightSpaceAboveBelow
# Calculate y coordinate of bottom left corner
partBottomLeft = (
funnelBodyRectangle.top
+ funnelBodyRectangle.height
- leftSpaceAboveBelow
)
# Calculate y coordinate of bottom right corner
partBottomRight = (
funnelBodyRectangle.top
+ funnelBodyRectangle.height
- rightSpaceAboveBelow
)
stagePoints = [
(partLeft, partTopLeft),
(partLeft, partBottomLeft),
(partRight, partBottomRight),
(partRight, partTopRight),
]
else:
# Vertical stages
# Top extremity of stage - both left and right
partTop = funnelBodyRectangle.top + b * partHeight
# Bottom extremity of stage - both left and right
partBottom = partTop + partHeight
if (
((b == funnelPartCount - 1) & (funnelWidest == "top"))
| ((b == 0) & (funnelWidest == "bottom"))
| (funnelWidest == "vpipe")
):
# Rectangular / pipe stage
# Calculate space to be left either side of rectangular stage
topSpaceLeftRight = (funnelBodyRectangle.width - tipWidth) / 2
bottomSpaceLeftRight = topSpaceLeftRight
elif funnelWidest == "top":
# Calculate space to be left at left and right top end of stage
topSpaceLeftRight = (
(funnelBodyRectangle.width - tipWidth)
/ 2
* b
/ (funnelPartCount - 1)
)
# Calculate space to be left at left and right bottom end of stage
bottomSpaceLeftRight = (
(funnelBodyRectangle.width - tipWidth)
/ 2
* (b + 1)
/ (funnelPartCount - 1)
)
else:
# Calculate space to be left at left and right top end of stage
topSpaceLeftRight = (
(funnelBodyRectangle.width - tipWidth)
/ 2
* (funnelPartCount - b)
/ (funnelPartCount - 1)
)
# Calculate space to be left at left and right bottom end of stage
bottomSpaceLeftRight = (
(funnelBodyRectangle.width - tipWidth)
/ 2
* (funnelPartCount - b - 1)
/ (funnelPartCount - 1)
)
# Calculate x coordinate of top left corner
partTopLeft = funnelBodyRectangle.left + topSpaceLeftRight
# Calculate x coordinate of bottom left corner
partBottomLeft = funnelBodyRectangle.left + bottomSpaceLeftRight
# Calculate x coordinate of top right corner
partTopRight = (
funnelBodyRectangle.left
+ funnelBodyRectangle.width
- topSpaceLeftRight
)
# Calculate x coordinate of bottom right corner
partBottomRight = (
funnelBodyRectangle.left
+ funnelBodyRectangle.width
- bottomSpaceLeftRight
)
stagePoints = [
(partTopLeft, partTop),
(partTopRight, partTop),
(partBottomRight, partBottom),
(partBottomLeft, partBottom),
]
# Start shape builder with first point
ffBuilder = slide.shapes.build_freeform(*stagePoints[0])
ffBuilder.add_line_segments(stagePoints[1:],
close=True,
)
s = ffBuilder.convert_to_shape()
s.text = massageFunnelText(resolveSymbols(body.replace("<br/>", "\n")))
for p in s.text_frame.paragraphs:
p.alignment = PP_ALIGN.CENTER
if funnelTextColour != ("None", ""):
setColour(p.font.color, funnelTextColour)
s.fill.solid()
partColourType, partColourValue = partColours[b % partColourCount]
if partColourType == "Theme":
s.fill.fore_color.theme_color = partColourValue
else:
s.fill.fore_color.rgb = RGBColor.from_string(partColourValue[1:])
if funnelBorderColour != ("None", ""):
setColour(s.line.color, funnelBorderColour)