Skip to content

ModelMetrics/chatter-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Pure JS/HTML/CSS salesforce.com chatter front-end.

See it in action - https://chatter-ui-demo.herokuapp.com.

Dependencies:

Usage

Head:

<link href='chatter-ui.css' rel='stylesheet' />
<script src='jquery.js' type='text/javascript'></script>
<script src='underscore.js' type='text/javascript'></script>
<script src='backbone.js' type='text/javascript'></script>
<script src='chatter-ui.js' type='text/javascript'></script>

Body:

<div id='chatter'>
<textarea id="feeds-post" rows="1" cols="25"></textarea>
<button id="feeds-submit">Post</button>
</div>

On load:

$(function() {
  Backbone.Salesforce.connection = {
    host:  'REPLACE ME!!',
    token: 'REPLACE ME!!',
    proxy: 'REPLACE ME!!'
  };
  new window.AppWithSingleFeedView({el:'#chatter'});
});

Proxy Configuration

chatter-ui interacts with the salesforce.com REST and Chatter REST APIs. Because these APIs reside on a domain different, chatter-ui is dependent upon either a local reverse proxy, or a remote reverse proxy that supports CORS headers. Below are at least three different proxies you can leverage, and the corresponding proxy configuration.

chatter-proxy

proxy: {
  url: "https://chatter-proxy.herokuapp.com/${path}",
  headers: [
    {name: "SalesforceProxy-Endpoint", value: "${host}"},
    {name: "X-Authorization", value: "OAuth ${token}"}
  ]
}

If you use this proxy, email Stephen O'Halloran or Richard Vanhook to get your application domain added into the accepted domain list. This is required so that CORS can work well with the proxy and your side.

CORS-Proxy

proxy: {
  url: "http://localhost/${host}${path}",
  headers: [
    {name: "Authorization", value: "OAuth ${token}"}
  ]
}

[php proxy page]

proxy: {
  url: "http://localhost/proxy.php",
  headers: [
    {name: "SalesforceProxy-Endpoint", value: "https://${host}${path}"},
    {name: "X-Authorization", value: "OAuth ${token}"}
  ]
}

About

Pure JS/HTML/CSS salesforce.com chatter front-end

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published