[deprecations] Remove all of the views from the app
This commit is contained in:
parent
c3ef9ac5d9
commit
21f25cd2bf
|
@ -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'));
|
|
@ -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',
|
|
@ -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')
|
||||
});
|
|
@ -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');
|
||||
}
|
||||
}
|
||||
});
|
6
app/components/profile-accounts-wrapper.js
Normal file
6
app/components/profile-accounts-wrapper.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
classNames: ['profile-orglist', 'columns', 'medium-4'],
|
||||
tagName: 'aside',
|
||||
});
|
7
app/components/repo-wrapper.js
Normal file
7
app/components/repo-wrapper.js
Normal file
|
@ -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']
|
||||
});
|
|
@ -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'),
|
24
app/components/status-images.js
Normal file
24
app/components/status-images.js
Normal file
|
@ -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')
|
||||
});
|
|
@ -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'),
|
||||
|
|
|
@ -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')
|
||||
});
|
||||
|
|
|
@ -5,7 +5,7 @@ export default TravisRoute.extend({
|
|||
|
||||
renderTemplate() {
|
||||
$('body').attr('id', 'auth');
|
||||
return this.render('auth.signin');
|
||||
return this.render('signin');
|
||||
},
|
||||
|
||||
deactivate() {
|
||||
|
|
|
@ -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');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
{{outlet}}
|
||||
{{#popup-click-handler}}
|
||||
{{outlet}}
|
||||
{{/popup-click-handler}}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{#build-wrapper build=build}}
|
||||
{{#if loading}}
|
||||
{{loading-indicator}}
|
||||
{{else}}
|
||||
|
@ -16,3 +17,4 @@
|
|||
{{/if}}
|
||||
|
||||
{{/if}}
|
||||
{{/build-wrapper}}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{#builds-wrapper contentType=contentType repo=repo}}
|
||||
{{#if model.isLoaded}}
|
||||
<ul class="build-list">
|
||||
{{#each model as |build|}}
|
||||
|
@ -18,3 +19,4 @@
|
|||
{{else}}
|
||||
{{loading-indicator}}
|
||||
{{/if}}
|
||||
{{/builds-wrapper}}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<p>You're only two steps away from using Travis:</p>
|
||||
|
||||
<ul>
|
||||
<li> Hook up {{#link-to "profile.index" class="signed-in"}}one or more of your GitHub repositories{{/link-to}} with Travis.</li>
|
||||
<li> Hook up {{#link-to "profile" class="signed-in"}}one or more of your GitHub repositories{{/link-to}} with Travis.</li>
|
||||
<li> Push some code!</li>
|
||||
</ul>
|
||||
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
<div class="tabnav tabnav--sidebar" role="tablist">
|
||||
<ul class="tab tabs--sidebar">
|
||||
<li id="tab_owned" class={{view.classOwned}}>
|
||||
<a href="#" {{action "showMyRepositories"}}>My Repositories</a>
|
||||
<li id="tab_owned" class={{classOwned}}>
|
||||
<a href="#" {{action showMyRepositories}}>My Repositories</a>
|
||||
</li>
|
||||
|
||||
{{#if config.pro}}
|
||||
<li id="tab_running" class={{view.classRunning}}>
|
||||
<a href="#" {{action "showRunningJobs"}}>Running ({{startedJobsCount}}/{{allJobsCount}})</a>
|
||||
<li id="tab_running" class={{classRunning}}>
|
||||
<a href="#" {{action showRunningJobs}}>Running ({{startedJobsCount}}/{{allJobsCount}})</a>
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
<li id="tab_new" class={{view.classNew}}>
|
||||
<li id="tab_new" class={{classNew}}>
|
||||
{{#link-to "profile" trackEvent="add-repository-from-list" title="Add New Repository"}}
|
||||
<span class="icon icon--plus"></span>
|
||||
{{/link-to}}
|
25
app/templates/components/status-images.hbs
Normal file
25
app/templates/components/status-images.hbs
Normal file
|
@ -0,0 +1,25 @@
|
|||
<a href="#" class="close" {{action "close"}}></a>
|
||||
<p>
|
||||
<label>Branch:</label>
|
||||
{{#if branches.isLoaded}}
|
||||
{{#x-select value=branch}}
|
||||
{{#each branches as |branch|}}
|
||||
{{#x-option value=branch.commit.branch}}{{branch.commit.branch}}{{/x-option}}
|
||||
{{/each}}
|
||||
{{/x-select}}
|
||||
{{else}}
|
||||
{{loading-indicator}}
|
||||
{{/if}}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label>
|
||||
{{#x-select value=format}}
|
||||
{{#each formats as |format|}}
|
||||
{{#x-option value=format}}{{format}}{{/x-option}}
|
||||
{{/each}}
|
||||
{{/x-select}}
|
||||
|
||||
</label>
|
||||
{{status-image-input value=statusString class="url" rows=3}}
|
||||
</p>
|
|
@ -1,3 +1,4 @@
|
|||
{{#job-wrapper repo=repo job=job}}
|
||||
{{#if job.isLoaded}}
|
||||
|
||||
{{build-header item=job user=auth.currentUser commit=job.commit repo=repo}}
|
||||
|
@ -9,3 +10,4 @@
|
|||
{{loading-indicator}}
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/job-wrapper}}
|
||||
|
|
|
@ -134,4 +134,4 @@
|
|||
</div>
|
||||
</section>
|
||||
</div>
|
||||
{{/layout-name}}
|
||||
{{/travis-layout}}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{#profile-accounts-wrapper}}
|
||||
<section class="profile-orgs">
|
||||
<ul>
|
||||
{{org-item account=user}}
|
||||
|
@ -18,3 +19,4 @@
|
|||
<a href={{config.githubOrgsOauthAccessSettingsUrl}} title="Organizations Oauth Access Settings on GitHub">Review and add</a> your authorized organizations.</p>
|
||||
</section>
|
||||
{{/if}}
|
||||
{{/profile-accounts-wrapper}}
|
|
@ -1,4 +1,5 @@
|
|||
{{#if view.isEmpty}}
|
||||
{{#repo-wrapper repo=repo isLoading=isLoading}}
|
||||
{{#if isEmpty}}
|
||||
{{repos-empty}}
|
||||
{{else}}
|
||||
|
||||
|
@ -10,8 +11,8 @@
|
|||
<a href="{{controller.urlGithub}}" title="{{repo.name}} on Github">{{repo.name}} on Github</a>
|
||||
</div>
|
||||
<div class="repo-badge">
|
||||
<a href="#" id="status-image-popup" title="build status image" name="status-images" class="open-popup" {{action "statusImages" target=view}}>
|
||||
<img src={{view.statusImageUrl}} alt="Build Status Images"/>
|
||||
<a href="#" id="status-image-popup" title="build status image" name="status-images" class="open-popup" {{action "statusImages"}}>
|
||||
<img src={{statusImageUrl}} alt="Build Status Images"/>
|
||||
</a>
|
||||
</div>
|
||||
</header>
|
||||
|
@ -38,4 +39,7 @@
|
|||
{{else}}
|
||||
{{loading-indicator}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/repo-wrapper}}
|
||||
|
||||
{{status-images repo=repo branches=repo.branches}}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
{{view 'repos-list-tabs'}}
|
||||
{{repos-list-tabs tab=tab showMyRepositories=(action "showMyRepositories") showRunningJobs=(action "showRunningJobs")}}
|
||||
|
||||
{{#if showRunningJobs}}
|
||||
<div class="tabbody sidebar-list">
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
<a href="#" class="close" {{action "close" target=view}}></a>
|
||||
<p>
|
||||
<label>Branch:</label>
|
||||
{{#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}}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<label>{{view Ember.Select content=view.formats selection=view.statusImageFormat}}</label>
|
||||
{{view 'status-image-input' value=view.statusString class="url" rows=3}}
|
||||
</p>
|
|
@ -51,7 +51,7 @@
|
|||
{{/unless}}
|
||||
{{/if}}
|
||||
|
||||
<li class="{{view.classProfile}}">
|
||||
<li class="{{classProfile}}">
|
||||
{{#if auth.signedOut}}
|
||||
<button class="signed-out button--signin" {{action "signIn" target="auth"}}>Sign in with GitHub</button>
|
||||
{{/if}}
|
||||
|
|
|
@ -57,4 +57,5 @@ format = function(version, slug, branch) {
|
|||
}
|
||||
};
|
||||
|
||||
export { format };
|
||||
export default format;
|
||||
|
|
|
@ -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')
|
||||
});
|
|
@ -1,3 +0,0 @@
|
|||
import BasicView from 'travis/views/basic';
|
||||
|
||||
export default BasicView.extend();
|
|
@ -1,3 +0,0 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.View.extend();
|
|
@ -1,3 +0,0 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.View.extend();
|
|
@ -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')
|
||||
});
|
|
@ -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'
|
||||
});
|
|
@ -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')
|
||||
});
|
|
@ -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')
|
||||
});
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
});
|
|
@ -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'));
|
||||
}
|
||||
})
|
||||
});
|
|
@ -1,5 +0,0 @@
|
|||
import BasicView from 'travis/views/basic';
|
||||
|
||||
export default BasicView.extend({
|
||||
templateName: 'auth/signin'
|
||||
});
|
|
@ -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')
|
||||
});
|
|
@ -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;
|
|
@ -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." },
|
||||
]
|
||||
};
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
"exists",
|
||||
"fillIn",
|
||||
"click",
|
||||
"select",
|
||||
"keyEvent",
|
||||
"triggerEvent",
|
||||
"find",
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
import resolver from './helpers/resolver';
|
||||
import registerSelectHelper from './helpers/register-select-helper';
|
||||
registerSelectHelper();
|
||||
import {
|
||||
setResolver
|
||||
} from 'ember-qunit';
|
||||
|
|
Loading…
Reference in New Issue
Block a user