-
Notifications
You must be signed in to change notification settings - Fork 590
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #903 from laravel/batches
Batches
- Loading branch information
Showing
29 changed files
with
106,536 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"/app.js": "/app.js?id=2cc598321134a0bcfac1", | ||
"/app.css": "/app.css?id=d79fb7e75cd04c97ef92", | ||
"/app-dark.css": "/app-dark.css?id=af37df8013614303ea68" | ||
"/app.js": "/app.js?id=baadf232dd8610dba988", | ||
"/app.css": "/app.css?id=4fe6de748c534e14b1eb", | ||
"/app-dark.css": "/app-dark.css?id=14e81c67874cbab6abff" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<script type="text/ecmascript-6"> | ||
import StylesMixin from './../../mixins/entriesStyles'; | ||
export default { | ||
mixins: [ | ||
StylesMixin, | ||
], | ||
} | ||
</script> | ||
|
||
<template> | ||
<index-screen title="Batches" resource="batches" hide-search="true"> | ||
<tr slot="table-header"> | ||
<th scope="col">Batch</th> | ||
<th scope="col">Status</th> | ||
<th scope="col">Size</th> | ||
<th scope="col">Completion</th> | ||
<th scope="col">Happened</th> | ||
<th scope="col"></th> | ||
</tr> | ||
|
||
|
||
<template slot="row" slot-scope="slotProps"> | ||
<td> | ||
<span :title="slotProps.entry.content.name">{{truncate(slotProps.entry.content.name || slotProps.entry.content.id, 68)}}</span><br> | ||
<small class="text-muted"> | ||
Connection: {{slotProps.entry.content.connection}} | Queue: {{slotProps.entry.content.queue}} | ||
</small> | ||
</td> | ||
|
||
<td> | ||
<small class="badge badge-danger badge-sm" v-if="slotProps.entry.content.failedJobs > 0 && slotProps.entry.content.progress < 100"> | ||
Failures | ||
</small> | ||
<small class="badge badge-success badge-sm" v-if="slotProps.entry.content.progress == 100"> | ||
Finished | ||
</small> | ||
<small class="badge badge-secondary badge-sm" v-if="slotProps.entry.content.totalJobs == 0 || (slotProps.entry.content.pendingJobs > 0 && !slotProps.entry.content.failedJobs)"> | ||
Pending | ||
</small> | ||
</td> | ||
<td>{{slotProps.entry.content.totalJobs}}</td> | ||
<td>{{slotProps.entry.content.progress}}%</td> | ||
|
||
<td class="table-fit" :data-timeago="slotProps.entry.created_at" :title="slotProps.entry.created_at"> | ||
{{ timeAgo(slotProps.entry.created_at) }} | ||
</td> | ||
|
||
<td class="table-fit"> | ||
<router-link :to="{name:'batch-preview', params:{id: slotProps.entry.id}}" class="control-action"> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 16"> | ||
<path d="M16.56 13.66a8 8 0 0 1-11.32 0L.3 8.7a1 1 0 0 1 0-1.42l4.95-4.95a8 8 0 0 1 11.32 0l4.95 4.95a1 1 0 0 1 0 1.42l-4.95 4.95-.01.01zm-9.9-1.42a6 6 0 0 0 8.48 0L19.38 8l-4.24-4.24a6 6 0 0 0-8.48 0L2.4 8l4.25 4.24h.01zM10.9 12a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"></path> | ||
</svg> | ||
</router-link> | ||
</td> | ||
</template> | ||
</index-screen> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<script type="text/ecmascript-6"> | ||
import axios from 'axios'; | ||
import StylesMixin from './../../mixins/entriesStyles'; | ||
export default { | ||
components: {}, | ||
mixins: [ | ||
StylesMixin, | ||
], | ||
data() { | ||
return { | ||
entry: null, | ||
batch: [], | ||
currentTab: 'data' | ||
}; | ||
} | ||
} | ||
</script> | ||
|
||
<template> | ||
<preview-screen title="Batch Details" resource="batches" :id="$route.params.id" entry-point="true"> | ||
<template slot="table-parameters" slot-scope="slotProps"> | ||
<tr> | ||
<td class="table-fit font-weight-bold">Status</td> | ||
<td> | ||
<small class="badge badge-danger badge-sm" v-if="slotProps.entry.content.failedJobs > 0 && slotProps.entry.content.progress < 100"> | ||
Failures | ||
</small> | ||
<small class="badge badge-success badge-sm" v-if="slotProps.entry.content.progress == 100"> | ||
Finished | ||
</small> | ||
<small class="badge badge-secondary badge-sm" v-if="slotProps.entry.content.totalJobs == 0 || (slotProps.entry.content.pendingJobs > 0 && !slotProps.entry.content.failedJobs)"> | ||
Pending | ||
</small> | ||
</td> | ||
</tr> | ||
|
||
<tr v-if="slotProps.entry.content.cancelledAt"> | ||
<td class="table-fit font-weight-bold">Cancelled At</td> | ||
<td> | ||
{{localTime(slotProps.entry.content.cancelledAt)}} ({{timeAgo(slotProps.entry.content.cancelledAt)}}) | ||
</td> | ||
</tr> | ||
|
||
<tr v-if="slotProps.entry.content.finishedAt"> | ||
<td class="table-fit font-weight-bold">Finished At</td> | ||
<td> | ||
{{localTime(slotProps.entry.content.finishedAt)}} ({{timeAgo(slotProps.entry.content.finishedAt)}}) | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="table-fit font-weight-bold">Batch</td> | ||
<td> | ||
{{slotProps.entry.content.name || slotProps.entry.content.id}} | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="table-fit font-weight-bold">Connection</td> | ||
<td> | ||
{{slotProps.entry.content.connection}} | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="table-fit font-weight-bold">Queue</td> | ||
<td> | ||
{{slotProps.entry.content.queue}} | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="table-fit font-weight-bold">Size</td> | ||
<td> | ||
<router-link :to="{name:'jobs', query: {family_hash: slotProps.entry.family_hash}}" class="control-action"> | ||
{{slotProps.entry.content.totalJobs}} Jobs | ||
</router-link> | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="table-fit font-weight-bold">Pending</td> | ||
<td> | ||
{{slotProps.entry.content.pendingJobs}} | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td class="table-fit font-weight-bold">Progress</td> | ||
<td> | ||
{{slotProps.entry.content.progress}}% | ||
</td> | ||
</tr> | ||
|
||
</template> | ||
</preview-screen> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.