(function() {
var take = function() {
window.AqurBaseURL = 'https://rkyoto2-server-533951b5f2b3.herokuapp.com';
var vframe;
var changePayment=false;
const pageInfoUrl = `${window.AqurBaseURL}/client/pageInfo`;
var cartInUrl;
var pageInfo;
// fetchでGETリクエストを送信し、レスポンスをJSON形式で受け取りpageInfoに格納
fetch(pageInfoUrl)
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
pageInfo = data;
if (window.location.hostname == 'localhost') {
cartInUrl = "http://localhost:8080/#lastname";
}else{
cartInUrl= pageInfo.find((v)=>(v.pid==pid)).url;
}
//console.log("cartInUrl",cartInUrl);
})
.catch(error => {
console.error('There was a problem with the fetch operation:', error);
});
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.botchan_open').forEach(element => {
element.classList.replace('botchan_open', 'chatformBtn');
});
createAqurBinding()
});
window.addEventListener("createVframe", (event) => { //console.log("createVframe")
createAqurBinding()
if(vframe){
return
}
var url = new URL(window.location.href);
let userChatbot = url.searchParams.get('usechatbot')
if(userChatbot){
return
}
vframe = document.createElement("iframe");
vframe.id="vframe";
vframe.sandbox.add('allow-storage-access-by-user-activation');
vframe.sandbox.add('allow-forms');
vframe.sandbox.add('allow-top-navigation');
vframe.sandbox.add('allow-scripts');
vframe.sandbox.add('allow-same-origin');
vframe.width="1px";
vframe.height="1px";
window.aqur.vframe = vframe;
sessionStorage.removeItem("pchange");
vframe.addEventListener("load", (e) => { //console.log(e.target.src)
var insertDDP =()=>{
var script = vframe.contentWindow.document.createElement('script');
script.src = `${window.AqurBaseURL}/client/ddp`;
vframe.contentWindow.document.head.appendChild(script);
var reset = () => { //console.log("reset")
window.aqur.reset();
};
setTimeout(reset, 1500);
}
var resetWithLoad = ()=>{
window.aqur.reset();
}
var url = new URL(vframe.contentWindow.location.href)
var target = document.querySelector('.chatform_widget');
//console.log("vframe url",url.pathname)
switch (url.pathname) {
case "/sc/error":
if(target){
target.contentWindow.postMessage({
event: "chatform_page_transition",
message: "order start",
totalProcess: 2,
pageIndex: -1
}, "*")
var alert="お客様の情報を見直してください。";
var iframeDocument = vframe.contentWindow.document;
var alertDanger = iframeDocument.querySelector('.alert_danger');
if (alertDanger) {
alert = alertDanger.textContent
} else {
var vframe_ = window.aqur.vframe.contentWindow.document;
alert = vframe_.querySelector('.section_wrapper .h_section h2, .section_inner').textContent;
}
console.log("エラー:",alert)
if(/購入回数が制限されています/.test(alert)){
var param={
event: "chatform_bindFormErrorFound",
text:alert,
}
target.contentWindow.postMessage(param, '*');
}
if(/「戻る」ボタンよりお戻り頂き/.test(alert)||
/購入手続きは完了していません/.test(alert)||
/クレジット決済は完了していません/.test(alert)||
/再度購入手続き/.test(alert)||
/クレジット決済でエラーが発生しました/.test(alert)){
changePayment = true
var param={
event: "chatform_bindFormErrorFound",
text:"決済方法の確認をしています。
そのままお待ちください。",
}
target.contentWindow.postMessage(param, '*');
}
var setUrl = () => {
vframe.src = generateREF(cartInUrl);
};
setTimeout(setUrl, 500);
}
break;
case "/sc/checkouts/index":
const chatform=localStorage.getItem("chatform")
if(chatform && changePayment){
var iframeDocument = vframe.contentWindow.document;
let pchange = sessionStorage.getItem("pchange");
console.log("changePayment",pchange)
iframeDocument.querySelectorAll('label').forEach(function(label) {
if (!pchange) {
var currentMethod = window.aqur.PaymentMethod;
var methodTo = ""
if(currentMethod=="後払い"){
methodTo = "代金引換"
}else if(currentMethod=="クレジットカード決済"){
methodTo = "後払い"
}else{
methodTo = "代金引換"
}
if (label.textContent.includes(methodTo)) {
var radioButtonId = label.getAttribute('for');
iframeDocument.getElementById(radioButtonId).checked = true;
iframeDocument.getElementById(radioButtonId).click();
sessionStorage.setItem("pchange",methodTo);
target.contentWindow.postMessage({event: "paymentHistory",methodTo:methodTo},'*');
var setSubmit = () => {
var submitButton = iframeDocument.querySelector('.btn_cart');
if (submitButton) { //sp
submitButton.click();
} else { //pc
iframeDocument.querySelector("#btn_next").click()
}
};
setTimeout(setSubmit, 500);
console.log("currentMethod",currentMethod,"methodTo",methodTo)
}
} else {
var param={
event: "chatform_bindFormErrorFound",
text:"ご指定の決済方法がご利用できません。代金引換をご利用ください。",
}
window.postMessage(param, '*');
}
});
}
//insertDDP()
setTimeout(resetWithLoad, 1500);
if(target){
var param={
event: "chatform_vframeLoaded",
url:url.href
}
target.contentWindow.postMessage(param, "*");
}
break;
default:
//insertDDP()
setTimeout(resetWithLoad, 1500);
//console.log('do nothing');
}
})
vframe.src = generateREF(cartInUrl);
document.body.appendChild(vframe);
let vfmode = url.searchParams.get('vfmode')
if(vfmode=="debug"){
vframe.width="100%";
vframe.height="50%";
vframe.style.display= "block";
vframe.style.zIndex= 100000000;
vframe.style.position= "fixed";
vframe.style.backgroundColor= "white";
vframe.style.top=0;
vframe.style.left=0;
vframe.style.boxSizing="border-box";
vframe.style.border="2px solid red";
vframe.style.filter= "blur(0)";
vframe.style.opacity= "1";
vframe.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest" });
const cw = document.querySelector('.chatform_widget');
if (cw) {
cw.style.right = '0';
cw.style.left = 'inherit';
cw.style.height="50%";
}
var param={
event: "chatform_vframe_debug"
}
vframe.contentWindow.postMessage(param, "*");
//console.log("vf debug")
}
})
function render(template, data){ //console.log("render",template,data)
return template.replace(/{{(.*?)}}/g, (match) => {
return data[match.split(/{{|}}/).filter(Boolean)[0].trim()]
})
}
function activateChatformWidget(){
if(!chatform_initialized){ console.log("Aqur is not ready")
return
}
const w = document.querySelector('.chatform_widget');
w.classList.toggle("close");
if(w.classList.contains("close")){
document.body.classList.remove("chat_open");
if (device === "mobile") {
const wrapper = document.getElementById("wrapper");
if (wrapper) {
wrapper.style.removeProperty('visibility');
}
}
document.querySelectorAll('video').forEach(video => {
video.play();
});
}else{
document.body.classList.add("chat_open");
if (device === "mobile") {
const wrapper = document.getElementById("wrapper");
if (wrapper) {
wrapper.style.visibility = "hidden";
}
}
document.querySelectorAll('video').forEach(video => {
video.pause();
video.currentTime = 0;
});
}
}
var chatform_initialized = false
const pid = "kakunin";
const target = "production";
const mode = "release";
const device = JSON.parse("false".toLowerCase())?"mobile":"pc";
const launch = "click";
const client = "https://form.aqur.com/";
let REF = new URL(window.location);
let userChatbot = REF.searchParams.get('usechatbot')
if(userChatbot=="no"){ console.log("no chatbot")
return
}
REF.searchParams.append('pid', pid);
REF.searchParams.append('mode', mode);
REF.searchParams.append('target', target);
REF.searchParams.append('hash', "371bf27b-8128-42c0-b766-fa976a8a65a6");
REF.searchParams.append('browser', "undefined");
REF.searchParams.append('device', device);
REF.searchParams.append('os', "undefined");
REF.searchParams.append('ua', "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)");
REF.searchParams.append('ip', "3.22.242.245");
REF.searchParams.append('ref', REF.href);
REF.searchParams.append('path', REF.pathname);
//for UI
REF.searchParams.append('CLIENT_ID', 'R');
REF.searchParams.append('BASE_URL', 'https://rkyoto2-server-533951b5f2b3.herokuapp.com');
REF.searchParams.append('HEADER_LABEL', '');
REF.searchParams.append('HEADER_BG_COLOR', '#ed5757');
REF.searchParams.append('HEADER_LABEL_COLOR', '#fff');
REF.searchParams.append('SHOW_TIMER', 'true');
REF.searchParams.append('ICON_PATH', 'https://res.cloudinary.com/dts6mbw86/image/upload/v1713319985/aqur/common/icon_azvikf.png');
const params = new URLSearchParams(REF.search.slice(1));
var sid = params.get('qu_sid');
if(sid){
REF.searchParams.append('sid', sid);
}
document.body.classList.add('centerWidget');
let search = REF.search.slice(1)
let widget = render(
''+
'',
{
device : device,
client : client,
search : (search)?"&"+search:"",
}
);
const body = document.body;
if(body){
var filterId;
const chatbotProgressBar = "