Skip to content

Commit

Permalink
Added CommunityList WIP pannel and some Unreleased items to the Chang…
Browse files Browse the repository at this point in the history
…elog
  • Loading branch information
SrZorro committed Jun 21, 2018
1 parent 2fe87a5 commit 333ad66
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Add a screen to chose the community to see.
- "private" messages add a profile image.
- Add a chat bubble to see users join and leave threads.
- Change the text box with a "join" button for the threads you arn't in.
- Record button in threads, implement record logic.
- Add thread name to the header of threads.
- Add a leave thread, maybe in header?
- Overhaul textbox in threads.
- Display correctly special syntax flavor [B]old [I]talic [C]enter [U]nderline [S]trikeout

## [1.0.6] - 2018-06-21
### Added
Expand Down
5 changes: 5 additions & 0 deletions src/renderer/components/Amino.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Component } from "inferno";
import Threads from "./Threads";
import ThreadChat from "./ThreadChat";
import Login from "./Login";
import Communities from "./Communities";

const style = {
width: "100%",
Expand Down Expand Up @@ -36,6 +37,10 @@ export default class Amino extends Component<any, any> {
display = <Login onLogged={this.onLogged.bind(this)} />;
}

if (this.state.scene === "CommunityList") {
display = <Communities />;
}

if (this.state.scene === "ThreadList" && this.state.ndcId !== null) {
display = <Threads ndcId={this.state.ndcId} changeScene={this.changeScene.bind(this)} />;
}
Expand Down
20 changes: 20 additions & 0 deletions src/renderer/components/Communities.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { Component } from "inferno";
import { style } from "typestyle";
import AminoClient from "aminoclient";

const main = style({
});

export default class Communities extends Component<any, any> {
constructor(props, context) {
super(props, context);
}

public render() {
return (
<div class={main}>
WIP
</div>
);
}
}

0 comments on commit 333ad66

Please sign in to comment.