Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cabal-client implementation #11

Merged
merged 52 commits into from
Sep 1, 2019
Merged

Conversation

cblgh
Copy link
Member

@cblgh cblgh commented Aug 14, 2019

This pr implements a new type of client library for cabal (chat) clients.

The goal: new chat clients can now be implemented using only this library, without having to mess around with cabal-core itself.

It got rolling with @lykkin's help, where we paired on various parts and then i took it to the finish line.

Things which this library makes possible:

  • consolidates logic common to all chat clients (
  • leaving and joining of channels
  • virtual messages (such as status messages) and virtual channels (currently only the !status channel)
  • handling multiple cabal instances
  • receiving notifications and mentions for channels

It has three core abstractions: Client, CabalDetails and ChannelDetails.

Client is the entrypoint. It has a list of CabalDetails (one details for each joined cabal) as well as an API for interacting with a cabal (getting a count of the new messages for a channel, the joined channels for the current peer etc).

CabalDetails is the instance that clients mostly operate on, as it encapsulates all information for a particular cabal. (joined channels, users in that channel, the topic). It also emits events.

When a change has happened, a CabalDetails instance will call this._emitUpdate(). When a client receives this event, they should update their state & rerender. (Check out how the cli does it.)

ChannelDetails encapsulates everything channels (mentions in that channel, status messages for the channel (like having called a command eg /names, when it was last read, if it's currently being viewed, if it's joined and so on). It also has a barebones implementation for virtual channels, which currently is only the !status channel.

@cblgh cblgh changed the title wip: cabal-client implementation Add cabal-client implementation Aug 17, 2019
@hackergrrl
Copy link
Member

Is the package-lock.json included intentionally?

Copy link
Member

@hackergrrl hackergrrl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work! 🎉

src/client.js Outdated Show resolved Hide resolved
src/client.js Outdated Show resolved Hide resolved
src/client.js Show resolved Hide resolved
src/client.js Outdated Show resolved Hide resolved
src/client.js Outdated Show resolved Hide resolved
src/cabal-details.js Show resolved Hide resolved
src/channel-details.js Outdated Show resolved Hide resolved
src/channel-details.js Outdated Show resolved Hide resolved
src/channel-details.js Outdated Show resolved Hide resolved
src/channel-details.js Outdated Show resolved Hide resolved
@cblgh
Copy link
Member Author

cblgh commented Aug 18, 2019

Is the package-lock.json included intentionally?

not really tbh haha

@cblgh cblgh mentioned this pull request Aug 18, 2019
@cblgh
Copy link
Member Author

cblgh commented Sep 1, 2019

Last thing that remains:

Documentation!

I'll take care of that later tonight :')

@cblgh cblgh merged commit 7fa2d02 into cabal-club:master Sep 1, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants