* Rearchitect chat channel subscriptions * Add browser push notifications (attempt) * Add content sidecar for chat * Add live code basics * Add content features to chat * Fix chat_channels test
113 lines
No EOL
2.8 KiB
JavaScript
113 lines
No EOL
2.8 KiB
JavaScript
export function getAllMessages(channelId, successCb, failureCb) {
|
|
fetch(`/chat_channels/${channelId}`, {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
credentials: 'same-origin',
|
|
})
|
|
.then(response => response.json())
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}
|
|
|
|
export function sendMessage(activeChannelId, message, successCb, failureCb) {
|
|
fetch('/messages', {
|
|
method: 'POST',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'X-CSRF-Token': window.csrfToken,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
message: {
|
|
message_markdown: message,
|
|
user_id: window.currentUser.id,
|
|
chat_channel_id: activeChannelId,
|
|
},
|
|
}),
|
|
credentials: 'same-origin',
|
|
})
|
|
.then(response => response.json())
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}
|
|
|
|
export function sendOpen(activeChannelId, successCb, failureCb) {
|
|
fetch(`/chat_channels/${activeChannelId}/open`, {
|
|
method: 'POST',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'X-CSRF-Token': window.csrfToken,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({}),
|
|
credentials: 'same-origin',
|
|
})
|
|
.then(response => response.json())
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}
|
|
|
|
export function conductModeration(
|
|
activeChannelId,
|
|
message,
|
|
successCb,
|
|
failureCb,
|
|
) {
|
|
fetch(`/chat_channels/${activeChannelId}/moderate`, {
|
|
method: 'POST',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'X-CSRF-Token': window.csrfToken,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
chat_channel: {
|
|
command: message,
|
|
},
|
|
}),
|
|
credentials: 'same-origin',
|
|
})
|
|
.then(response => response.json())
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}
|
|
|
|
export function getAdditionalChannels(successCb, failureCb) {
|
|
fetch(`/chat_channels?state=additional`, {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
credentials: 'same-origin',
|
|
})
|
|
.then(response => response.json())
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}
|
|
|
|
export function sendKeys(subscription, successCb, failureCb) {
|
|
fetch(`/push_notification_subscriptions`, {
|
|
method: 'POST',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'X-CSRF-Token': window.csrfToken,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
subscription: subscription
|
|
}),
|
|
credentials: 'same-origin',
|
|
})
|
|
.then(response => response.json())
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
}
|
|
|
|
export function getContent(url, successCb, failureCb) {
|
|
fetch(`${url}`, {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
credentials: 'same-origin',
|
|
})
|
|
.then(response => response.json())
|
|
.then(successCb)
|
|
.catch(failureCb);
|
|
} |