當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript client.RtmClient類代碼示例

本文整理匯總了TypeScript中@slack/client.RtmClient的典型用法代碼示例。如果您正苦於以下問題:TypeScript RtmClient類的具體用法?TypeScript RtmClient怎麽用?TypeScript RtmClient使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了RtmClient類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: require

const { RtmClient, WebClient, RTM_EVENTS, RTM_CLIENT_EVENTS, MemoryDataStore } = require('@slack/client');
import * as uuid from 'node-uuid'
import { EventEmitter } from 'events'

import graph from './graph';
//import * as minions from './minions';
import * as minions from './minions/tree-sched';

// import nlc from './lib/nlc';

const token = process.env.SLACK_TOKEN;

const rtm = new RtmClient(token, {
	dataStore: new MemoryDataStore({})
});

const web = new WebClient(token);

rtm.start();

const slackClean = (message : any) : SlackMessage => {

	let mentions : Array<SlackUser> = [];
	if(message.text) {
		const ats = message.text.match(/@([^<>]+)/g);
		mentions = ats && ats.length > 0 && ats.map((uid : any) => rtm.dataStore.getUserById(uid.slice(1))).filter((r : any) => r);
		mentions = mentions || [];
	}


	return Object.assign({}, message, {
開發者ID:taimur38,項目名稱:toombot,代碼行數:31,代碼來源:index.ts

示例2: reject

	return new Promise<SlackResponse>((resolve, reject) => {
		rtm.sendMessage(text, ogMessage.channel.id, (err : Error, msg : SlackResponse) => {
			if(err) {
				return reject(err)
			}
			resolve(msg)
		})
	})
開發者ID:taimur38,項目名稱:toombot,代碼行數:8,代碼來源:index.ts

示例3: threadReply

async function threadReply(text: string, ogMessage : SlackMessage) : Promise<SlackResponse> {
	return rtm.send({
		text,
		channel: ogMessage.channel.id,
		thread_ts: ogMessage.thread_ts || ogMessage.ts,
		type: RTM_EVENTS.MESSAGE
	})
}
開發者ID:taimur38,項目名稱:toombot,代碼行數:8,代碼來源:index.ts

示例4:

	setTimeout(() => {
		console.log('reconnecting...');
		rtm.start();
	}, 3000);
開發者ID:taimur38,項目名稱:toombot,代碼行數:4,代碼來源:index.ts


注:本文中的@slack/client.RtmClient類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。