diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2014-12-23 01:35:48 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2014-12-23 01:35:48 +0100 |
commit | 94a86bb23d97c2fd1bc38fca73b99e72a7fdfa8e (patch) | |
tree | becf09c66ee26dc2dd4f7fd26652fbd296baf828 /imdb-lookup/html/index-files/js/app.js | |
parent | 82f5bd6a4aff840f21076a8bf47a022d08b1dddf (diff) | |
download | scripts-94a86bb23d97c2fd1bc38fca73b99e72a7fdfa8e.tar.gz scripts-94a86bb23d97c2fd1bc38fca73b99e72a7fdfa8e.zip |
remove jinja
Diffstat (limited to 'imdb-lookup/html/index-files/js/app.js')
-rw-r--r-- | imdb-lookup/html/index-files/js/app.js | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/imdb-lookup/html/index-files/js/app.js b/imdb-lookup/html/index-files/js/app.js new file mode 100644 index 0000000..7570ba5 --- /dev/null +++ b/imdb-lookup/html/index-files/js/app.js @@ -0,0 +1,145 @@ +var App = Ember.Application.create(); +App.ApplicationAdapter = DS.FixtureAdapter.extend(); + +App.Router.map(function() { // put your routes here +}); + +App.IndexRoute = Ember.Route.extend({ + model: function() { + return this.store.findAll('movie'); + } +}); + +App.Movie = DS.Model.extend({ + title: DS.attr('string'), + path: DS.attr('string'), + poster: DS.attr('string'), + tagline: DS.attr('string'), + plot: DS.attr('string'), + website: DS.attr('string'), + release: DS.attr('string'), + path: DS.attr(), + tags: DS.attr(), + + imdbRating: DS.attr('int'), + imdbVotes: DS.attr('int'), + + omdbTomatoConsensus: DS.attr('string'), + omdbTomato: DS.attr('int'), + omdbUserTomato: DS.attr('int'), + omdbTomatoRating: DS.attr(), + omdbTomatoUserRating: DS.attr(), + + tmdbId: DS.attr('int'), + + linkTmdb: function() { + return "http://www.themoviedb.org/movie/" + this.get('tmdbId'); + }.property('tmdbId'), + linkImdb: function() { + return "http://www.imdb.com/title/" + this.get('id'); + }.property('id'), + linkLetterboxd: function() { + return "http://letterboxd.com/tmdb/" + this.get('tmdbId'); + }.property('tmdbId'), + linkOfdb: function() { + return "http://www.ofdb.de/view.php?page=suchergebnis&Kat=IMDb&SText=" + this.get('id'); + }.property('id'), + linkRotten: function() { + return "http://www.rottentomatoes.com/search/?search=" + encodeURIComponent(this.get('title')); + }.property('title') +}); + +App.IndexController = Ember.ArrayController.extend({ + page: 1, + perPage: "10", + sortAscending: "false", + sortProperties: function() { + return [this.get("firstSortProperty")]; + }.property("firstSortProperty"), + firstSortProperty: "title", + visiblePerPage: ["10", "20", "25", "50", "100", "250", "500"], + pages: function() { + var list = []; + var prev = null; + var sortProperty = this.get("sortProperties")[0]; + for (var i = 1; i <= this.get("pagesCount"); i++) { + var pageContent = this._getPaginatedContent(i); + var p1 = pageContent[0].get(sortProperty); + var runningLabel = ""; + if (sortProperty == "title") { + p1 = p1[0]; + } else if (sortProperty == "imdbRating") { + p1 = Math.round(p1); + } else if (sortProperty == "imdbVotes") { + p1 = Math.floor(p1 / 1000) + "k"; + } else if (sortProperty == "release") { + p1 = parseInt(p1.slice(0,4)); + p1 = Math.floor(p1 / 10) * 10; + } else { + prev = p1; + } + if (p1 != prev) { + runningLabel = "" + p1; + prev = p1; + } + var style = ""; + if (i == this.get('page')) { + style = "background-color: red;"; + } + list.push({number: i, runningLabel: runningLabel, style: style}); + } + return list; + }.property('page','perPage','sortProperties'), + paginatedContent: function() { + var page = this.get('page'); + return this._getPaginatedContent(page); + }.property('arrangedContent.[]', 'page', 'perPage'), + pagesCount: function() { + return Math.ceil(this.get("content.length") / parseInt(this.get("perPage"))) + }.property('content.[]', 'perPage'), + _getPaginatedContent: function(page) { + var perPage = parseInt(this.get('perPage')); + var start = (page - 1 ) * perPage; + var end = page * perPage; + return this.get('arrangedContent').slice(start, end) + }, + actions: { + setPage: function(property) { + this.set('page', property); + }, + nextPage: function() { + var current = this.get('page'); + if (current < this.get('pagesCount')) { + this.set('page', current+1); + } + }, + prevPage: function() { + var current = this.get('page'); + if (current > 1) { + this.set('page', current-1); + } + } + } +}); + +App.Movie.reopenClass({FIXTURES:[]}) + +App.RadioView = Ember.Checkbox.extend({ + type: "radio", + checked: function() { + var property = this.get("property"); + var value = this.get("value"); + return this.get("controller").get(property) == value; + }.property(), + click: function() { + var property = this.get("property"); + var value = this.get("value"); + this.get("controller").set(property, value); + } +}) + +function dataCb(data) { + App.Movie.reopenClass({FIXTURES:data}) +} +window['dataCb'] = dataCb; + |