[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 { colorForState } from 'travis/utils/helpers';
|
||||||
import BasicView from 'travis/views/basic';
|
|
||||||
import Polling from 'travis/mixins/polling';
|
import Polling from 'travis/mixins/polling';
|
||||||
|
|
||||||
export default BasicView.extend(Polling, {
|
export default Ember.Component.extend({
|
||||||
classNameBindings: ['color'],
|
classNameBindings: ['color'],
|
||||||
buildBinding: 'controller.build',
|
pollModels: 'build',
|
||||||
pollModels: 'controller.build',
|
|
||||||
|
|
||||||
color: function() {
|
color: function() {
|
||||||
return colorForState(this.get('build.state'));
|
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';
|
import Polling from 'travis/mixins/polling';
|
||||||
|
|
||||||
export default BasicView.extend(Polling, {
|
export default Ember.Component.extend({
|
||||||
|
store: Ember.inject.service('store'),
|
||||||
|
|
||||||
pollHook: function(store) {
|
pollHook: function(store) {
|
||||||
var contentType, repositoryId;
|
var contentType, repositoryId;
|
||||||
contentType = this.get('controller.contentType');
|
contentType = this.get('contentType');
|
||||||
repositoryId = this.get('controller.repo.id');
|
repositoryId = this.get('repo.id');
|
||||||
store = this.get('controller.store');
|
store = this.get('store');
|
||||||
|
|
||||||
if (contentType === 'builds') {
|
if (contentType === 'builds') {
|
||||||
return store.query('build', {
|
return store.query('build', {
|
||||||
event_type: 'push',
|
event_type: 'push',
|
|
@ -3,10 +3,8 @@ import { colorForState } from 'travis/utils/helpers';
|
||||||
import { githubCommit } from 'travis/utils/urls';
|
import { githubCommit } from 'travis/utils/urls';
|
||||||
import Polling from 'travis/mixins/polling';
|
import Polling from 'travis/mixins/polling';
|
||||||
|
|
||||||
export default Ember.View.extend(Polling, {
|
export default Ember.Component.extend({
|
||||||
pollModels: 'controller.job.build',
|
pollModels: 'job.build',
|
||||||
repoBinding: 'controller.repo',
|
|
||||||
jobBinding: 'controller.job',
|
|
||||||
commitBinding: 'job.commit',
|
commitBinding: 'job.commit',
|
||||||
currentItemBinding: 'job',
|
currentItemBinding: 'job',
|
||||||
|
|
||||||
|
@ -16,5 +14,5 @@ export default Ember.View.extend(Polling, {
|
||||||
|
|
||||||
urlGithubCommit: function() {
|
urlGithubCommit: function() {
|
||||||
return githubCommit(this.get('repo.slug'), this.get('commit.sha'));
|
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';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default BasicView.extend({
|
export default Ember.Component.extend({
|
||||||
popup: Ember.inject.service(),
|
popup: Ember.inject.service(),
|
||||||
classNames: ['application'],
|
classNames: ['application'],
|
||||||
|
|
||||||
click(event) {
|
click(event) {
|
||||||
var targetAndParents;
|
var targetAndParents = $(event.target).parents().andSelf();
|
||||||
targetAndParents = $(event.target).parents().andSelf();
|
|
||||||
if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {
|
if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {
|
||||||
this.get('popup').close();
|
this.get('popup').close();
|
||||||
}
|
}
|
||||||
if (!targetAndParents.hasClass('menu') && !targetAndParents.is('#tools > a')) {
|
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';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.View.extend({
|
export default Ember.Component.extend({
|
||||||
templateName: 'repos/list/tabs',
|
auth: Ember.inject.service(),
|
||||||
tabBinding: 'controller.tab',
|
|
||||||
currentUserBinding: 'controller.currentUser.model',
|
currentUserBinding: 'auth.currentUser',
|
||||||
|
|
||||||
classRecent: function() {
|
classRecent: function() {
|
||||||
if (this.get('tab') === 'recent') {
|
if (this.get('tab') === 'recent') {
|
||||||
return 'active';
|
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';
|
return 'hidden';
|
||||||
}
|
}
|
||||||
}.property('tab'),
|
}.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 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({
|
export default Ember.Controller.extend({
|
||||||
|
popup: Ember.inject.service(),
|
||||||
|
|
||||||
jobController: Ember.inject.controller('job'),
|
jobController: Ember.inject.controller('job'),
|
||||||
buildController: Ember.inject.controller('build'),
|
buildController: Ember.inject.controller('build'),
|
||||||
buildsController: Ember.inject.controller('builds'),
|
buildsController: Ember.inject.controller('builds'),
|
||||||
reposController: Ember.inject.controller('repos'),
|
reposController: Ember.inject.controller('repos'),
|
||||||
|
reposBinding: 'reposController.repos',
|
||||||
currentUserBinding: 'auth.currentUser',
|
currentUserBinding: 'auth.currentUser',
|
||||||
|
|
||||||
classNames: ['repo'],
|
classNames: ['repo'],
|
||||||
|
@ -14,6 +19,21 @@ export default Ember.Controller.extend({
|
||||||
builds: Ember.computed.alias('buildsController.content'),
|
builds: Ember.computed.alias('buildsController.content'),
|
||||||
job: Ember.computed.alias('jobController.job'),
|
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() {
|
slug: function() {
|
||||||
return this.get('repo.slug');
|
return this.get('repo.slug');
|
||||||
}.property('repo.slug'),
|
}.property('repo.slug'),
|
||||||
|
|
|
@ -102,5 +102,17 @@ export default Ember.Controller.extend({
|
||||||
},
|
},
|
||||||
showCta: function() {
|
showCta: function() {
|
||||||
return !this.get('auth.signedIn') && !this.get('config.pro') && !this.get('landingPage');
|
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() {
|
renderTemplate() {
|
||||||
$('body').attr('id', 'auth');
|
$('body').attr('id', 'auth');
|
||||||
return this.render('auth.signin');
|
return this.render('signin');
|
||||||
},
|
},
|
||||||
|
|
||||||
deactivate() {
|
deactivate() {
|
||||||
|
|
|
@ -9,11 +9,6 @@ export default Ember.Service.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
close() {
|
close() {
|
||||||
var view;
|
|
||||||
if (view = Ember.View.currentPopupView) {
|
|
||||||
view.destroy();
|
|
||||||
Ember.View.currentPopupView = null;
|
|
||||||
}
|
|
||||||
return $('.popup').removeClass('display');
|
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}}
|
{{#if loading}}
|
||||||
{{loading-indicator}}
|
{{loading-indicator}}
|
||||||
{{else}}
|
{{else}}
|
||||||
|
@ -16,3 +17,4 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{/build-wrapper}}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
{{#builds-wrapper contentType=contentType repo=repo}}
|
||||||
{{#if model.isLoaded}}
|
{{#if model.isLoaded}}
|
||||||
<ul class="build-list">
|
<ul class="build-list">
|
||||||
{{#each model as |build|}}
|
{{#each model as |build|}}
|
||||||
|
@ -18,3 +19,4 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
{{loading-indicator}}
|
{{loading-indicator}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{/builds-wrapper}}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<p>You're only two steps away from using Travis:</p>
|
<p>You're only two steps away from using Travis:</p>
|
||||||
|
|
||||||
<ul>
|
<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>
|
<li> Push some code!</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
<div class="tabnav tabnav--sidebar" role="tablist">
|
<div class="tabnav tabnav--sidebar" role="tablist">
|
||||||
<ul class="tab tabs--sidebar">
|
<ul class="tab tabs--sidebar">
|
||||||
<li id="tab_owned" class={{view.classOwned}}>
|
<li id="tab_owned" class={{classOwned}}>
|
||||||
<a href="#" {{action "showMyRepositories"}}>My Repositories</a>
|
<a href="#" {{action showMyRepositories}}>My Repositories</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
{{#if config.pro}}
|
{{#if config.pro}}
|
||||||
<li id="tab_running" class={{view.classRunning}}>
|
<li id="tab_running" class={{classRunning}}>
|
||||||
<a href="#" {{action "showRunningJobs"}}>Running ({{startedJobsCount}}/{{allJobsCount}})</a>
|
<a href="#" {{action showRunningJobs}}>Running ({{startedJobsCount}}/{{allJobsCount}})</a>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/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"}}
|
{{#link-to "profile" trackEvent="add-repository-from-list" title="Add New Repository"}}
|
||||||
<span class="icon icon--plus"></span>
|
<span class="icon icon--plus"></span>
|
||||||
{{/link-to}}
|
{{/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}}
|
{{#if job.isLoaded}}
|
||||||
|
|
||||||
{{build-header item=job user=auth.currentUser commit=job.commit repo=repo}}
|
{{build-header item=job user=auth.currentUser commit=job.commit repo=repo}}
|
||||||
|
@ -9,3 +10,4 @@
|
||||||
{{loading-indicator}}
|
{{loading-indicator}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{/job-wrapper}}
|
||||||
|
|
|
@ -134,4 +134,4 @@
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
{{/layout-name}}
|
{{/travis-layout}}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
{{#profile-accounts-wrapper}}
|
||||||
<section class="profile-orgs">
|
<section class="profile-orgs">
|
||||||
<ul>
|
<ul>
|
||||||
{{org-item account=user}}
|
{{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>
|
<a href={{config.githubOrgsOauthAccessSettingsUrl}} title="Organizations Oauth Access Settings on GitHub">Review and add</a> your authorized organizations.</p>
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{/profile-accounts-wrapper}}
|
|
@ -1,4 +1,5 @@
|
||||||
{{#if view.isEmpty}}
|
{{#repo-wrapper repo=repo isLoading=isLoading}}
|
||||||
|
{{#if isEmpty}}
|
||||||
{{repos-empty}}
|
{{repos-empty}}
|
||||||
{{else}}
|
{{else}}
|
||||||
|
|
||||||
|
@ -10,8 +11,8 @@
|
||||||
<a href="{{controller.urlGithub}}" title="{{repo.name}} on Github">{{repo.name}} on Github</a>
|
<a href="{{controller.urlGithub}}" title="{{repo.name}} on Github">{{repo.name}} on Github</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="repo-badge">
|
<div class="repo-badge">
|
||||||
<a href="#" id="status-image-popup" title="build status image" name="status-images" class="open-popup" {{action "statusImages" target=view}}>
|
<a href="#" id="status-image-popup" title="build status image" name="status-images" class="open-popup" {{action "statusImages"}}>
|
||||||
<img src={{view.statusImageUrl}} alt="Build Status Images"/>
|
<img src={{statusImageUrl}} alt="Build Status Images"/>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
@ -38,4 +39,7 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
{{loading-indicator}}
|
{{loading-indicator}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{/repo-wrapper}}
|
||||||
|
|
||||||
|
{{status-images repo=repo branches=repo.branches}}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{view 'repos-list-tabs'}}
|
{{repos-list-tabs tab=tab showMyRepositories=(action "showMyRepositories") showRunningJobs=(action "showRunningJobs")}}
|
||||||
|
|
||||||
{{#if showRunningJobs}}
|
{{#if showRunningJobs}}
|
||||||
<div class="tabbody sidebar-list">
|
<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}}
|
{{/unless}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<li class="{{view.classProfile}}">
|
<li class="{{classProfile}}">
|
||||||
{{#if auth.signedOut}}
|
{{#if auth.signedOut}}
|
||||||
<button class="signed-out button--signin" {{action "signIn" target="auth"}}>Sign in with GitHub</button>
|
<button class="signed-out button--signin" {{action "signIn" target="auth"}}>Sign in with GitHub</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
@ -57,4 +57,5 @@ format = function(version, slug, branch) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export { format };
|
||||||
export default 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: "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: "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" },
|
{ 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" },
|
||||||
|
{ handler: "log", matchMessage: "Ember.View is deprecated. Consult the Deprecations Guide for a migration strategy." },
|
||||||
// TODO
|
|
||||||
{ handler: "silence", matchMessage: "Ember.View is deprecated. Consult the Deprecations Guide for a migration strategy." },
|
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
"ember-data-filter": "1.13.0",
|
"ember-data-filter": "1.13.0",
|
||||||
"ember-disable-proxy-controllers": "^1.0.1",
|
"ember-disable-proxy-controllers": "^1.0.1",
|
||||||
"ember-export-application-global": "^1.0.4",
|
"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",
|
"exists",
|
||||||
"fillIn",
|
"fillIn",
|
||||||
"click",
|
"click",
|
||||||
|
"select",
|
||||||
"keyEvent",
|
"keyEvent",
|
||||||
"triggerEvent",
|
"triggerEvent",
|
||||||
"find",
|
"find",
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
import resolver from './helpers/resolver';
|
import resolver from './helpers/resolver';
|
||||||
|
import registerSelectHelper from './helpers/register-select-helper';
|
||||||
|
registerSelectHelper();
|
||||||
import {
|
import {
|
||||||
setResolver
|
setResolver
|
||||||
} from 'ember-qunit';
|
} from 'ember-qunit';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user