Skip to content

Commit 623ff1b

Browse files
committed
auto scroll is working on initial load and tab switch
1 parent b2053b7 commit 623ff1b

File tree

5 files changed

+26
-12
lines changed

5 files changed

+26
-12
lines changed

app/assets/javascripts/backbone/helpers/channels.js.coffee

+9-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ class Kandan.Helpers.Channels
1111
scrollPercentage > @options.autoScrollThreshold
1212

1313
@scrollToLatestMessage: (channelId)->
14-
$(document).scrollTop($(document).height()+9000)
14+
if channelId
15+
theScrollArea = $('#channels-'+channelId)
16+
theScrollArea.scrollTop(theScrollArea.prop('scrollHeight'))
17+
else
18+
$('.channels-pane').scrollTop($('.channels-pane').prop('scrollHeight'))
1519

1620
@currentScrollPosition: (channelId)->
17-
$(document).scrollTop()
21+
$('channels-pane').scrollTop()
1822

1923
@channelActivitiesEl: (channelId)->
2024
$("#channel-activities-#{channelId}")
@@ -34,6 +38,7 @@ class Kandan.Helpers.Channels
3438
return $(document).data("active-channel-id")
3539

3640

41+
3742
@confirmDeletion: ()->
3843
return confirm("Really delete the channel?")
3944

@@ -57,7 +62,7 @@ class Kandan.Helpers.Channels
5762
@getChannelIdByTabIndex: (tabIndex)->
5863
$("#kandan .ui-tabs-panel")
5964
.eq(tabIndex)
60-
.data("channel-id")
65+
.data("channel-id")
6166

6267
@getTabIndexByChannelId: (channelId)->
6368
$("#channels-#{channelId}").prevAll("div").length
@@ -90,6 +95,7 @@ class Kandan.Helpers.Channels
9095
view = new Kandan.Views.ChannelPane({channel: channel})
9196
view.render $(channelArea)
9297
$(channelArea).data("channel_id", channel.get("id"))
98+
9399

94100

95101
@newActivityView: (activityAttributes)->

app/assets/javascripts/backbone/kandan.js.coffee.erb

+11-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,15 @@ window.Kandan =
7272
select: (event, ui)->
7373
$(document).data('active-channel-id',
7474
Kandan.Helpers.Channels.getChannelIdByTabIndex(ui.index))
75+
76+
#the need for the delay feels hacky to me.
77+
#It is there because the chat area has to render before scrollHeight can be determined.
78+
theId = Kandan.Helpers.Channels.getActiveChannelId()
79+
delay = (ms, func) -> setTimeout func, ms
80+
delay 1, -> Kandan.Helpers.Channels.scrollToLatestMessage(theId)
7581
Kandan.Data.Channels.runCallbacks('change')
82+
83+
7684
add: (event, ui) ->
7785
$('.header .ui-tabs-panel:last').detach().appendTo('#channels')
7886
$('#kandan').tabs('option', 'disabled', [])
@@ -92,10 +100,10 @@ window.Kandan =
92100
</li>
93101
'''
94102

103+
95104
initChatArea: (channels)->
96105
chatArea = new Kandan.Views.ChatArea({channels: channels})
97106
$(".main-area").append(chatArea.render().el)
98-
$(document).scrollTop($(document).height()+9000)
99107

100108

101109
onFetchActiveUsers: (channels)=>
@@ -109,6 +117,8 @@ window.Kandan =
109117
Kandan.initChatArea(channels)
110118
Kandan.initTabs()
111119
Kandan.Widgets.initAll()
120+
Kandan.Helpers.Channels.scrollToLatestMessage()
121+
112122

113123
setCurrentUser: ()->
114124
template = JST['current_user']

app/assets/javascripts/backbone/views/channel_pane.js.coffee

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ class Kandan.Views.ChannelPane extends Backbone.View
1313
$(container).attr "id", "channels-#{@options.channel.get("id")}"
1414
$(container).attr "class", "channels-pane"
1515
$(container).data "channel-id", @options.channel.get('id')
16-
16+
1717
paginatedActivitiesView: ()->
1818
view = new Kandan.Views.PaginatedActivities({channel: @options.channel})
1919
view.render().el
2020

2121
chatboxView: ()->
2222
view = new Kandan.Views.Chatbox({channel: @options.channel})
2323
view.render().el
24+

app/assets/javascripts/backbone/views/chatbox.js.coffee

+3-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ class Kandan.Views.Chatbox extends Backbone.View
3737
)
3838

3939
$("#activity-c#{model.cid}").attr("id", "activity-#{model.get('id')}")
40-
$scrollbox = $('.channels-pane')
41-
$scrollbox.prop("scrollTop", $scrollbox.prop('scrollHeight'))
40+
theId = Kandan.Helpers.Channels.getActiveChannelId()
41+
Kandan.Helpers.Channels.scrollToLatestMessage(theId)
42+
4243
})
4344

4445
render: ()->

app/views/main/index.html.erb

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
})
55
<%- end %>
66

7-
8-
9-
107
<div id="kandan">
118
<div class="header">
129
<%= image_tag "logo.png", :class=>"logo" %>
@@ -50,5 +47,4 @@
5047
<%= link_to 'Logout', destroy_user_session_path, :method => :delete %><br />
5148
<hr>
5249
<%= link_to 'About Kandan', about_path, @about %>
53-
</div>
54-
50+
</div>

0 commit comments

Comments
 (0)