summary refs log tree commit diff
path: root/webclient/app.js (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move webclient to a python module so that it can be installedMark Haines2014-11-041-114/+0
|
* Added model-service.js to store model data.Kegan Dougal2014-10-311-0/+1
|
* Add notification-service.js to handle binging/notifications. Shift logic to ↵Kegan Dougal2014-10-311-0/+1
| | | | this service.
* SYWEB-12: More formatting and tweaking of state event JSON.Kegan Dougal2014-10-301-1/+2
| | | | | | | | Use a proper elastic directive to make the <textarea> resize dynamically. Use an 'asjson' directive to turn an ngModel of a JSON object into a formatted JSON string so it can be displayed on the textarea. Also, deep copy the state events being displayed, else it actually alters the underlying data structures when playing around with the JSON in the textarea!
* Implement SYWEB-121 : Display JSON when clicking messages.Kegan Dougal2014-10-271-1/+2
| | | | | JSON is displayed as a modal dialog via AngularJS' bootstrap module, "ui.bootstrap".
* SYWEB-13: Do not start the app if the browser does not support WEBStorage.Emmanuel ROHEE2014-09-191-1/+18
| | | | Internet Explorer case: Launch the app only for versions 9 and higher.
* Animation on call end icon.David Baker2014-09-101-0/+1
|
* fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org ↵Matthew Hodgson2014-09-031-1/+1
| | | | hasn't been incorporated in time for launch.
* BF: Prevent controllers from being instantiated twice.Emmanuel ROHEE2014-09-021-14/+7
| | | | AngularJS will instantiate it when discovering ng-controller in their respective html files
* nasty big monolithic commit of a whole bunch of UI/UX improvements:Matthew Hodgson2014-08-311-1/+9
| | | | | | | | - add a simple CSS template across the app for navigation & cosmetics - split login into login & register, and totally reskin it - restructure room CSS to play nicely with it - implement basis 1:1 chat from user pages - disable autofocus on iOS to improve UX
* Merge branch 'voip' into developDavid Baker2014-08-291-0/+2
|\ | | | | | | | | Conflicts: webclient/room/room-controller.js
| * WIP voip support on web clientDavid Baker2014-08-271-0/+2
| |
* | Start the events stream once the app starts (if credentials are in cache) or ↵Emmanuel ROHEE2014-08-281-5/+3
|/ | | | once the user gets logged in
* Moved recents things into a separate (and reusable) controlerEmmanuel ROHEE2014-08-271-0/+1
|
* The landing URL is now '#/' which actually points to homeControllerEmmanuel ROHEE2014-08-251-2/+2
|
* Use /home everywhereEmmanuel ROHEE2014-08-221-5/+5
|
* Move profile parts of the rooms page and the config content into a new page: ↵Emmanuel ROHEE2014-08-221-0/+5
| | | | settings
* Only start event streaming after having set up the controllers.Erik Johnston2014-08-211-1/+1
|
* File organisation sanity: put directives and filters into dedicated filesEmmanuel ROHEE2014-08-201-81/+0
|
* Created boilerplate for user profile pageEmmanuel ROHEE2014-08-181-0/+5
|
* Support urlencoded room aliases in room URLEmmanuel ROHEE2014-08-181-2/+2
|
* Support room alias in rooms URL (ex: ↵Emmanuel ROHEE2014-08-181-0/+6
| | | | http://127.0.0.1:8000/#/room/#public:localhost:8080)
* Do not start the event stream if the user is not logged in (=if he does not ↵Emmanuel ROHEE2014-08-181-3/+2
| | | | | | has an access token yet) Add isUserLoggedIn to check this.
* 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
|
* order the members list by most recently activeMatthew Hodgson2014-08-161-1/+14
|
* display mtime_age in webclientMatthew Hodgson2014-08-161-0/+20
|
* Added infinite scrolling. It's sliiiightly buggy in that it jumps down the ↵Kegan Dougal2014-08-151-1/+2
| | | | list a bit, but it is overall working pretty well. Added ng-infinite-scroll-matrix.js and jquery-1.8.3 as deps.
* Event streaming now happens on an app level, rather than a per-room level. ↵Kegan Dougal2014-08-151-1/+5
| | | | 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.
* Added event handler service which.. handles events. More specifically, it ↵Kegan Dougal2014-08-151-1/+2
| | | | $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-151-1/+2
| | | | the event stream. This depends on matrix service to do the actual hit. Currently this has exactly the same behaviour as before.
* Move the unknown token broadcast to the interceptor. Return the $http ↵Kegan Dougal2014-08-141-5/+5
| | | | 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
|
* completely change the CSS to be an entirely 'position: absolute' layout ↵Matthew Hodgson2014-08-141-1/+6
| | | | rather than top-to-bottom. makes the overscroll much more predictable and sane and not dependent on CSS expressions.
* add in copyrights to everything, not just the synapse subdir, and add a ↵Matthew Hodgson2014-08-131-0/+16
| | | | copyrighter.pl whilst we're at it
* Reference Matrix Home Servermatrix.org2014-08-121-0/+57