Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
0d4cac9
Hacky plaintext chatinput
Dec 14, 2018
97c9fbf
Update to latest React
Dec 14, 2018
84eb575
Rewrite chat input with hooks
Dec 14, 2018
ed08f6b
Add support for sending DM thread messages and creating new DM threads
Dec 14, 2018
26c7124
Quoted message support
Dec 14, 2018
160e813
Make media messages work
Dec 14, 2018
1eff87e
"Blur" optimistic responses"
Dec 17, 2018
dad3f36
Revert ""Blur" optimistic responses""
Dec 17, 2018
7a7ba8d
Parse markdown to draftjs in optimistic responses
Dec 17, 2018
2e9d461
Add localStorage persistance of latest chatInput content
Dec 18, 2018
603434f
Fix dm thread creation
Dec 18, 2018
6be1f93
Switch to same markdown draftjs conversion library on backend
Dec 18, 2018
16afe50
Merge branch 'alpha' into plaintext-spike
Dec 18, 2018
2d2b676
Add missing dep to api
Dec 18, 2018
255ac28
Merge branch 'alpha' of github.com:withspectrum/spectrum into plainte…
brianlovin Dec 18, 2018
9e3e8ca
Silence flow errors on new react features
brianlovin Dec 18, 2018
4711c0e
Fix chatInput focussing
Dec 19, 2018
abda1d4
Fix sending plaintext messages
Dec 19, 2018
359e601
Remove unnecessary double-read of attached media
Dec 19, 2018
460fa50
Resolve React warnings
Dec 19, 2018
d8e9cc8
Fix creating new DM thread
Dec 19, 2018
7f6388c
Revert "Fix creating new DM thread"
Dec 19, 2018
71350d7
Merge branch 'alpha' into plaintext-spike
Dec 19, 2018
d16b5c2
Fix flow
Dec 19, 2018
2b54407
Merge alpha and fix conflicts
brianlovin Dec 19, 2018
60c3465
Better network disabled styling on input
brianlovin Dec 19, 2018
e74d018
Fix styling if quote-replying and uploading media at same time
brianlovin Dec 19, 2018
d1c4909
Focus chatinput on quote message click
Dec 21, 2018
3a59362
Fix media messages arriving after text messages
Dec 21, 2018
0df7df4
Handle websocket connection states
Dec 21, 2018
58b4404
Fix flow
Jan 7, 2019
4cb998b
Remove unused variables from chatInput
Jan 7, 2019
3bfb20c
Explicitly target chat input from e2e tests
Jan 7, 2019
0c9f8b8
Move data-cy="chat-input" to actual input
Jan 7, 2019
890a715
Merge branch 'alpha' into plaintext-spike
Jan 7, 2019
b4fc98d
Use .clear() instead of .type() in e2e tests
Jan 7, 2019
243d2c7
Remove .only in thread_spec, fix /new/thread tests
Jan 7, 2019
a327a86
Upgrade to draft-js-import-markdown@latest to fix code blocks
Jan 8, 2019
721dfb7
Make plaintext message editing work
Jan 8, 2019
6a7c792
edit in plaintext on the frontend
Jan 8, 2019
10ceda8
Fix flow
Jan 8, 2019
06a2f9e
Fix editing e2e test
Jan 8, 2019
6d7d814
Match input font weight to rendered message font weight
brianlovin Jan 8, 2019
3adc352
Remove invalid dataCy dom node property
brianlovin Jan 8, 2019
f62c8c6
Change editor to allow multiline messages
brianlovin Jan 8, 2019
156ceb7
Remove empty line while editing
Jan 9, 2019
470bae2
Fix incorrect focussing on chat input while editing message
Jan 9, 2019
7b51155
Make single line breaks work!
Jan 10, 2019
1d59e09
Focus the edit message input when edit message button is clicked
brianlovin Jan 11, 2019
af78603
Fenced code blocks while editing
Jan 14, 2019
d6fbf52
Merge branch 'alpha' into plaintext-spike
Jan 14, 2019
7888aaf
Merge branch 'alpha' into plaintext-spike
Jan 15, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"prettier": "^1.14.3",
"raw-loader": "^0.5.1",
"react-app-rewire-hot-loader": "^1.0.3",
"react-hot-loader": "^4.3.11",
"react-hot-loader": "^4.6.0",
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Had to upgrade to get compatibility with react hooks

"react-scripts": "^1.1.5",
"rimraf": "^2.6.1",
"sw-precache-webpack-plugin": "^0.11.4",
Expand Down Expand Up @@ -145,12 +145,12 @@
"query-string": "5.1.1",
"raf": "^3.4.0",
"raven": "^2.6.4",
"react": "16.4.2",
"react": "^16.7.0-alpha.2",
"react-apollo": "^2.3.2",
"react-app-rewire-styled-components": "^3.0.0",
"react-app-rewired": "^1.6.2",
"react-clipboard.js": "^2.0.1",
"react-dom": "16.4.2",
"react-dom": "^16.7.0-alpha.2",
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Had to upgrade to get react hooks

"react-flip-move": "^3.0.2",
"react-helmet-async": "^0.1.0",
"react-image": "^1.5.1",
Expand Down
Loading