-
-
Save nickclaw/9538654 to your computer and use it in GitHub Desktop.
{View, $} = require 'atom' | |
module.exports = class MessagePaneView extends View | |
@content:(params) => | |
@div class: 'am-panel tool-panel panel-bottom', => | |
@div class: 'panel-heading', params.title, => | |
@div click: 'detach', class: 'close', 'X' | |
@div outlet:'body', style:'max-height:170px;overflow-y:scroll;',class: 'panel-body padded' | |
attach: -> | |
atom.workspaceView.prependToBottom @ | |
detach: -> | |
@.remove() | |
clear: -> | |
@body.empty() | |
appendHeader:(text, className) -> | |
@body.append $('<h1>', { | |
class: className | |
text: text | |
class: classNamecss: | |
cursor: 'pointer' | |
}) | |
appendMessage:(message, className) -> | |
@body.append $('<div>', { | |
class: 'block ' + className | |
text: message | |
}) | |
appendLineMessage:(line, character, message, preview, className) -> | |
goToLine = () -> | |
atom.workspace.getActiveEditor().cursors[0].setBufferPosition [line - 1, character - 1] | |
preview = preview | |
.replace(/&/g, '&') | |
.replace(/</g, '<') | |
.replace(/>/g, '>') | |
@body.append [ | |
$('<div>', { | |
class: 'text-subtle inline-block' | |
text: 'at line ' + line + ', character ' + character | |
click: goToLine | |
css: | |
cursor: 'pointer' | |
}), | |
$('<div>', { | |
class: 'inline-block ' + className | |
text: message | |
}), | |
$('<pre>', { | |
text: preview | |
click: goToLine | |
css: | |
cursor: 'pointer' | |
}) | |
] |
when all this is said, I have learn that I need to look into coffee script... it will come :)
It would be much more extendable if you could just append subviews into the content area. Then anyone could just define a view for whatever type of messages they wanted to display, and then still use the message-panel to display them in.
I will try and whip up an example.
Okay, I've created what I think is a very nice example of what I meant (and added the 0.3.0 functionality of collapsing the message-pane).
You can see my gist at https://gist.github.com/fangel/9553390.
Basically it allows you to write
{MessagePaneView, PlainMessageView, LineMessageView} = require 'atom-message-pane'
messages = new MessagePaneView()
messages.attach()
messages.add(new PlainMessageView('a message'))
messages.add(new LineMessageView(1, 2, 'a line message', 'with a preview'))
Which I think shows how easily extendable it is. Just pass it another View
and give it to the add
method, and then you have your own type of messages displayed.
this is a big dicuss in the forums as well http://discuss.atom.io/t/why-coffeescript/131/6 some are for coffee others are for javsvript:
"Agreed. Collaboration in core would see much higher adoption if in plain JavaScript."
"However, according to the below quote, it might lead to less contributions:"