diff --git a/app/views/build.js b/app/components/build-wrapper.js
similarity index 60%
rename from app/views/build.js
rename to app/components/build-wrapper.js
index 0e981f04..9ea0f843 100644
--- a/app/views/build.js
+++ b/app/components/build-wrapper.js
@@ -1,11 +1,10 @@
+import Ember from 'ember';
import { colorForState } from 'travis/utils/helpers';
-import BasicView from 'travis/views/basic';
import Polling from 'travis/mixins/polling';
-export default BasicView.extend(Polling, {
+export default Ember.Component.extend({
classNameBindings: ['color'],
- buildBinding: 'controller.build',
- pollModels: 'controller.build',
+ pollModels: 'build',
color: function() {
return colorForState(this.get('build.state'));
diff --git a/app/views/builds.js b/app/components/builds-wrapper.js
similarity index 70%
rename from app/views/builds.js
rename to app/components/builds-wrapper.js
index eca5f332..b3a1ecb3 100644
--- a/app/views/builds.js
+++ b/app/components/builds-wrapper.js
@@ -1,12 +1,15 @@
-import BasicView from 'travis/views/basic';
+import Ember from 'ember';
import Polling from 'travis/mixins/polling';
-export default BasicView.extend(Polling, {
+export default Ember.Component.extend({
+ store: Ember.inject.service('store'),
+
pollHook: function(store) {
var contentType, repositoryId;
- contentType = this.get('controller.contentType');
- repositoryId = this.get('controller.repo.id');
- store = this.get('controller.store');
+ contentType = this.get('contentType');
+ repositoryId = this.get('repo.id');
+ store = this.get('store');
+
if (contentType === 'builds') {
return store.query('build', {
event_type: 'push',
diff --git a/app/views/job.js b/app/components/job-wrapper.js
similarity index 70%
rename from app/views/job.js
rename to app/components/job-wrapper.js
index 032e5161..5b190528 100644
--- a/app/views/job.js
+++ b/app/components/job-wrapper.js
@@ -3,10 +3,8 @@ import { colorForState } from 'travis/utils/helpers';
import { githubCommit } from 'travis/utils/urls';
import Polling from 'travis/mixins/polling';
-export default Ember.View.extend(Polling, {
- pollModels: 'controller.job.build',
- repoBinding: 'controller.repo',
- jobBinding: 'controller.job',
+export default Ember.Component.extend({
+ pollModels: 'job.build',
commitBinding: 'job.commit',
currentItemBinding: 'job',
@@ -16,5 +14,5 @@ export default Ember.View.extend(Polling, {
urlGithubCommit: function() {
return githubCommit(this.get('repo.slug'), this.get('commit.sha'));
- }.property('repo.slug', 'commit.sha'),
+ }.property('repo.slug', 'commit.sha')
});
diff --git a/app/views/application.js b/app/components/popup-click-handler.js
similarity index 61%
rename from app/views/application.js
rename to app/components/popup-click-handler.js
index f706832f..c810b87b 100644
--- a/app/views/application.js
+++ b/app/components/popup-click-handler.js
@@ -1,18 +1,17 @@
-import BasicView from 'travis/views/basic';
import Ember from 'ember';
-export default BasicView.extend({
+export default Ember.Component.extend({
popup: Ember.inject.service(),
classNames: ['application'],
click(event) {
- var targetAndParents;
- targetAndParents = $(event.target).parents().andSelf();
+ var targetAndParents = $(event.target).parents().andSelf();
+
if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {
this.get('popup').close();
}
if (!targetAndParents.hasClass('menu') && !targetAndParents.is('#tools > a')) {
- return $('.menu').removeClass('display');
+ $('.menu').removeClass('display');
}
}
});
diff --git a/app/components/profile-accounts-wrapper.js b/app/components/profile-accounts-wrapper.js
new file mode 100644
index 00000000..83423d73
--- /dev/null
+++ b/app/components/profile-accounts-wrapper.js
@@ -0,0 +1,6 @@
+import Ember from 'ember';
+
+export default Ember.Component.extend({
+ classNames: ['profile-orglist', 'columns', 'medium-4'],
+ tagName: 'aside',
+});
diff --git a/app/components/repo-wrapper.js b/app/components/repo-wrapper.js
new file mode 100644
index 00000000..1ca2bd7f
--- /dev/null
+++ b/app/components/repo-wrapper.js
@@ -0,0 +1,7 @@
+import Polling from 'travis/mixins/polling';
+import Ember from 'ember';
+
+export default Ember.Component.extend(Polling, {
+ pollModels: 'repo',
+ classNameBindings: ['isLoading:loading']
+});
diff --git a/app/views/repos-list-tabs.js b/app/components/repos-list-tabs.js
similarity index 78%
rename from app/views/repos-list-tabs.js
rename to app/components/repos-list-tabs.js
index c24cc7f5..3524e1fc 100644
--- a/app/views/repos-list-tabs.js
+++ b/app/components/repos-list-tabs.js
@@ -1,13 +1,14 @@
import Ember from 'ember';
-export default Ember.View.extend({
- templateName: 'repos/list/tabs',
- tabBinding: 'controller.tab',
- currentUserBinding: 'controller.currentUser.model',
+export default Ember.Component.extend({
+ auth: Ember.inject.service(),
+
+ currentUserBinding: 'auth.currentUser',
+
classRecent: function() {
if (this.get('tab') === 'recent') {
return 'active';
- } else if (this.get('tab') === 'search' && this.get('controller').auth.get('signedIn')) {
+ } else if (this.get('tab') === 'search' && this.get('auth.signedIn')) {
return 'hidden';
}
}.property('tab'),
diff --git a/app/views/status-image-input.js b/app/components/status-image-input.js
similarity index 100%
rename from app/views/status-image-input.js
rename to app/components/status-image-input.js
diff --git a/app/components/status-images.js b/app/components/status-images.js
new file mode 100644
index 00000000..7ced75f0
--- /dev/null
+++ b/app/components/status-images.js
@@ -0,0 +1,24 @@
+import Ember from 'ember';
+import { format as formatStatusImage } from 'travis/utils/status-image-formats';
+
+export default Ember.Component.extend({
+ popup: Ember.inject.service(),
+
+ id: 'status-images',
+ attributeBindings: ['id'],
+ classNames: ['popup', 'status-images'],
+ formats: ['Image URL', 'Markdown', 'Textile', 'Rdoc', 'AsciiDoc', 'RST', 'Pod', 'CCTray'],
+
+ actions: {
+ close() {
+ return this.get('popup').close();
+ }
+ },
+
+ statusString: function() {
+ let format = this.get('format') || this.get('formats.firstObject'),
+ branch = this.get('branch') || 'master';
+
+ return formatStatusImage(format, this.get('repo.slug'), branch);
+ }.property('format', 'repo.slug', 'branch')
+});
diff --git a/app/controllers/repo.js b/app/controllers/repo.js
index bdda7a44..2e03d10c 100644
--- a/app/controllers/repo.js
+++ b/app/controllers/repo.js
@@ -1,11 +1,16 @@
import Ember from 'ember';
-import { githubRepo } from 'travis/utils/urls';
+import { githubRepo, statusImage } from 'travis/utils/urls';
+import config from 'travis/config/environment';
+
export default Ember.Controller.extend({
+ popup: Ember.inject.service(),
+
jobController: Ember.inject.controller('job'),
buildController: Ember.inject.controller('build'),
buildsController: Ember.inject.controller('builds'),
reposController: Ember.inject.controller('repos'),
+ reposBinding: 'reposController.repos',
currentUserBinding: 'auth.currentUser',
classNames: ['repo'],
@@ -14,6 +19,21 @@ export default Ember.Controller.extend({
builds: Ember.computed.alias('buildsController.content'),
job: Ember.computed.alias('jobController.job'),
+ isEmpty: function() {
+ return this.get('repos.isLoaded') && this.get('repos.length') === 0;
+ }.property('repos.isLoaded', 'repos.length'),
+
+ statusImageUrl: function() {
+ return statusImage(this.get('repo.slug'));
+ }.property('repo.slug'),
+
+ actions: {
+ statusImages() {
+ this.get('popup').open('status-images');
+ return false;
+ }
+ },
+
slug: function() {
return this.get('repo.slug');
}.property('repo.slug'),
diff --git a/app/controllers/top.js b/app/controllers/top.js
index 27cc673d..de6962d5 100644
--- a/app/controllers/top.js
+++ b/app/controllers/top.js
@@ -102,5 +102,17 @@ export default Ember.Controller.extend({
},
showCta: function() {
return !this.get('auth.signedIn') && !this.get('config.pro') && !this.get('landingPage');
- }.property('auth.signedIn', 'landingPage')
+ }.property('auth.signedIn', 'landingPage'),
+
+ classProfile: function() {
+ var classes = ['profile menu'];
+
+ if (this.get('tab') === 'profile') {
+ classes.push('active');
+ }
+
+ classes.push(this.get('controller.auth.state') || 'signed-out');
+
+ return classes.join(' ');
+ }.property('tab', 'auth.state')
});
diff --git a/app/routes/auth.js b/app/routes/auth.js
index 42b86f76..f0707b5c 100644
--- a/app/routes/auth.js
+++ b/app/routes/auth.js
@@ -5,7 +5,7 @@ export default TravisRoute.extend({
renderTemplate() {
$('body').attr('id', 'auth');
- return this.render('auth.signin');
+ return this.render('signin');
},
deactivate() {
diff --git a/app/services/popup.js b/app/services/popup.js
index 89c51b97..2a866c97 100644
--- a/app/services/popup.js
+++ b/app/services/popup.js
@@ -9,11 +9,6 @@ export default Ember.Service.extend({
},
close() {
- var view;
- if (view = Ember.View.currentPopupView) {
- view.destroy();
- Ember.View.currentPopupView = null;
- }
return $('.popup').removeClass('display');
}
});
diff --git a/app/templates/application.hbs b/app/templates/application.hbs
index c24cd689..47326c47 100644
--- a/app/templates/application.hbs
+++ b/app/templates/application.hbs
@@ -1 +1,3 @@
-{{outlet}}
+{{#popup-click-handler}}
+ {{outlet}}
+{{/popup-click-handler}}
diff --git a/app/templates/build.hbs b/app/templates/build.hbs
index 5ae9f8fb..02804d4e 100644
--- a/app/templates/build.hbs
+++ b/app/templates/build.hbs
@@ -1,3 +1,4 @@
+{{#build-wrapper build=build}}
{{#if loading}}
{{loading-indicator}}
{{else}}
@@ -16,3 +17,4 @@
{{/if}}
{{/if}}
+{{/build-wrapper}}
diff --git a/app/templates/builds.hbs b/app/templates/builds.hbs
index fe9fbfe1..87829b57 100644
--- a/app/templates/builds.hbs
+++ b/app/templates/builds.hbs
@@ -1,3 +1,4 @@
+{{#builds-wrapper contentType=contentType repo=repo}}
{{#if model.isLoaded}}
{{#each model as |build|}}
@@ -18,3 +19,4 @@
{{else}}
{{loading-indicator}}
{{/if}}
+{{/builds-wrapper}}
diff --git a/app/templates/components/repos-empty.hbs b/app/templates/components/repos-empty.hbs
index d537537e..24601341 100644
--- a/app/templates/components/repos-empty.hbs
+++ b/app/templates/components/repos-empty.hbs
@@ -6,7 +6,7 @@
You're only two steps away from using Travis:
- - Hook up {{#link-to "profile.index" class="signed-in"}}one or more of your GitHub repositories{{/link-to}} with Travis.
+ - Hook up {{#link-to "profile" class="signed-in"}}one or more of your GitHub repositories{{/link-to}} with Travis.
- Push some code!
diff --git a/app/templates/repos/list/tabs.hbs b/app/templates/components/repos-list-tabs.hbs
similarity index 50%
rename from app/templates/repos/list/tabs.hbs
rename to app/templates/components/repos-list-tabs.hbs
index fc8723a8..b7a2d294 100644
--- a/app/templates/repos/list/tabs.hbs
+++ b/app/templates/components/repos-list-tabs.hbs
@@ -1,16 +1,16 @@
{{/if}}
+{{/job-wrapper}}
diff --git a/app/templates/plans.hbs b/app/templates/plans.hbs
index 7c9ba25b..c9084cb7 100644
--- a/app/templates/plans.hbs
+++ b/app/templates/plans.hbs
@@ -134,4 +134,4 @@
-{{/layout-name}}
+{{/travis-layout}}
diff --git a/app/templates/profile/accounts.hbs b/app/templates/profile-accounts.hbs
similarity index 91%
rename from app/templates/profile/accounts.hbs
rename to app/templates/profile-accounts.hbs
index 03b7513b..dbd2d495 100644
--- a/app/templates/profile/accounts.hbs
+++ b/app/templates/profile-accounts.hbs
@@ -1,3 +1,4 @@
+{{#profile-accounts-wrapper}}
{{org-item account=user}}
@@ -18,3 +19,4 @@
Review and add your authorized organizations.
{{/if}}
+{{/profile-accounts-wrapper}}
diff --git a/app/templates/repo.hbs b/app/templates/repo.hbs
index 5c0141a1..c135e7ed 100644
--- a/app/templates/repo.hbs
+++ b/app/templates/repo.hbs
@@ -1,4 +1,5 @@
-{{#if view.isEmpty}}
+{{#repo-wrapper repo=repo isLoading=isLoading}}
+{{#if isEmpty}}
{{repos-empty}}
{{else}}
@@ -10,8 +11,8 @@
{{repo.name}} on Github
-
@@ -38,4 +39,7 @@
{{else}}
{{loading-indicator}}
{{/if}}
-{{/if}}
\ No newline at end of file
+{{/if}}
+{{/repo-wrapper}}
+
+{{status-images repo=repo branches=repo.branches}}
diff --git a/app/templates/repos.hbs b/app/templates/repos.hbs
index 0451b2af..49946e5d 100644
--- a/app/templates/repos.hbs
+++ b/app/templates/repos.hbs
@@ -4,7 +4,7 @@
-{{view 'repos-list-tabs'}}
+{{repos-list-tabs tab=tab showMyRepositories=(action "showMyRepositories") showRunningJobs=(action "showRunningJobs")}}
{{#if showRunningJobs}}
diff --git a/app/templates/auth/signin.hbs b/app/templates/signin.hbs
similarity index 100%
rename from app/templates/auth/signin.hbs
rename to app/templates/signin.hbs
diff --git a/app/templates/status-images.hbs b/app/templates/status-images.hbs
deleted file mode 100644
index bd13f435..00000000
--- a/app/templates/status-images.hbs
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- {{#if view.branches.isLoaded}}
- {{view Ember.Select content=view.branches selection=view.statusImageBranch optionLabelPath="content.commit.branch" optionValuePath="content.commit.branch"}}
- {{else}}
- {{loading-indicator}}
- {{/if}}
-
-
-
-
- {{view 'status-image-input' value=view.statusString class="url" rows=3}}
-
diff --git a/app/templates/top.hbs b/app/templates/top.hbs
index b91d555d..f3e14815 100644
--- a/app/templates/top.hbs
+++ b/app/templates/top.hbs
@@ -51,7 +51,7 @@
{{/unless}}
{{/if}}
-
-
+
-
{{#if auth.signedOut}}
{{/if}}
diff --git a/app/utils/status-image-formats.js b/app/utils/status-image-formats.js
index edb3b136..4e6e1afc 100644
--- a/app/utils/status-image-formats.js
+++ b/app/utils/status-image-formats.js
@@ -57,4 +57,5 @@ format = function(version, slug, branch) {
}
};
+export { format };
export default format;
diff --git a/app/views/.gitkeep b/app/views/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/app/views/accounts-info.js b/app/views/accounts-info.js
deleted file mode 100644
index 8330dd5d..00000000
--- a/app/views/accounts-info.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import BasicView from 'travis/views/basic';
-
-export default BasicView.extend({
- templateName: 'profile/tabs/user',
- userBinding: 'controller.user',
-
- gravatarUrl: function() {
- return location.protocol + "//www.gravatar.com/avatar/" + (this.get('user.gravatarId')) + "?s=200&d=mm";
- }.property('user.gravatarId')
-});
diff --git a/app/views/application/loading.js b/app/views/application/loading.js
deleted file mode 100644
index 074c4433..00000000
--- a/app/views/application/loading.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import BasicView from 'travis/views/basic';
-
-export default BasicView.extend();
diff --git a/app/views/basic.js b/app/views/basic.js
deleted file mode 100644
index 8712a88a..00000000
--- a/app/views/basic.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import Ember from 'ember';
-
-export default Ember.View.extend();
diff --git a/app/views/dashboard/loading.js b/app/views/dashboard/loading.js
deleted file mode 100644
index 8712a88a..00000000
--- a/app/views/dashboard/loading.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import Ember from 'ember';
-
-export default Ember.View.extend();
diff --git a/app/views/hooks.js b/app/views/hooks.js
deleted file mode 100644
index 5aee8248..00000000
--- a/app/views/hooks.js
+++ /dev/null
@@ -1,11 +0,0 @@
-import BasicView from 'travis/views/basic';
-import { githubAdmin as githubAdminUrl } from 'travis/utils/urls';
-
-export default BasicView.extend({
- templateName: 'profile/tabs/hooks',
- userBinding: 'controller.user',
-
- urlGithubAdmin: function() {
- return githubAdminUrl(this.get('hook.slug'));
- }.property('hook.slug')
-});
diff --git a/app/views/profile-accounts.js b/app/views/profile-accounts.js
deleted file mode 100644
index 9416f803..00000000
--- a/app/views/profile-accounts.js
+++ /dev/null
@@ -1,8 +0,0 @@
-import BasicView from 'travis/views/basic';
-
-export default BasicView.extend({
- tabBinding: 'controller.tab',
- classNames: ['profile-orglist', 'columns', 'medium-4'],
- tagName: 'aside',
- templateName: 'profile/accounts'
-});
diff --git a/app/views/profile-tabs.js b/app/views/profile-tabs.js
deleted file mode 100644
index 66de72bd..00000000
--- a/app/views/profile-tabs.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import BasicView from 'travis/views/basic';
-
-export default BasicView.extend({
- templateName: 'profile/tabs',
- tabBinding: 'controller.tab',
- activate() {
- return this.get('controller').activate(event.target.name);
- },
-
- classHooks: function() {
- return this.get('tab') === 'hooks' ? 'active' : null;
- }.property('tab'),
-
- classUser: function() {
- return this.get('tab') === 'user' ? 'active' : null;
- }.property('tab'),
-
- displayUser: function() {
- return this.get('controller.account.login') === this.get('controller.user.login');
- }.property('controller.account.login', 'controller.user.login')
-});
diff --git a/app/views/repo-show-tabs.js b/app/views/repo-show-tabs.js
deleted file mode 100644
index d670f07f..00000000
--- a/app/views/repo-show-tabs.js
+++ /dev/null
@@ -1,56 +0,0 @@
-import Ember from 'ember';
-
-export default Ember.View.extend({
- templateName: 'repos/show/tabs',
- tabBinding: 'controller.tab',
- contextBinding: 'controller',
-
- classCurrent: function() {
- return this.get('tab') === 'current' ? 'active' : null;
- }.property('tab'),
-
- classBuilds: function() {
- return this.get('tab') === 'builds' ? 'active' : null;
- }.property('tab'),
-
- classPullRequests: function() {
- return this.get('tab') === 'pull_requests' ? 'active' : null;
- }.property('tab'),
-
- classBranches: function() {
- return this.get('tab') === 'branches' ? 'active' : null;
- }.property('tab'),
-
- classBuild: function() {
- var classes, tab;
- tab = this.get('tab');
- classes = [];
- if (tab === 'build') {
- classes.push('active');
- }
- if (tab === 'build' || tab === 'job') {
- classes.push('display-inline');
- }
- return classes.join(' ');
- }.property('tab'),
-
- classJob: function() {
- return this.get('tab') === 'job' ? 'active' : null;
- }.property('tab'),
-
- classRequests: function() {
- return this.get('tab') === 'requests' ? 'active' : null;
- }.property('tab'),
-
- classCaches: function() {
- return this.get('tab') === 'caches' ? 'active' : null;
- }.property('tab'),
-
- classSettings: function() {
- return this.get('tab') === 'settings' ? 'active' : null;
- }.property('tab'),
-
- classRequest: function() {
- return this.get('tab') === 'request' ? 'active' : null;
- }.property('tab')
-});
diff --git a/app/views/repo.js b/app/views/repo.js
deleted file mode 100644
index 102c711c..00000000
--- a/app/views/repo.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import { statusImage } from 'travis/utils/urls';
-import StatusImagesView from 'travis/views/status-images';
-import BasicView from 'travis/views/basic';
-import config from 'travis/config/environment';
-import Polling from 'travis/mixins/polling';
-import Ember from 'ember';
-
-export default BasicView.extend(Polling, {
- popup: Ember.inject.service(),
- reposBinding: 'reposController',
- repoBinding: 'controller.repo',
- buildBinding: 'controller.build',
- jobBinding: 'controller.job',
- tabBinding: 'controller.tab',
- pollModels: 'controller.repo',
- classNameBindings: ['controller.isLoading:loading'],
-
- isEmpty: function() {
- return this.get('repos.isLoaded') && this.get('repos.length') === 0;
- }.property('repos.isLoaded', 'repos.length'),
-
- statusImageUrl: function() {
- return statusImage(this.get('controller.repo.slug'));
- }.property('controller.repo.slug'),
-
- actions: {
- statusImages() {
- var view;
- this.get('popup').close();
- view = StatusImagesView.create({
- toolsView: this,
- container: this.container
- });
- BasicView.currentPopupView = view;
- view.appendTo($('body'));
- return false;
- }
- }
-});
diff --git a/app/views/repos-list.js b/app/views/repos-list.js
deleted file mode 100644
index 574515b5..00000000
--- a/app/views/repos-list.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import Ember from 'ember';
-import { colorForState } from 'travis/utils/helpers';
-import Polling from 'travis/mixins/polling';
-
-export default Ember.CollectionView.extend({
- elementId: '',
- tagName: 'ul',
- emptyView: Ember.View.extend({
- templateName: 'repos-list/empty'
- }),
-
- itemViewClass: Ember.View.extend(Polling, {
- pollModels: 'repo',
- repoBinding: 'content',
- classNames: ['repo'],
- classNameBindings: ['color', 'selected'],
-
- selected: function() {
- return this.get('content') === this.get('controller.selectedRepo');
- }.property('controller.selectedRepo'),
-
- color: function() {
- return colorForState(this.get('repo.lastBuildState'));
- }.property('repo.lastBuildState'),
-
- scrollTop() {
- if (window.scrollY > 0) {
- return $('html, body').animate({
- scrollTop: 0
- }, 200);
- }
- },
-
- click() {
- this.scrollTop();
- return this.get('controller').transitionToRoute('/' + this.get('repo.slug'));
- }
- })
-});
diff --git a/app/views/signin.js b/app/views/signin.js
deleted file mode 100644
index c4f364a5..00000000
--- a/app/views/signin.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import BasicView from 'travis/views/basic';
-
-export default BasicView.extend({
- templateName: 'auth/signin'
-});
diff --git a/app/views/status-images.js b/app/views/status-images.js
deleted file mode 100644
index 98340987..00000000
--- a/app/views/status-images.js
+++ /dev/null
@@ -1,43 +0,0 @@
-import Ember from 'ember';
-import format from 'travis/utils/status-image-formats';
-
-export default Ember.View.extend({
- templateName: 'status_images',
- classNames: ['popup', 'status-images'],
- classNameBindings: ['display'],
- repoBinding: 'toolsView.repo',
- buildBinding: 'toolsView.build',
- jobBinding: 'toolsView.job',
- branchesBinding: 'repo.branches',
- formats: ['Image URL', 'Markdown', 'Textile', 'Rdoc', 'AsciiDoc', 'RST', 'Pod', 'CCTray'],
-
- didInsertElement() {
- this._super(...arguments);
- this.setStatusImageBranch();
- this.setStatusImageFormat();
- this.show();
- },
-
- show() {
- return this.set('display', true);
- },
-
- actions: {
- close() {
- return this.destroy();
- }
- },
-
- setStatusImageFormat: (function() {
- this.set('statusImageFormat', this.formats[0]);
- }),
-
- setStatusImageBranch: function() {
- var branch = this.get('repo.branches').findProperty('commit.branch', this.get('build.commit.branch'));
- this.set('statusImageBranch', branch);
- }.observes('repo.branches', 'repo.branches.isLoaded', 'build.commit.branch'),
-
- statusString: function() {
- return format(this.get('statusImageFormat'), this.get('repo.slug'), this.get('statusImageBranch.commit.branch'));
- }.property('statusImageFormat', 'repo.slug', 'statusImageBranch.commit.branch')
-});
diff --git a/app/views/top.js b/app/views/top.js
deleted file mode 100644
index c097864c..00000000
--- a/app/views/top.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import BasicView from 'travis/views/basic';
-var View;
-
-View = BasicView.extend({
- tabBinding: 'controller.tab',
-
- classHome: function() {
- return this.get('tab') === 'home' ? 'active' : null;
- }.property('tab'),
-
- classStats: function() {
- return this.get('tab') === 'stats' ? 'active' : null;
- }.property('tab'),
-
- classProfile: function() {
- var classes = ['profile menu'];
-
- if (this.get('tab') === 'profile') {
- classes.push('active');
- }
-
- classes.push(this.get('controller.auth.state') || 'signed-out');
-
- return classes.join(' ');
- }.property('tab', 'controller.auth.state'),
-
- showProfile() {
- $('#top .profile ul').show();
- },
-
- hideProfile() {
- $('#top .profile ul').hide();
- }
-});
-
-export default View;
diff --git a/config/deprecation-workflow.js b/config/deprecation-workflow.js
index 54202abc..2e570961 100644
--- a/config/deprecation-workflow.js
+++ b/config/deprecation-workflow.js
@@ -21,8 +21,6 @@ window.deprecationWorkflow.config = {
{ handler: "log", matchMessage: "Ember.removeBeforeObserver is deprecated and will be removed in the near future." },
{ handler: "log", matchMessage: "Using DS.Snapshot.get() is deprecated. Use .attr(), .belongsTo() or .hasMany() instead." },
{ handler: "log", matchMessage: "The filter API will be moved into a plugin soon. To enable store.filter using an environment flag, or to use an alternative, you can visit the ember-data-filter addon page" },
-
- // TODO
- { handler: "silence", matchMessage: "Ember.View is deprecated. Consult the Deprecations Guide for a migration strategy." },
+ { handler: "log", matchMessage: "Ember.View is deprecated. Consult the Deprecations Guide for a migration strategy." },
]
};
diff --git a/package.json b/package.json
index b3933424..aacf826c 100644
--- a/package.json
+++ b/package.json
@@ -42,6 +42,7 @@
"ember-data-filter": "1.13.0",
"ember-disable-proxy-controllers": "^1.0.1",
"ember-export-application-global": "^1.0.4",
- "ember-try": "0.0.7"
+ "ember-try": "0.0.7",
+ "emberx-select": "2.0.2"
}
}
diff --git a/tests/.jshintrc b/tests/.jshintrc
index fc1b8922..51c88317 100644
--- a/tests/.jshintrc
+++ b/tests/.jshintrc
@@ -33,6 +33,7 @@
"exists",
"fillIn",
"click",
+ "select",
"keyEvent",
"triggerEvent",
"find",
diff --git a/tests/test-helper.js b/tests/test-helper.js
index e6cfb70f..35461bf4 100644
--- a/tests/test-helper.js
+++ b/tests/test-helper.js
@@ -1,4 +1,6 @@
import resolver from './helpers/resolver';
+import registerSelectHelper from './helpers/register-select-helper';
+registerSelectHelper();
import {
setResolver
} from 'ember-qunit';