This repository has been archived by the owner on Sep 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to Firebase hosting. Remove server code. (#102)
* add view for event lists * use /event as path prefix, allow /:tag as url * fix redirecting tags * only show 100 upcoming events * update tag data * update(eventList): wrap large event lists in performant `md-virtual-repeat` Fix some styling issues (more to do still) Refactor routing, components, and asset locations. Remove empty files. Added in some one time bindings for performance. Filter in controller as much as possible for performance. * fix(tests): fix issues caused by refactoring * fix(jshint): fix JSHint error that was breaking the server build Use minified version of ngGeolocation. Bump version of ngGeolocation. * update(karma): Remove references to old libraries. * update(tag): always keep tag data in $rootScope Sometimes this was being stored in the $scope which wasn't always visible and caused duplication of data. Update to Angular Material 1.0.0. * fix(main): clicking nearby events doesn't open event * refactor(app): remove all server code. configure Firebase hosting. * fix(main): put back 2-way binding to fix a number of syncing issues. update dependencies fix grunt copy task to copy image assets to `dist/` properly * update(tests): use NodeJS 6.x in Travis-CI. Remove old dependencies from server. Fixes #55. * fix(tests): remove useless tests! fix main test. fix JSCS failures remove excess server requests and more code that assumes that the URL will be prefixed * update(readme,config): update README add BrowserSync config for use with lite-server add `local.env.sample.js` with instructions for configuring keys locally remove UrlShortener docs update local dev and production deployment steps update License years * fix(map): using back button causes map to stay centered in the wrong spot * fix(routing): invalid event URLs leave the user on a blank page * fix(map): marker links don't work * update(map): update to latest angular-google-maps and Google Maps SDK (3.24) * fix(map): event list page isn't loading events for the tag properly also fixed repeated items in md-virtual-repeat caused by one-time bindings fix exception on event page if event doesn't have geo data * update(readme): add important build step to deployment guide * fix(tests): update text to work with the fix to tagged events page i.e. it should ask the Hub for upcoming events only
- Loading branch information
Showing
57 changed files
with
450 additions
and
1,609 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"projects": { | ||
"default": "firefly-1c312" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
node_modules | ||
public | ||
.tmp | ||
.sass-cache | ||
.idea | ||
client/bower_components | ||
bower_components | ||
dist | ||
/server/config/local.env.js | ||
local.env.js | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
language: node_js | ||
node_js: | ||
- '0.12' | ||
- '6' | ||
before_script: | ||
- npm install -g bower grunt-cli | ||
- bower install | ||
services: mongodb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,4 @@ | |
"css" | ||
] | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.