-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
134 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import toastr from 'toastr'; | ||
|
||
$(() => { | ||
async function getShortlink(url) { | ||
const response = await fetch(window.Hasgeek.Config.shorturlApi, { | ||
method: 'POST', | ||
headers: { | ||
Accept: 'application/json', | ||
'Content-Type': 'application/x-www-form-urlencoded', | ||
}, | ||
body: new URLSearchParams({ | ||
url, | ||
}).toString(), | ||
}).catch(() => { | ||
toastr.error(window.Hasgeek.Config.errorMsg.serverError); | ||
}); | ||
if (response.ok) { | ||
const responseData = await response.json(); | ||
$('.js-generated-url').text(responseData.shortlink); | ||
toastr.success(window.gettext('Shortlink generated')); | ||
} else { | ||
toastr.error(window.gettext('This URL is not valid for a shortlink')); | ||
} | ||
} | ||
|
||
$('.js-copy-shortlink').on('click', function clickCopyLink(event) { | ||
event.preventDefault(); | ||
const url = $('.js-generated-url').text(); | ||
if (navigator.clipboard) { | ||
navigator.clipboard.writeText(url).then( | ||
() => toastr.success(window.gettext('Link copied')), | ||
() => toastr.success(window.gettext('Could not copy link')) | ||
); | ||
} else { | ||
const selection = window.getSelection(); | ||
const range = document.createRange(); | ||
range.selectNodeContents(url[0]); | ||
selection.removeAllRanges(); | ||
selection.addRange(range); | ||
if (document.execCommand('copy')) { | ||
toastr.success(window.gettext('Link copied')); | ||
} else { | ||
toastr.error(window.gettext('Could not copy link')); | ||
} | ||
selection.removeAllRanges(); | ||
} | ||
}); | ||
|
||
$('#js-generate-shortlink').on('submit', (event) => { | ||
event.preventDefault(); | ||
const url = $('.js-campaign-url').val(); | ||
const id = $('.js-campaign-id').val(); | ||
const source = $('.js-campaign-source').val(); | ||
const medium = $('.js-campaign-medium').val(); | ||
const name = $('.js-campaign-name').val(); | ||
const term = $('.js-campaign-term').val(); | ||
const content = $('.js-campaign-content').val(); | ||
const campaignUrl = new URL(url); | ||
|
||
if (source) campaignUrl.searchParams.set('utm_source', source); | ||
if (medium) campaignUrl.searchParams.set('utm_medium', medium); | ||
if (name) campaignUrl.searchParams.set('utm_campaign', name); | ||
if (id) campaignUrl.searchParams.set('utm_id', id); | ||
if (term) campaignUrl.searchParams.set('utm_term', term); | ||
if (content) campaignUrl.searchParams.set('utm_content', content); | ||
getShortlink(campaignUrl.href); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters