Commit 515fab4d authored by Alfredo Sumaran's avatar Alfredo Sumaran

Fix variable names to use camelCase

parent 4d5d8a81
...@@ -20,8 +20,11 @@ ...@@ -20,8 +20,11 @@
template: ` template: `
<div> <div>
<div class="item-details item-conmmit-component"> <div class="item-details item-conmmit-component">
<img class="avatar" :src="commit.author.avatarUrl">
<h5 class="item-title"> <h5 class="item-title">
<a href="commit.url">{{ commit.title }}</a> <a :href="commit.url">
{{ commit.title }}
</a>
</h5> </h5>
<span> <span>
First First
...@@ -30,20 +33,15 @@ ...@@ -30,20 +33,15 @@
<path fill="#8F8F8F" fill-rule="evenodd" d="M28.7769836,18 C27.8675252,13.9920226 24.2831748,11 20,11 C15.7168252,11 12.1324748,13.9920226 11.2230164,18 L4.0085302,18 C2.90195036,18 2,18.8954305 2,20 C2,21.1122704 2.8992496,22 4.0085302,22 L11.2230164,22 C12.1324748,26.0079774 15.7168252,29 20,29 C24.2831748,29 27.8675252,26.0079774 28.7769836,22 L35.9914698,22 C37.0980496,22 38,21.1045695 38,20 C38,18.8877296 37.1007504,18 35.9914698,18 L28.7769836,18 L28.7769836,18 Z M20,25 C22.7614237,25 25,22.7614237 25,20 C25,17.2385763 22.7614237,15 20,15 C17.2385763,15 15,17.2385763 15,20 C15,22.7614237 17.2385763,25 20,25 L20,25 Z"/> <path fill="#8F8F8F" fill-rule="evenodd" d="M28.7769836,18 C27.8675252,13.9920226 24.2831748,11 20,11 C15.7168252,11 12.1324748,13.9920226 11.2230164,18 L4.0085302,18 C2.90195036,18 2,18.8954305 2,20 C2,21.1122704 2.8992496,22 4.0085302,22 L11.2230164,22 C12.1324748,26.0079774 15.7168252,29 20,29 C24.2831748,29 27.8675252,26.0079774 28.7769836,22 L35.9914698,22 C37.0980496,22 38,21.1045695 38,20 C38,18.8877296 37.1007504,18 35.9914698,18 L28.7769836,18 L28.7769836,18 Z M20,25 C22.7614237,25 25,22.7614237 25,20 C25,17.2385763 22.7614237,15 20,15 C17.2385763,15 15,17.2385763 15,20 C15,22.7614237 17.2385763,25 20,25 L20,25 Z"/>
</svg> </svg>
</span> </span>
<a href="#" class="commit-hash-link monospace">{{ commit.hash }}</a> <a :href="commit.url" class="commit-hash-link monospace">{{ commit.shortSha }}</a>
pushed by pushed by
<a href="commit.profile" class="commit-author-link">{{ commit.author }}</a> <a :href="commit.author.webUrl" class="commit-author-link">
{{ commit.author.name }}
</a>
</span> </span>
</div> </div>
<div class="item-time"> <div class="item-time">
<span class="hours" v-if="commit.totalTime.hours"> <total-time :time="commit.totalTime"></total-time>
{{ commit.totalTime.hours }}
<abbr title="Hours">hr</abbr>
</span>
<span class="minutes" v-if="commit.totalTime.minutes">
{{ commit.totalTime.minutes }}
<abbr title="Minutes">mins</abbr>
</span>
</div> </div>
<div> <div>
`, `,
......
...@@ -21,14 +21,14 @@ ...@@ -21,14 +21,14 @@
template: ` template: `
<div> <div>
<div class="item-details"> <div class="item-details">
<img class="avatar" :src="issue.author.avatar_url"> <img class="avatar" :src="issue.author.avatarUrl">
<h5 class="item-title"> <h5 class="item-title">
<a :href="issue.url"> <a :href="issue.url">
{{ issue.title }} {{ issue.title }}
</a> </a>
</h5> </h5>
<a :href="issue.url" class="issue-link"> <a :href="issue.url" class="issue-link">
#{{issue.iid}} #{{ issue.iid }}
</a> </a>
&middot; &middot;
<span> <span>
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
</span> </span>
<span> <span>
by by
<a :href="issue.author.web_url" class="issue-author-link"> <a :href="issue.author.webUrl" class="issue-author-link">
{{ issue.author.name }} {{ issue.author.name }}
</a> </a>
</span> </span>
......
...@@ -56,9 +56,18 @@ ...@@ -56,9 +56,18 @@
newEvents.forEach((item) => { newEvents.forEach((item) => {
item.totalTime = item.total_time; item.totalTime = item.total_time;
item.createdAt = item.created_at; item.createdAt = item.created_at;
item.author.webUrl = item.author.web_url;
item.author.avatarUrl = item.author.avatar_url;
if (item.short_sha) {
item.shortSha = item.short_sha;
}
delete item.author.web_url;
delete item.author.avatar_url;
delete item.total_time; delete item.total_time;
delete item.created_at; delete item.created_at;
delete item.short_sha;
}); });
return newEvents; return newEvents;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment