Skip to content

Instantly share code, notes, and snippets.

@nickclaw
Last active August 29, 2015 13:57
Show Gist options
  • Save nickclaw/9538654 to your computer and use it in GitHub Desktop.
Save nickclaw/9538654 to your computer and use it in GitHub Desktop.
atom-message-panel index.coffee
{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, '&amp;')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
@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'
})
]
@tcarlsen
Copy link

when all this is said, I have learn that I need to look into coffee script... it will come :)

@fangel
Copy link

fangel commented Mar 14, 2014

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.

@fangel
Copy link

fangel commented Mar 14, 2014

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment