-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
2,301 additions
and
4 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,5 @@ docs/ | |
webpack.config.js | ||
.github/ | ||
test/ | ||
tsconfig.json | ||
tslint.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"target": "es6", | ||
"noImplicitAny": true, | ||
"strictNullChecks": true, | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true | ||
}, | ||
"files": [ | ||
"typings/index.d.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"extends": [ | ||
"tslint-config-typings" | ||
], | ||
"rules": { | ||
"class-name": true, | ||
"comment-format": [ | ||
true, | ||
"check-space" | ||
], | ||
"indent": [ | ||
true, | ||
"tabs" | ||
], | ||
"no-duplicate-variable": true, | ||
"no-unused-variable": [false], | ||
"no-eval": true, | ||
"no-internal-module": true, | ||
"no-trailing-whitespace": true, | ||
"no-unsafe-finally": true, | ||
"no-var-keyword": true, | ||
"one-line": [ | ||
true, | ||
"check-open-brace", | ||
"check-whitespace" | ||
], | ||
"quotemark": [ | ||
true, | ||
"single" | ||
], | ||
"semicolon": [ | ||
true, | ||
"always" | ||
], | ||
"triple-equals": [ | ||
true, | ||
"allow-null-check" | ||
], | ||
"typedef-whitespace": [ | ||
true, | ||
{ | ||
"call-signature": "nospace", | ||
"index-signature": "nospace", | ||
"parameter": "nospace", | ||
"property-declaration": "nospace", | ||
"variable-declaration": "nospace" | ||
} | ||
], | ||
"variable-name": [ | ||
true, | ||
"ban-keywords" | ||
], | ||
"whitespace": [ | ||
true, | ||
"check-branch", | ||
"check-decl", | ||
"check-operator", | ||
"check-separator", | ||
"check-type" | ||
] | ||
} | ||
} |
Submodule typings
deleted from
db2a6e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/// <reference path='index.d.ts' /> | ||
|
||
import { Collector, Message, CollectorFilter, Client, CollectorHandler, MessageReaction, Collection, User, ReactionCollectorOptions, Snowflake } from 'discord.js'; | ||
|
||
const client = new Client({ | ||
disableEveryone: false, | ||
disabledEvents: ['GUILD_MEMBER_ADD'] | ||
}); | ||
|
||
client.on('message', (message) => { | ||
if (message.content === 'hello') { | ||
message.channel.sendMessage('o/'); | ||
} | ||
|
||
const collector: ReactionCollector = new ReactionCollector(message, | ||
(reaction: MessageReaction) => reaction.emoji.toString() === '👌', | ||
{ time: 30e3 }); | ||
collector.on('end', collected => console.log(collected)); | ||
}); | ||
|
||
client.login('dsfsd754.4fds4f68d4f6sd46f4s.7878easfdsgdfFDSIJIO'); | ||
|
||
export class TestCollector extends Collector<Snowflake, Message> { | ||
public filter: CollectorFilter; | ||
public constructor(client: Client, filter: CollectorFilter, ) { | ||
super(client, filter); | ||
} | ||
|
||
public handle(message: Message): CollectorHandler<Snowflake, Message> { | ||
return { key: message.id, value: message }; | ||
} | ||
|
||
public cleanup(): void {} | ||
public postCheck(): null { return null; } | ||
} | ||
|
||
class ReactionCollector extends Collector<Snowflake, MessageReaction> { | ||
public message: Message; | ||
public users: Collection<Snowflake, User>; | ||
public total: number; | ||
public options: ReactionCollectorOptions; | ||
public constructor(message: Message, filter: CollectorFilter, options?: ReactionCollectorOptions) { | ||
super(message.client, filter, options || {}); | ||
this.message = message; | ||
this.users = new Collection<Snowflake, User>(); | ||
this.total = 0; | ||
this.client.on('messageReactionAdd', this.listener); | ||
} | ||
|
||
public handle(reaction: MessageReaction): CollectorHandler<Snowflake, MessageReaction> { | ||
if (reaction.message.id !== this.message.id) { return null; } | ||
return { | ||
key: reaction.emoji.id || reaction.emoji.name, | ||
value: reaction | ||
}; | ||
} | ||
|
||
public postCheck(reaction: MessageReaction, user: User): string { | ||
this.users.set(user.id, user); | ||
if (this.options.max && ++this.total >= this.options.max) { return 'limit'; } | ||
if (this.options.maxEmojis && this.collected.size >= this.options.maxEmojis) { return 'emojiLimit'; } | ||
if (this.options.maxUsers && this.users.size >= this.options.maxUsers) { return 'userLimit'; } | ||
return null; | ||
} | ||
|
||
public cleanup(): void { | ||
this.client.removeListener('messageReactionAdd', this.listener); | ||
} | ||
} |
Oops, something went wrong.
xszdasf