2016-03-03 21:40:16 -05:00
|
|
|
# A new subscription is created through the ActionCable.Subscriptions instance available on the consumer.
|
|
|
|
# It provides a number of callbacks and a method for calling remote procedure calls on the corresponding
|
2015-07-08 08:42:04 -04:00
|
|
|
# Channel instance on the server side.
|
|
|
|
#
|
|
|
|
# An example demonstrates the basic functionality:
|
|
|
|
#
|
|
|
|
# App.appearance = App.cable.subscriptions.create "AppearanceChannel",
|
|
|
|
# connected: ->
|
|
|
|
# # Called once the subscription has been successfully completed
|
2016-03-03 21:40:16 -05:00
|
|
|
#
|
2016-03-17 10:05:06 -04:00
|
|
|
# disconnected: ({ willAttemptReconnect: boolean }) ->
|
|
|
|
# # Called when the client has disconnected with the server.
|
|
|
|
# # The object will have an `willAttemptReconnect` property which
|
|
|
|
# # says whether the client has the intention of attempting
|
|
|
|
# # to reconnect.
|
|
|
|
#
|
2015-07-08 08:42:04 -04:00
|
|
|
# appear: ->
|
|
|
|
# @perform 'appear', appearing_on: @appearingOn()
|
2016-03-03 21:40:16 -05:00
|
|
|
#
|
2015-07-08 08:42:04 -04:00
|
|
|
# away: ->
|
|
|
|
# @perform 'away'
|
2016-03-03 21:40:16 -05:00
|
|
|
#
|
2015-07-08 08:42:04 -04:00
|
|
|
# appearingOn: ->
|
|
|
|
# $('main').data 'appearing-on'
|
|
|
|
#
|
|
|
|
# The methods #appear and #away forward their intent to the remote AppearanceChannel instance on the server
|
|
|
|
# by calling the `@perform` method with the first parameter being the action (which maps to AppearanceChannel#appear/away).
|
|
|
|
# The second parameter is a hash that'll get JSON encoded and made available on the server in the data parameter.
|
|
|
|
#
|
|
|
|
# This is how the server component would look:
|
|
|
|
#
|
2015-12-16 09:29:21 -05:00
|
|
|
# class AppearanceChannel < ApplicationActionCable::Channel
|
2015-07-08 08:42:04 -04:00
|
|
|
# def subscribed
|
|
|
|
# current_user.appear
|
|
|
|
# end
|
2016-03-03 21:40:16 -05:00
|
|
|
#
|
2015-07-08 08:42:04 -04:00
|
|
|
# def unsubscribed
|
|
|
|
# current_user.disappear
|
|
|
|
# end
|
2016-03-03 21:40:16 -05:00
|
|
|
#
|
2015-07-08 08:42:04 -04:00
|
|
|
# def appear(data)
|
|
|
|
# current_user.appear on: data['appearing_on']
|
|
|
|
# end
|
2016-03-03 21:40:16 -05:00
|
|
|
#
|
2015-07-08 08:42:04 -04:00
|
|
|
# def away
|
|
|
|
# current_user.away
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# The "AppearanceChannel" name is automatically mapped between the client-side subscription creation and the server-side Ruby class name.
|
|
|
|
# The AppearanceChannel#appear/away public methods are exposed automatically to client-side invocation through the @perform method.
|
2015-12-16 09:29:21 -05:00
|
|
|
class ActionCable.Subscription
|
2016-03-03 21:40:16 -05:00
|
|
|
constructor: (@consumer, params = {}, mixin) ->
|
2015-06-24 14:26:26 -04:00
|
|
|
@identifier = JSON.stringify(params)
|
|
|
|
extend(this, mixin)
|
2015-02-12 10:17:26 -05:00
|
|
|
|
2015-06-20 10:01:44 -04:00
|
|
|
# Perform a channel action with the optional data passed as an attribute
|
2015-06-25 10:32:36 -04:00
|
|
|
perform: (action, data = {}) ->
|
2015-06-20 10:01:44 -04:00
|
|
|
data.action = action
|
2015-06-25 10:32:36 -04:00
|
|
|
@send(data)
|
2015-06-24 18:22:16 -04:00
|
|
|
|
2015-06-25 10:32:36 -04:00
|
|
|
send: (data) ->
|
2015-06-25 16:24:58 -04:00
|
|
|
@consumer.send(command: "message", identifier: @identifier, data: JSON.stringify(data))
|
2015-06-20 10:01:44 -04:00
|
|
|
|
2015-06-24 18:22:16 -04:00
|
|
|
unsubscribe: ->
|
2016-03-03 21:40:16 -05:00
|
|
|
@consumer.subscriptions.remove(this)
|
2015-06-24 14:26:26 -04:00
|
|
|
|
|
|
|
extend = (object, properties) ->
|
|
|
|
if properties?
|
|
|
|
for key, value of properties
|
|
|
|
object[key] = value
|
|
|
|
object
|