I have the below code to show a timeline modal. It’s called on click using:
JavaScript
x
2
1
<a class="dropdown-item" href="javascript:;" @click="orderHistory" ><?php echo t("Timeline")?></a>
2
How can I show it on my page as part of the page, not opening as a modal? I want to be always visible on that page instead of clicking on a menu to see it Any help will be much appreciated as pretty much a newbie on javascript
JavaScript
1
88
88
1
const ComponentsOrderHistory = {
2
props: ['ajax_url','label','order_uuid'],
3
data(){
4
return {
5
is_loading : false,
6
//order_uuid : '',
7
data : [],
8
order_status : [],
9
error : []
10
};
11
},
12
methods :{
13
show(){
14
this.data = []; this.order_status = [];
15
$( this.$refs.history_modal ).modal('show');
16
this.getHistory();
17
},
18
close(){
19
$( this.$refs.history_modal ).modal('hide');
20
},
21
getHistory(){
22
this.is_loading = true;
23
axios({
24
method: 'put',
25
url: this.ajax_url+"/getOrderHistory",
26
data : {
27
'YII_CSRF_TOKEN':$('meta[name=YII_CSRF_TOKEN]').attr('content'),
28
'order_uuid' : this.order_uuid,
29
},
30
timeout: $timeout,
31
}).then( response => {
32
if(response.data.code==1){
33
this.data = response.data.details.data;
34
this.order_status = response.data.details.order_status;
35
this.error = [];
36
} else {
37
this.error = response.data.msg;
38
this.data = [];
39
this.order_status = [];
40
}
41
}).catch(error => {
42
//
43
}).then(data => {
44
this.is_loading = false;
45
});
46
},
47
},
48
template: `
49
<div ref="history_modal" class="modal" tabindex="-1" role="dialog" >
50
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable" role="document">
51
<div class="modal-content">
52
<div class="modal-header">
53
<h5 class="modal-title" id="exampleModalLabel">{{label.title}}</h5>
54
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
55
<span aria-hidden="true">×</span>
56
</button>
57
</div>
58
<div class="modal-body position-relative">
59
60
<div v-if="is_loading" class="loading cover-loader d-flex align-items-center justify-content-center">
61
<div>
62
<div class="m-auto circle-loader medium" data-loader="circle-side"></div>
63
</div>
64
</div>
65
66
<ul class="timeline m-0 p-0 pl-5">
67
<li v-for="item in data" >
68
<div class="time">{{item.created_at}}</div>
69
<p v-if="order_status[item.status]" class="m-0">{{order_status[item.status]}}</p>
70
<p v-else class="m-0">{{item.status}}</p>
71
<p class="m-0 text-muted">{{item.remarks}}</p>
72
<p v-if="item.change_by" class="m-0 text-muted">{{item.change_by}}</p>
73
</li>
74
</ul>
75
76
<div id="error_message" v-if="error.length>0" class="alert alert-warning mb-2" role="alert">
77
<p v-cloak v-for="err in error" class="m-0">{{err}}</p>
78
</div>
79
80
</div>
81
<div class="modal-footer">
82
<button type="button" class="btn btn-green pl-4 pr-4" data-dismiss="modal">
83
<span>{{label.close}}</span>
84
</button>
85
</div>
86
87
</div>
88
………………………………………………………………………………………………………………………………………………………………….
Advertisement
Answer
Looks like stackoverflow is not what once was. I guess no one’s visiting that site anymore. Must remove a dead website from my favourites then. As most of the solutions I found here was from years ago. That’s a shame. It was useful once upon a time