From c2c8feb1f9fa25afa7e64e11133c5782563fe369 Mon Sep 17 00:00:00 2001 From: lislis Date: Tue, 22 Mar 2016 18:58:21 +0100 Subject: [PATCH] match layout files add flash display to dashbaord layout remove dashboard layout, it is basically the same as the simple layout --- app/components/dashboard-row.js | 2 +- app/templates/components/dashboard-row.hbs | 5 ++++- app/templates/dashboard.hbs | 2 +- app/templates/layouts/dashboard.hbs | 15 --------------- app/templates/layouts/profile.hbs | 4 +--- app/templates/layouts/simple.hbs | 4 +--- app/templates/owner.hbs | 2 +- 7 files changed, 9 insertions(+), 25 deletions(-) delete mode 100644 app/templates/layouts/dashboard.hbs diff --git a/app/components/dashboard-row.js b/app/components/dashboard-row.js index bcc1ced5..96e6c625 100644 --- a/app/components/dashboard-row.js +++ b/app/components/dashboard-row.js @@ -3,7 +3,7 @@ import { githubCommit as githubCommitUrl } from 'travis/utils/urls'; import config from 'travis/config/environment'; import { hasAdminPermission, hasPushPermission } from 'travis/utils/permission'; -export default Ember.Component.extend(Permissions, { +export default Ember.Component.extend({ tagName: 'li', classNameBindings: ['repo.default_branch.last_build.state'], classNames: ['rows', 'rows--dashboard'], diff --git a/app/templates/components/dashboard-row.hbs b/app/templates/components/dashboard-row.hbs index d36d3c45..97ef60e4 100644 --- a/app/templates/components/dashboard-row.hbs +++ b/app/templates/components/dashboard-row.hbs @@ -23,10 +23,12 @@

Default branch

{{request-icon event=repo.default_branch.last_build.event_type state=repo.default_branch.last_build.state}} - {{repo.default_branch.name}} is {{repo.default_branch.last_build.state}} + {{repo.default_branch.name}} + {{#if repo.default_branch.last_build.state}}is {{repo.default_branch.last_build.state}}{{/if}}

+{{#if repo.default_branch.last_build}}

Last build

@@ -61,6 +63,7 @@

+{{/if}} {{#if displayMenuTofu}}
diff --git a/app/templates/dashboard.hbs b/app/templates/dashboard.hbs index 70454b53..2b333daf 100644 --- a/app/templates/dashboard.hbs +++ b/app/templates/dashboard.hbs @@ -1,3 +1,3 @@ -{{#travis-layout layoutName="layouts/dashboard" class="dashboard"}} +{{#travis-layout layoutName="layouts/simple" class="dashboard"}} {{outlet}} {{/travis-layout}} diff --git a/app/templates/layouts/dashboard.hbs b/app/templates/layouts/dashboard.hbs deleted file mode 100644 index 822fa81d..00000000 --- a/app/templates/layouts/dashboard.hbs +++ /dev/null @@ -1,15 +0,0 @@ -
-
-
- {{render "top"}} -
-
- -
- {{yield}} -
-
- -
- {{render "footer"}} -
diff --git a/app/templates/layouts/profile.hbs b/app/templates/layouts/profile.hbs index 33ed9f24..6b110e90 100644 --- a/app/templates/layouts/profile.hbs +++ b/app/templates/layouts/profile.hbs @@ -15,6 +15,4 @@
- +{{render "footer"}} diff --git a/app/templates/layouts/simple.hbs b/app/templates/layouts/simple.hbs index f47a6b5b..3a98e1e4 100644 --- a/app/templates/layouts/simple.hbs +++ b/app/templates/layouts/simple.hbs @@ -13,6 +13,4 @@ - +{{render "footer"}} diff --git a/app/templates/owner.hbs b/app/templates/owner.hbs index 95844a0a..84bc176c 100644 --- a/app/templates/owner.hbs +++ b/app/templates/owner.hbs @@ -1,4 +1,4 @@ -{{#travis-layout layoutName="layouts/profile" class="owner"}} +{{#travis-layout layoutName="layouts/simple" class="owner"}}