zz-shopify-components 0.6.0 → 0.6.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -107,15 +107,25 @@
107
107
  all: unset;
108
108
  cursor: pointer;
109
109
  position: absolute;
110
- top: 8px;
111
- right: 8px;
110
+ top: 20px;
111
+ right: 20px;
112
112
  width: 32px;
113
113
  height: 32px;
114
114
  border-radius: 9999px;
115
115
  display: grid;
116
116
  place-items: center;
117
117
  }
118
- .close-btn:focus-visible { outline: 2px solid #3b82f6; outline-offset: 2px; }
118
+ .close-btn-white {
119
+ color: white;
120
+ background-color: rgba(0,0,0,0.08);
121
+ backdrop-filter: blur(10px);
122
+ }
123
+ .close-btn-black {
124
+ color: white;
125
+ background-color: #333333;
126
+ /* backdrop-filter: blur(10px); */
127
+ }
128
+ .close-btn:focus-visible { outline: none; }
119
129
  `;
120
130
 
121
131
  const TEMPLATE = document.createElement('template');
@@ -151,6 +161,11 @@
151
161
  style.textContent = STYLE_TEXT;
152
162
  shadow.appendChild(style);
153
163
  shadow.appendChild(TEMPLATE.content.cloneNode(true));
164
+ const closeBtnColor = this.getAttribute('close-btn-color');
165
+ if (closeBtnColor) {
166
+ const closeBtn = shadow.querySelector('.close-btn');
167
+ closeBtn.classList.add(closeBtnColor);
168
+ }
154
169
 
155
170
  this._dialog = shadow.querySelector('dialog');
156
171
  this._panel = shadow.querySelector('.panel-inner');
@@ -100,17 +100,6 @@
100
100
  "default": "#000000",
101
101
  "label": "标题颜色"
102
102
  },
103
- {
104
- "type": "richtext",
105
- "id": "slide_content",
106
- "label": "内容"
107
- },
108
- {
109
- "type": "color",
110
- "id": "slide_content_color",
111
- "default": "#170B01",
112
- "label": "内容颜色"
113
- },
114
103
  {
115
104
  "type": "text",
116
105
  "id": "btn_text",
@@ -320,7 +320,13 @@
320
320
  isValid = false;
321
321
  } else {
322
322
  fileInput.classList.remove('error');
323
+ if(!identityDocumentUrl) {
324
+ // 文件还在上传中,请等待文件上传成功
325
+ zzShowToast('File is still uploading, please wait for the file to be uploaded successfully')
326
+ return
327
+ }
323
328
  }
329
+
324
330
  }
325
331
 
326
332
 
@@ -456,7 +462,8 @@
456
462
  // 显示文件预览
457
463
  showFilePreview(file);
458
464
  const fileName = await getFileMD5Name(file);
459
- console.log('fileName', fileName)
465
+ const fileUploadLoading = block.querySelector('.zz-edu-form-file-upload-loading')
466
+ fileUploadLoading.classList.remove('tw-hidden')
460
467
 
461
468
  httpRequest
462
469
  .get(
@@ -477,26 +484,31 @@
477
484
  stsToken: data.SecurityToken,
478
485
  });
479
486
  const result = await client.put(fileName || file.name, file);
480
- console.log('result---------', result)
487
+ console.log('upload result---------', result)
481
488
  if(result.url) {
482
489
  identityDocumentUrl = result.url
490
+ fileUploadLoading.classList.add('tw-hidden')
483
491
  } else {
484
492
  removeEduVerifyFile()
493
+ fileUploadLoading.classList.add('tw-hidden')
485
494
  zzShowToast('File upload failed, please try again.')
486
495
  }
487
496
 
488
497
  } catch (error) {
489
498
  removeEduVerifyFile()
499
+ fileUploadLoading.classList.add('tw-hidden')
490
500
  zzShowToast('File upload failed, please try again.')
491
501
  }
492
502
 
493
503
  } else {
494
504
  removeEduVerifyFile()
505
+ fileUploadLoading.classList.add('tw-hidden')
495
506
  zzShowToast('File upload failed, please try again.')
496
507
  }
497
508
 
498
509
  }).catch((err) => {
499
510
  zzShowToast(EduErrorCodeConf[500].en)
511
+ fileUploadLoading.classList.add('tw-hidden')
500
512
  removeEduVerifyFile()
501
513
  });
502
514
  }
@@ -534,6 +546,7 @@
534
546
  <span class="zz-edu-form-file-name">${fileName}</span>
535
547
  <span class="zz-edu-form-file-size">${fileSize} MB</span>
536
548
  </div>
549
+ <span class='zz-edu-form-file-upload-loading tw-hidden tw-daisy-loading tw-daisy-loading-spinner ' ></span>
537
550
  <div class="zz-edu-form-file-remove-btn" onclick="removeEduVerifyFile{{ block.id }}()">
538
551
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
539
552
  <circle cx="12" cy="12" r="12" fill="#DD3B46"/>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zz-shopify-components",
3
- "version": "0.6.0",
3
+ "version": "0.6.1-beta.0",
4
4
  "description": "Reusable Shopify components for theme projects",
5
5
  "keywords": [
6
6
  "shopify",
@@ -15,7 +15,7 @@
15
15
  }
16
16
  </style>
17
17
 
18
- <zz-modal {% if section.settings.sheet_on_mobile %} sheet-on-mobile {% endif %} {% if section.settings.no_backdrop_close %} no-backdrop-close {% endif %} id="{{ section.settings.modal_id }}"{% unless section.settings.show_header %} no-header{% endunless %}{% unless section.settings.show_footer %} no-footer{% endunless %}>
18
+ <zz-modal close-btn-color="close-btn-{{ section.settings.close_btn_color }}" {% if section.settings.sheet_on_mobile %} sheet-on-mobile {% endif %} {% if section.settings.no_backdrop_close %} no-backdrop-close {% endif %} id="{{ section.settings.modal_id }}"{% unless section.settings.show_header %} no-header{% endunless %}{% unless section.settings.show_footer %} no-footer{% endunless %}>
19
19
  {% if section.settings.show_header %}
20
20
  <div slot="header" class="tw-text-[24px] tw-font-semibold">{{ section.settings.header_text }}</div>
21
21
  {% endif %}
@@ -49,6 +49,16 @@
49
49
  "id": "modal_id",
50
50
  "label": "弹窗id (必填)",
51
51
  "default": "demo-modal"
52
+ },
53
+ {
54
+ "type": "select",
55
+ "id": "close_btn_color",
56
+ "label": "关闭按钮颜色",
57
+ "default": "white",
58
+ "options": [
59
+ { "value": "white", "label": "白色" },
60
+ { "value": "black", "label": "黑色" }
61
+ ],
52
62
  },
53
63
  {
54
64
  "type": "checkbox",