script_profile.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. const btnLoginPage = document.querySelector('.btn-login');
  2. const btnUserProfile = document.querySelector('.btn-userProfile');
  3. const btnLogout = document.querySelector('.btn-logout');
  4. let lan = localStorage.getItem('lan');
  5. let defaultLength = 5;
  6. let historyData;
  7. function getCookie(name) {
  8. const value = `; ${document.cookie}`;
  9. const parts = value.split(`; ${name}=`);
  10. if (parts.length === 2) return parts.pop().split(';').shift();
  11. }
  12. let userBasics = JSON.parse(localStorage.getItem('user_profile')) || [];
  13. let inviteCode;
  14. function checkLocal() {
  15. if(userBasics.length == 0){ return };
  16. //userBasics = JSON.parse(userBasics);
  17. if(userBasics !== [] && typeof(userBasics) !== 'string') {
  18. console.log(typeof(userBasics));
  19. $('.userName').html(`<h2 class="user-name text-white mt-4 fw-bold">Hi ${userBasics.user_info.userName}</h2>`);
  20. }
  21. }
  22. $('.dropdown-toggle').click(() => {
  23. lan = localStorage.getItem('lan');
  24. checkLan();
  25. });
  26. checkLocal();
  27. function checkLan() {
  28. if(lan == 'en') {
  29. $('.btn-makev').css('display', 'none');
  30. $('.btn-makelong').css('display', 'none');
  31. } else {
  32. $('.btn-makev').css('display', 'block');
  33. $('.btn-makelong').css('display', 'block');
  34. }
  35. }
  36. checkLan();
  37. function renderView() {
  38. let token = getCookie('jwt_token');
  39. if(!token) {
  40. window.location.replace("login.html");
  41. }
  42. // JsLoadingOverlay.show({
  43. // "overlayBackgroundColor": "#666666",
  44. // "overlayOpacity": 0.9,
  45. // "spinnerIcon": "ball-circus",
  46. // "spinnerColor": "#000",
  47. // "spinnerSize": "3x",
  48. // "overlayIDName": "overlay",
  49. // "spinnerIDName": "spinner",
  50. // "offsetX": 0,
  51. // "offsetY": 0,
  52. // "containerID": null,
  53. // "lockScroll": false,
  54. // "overlayZIndex": 99,
  55. // "spinnerZIndex": 100
  56. // });
  57. axios({
  58. method: 'post',
  59. url: 'https://www.choozmo.com:8887/user_profile',
  60. headers: {
  61. 'accept': 'text/html',
  62. 'Authorization': `Bearer ${token}`
  63. }
  64. }).then(res => {
  65. console.log(res.data);
  66. let userInfo = res.data;
  67. // if(!userInfo.user_info) {
  68. // window.location.replace("login.html");
  69. // }
  70. localStorage.setItem('user_profile', JSON.stringify(res.data));
  71. if(userInfo.user_info.left_sec < 20){
  72. let title = "剩餘秒數不足";
  73. let text = '您的影片額度即將不足,加值以持續使用';
  74. let confirmButtonText = '加值';
  75. if (lan == 'en') {
  76. title = "Insufficient seconds left!";
  77. text = 'Your seconds left is less than 20 seconds, refill to continue making videos.';
  78. confirmButtonText = 'Refill';
  79. }
  80. Swal.fire({
  81. title,
  82. text,
  83. icon: 'warning',
  84. showCancelButton: true,
  85. cancelButtonText: 'Cancel',
  86. confirmButtonColor: '#3085d6',
  87. confirmButtonText
  88. }).then(result => {
  89. if (result.isConfirmed) {
  90. window.open('pricing.html');
  91. }
  92. });
  93. }
  94. $('.share-fb').attr('href', `https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fvideo.choozmo.com/invite.html?code=${userInfo.user_info.invite_code}`);
  95. $('.share-twitter').attr('href',
  96. `https://twitter.com/intent/tweet?text=I%20just%20created%20a%20video%20in%205%20minutes.%20Check%20it%20out%20%F0%9F%91%89%20https%3A%2F%2Fvideo.choozmo.com/invite.html?code=${userInfo.user_info.invite_code}&related=ai_cmm`)
  97. inviteCode = userInfo.user_info.invite_code;
  98. invitelink=`https://video.choozmo.com/invite.html?code=${userInfo.user_info.invite_code}`
  99. $('.invite-link').val(invitelink)
  100. const str = `<img src="static/img/undraw_male_avatar_323b.svg" alt="">
  101. <p class="card-profile-txt">User Profile</p>
  102. <p class="card-profile-cnt">${userInfo.user_info.userName}</p>
  103. <p class="card-profile-cnt">${userInfo.user_info.email}</p>
  104. <div class="d-flex justify-content-around">
  105. <div>
  106. <p set-lan="html:used">已使用</p>
  107. <p><strong>${userInfo.user_info.total_sec}</strong><span set-lan="html:sec">秒</span></p>
  108. </div>
  109. <div>
  110. <p set-lan="html:left">未使用</p>
  111. <p><strong>${userInfo.user_info.left_sec}</strong><span set-lan="html:sec">秒</span></p>
  112. </div>
  113. </div>`;
  114. let totalSec = (userInfo.user_info.total_sec == "None") ? 0 : userInfo.user_info.total_sec;
  115. let leftSec = (userInfo.user_info.left_sec == null)? 0 : userInfo.user_info.left_sec;
  116. // 使用者名稱
  117. let userName = `<h2 class="user-name text-white mt-lg-3 mt-xl-1 fw-bold">Hi ${userInfo.user_info.userName}</h2>`;
  118. // 已使用
  119. let usedtime=`<h1 class="text-center">${totalSec}&ensp;<span style="font-size:15px;" set-lan="html:sec">秒</span></h1>`;
  120. if(lang == 'en') {
  121. usedtime=`<h1 class="text-center">${totalSec}&ensp;<span style="font-size:15px;" set-lan="html:sec">Sec</span></h1>`;
  122. }
  123. // 未使用
  124. let NotUsedTime=`<h1 class="text-center">${leftSec}&ensp;<span style="font-size:15px;" set-lan="html:sec">秒</span></h1>`;
  125. if(lang == 'en') {
  126. NotUsedTime=`<h1 class="text-center">${leftSec}&ensp;<span style="font-size:15px;" set-lan="html:sec">Sec</span></h1>`;
  127. }
  128. // user資訊
  129. let infContent=`
  130. <div class="inf-content">
  131. <p>${userInfo.user_info.userName}</p>
  132. <p>************&nbsp;<a href="./reset_pwd_email.html" set-lan="html:resetPsd">更改密碼</a></p>
  133. <p>${userInfo.user_info.email}</p>
  134. </div>`;
  135. if(lang == 'en') {
  136. infContent=`
  137. <div class="inf-content">
  138. <p>${userInfo.user_info.userName}</p>
  139. <p>***************&nbsp;<a href="./reset_pwd_email.html" set-lan="html:resetPsd">Reset Password</a></p>
  140. <p>${userInfo.user_info.email}</p>
  141. </div>`;
  142. }
  143. // 歷史紀錄
  144. // const historicalrecord
  145. historyData = {...userInfo};
  146. var historicalrecord='';
  147. var length = userInfo.video_info.length > defaultLength ? defaultLength : userInfo.video_info.length;
  148. for (var i = 0; i < length; i++) {
  149. let formatted = userInfo.video_info[i].time_stamp;
  150. if (lan == 'zh') {
  151. const timeStamp = userInfo.video_info[i].time_stamp;
  152. const year = timeStamp.split(',')[0].split('/')[2];
  153. const arr = timeStamp.split(',')[0].split('/');
  154. arr.pop();
  155. arr.unshift(year);
  156. const fomatDate = [arr.join('/')];
  157. formatted = fomatDate.concat(timeStamp.split(',')[1]).join('');
  158. }
  159. historicalrecord+='\
  160. <tr>\
  161. <td class="px-0">'+formatted+'</td>\
  162. <td class="px-0">'+userInfo.video_info[i].title+'</td>\
  163. <td class="px-0 w-25">'+userInfo.video_info[i].duration+'</td>\
  164. </tr>`\
  165. ';
  166. }
  167. $('.historical-content').html(historicalrecord);
  168. $('.userinf').html(infContent);
  169. $('.userName').html(userName);
  170. $('.used-time').html(usedtime);
  171. $('.not-used-time').html(NotUsedTime);
  172. $('.card-profile').html(str);
  173. $('.card-profile').html(str);
  174. JsLoadingOverlay.hide();
  175. }).catch(err => {
  176. JsLoadingOverlay.hide();
  177. console.log(err);
  178. //window.location.replace("login.html");
  179. })
  180. }
  181. renderView();
  182. function getDraft() {
  183. JsLoadingOverlay.show({
  184. "overlayBackgroundColor": "#FFFFFF",
  185. "overlayOpacity": "1",
  186. "spinnerIcon": "ball-circus",
  187. "spinnerColor": "#B9DDF3",
  188. "spinnerSize": "1x",
  189. "overlayIDName": "overlay",
  190. "spinnerIDName": "spinner",
  191. "offsetX": 0,
  192. "offsetY": 0,
  193. "containerID": "draft-table",
  194. "lockScroll": false,
  195. "overlayZIndex": 9998,
  196. "spinnerZIndex": 9999
  197. });
  198. let token = getCookie('jwt_token');
  199. axios({
  200. method: 'post',
  201. url: 'https://www.choozmo.com:8887/draft_list',
  202. headers: {
  203. 'accept': 'application/json',
  204. 'Authorization': `Bearer ${token}`
  205. }
  206. }).then(res => {
  207. console.log(res.data);
  208. let result = [...res.data];
  209. let str = '';
  210. let draftStr = '';
  211. if(result.length > 0){
  212. for(let i = 0;i < result.length; i++) {
  213. draftStr += `<tr>
  214. <td>${result[i].title}</td>
  215. <td>
  216. <span class="me-md-3 draft-content-icon" id="${result[i].id}" onclick="gotoDraft(${result[i].id})">
  217. <i class="fas fa-edit"></i>
  218. </span>
  219. <span class="ms-md-3 draft-content-icon draft-content-delete" id="${result[i].id}" onclick="deleteDraft(${result[i].id})">
  220. <i class="fas fa-trash-alt"></i>
  221. </span>
  222. </td>
  223. </tr>`
  224. }
  225. let titleTxt = '標題';
  226. let editTxt = '編輯';
  227. let nodraftTxt = '目前沒有草稿喔';
  228. if(lan == 'en') {
  229. titleTxt = 'Video Title';
  230. editTxt = 'Edit';
  231. nodraftTxt = 'no_draft';
  232. }
  233. str = `<table class="table text-center">
  234. <thead>
  235. <tr>
  236. <th scope="col" set-lan="html:video_title">${titleTxt}</th>
  237. <th class="px-0" scope="col" set-lan="html:draft_edit">${editTxt}</th>
  238. </tr>
  239. </thead>
  240. <tbody class="draft-content">${draftStr}</tbody>
  241. </table>`
  242. $('.draft-table .card').html(str);
  243. JsLoadingOverlay.hide();
  244. } else {
  245. str = `<div>
  246. <h5 set-lan="html:no_draft">${nodraftTxt}</h5>
  247. <img src="static/img/undraw_void_3ggu.svg" width="80">
  248. </div>`;
  249. $('.draft-table .card').html(str);
  250. JsLoadingOverlay.hide();
  251. }
  252. }).catch(err => {
  253. console.log(err);
  254. });
  255. }
  256. getDraft();
  257. function checkLogin() {
  258. let token = getCookie('jwt_token');
  259. if(token) {
  260. btnLoginPage.style.display = 'none';
  261. btnLogout.style.display = 'block';
  262. btnUserProfile.style.display = 'block';
  263. } else {
  264. window.location.href = 'login.html';
  265. btnLoginPage.style.display = 'block';
  266. btnLogout.style.display = 'none';
  267. btnUserProfile.style.display = 'none';
  268. }
  269. }
  270. checkLogin();
  271. $(".historical-record").hide();
  272. $( ".check-history" ).click(function() {
  273. $(".historical-record").slideToggle(150);
  274. $(".arrowdown").toggleClass("arrowdoup");
  275. });
  276. $('.draft-table').hide();
  277. $('.draft .arrowdown').click(function() {
  278. $(".draft-table").slideToggle(150);
  279. $(".draft .arrowdown").toggleClass("arrowdoup");
  280. });
  281. var loaded_data = ''
  282. function openNav() {
  283. document.getElementById("mySidenav").style.width = "250px";
  284. document.querySelector('.loader').style.display = "block";
  285. let token = getCookie('jwt_token');
  286. axios({
  287. method: 'post',
  288. url: 'https://www.choozmo.com:8887/history_input',
  289. headers: {
  290. 'accept': 'application/json',
  291. 'Authorization': `Bearer ${token}`
  292. }
  293. }).then(res => {
  294. console.log(res.data);
  295. loaded_data = res.data;
  296. var historyList = document.querySelector('.historyList');
  297. historyList.innerHTML = '';
  298. for (var obj of loaded_data) {
  299. var list = document.createElement('li');
  300. list.id = obj.id;
  301. // div-imgfr
  302. var divImgfr = document.createElement('div');
  303. divImgfr.classList.add('item_imgfr');
  304. var img = document.createElement('img');
  305. img.setAttribute('src', obj['image_urls'][0]);
  306. divImgfr.appendChild(img);
  307. // div-content
  308. var contentBox = document.createElement('div');
  309. contentBox.classList.add('content-box');
  310. var boxTitle = document.createElement('p');
  311. boxTitle.classList.add('box-title');
  312. boxTitle.textContent = obj.name;
  313. boxTitle.id = obj.id;
  314. boxTitle.setAttribute('onclick', `direct(${obj.id})`);
  315. var boxLink = document.createElement('span');
  316. boxLink.classList.add('box-link');
  317. boxLink.setAttribute("data-url", obj.link);
  318. boxLink.setAttribute('onclick', 'view()');
  319. boxLink.innerHTML = '<i class="fas fa-play-circle me-1"></i>觀看影片';
  320. contentBox.appendChild(boxTitle);
  321. contentBox.appendChild(boxLink);
  322. list.classList.add("historyList-item");
  323. list.setAttribute('onclick', `direct(${obj.id})`);
  324. list.appendChild(divImgfr);
  325. list.appendChild(contentBox);
  326. historyList.appendChild(list);
  327. }
  328. document.querySelector('.loader').style.display = "none";
  329. }).catch(err => {
  330. console.log(err);
  331. });
  332. }
  333. function direct(id) {
  334. location.href = `make_video2.html?id=${id}`;
  335. }
  336. function view() {
  337. event.stopPropagation();
  338. console.log(event.target);
  339. if (event.target.nodeName === 'I') {
  340. return;
  341. } else {
  342. window.open(`http://${event.target.dataset.url}`, '_blank');
  343. }
  344. }
  345. function gotoDraft (id) {
  346. location.href = `make_video2.html?draftid=${id}`;
  347. }
  348. function deleteDraft(id) {
  349. let token = getCookie('jwt_token');
  350. JsLoadingOverlay.show({
  351. "overlayBackgroundColor": "#FFFFFF",
  352. "overlayOpacity": "1",
  353. "spinnerIcon": "ball-circus",
  354. "spinnerColor": "#B9DDF3",
  355. "spinnerSize": "1x",
  356. "overlayIDName": "overlay",
  357. "spinnerIDName": "spinner",
  358. "offsetX": 0,
  359. "offsetY": 0,
  360. "containerID": "draft-table",
  361. "lockScroll": false,
  362. "overlayZIndex": 9998,
  363. "spinnerZIndex": 9999
  364. });
  365. axios({
  366. method: 'post',
  367. url: 'https://www.choozmo.com:8887/del_draft',
  368. headers: {
  369. 'accept': 'application/json',
  370. 'Authorization': `Bearer ${token}`,
  371. 'Content-Type': 'application/json'
  372. },
  373. data: { "id": id }
  374. }).then(res => {
  375. console.log(res.data);
  376. //$('.draft-content-delete').html('<i class="fas fa-trash-alt"></i>');
  377. JsLoadingOverlay.hide();
  378. getDraft();
  379. }).catch(err => {
  380. console.log(err);
  381. });
  382. }
  383. $('.share-email').click(function() {
  384. var link = `mailto:me@example.com?subject=
  385. ${encodeURIComponent("Check out AI Spokesgirl")}
  386. &body=${encodeURIComponent(`I just created a video in 5 minutes, check out this amazing video making tool. https://video.choozmo.com/invite.html?code=${inviteCode}`)}`;
  387. window.location.href = link;
  388. });
  389. function trialStart() {
  390. let title = "歡迎使用AiSpokesgirl!將你的生活、創作 、宣傳做成影片。";
  391. let html = `<p>您有 <b> 2 </b> 分鐘影片製作額度。</p><br>
  392. <p>您可以使用:</p>
  393. <ul>
  394. <li>1. 短影片製作</li>
  395. <li>2. 個人歷史紀錄儲存</li>
  396. <li>3. 影片下載(Mp4)</li>
  397. </ul>
  398. <p>欲使用其他功能請升級為Premium方案</p>`;
  399. let confirmButtonText = '我知道了!';
  400. if (lan == 'en') {
  401. title = "Welcome to AiSpokesgirl! Make your first video for promotion, creation and life today!";
  402. html = `<p>You get<b>2</b>minutes of video</p><br>
  403. <p>Here are several features you can try,</p>
  404. <ul>
  405. <li>1. Short video creation</li>
  406. <li>2. Personal video history</li>
  407. <li>3. Downloadable format (MP4)</li>
  408. </ul>
  409. <p>Want to access more features? Follow the link below to upgrade to a paid plan today.</p>`;
  410. confirmButtonText = 'OK';
  411. }
  412. Swal.fire({
  413. title,
  414. html,
  415. icon: 'success',
  416. confirmButtonColor: '#3085d6',
  417. confirmButtonText
  418. });
  419. }
  420. function trialEnd() {
  421. let title = "您的試用即將結束!好的idea值得延續,透過影片將你的idea完整呈現。";
  422. let html = `<p>前往網站以升級為Premium方案,或是聯絡我們以洽詢細節。</p>`;
  423. let confirmButtonText = '立即升級';
  424. if (lan == 'en') {
  425. title = "Your trial is gonna over soon. Your idea worth spreading.";
  426. html = `<p>All good things don't have to come to an end.</p><br>
  427. <h5>Show your idea through video</h5><br>
  428. <p>Want to access more features? Follow the link below to upgrade
  429. to a paid plan today or contact us get further details.</p>`;
  430. confirmButtonText = 'Upgrade Now';
  431. }
  432. Swal.fire({
  433. title,
  434. html,
  435. icon: 'success',
  436. confirmButtonColor: '#3085d6',
  437. confirmButtonText
  438. }).then(result => {
  439. if (result.isConfirmed) {
  440. location.href = "pricing.html";
  441. }
  442. });;
  443. }
  444. var screenWidth = screen.width;
  445. console.log(screenWidth)
  446. $( ".menu-bar" ).click(function() {
  447. $(".sidenav").show();
  448. });
  449. $( ".close-btn" ).click(function() {
  450. $(".sidenav").hide();
  451. });
  452. $("#lang-manu").hide();
  453. $( "#changeLanguage" ).click(function() {
  454. $("#lang-manu").slideToggle();
  455. $("#lang-arrow").toggleClass("arrowdoup");
  456. });
  457. function copyEvent(id) {
  458. var Url = document.getElementById("invite-link");
  459. Url.select();
  460. // window.getSelection().selectAllChildren(str);
  461. document.execCommand("Copy");
  462. toastr.options = {
  463. // 參數設定[註1]
  464. "closeButton": false, // 顯示關閉按鈕
  465. "debug": false, // 除錯
  466. "newestOnTop": false, // 最新一筆顯示在最上面
  467. "progressBar": false, // 顯示隱藏時間進度條
  468. "positionClass": "toast-top-center", // 位置的類別
  469. "preventDuplicates": false, // 隱藏重覆訊息
  470. "onclick": null, // 當點選提示訊息時,則執行此函式
  471. "showDuration": "300", // 顯示時間(單位: 毫秒)
  472. "hideDuration": "1000", // 隱藏時間(單位: 毫秒)
  473. "timeOut": "1000", // 當超過此設定時間時,則隱藏提示訊息(單位: 毫秒)
  474. "extendedTimeOut": "1000", // 當使用者觸碰到提示訊息時,離開後超過此設定時間則隱藏提示訊息(單位: 毫秒)
  475. "showEasing": "swing", // 顯示動畫時間曲線
  476. "hideEasing": "linear", // 隱藏動畫時間曲線
  477. "showMethod": "fadeIn", // 顯示動畫效果
  478. "hideMethod": "fadeOut" // 隱藏動畫效果
  479. }
  480. toastr.success("複製成功");
  481. }