-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprice_comparison.js
240 lines (237 loc) · 6.8 KB
/
price_comparison.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
//let shop_item ={rakuten:'楽天',amazon:'Amazon',ebay:'ebay'}; // 表示の順番
//let order_str = {'relevanceblender':'おすすめ順','review-rank':'人気順', 'price-asc-rank':'価格の安い順', 'price-desc-rank':'価格の高い順'}; // 表示の順番
//let order = 'relevanceblender';
//let shop_disp=['rakuten','ebay'];
//let item_data=[];
let v = new URLSearchParams(window.location.search);
/*
let v_keyword=v.get('keyword');
let v_shop_disp=v.getAll('shop[]');
let v_order=v.get('order');
*/
Vue.filter('formatCurrency', function (value) { // カンマ区切り
return '¥' + String(value).replace(/\B(?=(\d{3})+(?!\d))/g, ',');
});
// カートコンポーネント
const cm=Vue.component('cart_detail', {
template: `
<div>
<div id="total">小計:{{total | formatCurrency}}円</div>
<div id="goods_list">
<div v-for="(item, index) in citems" class="item col-xs-3">
<div class="img-block">
<img v-bind:src="item.image">
<div>
{{item.quantity}}個
<button @click="delete_cart([index])"><i class="far fa-trash-alt"></i></button>
</div>
</div>
</div>
</div>
</div>
`,
props: ['citems'],
computed: {
total: function () {
let total = 0;
for(let id in this.citems){
total += (this.citems[id].price * this.citems[id].quantity);
}
return total;
}
},
methods: {
delete_cart(del_list) { // カートから削除
/*
del_list.forEach(id=>{
delete this.citems[id];
});
*/
/*
axios.post('delete_cart.php',{
del_list
})
.then(response => {
app.cartItems = response.data
})
.catch(error => {
console.log(error);
})
*/
}
}
});
const app=new Vue({
el: '#app',
data(){
return{
keyword:v.get('keyword'),
shop_disp:v.getAll('shop[]'),
order:v.get('order'),
shop_item: {rakuten:'楽天',amazon:'Amazon',ebay:'ebay'}, // 表示の順番
order_str: {'relevanceblender':'おすすめ順','review-rank':'人気順', 'price-asc-rank':'価格の安い順', 'price-desc-rank':'価格の高い順'}, // 表示の順番
cartItems:[],
//cart_component:false,
//cart_text:'カートに入れる',
items: [],
loading: true,
errored: false,
item_list:false,
tr_on:v.get('tr_on')==='true' ? true : false,
tr_keyword:'',
tr_busy:false
}
},
mounted() {
this.cart_update();
// クエリフィルタ
if(
this.keyword!==null &&
this.order!==null &&
this.keyword!=='' &&
this.order!=='' &&
this.shop_disp.length!==0
){
if(this.tr_on==true){
this.trans(this.keyword,'ja','en',out=>{
this.tr_keyword=out;
this.serach_item();
});
}
this.serach_item();
}
else{
this.loading = false;
}
},
methods: {
cart_update(item={}){
// 引数が何もないときphpのsessionのカート情報を呼び出すだけの機能になる
//let cartItem={}
if (item!=={}){
//item.existence=true;
/*
cartItem={
item_id:itemToAdd.item_id,
image:itemToAdd.image,
url:itemToAdd.url,
title:itemToAdd.title,
price:itemToAdd.price,
shop:itemToAdd.shop,
quantity:itemToAdd.quantity
}
*/
/*
if (itemToAdd.existence === false) { // 新規商品の場合は商品を追加
this.cartItems.push(Vue.util.extend({}, cartItem)); // 通常のオブジェクトからVueオブジェクトを作り、追加する
//this.cart_text='追加済み';
itemToAdd.existence=true;
}
*/
}
/*
axios.post('add_cart.php',{
item
})
.then(response => {
this.cartItems = response.data
})
.catch(error => {
console.log(error);
})
.finally(() => {
//this.cart_text='追加済み'
//this.cart_component=(this.cartItems.length!==0 ? true : false); //カートにアイテムが入っている場合は表示
})
*/
},
searchbtn_click(){ // サーチボタンをクリックしてサブミット
document.getElementById('searchbtn').click();
},
trans(input,source,target,tr_out_func){ // GASによる翻訳
this.tr_busy=true;
axios.get('https://script.google.com/macros/s/AKfycbwslso6KP1b4rBQfDcIrVBh7iJmGzdrvqBKq6s7nfBUTZPeCSlPNg-6-rLjSnnvmhxWYA/exec', {
params: {
text:input,
source:source,
target:target
}
})
.then(response => {
this.tr_busy=false;
tr_out_func(response.data);
})
},
trans_item(on){
this.items.forEach(item => {
if(item.shop==='ebay'){ // 海外ショップのアイテムの翻訳
if(on){
if(typeof item.title_ja==="undefined"){ // 変数が定義されているかどうか
this.trans(item.title,'en','ja',out=>{
item.title_ja=out;
item.title_en=item.title;
item.title=out;
});
}
else{
item.title=item.title_ja;
}
}
else{
if(typeof item.title_en!=="undefined"){ // 変数が定義されているかどうか
item.title=item.title_en;
}
}
}
});
},
serach_item(){
//axios.get('price_comparison_ajax.php', {
//axios.get('https://nokswuwbmb.execute-api.ap-northeast-1.amazonaws.com/', {
axios.get('https://jcxcmpwqxg.execute-api.ap-northeast-1.amazonaws.com/webhook/', {
//axios.get('http://localhost:3000/', {
params: {
keyword:this.keyword,
shop:this.shop_disp,
order:this.order,
tr_keyword:this.tr_keyword
}
})
.then(response => {
this.items = response.data
this.items.forEach(item => {
item.quantity=1; // quantityプロパティを追加
/*
item.existence = false; // existence(カートにあるかどうか)プロパティを追加
for(let cart_id in this.cartItems){
if (cart_id === item.item_id) {
item.existence = true;
}
}
*/
/*
this.cartItems.forEach(citem => {
if (citem.item_id === item.item_id) {
item.existence = true;
}
});
*/
});
this.trans_item(this.tr_on);
})
.catch(error => {
console.log(error);
this.errored = true;
})
.finally(() => {
this.loading = false;
this.item_list=true;
})
}
},
watch:{
tr_on(value){
this.trans_item(value);
}
}
});