summary refs log tree commit diff
path: root/webclient (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change the way pagination works to support out of order events.Erik Johnston2014-08-192-3/+2
|
* Increase /events timeout to 30 secs. We don't need it so low anymore to get ↵Kegan Dougal2014-08-181-1/+1
| | | | around request suppression when changing rooms, since there is just a single event stream now.
* webclient: Tweak namespace of auto-complete directive. ng- should really ↵Kegan Dougal2014-08-182-2/+2
| | | | only be used for official ng directives.
* Disabled image upload UIsEmmanuel ROHEE2014-08-182-2/+6
|
* Do not start the event stream if the user is not logged in (=if he does not ↵Emmanuel ROHEE2014-08-183-9/+17
| | | | | | has an access token yet) Add isUserLoggedIn to check this.
* Added another button to upload and send an image.Emmanuel ROHEE2014-08-182-2/+20
| | | | The text input and its send button for sending an image URL will be removed once we have a true upload image service
* make my emotes white againMatthew Hodgson2014-08-181-0/+4
|
* make text font sizes consistentMatthew Hodgson2014-08-172-13/+26
| | | | | | | add a gap between bubble-blocks from different users make sent-text lighter than received-text wrap the memberslist text more sensibly fix height of bubbles to match that of avatars (32px)
* implement html5 notifications. (have to be explicitly requested under Config)Matthew Hodgson2014-08-174-3/+37
|
* unbreak login sequence (which spuriously required a sydent server to be ↵Matthew Hodgson2014-08-171-2/+2
| | | | specified, which login.html was no longer doing...)
* oops, debugging crept inMatthew Hodgson2014-08-171-1/+0
|
* dial down loggingMatthew Hodgson2014-08-171-5/+5
|
* - use css3 to make avatars always the right aspect ratioMatthew Hodgson2014-08-173-4/+105
| | | | - implement slightly overengineered tab/shift-tab autocomplete function
* autohyperlink messages using linkyMatthew Hodgson2014-08-164-3/+581
|
* use minified angular by defaultMatthew Hodgson2014-08-161-2/+2
|
* minified angularjs stuff to speed things upMatthew Hodgson2014-08-164-0/+249
|
* improve infinite scrolling so it keeps paginating until you have a scrollbar ↵Matthew Hodgson2014-08-161-17/+28
| | | | (if it can)
* remove log spamMatthew Hodgson2014-08-161-2/+2
|
* disambiguate identical displaynamesMatthew Hodgson2014-08-161-1/+23
|
* make presence timestamps less verboseMatthew Hodgson2014-08-161-3/+3
|
* roll back b602834 as it made a bizarre subset of avatars go awolMatthew Hodgson2014-08-161-6/+5
|
* order the members list by most recently activeMatthew Hodgson2014-08-162-7/+19
|
* don't hammer a new hit for every displayname and avatar_url when we already ↵Matthew Hodgson2014-08-161-1/+14
| | | | have them in the members list...
* merge weirdnessMatthew Hodgson2014-08-161-1/+1
|
* display mtime_age in webclientMatthew Hodgson2014-08-163-10/+33
|
* slightly hacky but more functional infinite scrollingMatthew Hodgson2014-08-161-30/+36
|
* switch some elements from being styled by class to styled by idMatthew Hodgson2014-08-155-36/+36
|
* FormattingKegan Dougal2014-08-152-21/+22
|
* Get presence for members when you enter a room (it was coming down but ↵Kegan Dougal2014-08-151-0/+4
| | | | wasn't being stored in the right place)
* Added infinite scrolling. It's sliiiightly buggy in that it jumps down the ↵Kegan Dougal2014-08-157-9/+115
| | | | list a bit, but it is overall working pretty well. Added ng-infinite-scroll-matrix.js and jquery-1.8.3 as deps.
* When new invites come down, update the My Rooms list. Added hacks to make ↵Kegan Dougal2014-08-153-16/+32
| | | | the display name a bit nicer (/im/sync needs to return room aliases / membership events better)
* Remove old polling stuff from RoomController. Added service comments. Do not ↵Kegan Dougal2014-08-154-45/+20
| | | | start the event stream on startup unless you have credentials.
* Event streaming now happens on an app level, rather than a per-room level. ↵Kegan Dougal2014-08-155-19/+76
| | | | Make eventStreamService manage it's own repolling provided no one calls stop() on it. Couple the stream with eventHandlerService so any controller can just blithely call eventStreamService.resume() and expect to 'get stuff' without having to handle promises (though resume() still returns a promise for that request and proxies it through $q). Kill and reset the stream if you logout.
* Store messages in $rootScope so they can be accessed from multiple ↵Kegan Dougal2014-08-153-12/+29
| | | | controllers without duplicated storage for each. This also gives updates.
* Added event handler service which.. handles events. More specifically, it ↵Kegan Dougal2014-08-155-32/+124
| | | | $broadcasts events depending on their type, and does processing on events (shuffling keys, adding events to $rootScope so displays will automatically update, sending delivery receipts, and so on). Some of this logic was previously contained in the RoomController, which fails the moment you add >1 room into the mix, hence requiring a Service to handle events, rather than having each individual controller maintain their part of the world.
* Added event stream service which neatly blobs together requests / state for ↵Kegan Dougal2014-08-155-14/+91
| | | | the event stream. This depends on matrix service to do the actual hit. Currently this has exactly the same behaviour as before.
* More helpful display when the event stream fails, wiping it when the ↵Kegan Dougal2014-08-142-5/+10
| | | | connection is regained.
* We can now upload avatar image somewhereEmmanuel ROHEE2014-08-141-4/+13
|
* Create a temporary upload service server side (by hacking ↵Emmanuel ROHEE2014-08-141-0/+1
| | | | demos/webserver.py) and client side with an angularjs service component.
* Create a temporary upload service server side (by hacking ↵Emmanuel ROHEE2014-08-141-0/+47
| | | | demos/webserver.py) and client side with an angularjs service component.
* webclient: You can now paginate in rooms. Defaults to 10 messages, with a ↵Kegan Dougal2014-08-143-21/+71
| | | | button to get more (needs to be hooked into infini-scrolling).
* Pass back the user_id in the response to /login in case it has changed. ↵Kegan Dougal2014-08-142-2/+2
| | | | Store and use that on the webclient rather than the input field.
* hs: Make /login accept full user IDs or just local parts. webclient: Only ↵Kegan Dougal2014-08-142-7/+1
| | | | enable Register button when both password fields match.
* Auto-correct the username when logging in if there isn't an @Kegan Dougal2014-08-141-0/+6
|
* Be more helpful when failing to register/login, stating why (communication ↵Kegan Dougal2014-08-141-4/+16
| | | | error, user in user, wrong credentials, etc). Make the HS send M_USER_IN_USE.
* Finish up room controller too. May have missed one or two, but testing ↵Kegan Dougal2014-08-141-14/+14
| | | | didn't pick anything up.
* Added extra nesting .data and rename callback to be response not dataKegan Dougal2014-08-142-31/+31
|
* Move the unknown token broadcast to the interceptor. Return the $http ↵Kegan Dougal2014-08-144-30/+16
| | | | promise and not a wrapped one via $q. Everything now needs a level deeper nesting. Fixed registration and login.
* Added an access token interceptor to check unknown tokens.Kegan Dougal2014-08-141-3/+19
|
* Detect when the user access token is no more valid and log the user out in ↵Emmanuel ROHEE2014-08-142-4/+20
| | | | this case
* Guess the home server URL on the login screen by inspecting the URL of the ↵Kegan Dougal2014-08-141-1/+9
| | | | web client.
* BF: Use ng-srcEmmanuel ROHEE2014-08-141-1/+1
|
* Use ng-srcEmmanuel ROHEE2014-08-141-1/+1
|
* Show avatar in profile section and added a button to select a file (not yet ↵Emmanuel ROHEE2014-08-143-6/+45
| | | | wired to upload service)
* Created m-file-input. A directive to open a file selection dialog on ↵Emmanuel ROHEE2014-08-142-0/+44
| | | | whatever HTML element
* fix emote presentationMatthew Hodgson2014-08-141-1/+1
|
* config cssMatthew Hodgson2014-08-141-0/+12
|
* completely change the CSS to be an entirely 'position: absolute' layout ↵Matthew Hodgson2014-08-146-29/+46
| | | | rather than top-to-bottom. makes the overscroll much more predictable and sane and not dependent on CSS expressions.
* don't hammer after 403Matthew Hodgson2014-08-131-1/+4
|
* Store public room id > alias mappings.Kegan Dougal2014-08-131-0/+6
|
* Merge branch 'master' of git+ssh://github.com/matrix-org/synapseMatthew Hodgson2014-08-137-13/+133
|\
| * Use strings instead of opaque magic-number constants for presence states; ↵Paul "LeoNerd" Evans2014-08-133-9/+6
| | | | | | | | rename AWAY to UNAVAILABLE
| * Room: Added a text input to type an image URL in order to send an image messageEmmanuel ROHEE2014-08-134-3/+37
| |
| * Display image messages from the streamEmmanuel ROHEE2014-08-132-1/+10
| |
| * add in copyrights to everything, not just the synapse subdir, and add a ↵Matthew Hodgson2014-08-135-0/+80
| | | | | | | | copyrighter.pl whilst we're at it
* | timestampsMatthew Hodgson2014-08-131-1/+1
|/
* remove the png profile image for nowMatthew Hodgson2014-08-121-0/+0
|
* Fix the 'Go to room' button to use the correct room alias apiErik Johnston2014-08-123-2/+31
|
* Make messages list and room users list scroll-overflowEmmanuel ROHEE2014-08-123-13/+32
|
* Reference Matrix Home Servermatrix.org2014-08-1219-0/+25826