autocomplete.js
3 months ago
submit-ticket.js
3 months ago
support.css
3 months ago
support.js
3 months ago
submit-ticket.js
124 lines
| 1 | import { createToast } from '@advancedAds/utils'; |
| 2 | import { FileUploader } from '../partials/file-uploader'; |
| 3 | |
| 4 | /** |
| 5 | * Helper to convert Base64 string from the library into a File Blob |
| 6 | * |
| 7 | * @param {string} dataUrl attachment url. |
| 8 | */ |
| 9 | function base64ToBlob( dataUrl ) { |
| 10 | const [ header, base64 ] = dataUrl.split( ',' ); |
| 11 | const mime = header.match( /:(.*?);/ )[ 1 ]; |
| 12 | const binary = atob( base64 ); |
| 13 | const array = []; |
| 14 | for ( let i = 0; i < binary.length; i++ ) { |
| 15 | array.push( binary.charCodeAt( i ) ); |
| 16 | } |
| 17 | return new Blob( [ new Uint8Array( array ) ], { type: mime } ); |
| 18 | } |
| 19 | |
| 20 | function submitFormToAPI( form, uploader ) { |
| 21 | const formData = new FormData( form ); |
| 22 | const data = Object.fromEntries( formData ); |
| 23 | |
| 24 | const selectedFiles = uploader.selectedFiles || []; |
| 25 | const hasFiles = selectedFiles.length > 0; |
| 26 | |
| 27 | let submitBody; |
| 28 | const headers = {}; |
| 29 | |
| 30 | // Cosmetics |
| 31 | const button = form.querySelector( 'button[type="submit"]' ); |
| 32 | button.classList.add( 'submitting' ); |
| 33 | |
| 34 | // Use multipart/form-data for file upload |
| 35 | if ( hasFiles ) { |
| 36 | const submitFormData = new FormData(); |
| 37 | for ( const [ key, value ] of Object.entries( data ) ) { |
| 38 | submitFormData.append( key, value ); |
| 39 | } |
| 40 | |
| 41 | // Append all files |
| 42 | selectedFiles.forEach( ( fileObj ) => { |
| 43 | const blob = base64ToBlob( fileObj.fileimage ); |
| 44 | submitFormData.append( 'attachments[]', blob, fileObj.filename ); |
| 45 | } ); |
| 46 | submitBody = submitFormData; |
| 47 | // Do NOT set content-type, browser will set it with multipart boundary |
| 48 | } else { |
| 49 | // No files, send as JSON |
| 50 | submitBody = JSON.stringify( data ); |
| 51 | headers[ 'Content-Type' ] = 'application/json'; |
| 52 | } |
| 53 | |
| 54 | fetch( 'https://wpadvancedads.com/wp-json/advanced-ads/v1/create-ticket', { |
| 55 | method: 'POST', |
| 56 | body: submitBody, |
| 57 | headers, |
| 58 | } ) |
| 59 | .then( ( response ) => { |
| 60 | if ( response.ok ) { |
| 61 | uploader.reset(); |
| 62 | form.querySelector( '.advads-dialog-button-close' ).click(); |
| 63 | createToast( { |
| 64 | type: 'muted', |
| 65 | iconType: 'success', |
| 66 | title: 'Ticket submitted', |
| 67 | message: 'Your ticket has been submitted successfully', |
| 68 | } ); |
| 69 | } else { |
| 70 | throw new Error( 'Failed to submit form' ); |
| 71 | } |
| 72 | } ) |
| 73 | .catch( ( error ) => { |
| 74 | // Ideally replace this with user feedback instead of console.error in production |
| 75 | // eslint-disable-next-line no-console |
| 76 | createToast( { |
| 77 | type: 'error', |
| 78 | title: 'Failed to submit form', |
| 79 | message: error.message, |
| 80 | inDialog: true, |
| 81 | } ); |
| 82 | } ) |
| 83 | .finally( () => { |
| 84 | button.classList.remove( 'submitting' ); |
| 85 | } ); |
| 86 | } |
| 87 | |
| 88 | export function ticketForm() { |
| 89 | const form = document.querySelector( '.advads-dialog-create-ticket form' ); |
| 90 | const uploader = new FileUploader( |
| 91 | document.getElementById( 'attachments-container' ), |
| 92 | document.getElementById( 'attachments' ) |
| 93 | ); |
| 94 | |
| 95 | form.addEventListener( 'submit', function ( e ) { |
| 96 | e.preventDefault(); |
| 97 | |
| 98 | const fields = this.querySelectorAll( '.advads-field' ); |
| 99 | let isValid = true; |
| 100 | |
| 101 | fields.forEach( ( field ) => { |
| 102 | const input = field.querySelector( 'input, select, textarea' ); |
| 103 | if ( input && ! input.checkValidity() ) { |
| 104 | field.classList.add( 'invalid' ); |
| 105 | isValid = false; |
| 106 | } else { |
| 107 | field.classList.remove( 'invalid' ); |
| 108 | } |
| 109 | } ); |
| 110 | |
| 111 | if ( ! isValid ) { |
| 112 | return; |
| 113 | } |
| 114 | |
| 115 | submitFormToAPI( form, uploader ); |
| 116 | } ); |
| 117 | |
| 118 | form.querySelectorAll( 'input, select, textarea' ).forEach( ( field ) => { |
| 119 | field.addEventListener( 'input', function () { |
| 120 | field.closest( '.advads-field' ).classList.remove( 'invalid' ); |
| 121 | } ); |
| 122 | } ); |
| 123 | } |
| 124 |