-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathDefinition.coffee
143 lines (115 loc) · 5.61 KB
/
Definition.coffee
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
# ----------------------------------------------------------------------------
# Color Picker/extensions: Definition
# The element showing the current variable definition
# ----------------------------------------------------------------------------
module.exports = (colorPicker) ->
element: null
pointer: null
# -------------------------------------
# Create and activate Definition element
# -------------------------------------
activate: ->
@element =
el: do ->
_classPrefix = colorPicker.element.el.className
_el = document.createElement 'div'
_el.classList.add "#{ _classPrefix }-definition"
return _el
# Utility functions
height: -> @el.offsetHeight
# Add a child on the Definition element
add: (element) ->
@el.appendChild element
return this
# Set the Definition element background color
setColor: (smartColor) ->
@el.style.backgroundColor = smartColor.toRGBA()
colorPicker.element.add @element.el
# Set Color Picker height
# ---------------------------
setTimeout =>
Arrow = colorPicker.getExtension 'Arrow'
$colorPicker = colorPicker.element
# Change view mode when a variable is input
colorPicker.onInputVariable =>
_oldHeight = $colorPicker.height()
$colorPicker.addClass 'view--definition'
_newHeight = @element.height() + Arrow.element.height()
$colorPicker.setHeight _newHeight
# Reset current element background color
@element.setColor colorPicker.SmartColor.RGBAArray [0, 0, 0, 0]
# Reset picker on close, and clear the event
# TODO handle this on the ColorPicker itself, maybe?
onClose = ->
colorPicker.canOpen = yes
$colorPicker.setHeight _oldHeight
$colorPicker.removeClass 'view--definition'
# TODO: This kinda goes against the 'no strings' thing
colorPicker.Emitter.off 'close', onClose
colorPicker.onClose onClose
# Make sure the class is never set when a color is input
colorPicker.onInputColor ->
$colorPicker.removeClass 'view--definition'
return
# Set background element color on change
# ---------------------------
colorPicker.onInputVariableColor (smartColor) =>
return unless smartColor
@element.setColor smartColor
# Set or replace selection on click
# ---------------------------
colorPicker.onInputVariableColor (..., pointer) =>
# Keep track of the current pointer for when the color is
# supposed to be replaced
@pointer = pointer
hasChild = (element, child) ->
if child and _parent = child.parentNode
if child is element
return true
else return hasChild element, _parent
return false
_isClicking = no
colorPicker.onMouseDown (e, isOnPicker) =>
return unless isOnPicker and hasChild @element.el, e.target
e.preventDefault()
_isClicking = yes
colorPicker.onMouseMove (e) ->
_isClicking = no
colorPicker.onMouseUp (e) =>
return unless _isClicking and @pointer
atom.workspace.open(@pointer.filePath).then =>
Editor = atom.workspace.getActiveTextEditor()
Editor.clearSelections()
Editor.setSelectedBufferRange @pointer.range
Editor.scrollToCursorPosition()
colorPicker.close()
return
# Create Definition definition text element
# ---------------------------
setTimeout =>
# Create definition text element
_definition = document.createElement 'p'
_definition.classList.add "#{ @element.el.className }-definition"
# Remove the definition when a new variable is input
colorPicker.onInputVariable ->
_definition.innerText = ''
# Set definition when the definition is found
colorPicker.onInputVariableColor (color) ->
# If a color definition is found
if color then _definition.innerText = color.value
# If no definition is found, show an error
else _definition.innerText = 'No color found.'
# Add to Definition element
@element.add _definition
# Create Definition variable text element
# ---------------------------
setTimeout =>
# Create variable text element
_variable = document.createElement 'p'
_variable.classList.add "#{ @element.el.className }-variable"
# Set variable when the variable is input
colorPicker.onInputVariable (match) ->
_variable.innerText = match.match
# Add to Definition element
@element.add _variable
return this