2015-08-11 08:31:52 +08:00
|
|
|
# A poll in the whiteboard
|
|
|
|
class @WhiteboardPollModel extends WhiteboardToolModel
|
|
|
|
constructor: (@paper) ->
|
|
|
|
super @paper
|
|
|
|
|
|
|
|
# the defintion of this shape, kept so we can redraw the shape whenever needed
|
|
|
|
# format: x1, y1, x2, y2, stroke color, thickness, fill
|
|
|
|
@definition = [0, 0, 0, 0, "#000", "0px", "#ffffff"]
|
|
|
|
@paper
|
|
|
|
|
|
|
|
# Creates a polling in the paper
|
|
|
|
# @param {number} x1 the x value of the top left corner
|
|
|
|
# @param {number} y1 the y value of the top left corner
|
|
|
|
# @param {number} x2 the x value of the bottom right corner
|
|
|
|
# @param {number} y2 the y value of the bottom right corner
|
|
|
|
# @param {string} colour the colour of the object
|
|
|
|
# @param {number} thickness the thickness of the object's line(s)
|
|
|
|
# @param {string} backgroundColor the background color of the poll element
|
2015-08-13 10:07:15 +08:00
|
|
|
# @param {number} vPadding the vertical padding of the poll element
|
|
|
|
# @param {number} hPadding the horizontal padding of the poll element
|
2015-08-11 08:31:52 +08:00
|
|
|
make: (startingData) =>
|
|
|
|
#data needed to create the first base rectangle filled with white color
|
|
|
|
x1 = startingData.points[0]
|
|
|
|
y1 = startingData.points[1]
|
|
|
|
x2 = startingData.points[2] + startingData.points[0] - 0.001
|
|
|
|
y2 = startingData.points[3] + startingData.points[1] - 0.001
|
|
|
|
color = startingData.color
|
|
|
|
thickness = 2
|
|
|
|
backgroundColor = "#ffffff"
|
|
|
|
vPadding = 10
|
|
|
|
hPadding = 5
|
2015-08-13 10:07:15 +08:00
|
|
|
calcFontSize = 30
|
|
|
|
votesTotal = 0
|
|
|
|
textArray = []
|
|
|
|
|
|
|
|
#creating an array of text objects for the labels, percentages and number inside line bars
|
|
|
|
if startingData.result? and startingData.result.length > 1
|
|
|
|
#counting the total number of votes
|
|
|
|
for i in [0..startingData.result.length-1]
|
|
|
|
votesTotal += startingData.result[i].num_votes
|
|
|
|
textArray[i] = []
|
|
|
|
#filling the array with proper text objects to display
|
|
|
|
for i in [0..startingData.result.length-1]
|
|
|
|
textArray[i].push(startingData.result[i].key, startingData.result[i].num_votes+"")
|
|
|
|
if votesTotal is 0
|
|
|
|
textArray[i].push("0%")
|
|
|
|
else
|
|
|
|
textArray[i].push(startingData.result[i].num_votes/votesTotal*100+"%")
|
2015-08-11 08:31:52 +08:00
|
|
|
|
|
|
|
#if coordinates are reversed - change them back
|
|
|
|
if x2 < x1
|
2015-08-13 10:07:15 +08:00
|
|
|
[x1, x2] = [x2, x1]
|
2015-08-11 08:31:52 +08:00
|
|
|
if y2 < y1
|
|
|
|
[y1, y2] = [y2, y1]
|
2015-08-13 10:07:15 +08:00
|
|
|
|
2015-08-11 08:31:52 +08:00
|
|
|
#Params:
|
|
|
|
#x - the actual calculated x value of the top left corner of the polling area
|
|
|
|
#y - the actual calculated y value of the top left corner of the polling area
|
|
|
|
#width - the width of the polling area
|
|
|
|
#height - the height of the polling area
|
|
|
|
x = x1 * @gw + @xOffset
|
|
|
|
y = y1 * @gh + @yOffset
|
|
|
|
width = (x2 * @gw + @xOffset) - x
|
|
|
|
height = (y2 * @gh + @yOffset) - y
|
2015-08-13 10:07:15 +08:00
|
|
|
|
2015-08-11 08:31:52 +08:00
|
|
|
#creating a base rectangle
|
|
|
|
@obj = @paper.rect(x, y, width, height, 1)
|
|
|
|
@obj.attr "stroke", formatColor(color)
|
|
|
|
@obj.attr "fill", backgroundColor
|
|
|
|
@obj.attr "stroke-width", zoomStroke(formatThickness(thickness))
|
|
|
|
@definition =
|
|
|
|
shape: "poll_result"
|
|
|
|
data: [x1, y1, x2, y2, @obj.attrs["stroke"], @obj.attrs["stroke-width"], @obj.attrs["fill"]]
|
|
|
|
|
2015-08-13 10:11:00 +08:00
|
|
|
#Initializing a text element for further calculations and for the left column of keys
|
|
|
|
@obj2 = @paper.text(x, y, "")
|
|
|
|
@obj2.attr
|
|
|
|
"fill": "#000000"
|
|
|
|
"font-family": "Arial"
|
|
|
|
"font-size": calcFontSize
|
|
|
|
@obj2.node.style["text-anchor"] = "start" # force left align
|
|
|
|
@obj2.node.style["textAnchor"] = "start" # for firefox, 'cause they like to be different
|
|
|
|
leftCell = @obj2.node
|
|
|
|
while leftCell? and leftCell.hasChildNodes()
|
|
|
|
leftCell.removeChild(leftCell.firstChild)
|
|
|
|
|
|
|
|
#Initializing a text element for the right column of percentages
|
|
|
|
@obj3 = @paper.text(x, y, "")
|
|
|
|
@obj3.attr
|
|
|
|
"fill": "#000000"
|
|
|
|
"font-family": "Arial"
|
|
|
|
"font-size": calcFontSize
|
|
|
|
@obj3.node.style["text-anchor"] = "end" # force left align
|
|
|
|
@obj3.node.style["textAnchor"] = "end" # for firefox, 'cause they like to be different
|
|
|
|
rightCell = @obj3.node
|
|
|
|
while rightCell? and rightCell.hasChildNodes()
|
|
|
|
rightCell.removeChild(rightCell.firstChild)
|
|
|
|
|
|
|
|
test = [@obj, @obj2, @obj3]
|
2015-08-11 08:31:52 +08:00
|
|
|
|
2015-08-13 10:19:05 +08:00
|
|
|
calculatedData = calculateFontAndWidth(leftCell, textArray, calcFontSize, width, height, x, y)
|
|
|
|
calcFontSize = calculatedData[0]
|
|
|
|
maxLeftWidth = calculatedData[1]
|
|
|
|
maxRightWidth = calculatedData[2]
|
|
|
|
maxLineHeight = calculatedData[3]
|
2015-08-14 05:06:28 +08:00
|
|
|
barWidth = width*0.9-maxLeftWidth-maxRightWidth
|
2015-08-14 03:50:25 +08:00
|
|
|
barHeight = height*0.75/textArray.length
|
|
|
|
svgNSi = "http://www.w3.org/2000/svg"
|
|
|
|
|
|
|
|
#setting a font style for the text elements
|
|
|
|
leftCell.style['font-size'] = calcFontSize
|
|
|
|
rightCell.style['font-size'] = calcFontSize
|
|
|
|
|
|
|
|
#Horizontal padding
|
|
|
|
widthPadding = width*0.1/(textArray[0].length+1)
|
2015-08-14 05:06:28 +08:00
|
|
|
#Vertical padding
|
|
|
|
heightPadding = height*0.25/(textArray.length+1)
|
|
|
|
#Initial coordinates of the key column
|
|
|
|
yLeft = y+heightPadding+barHeight/2
|
|
|
|
xLeft = x + widthPadding + 1
|
|
|
|
#Initial coordinates of the line bar column
|
2015-08-14 03:50:25 +08:00
|
|
|
xBar = x+maxLeftWidth+widthPadding*2
|
|
|
|
yBar = y + heightPadding
|
2015-08-14 07:31:48 +08:00
|
|
|
#Initial coordinates of the percentage column
|
|
|
|
yRight = y+heightPadding+barHeight/2
|
|
|
|
xRight = x + widthPadding*3 + maxLeftWidth + maxRightWidth + barWidth + 1
|
2015-08-14 03:50:25 +08:00
|
|
|
|
|
|
|
for line in textArray
|
2015-08-14 05:06:28 +08:00
|
|
|
#Adding an element to the left column
|
|
|
|
tempSpanEl = document.createElementNS(svgNSi, "tspan")
|
|
|
|
tempSpanEl.setAttributeNS null, "x", xLeft
|
|
|
|
tempSpanEl.setAttributeNS null, "y", yLeft
|
|
|
|
tempSpanEl.setAttributeNS null, "dy", maxLineHeight/2
|
2015-08-14 07:31:48 +08:00
|
|
|
|
2015-08-14 05:06:28 +08:00
|
|
|
tempTextNode = document.createTextNode(line[0])
|
|
|
|
tempSpanEl.appendChild tempTextNode
|
|
|
|
leftCell.appendChild tempSpanEl
|
2015-08-14 03:50:25 +08:00
|
|
|
|
|
|
|
#drawing a black graph bar
|
2015-08-14 05:06:28 +08:00
|
|
|
@obj3 = @paper.rect(xBar, yBar, barWidth, barHeight, 2)
|
2015-08-14 03:50:25 +08:00
|
|
|
@obj3.attr "stroke", formatColor(color)
|
|
|
|
@obj3.attr "fill", "#000000"
|
|
|
|
@obj3.attr "stroke-width", zoomStroke(formatThickness(0))
|
|
|
|
|
2015-08-14 07:31:48 +08:00
|
|
|
#Adding an element to the right column
|
|
|
|
tempSpanEl = document.createElementNS(svgNSi, "tspan")
|
|
|
|
tempSpanEl.setAttributeNS null, "x", xRight
|
|
|
|
tempSpanEl.setAttributeNS null, "y", yRight
|
|
|
|
tempSpanEl.setAttributeNS null, "dy", maxLineHeight/2
|
|
|
|
tempTextNode = document.createTextNode(line[2])
|
|
|
|
tempSpanEl.appendChild tempTextNode
|
|
|
|
rightCell.appendChild tempSpanEl
|
|
|
|
console.log tempSpanEl.getBBox().width
|
|
|
|
|
2015-08-14 05:06:28 +08:00
|
|
|
#changing the Y coordinate for all the objects
|
2015-08-14 03:50:25 +08:00
|
|
|
yBar = yBar + barHeight + heightPadding
|
2015-08-14 05:06:28 +08:00
|
|
|
yLeft = yLeft + heightPadding + barHeight
|
2015-08-14 07:31:48 +08:00
|
|
|
yRight = yRight + heightPadding + barHeight
|
2015-08-13 10:19:05 +08:00
|
|
|
|
2015-08-13 10:07:15 +08:00
|
|
|
test
|
2015-08-11 08:31:52 +08:00
|
|
|
|
|
|
|
|
2015-08-13 10:07:15 +08:00
|
|
|
# Update the poll dimensions
|
2015-08-11 08:31:52 +08:00
|
|
|
# @param {number} x1 the x value of the top left corner
|
|
|
|
# @param {number} y1 the y value of the top left corner
|
|
|
|
# @param {number} x2 the x value of the bottom right corner
|
|
|
|
# @param {number} y2 the y value of the bottom right corner
|
|
|
|
# @param {boolean} square (draw a square or not)
|
|
|
|
update: (startingData) ->
|
2015-08-13 10:19:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
calculateFontAndWidth = (leftCell, textArray, calcFontSize, width, height, x, y) ->
|
|
|
|
calculatedData = []
|
|
|
|
#Initializing a tspan for finding a proper font-size
|
|
|
|
svgNSi = "http://www.w3.org/2000/svg"
|
|
|
|
tempSpanEl = document.createElementNS(svgNSi, "tspan")
|
|
|
|
tempSpanEl.setAttributeNS null, "x", x
|
|
|
|
tempSpanEl.setAttributeNS null, "y", y
|
|
|
|
tempTextNode = document.createTextNode("")
|
|
|
|
tempSpanEl.appendChild tempTextNode
|
|
|
|
|
|
|
|
#maximum line width can be either 1/3 of the line or 40px
|
|
|
|
#maximum line height is 75% of the initial size of the box divided by the number of lines
|
|
|
|
maxLineWidth = width/3
|
|
|
|
maxLineHeight = height*0.75/textArray?.length
|
|
|
|
|
|
|
|
#calculating a proper font-size
|
|
|
|
flag = true
|
|
|
|
while flag
|
|
|
|
flag = false
|
|
|
|
for i in [0..textArray.length-1]
|
|
|
|
for j in [0..textArray[i].length-1]
|
|
|
|
tempSpanEl.firstChild.nodeValue = textArray[i][j]
|
|
|
|
leftCell.appendChild tempSpanEl
|
|
|
|
if tempSpanEl.getBBox().width > 40 or tempSpanEl.getBBox().width > maxLineWidth or tempSpanEl.getBBox().height > maxLineHeight
|
|
|
|
calcFontSize -= 1
|
|
|
|
leftCell.style['font-size'] = calcFontSize
|
|
|
|
flag = true
|
|
|
|
leftCell.removeChild(leftCell.firstChild)
|
|
|
|
|
|
|
|
calculatedData.push calcFontSize
|
|
|
|
|
|
|
|
#looking for a maximum width and height of the left and right text elements
|
|
|
|
maxLeftWidth = 0
|
|
|
|
maxRightWidth = 0
|
|
|
|
maxLineHeight = 0
|
|
|
|
for line in textArray
|
|
|
|
tempSpanEl.firstChild.nodeValue = line[0]
|
|
|
|
leftCell.appendChild tempSpanEl
|
|
|
|
if tempSpanEl.getBBox().width > maxLeftWidth
|
2015-08-14 05:06:28 +08:00
|
|
|
maxLeftWidth = tempSpanEl.getBBox().width
|
2015-08-13 10:19:05 +08:00
|
|
|
if tempSpanEl.getBBox().height > maxLineHeight
|
|
|
|
maxLineHeight = tempSpanEl.getBBox().height
|
|
|
|
leftCell.removeChild(leftCell.firstChild)
|
|
|
|
|
|
|
|
tempSpanEl.firstChild.nodeValue = line[2]
|
|
|
|
leftCell.appendChild tempSpanEl
|
|
|
|
if tempSpanEl.getBBox().width > maxRightWidth
|
2015-08-14 07:31:48 +08:00
|
|
|
maxRightWidth = tempSpanEl.getBBox().width
|
2015-08-13 10:19:05 +08:00
|
|
|
if tempSpanEl.getBBox().height > maxLineHeight
|
|
|
|
maxLineHeight = tempSpanEl.getBBox().height
|
|
|
|
leftCell.removeChild(leftCell.firstChild)
|
|
|
|
|
|
|
|
calculatedData.push maxLeftWidth, maxRightWidth, maxLineHeight
|
|
|
|
calculatedData
|