slack/ts/slack.classes.slackmessage.ts

73 lines
1.4 KiB
TypeScript
Raw Normal View History

2018-09-15 20:23:05 +00:00
import * as plugins from './slack.plugins';
import { Slackme } from './slack.classes.slackme';
2017-09-17 13:25:00 +00:00
export interface IAttachmentField {
2018-09-15 20:23:05 +00:00
title: string;
value: string;
short?: boolean;
2017-09-17 13:25:00 +00:00
}
export interface IMessageOptions {
/**
* "Required plain-text summary of the attachment."
*/
2018-09-15 20:23:05 +00:00
fallback?: string;
/**
* a side color
*/
2018-09-15 20:23:05 +00:00
color?: string;
/**
* a message to show above
*/
2018-09-15 20:23:05 +00:00
pretext?: string;
2017-09-17 13:25:00 +00:00
/**
* author name of the attachment
*/
2018-09-15 20:23:05 +00:00
author_name?: string;
2017-09-17 13:25:00 +00:00
/**
* a link to the author
*/
2018-09-15 20:23:05 +00:00
author_link?: string;
2017-09-17 13:25:00 +00:00
/**
* a string to the author
*/
2018-09-15 20:23:05 +00:00
author_icon?: string;
2017-09-17 13:25:00 +00:00
/**
* a title for the attachment
*/
2018-09-15 20:23:05 +00:00
title?: string;
2017-09-17 13:25:00 +00:00
/**
* a link for the title
*/
2018-09-15 20:23:05 +00:00
title_link?: string;
/**
* the main text of the message
*/
2018-09-15 20:23:05 +00:00
text?: string;
fields?: IAttachmentField[];
image_url?: string;
thumb_url?: string;
footer?: string;
footer_icon?: string;
/**
* timestamp as epoch time
*/
2018-09-15 20:23:05 +00:00
ts?: number;
}
export class SlackMessage {
2018-09-15 20:23:05 +00:00
slackmeRef: Slackme;
messageOptions: IMessageOptions;
constructor(messageOptionsArg: IMessageOptions, slackmeArg?: Slackme) {
if (slackmeArg) {
2018-09-15 20:23:05 +00:00
this.slackmeRef = slackmeArg;
}
2018-09-15 20:23:05 +00:00
this.messageOptions = messageOptionsArg;
}
sendToRoom(roomNameArg: string) {
2018-09-15 20:23:05 +00:00
if (this.slackmeRef) {
this.slackmeRef.sendMessage(this.messageOptions, roomNameArg);
}
}
}