We have a few โclientside chestnutsโ to use with our current Capital City Find Matching Country Report web application project today, those being โฆ
- Ajax functionality, kicked off by an โonclickโ event set of logic, allowing mobile platforms to also have a look in (the look in that they miss when the event logic is off the โonmouseoverโ event)
- iframe and its โฆ
- srcdoc attribute (โcontentโ alternative to src โurlโ attribute) โฆ along with, and crucially needing (because srcdoc ignores its own document.body onload goings on, that we need the โIframe Client Pre-Emptiveโ methods below to circumvent) the โฆ
- onload event opportunity of an iframe element (we group into โIframe Client Pre-Emptiveโ methods, here)
โฆ adding onto yesterdayโs Window SessionStorage Client Versus Server Canvas Tutorial.
Itโs not that involved with the Ajax work today, given that there are no cross-domain issues, though there are cross-protocol (SSL https: versus non-SSL http:) issues to be careful about. Those can be addressed because the web application is recalled to present its โCountry Reportโ and that is the opportunity to check on protocol navigation requirements.
Along the way, we also make this happen for the user on โฆ
- click/touching a table row โฆ it sets off new โtrโ (table row) element logic calling our (inhouse) Timezone and Wikipedia Place Information helper (HTML) via Ajax (so not leaving the webpage) โฆ and because of place name oddities we allow for โฆ
- โtdโ (table cell) element user amendments by setting their contenteditable attributes to โtrueโ (since fixed, but we found the Timezone Europe/Tirane pointing at Tirane in Albania used to be spelt โTiranaโ)
โฆ that latter methodology normally a technique we apply to โdivโ elements (so, there you are!)
Also used are โoverlayโ techniques, two of the โusual suspectsโ here coming into play, to present to the โAjax content to srcdoc iframe arrangementsโ โฆ
- position:absolute property (with associated top and left (px defined) properties)
- z-index
Yet again, see thechanged wls_vs_phphtmโs Capital
City Find Matching Country Report live run linkโs new โAjaxโ functionality.
Previous relevant Window SessionStorage Client Versus Server Canvas Tutorial is shown below.
Yesterdayโs Window SessionStorage Client Versus Server Share Tutorial dealt with ascii text clipboard copy assisted sharing options with our current Capital City Find Matching Country Report web application project. This suited both Email and SMS share options we coded for, but todayโs extension of functionality from โascii textโ data to โgraphical dataโ only suits Email sharing. The other caveat with our work is that no serverside (for us, PHP) help is allowed, so no PHP mail here.
What comes into play with a โgraphical dataโ clientside (only) sharing approach? It will not surprise many readers that, for us, it involves โฆ
- canvas element โฆ converting HTML table outerHTML โascii textโ data โฆ via โฆ
- canvas drawing methods โ[canvasContext].strokeRect()โ and โ[canvasContext].strokeText()โ via โ[cellElement].getBoundingClientRect()โ โฆ to convert that canvas element content via โฆ
- [canvasElement].toDataURL() โฆ to an โฆ
- img element nested in a div contenteditable=true element โฆ so as to hook in with todayโs very useful helper link, thanks โฆ use โฆ
-
function tabletoclipboard(canvas) { // thanks to https://stackoverflow.com/questions/27863617/is-it-possible-to-copy-a-canvas-image-to-the-clipboard
var img = document.createElement('img');
img.src = canvas.toDataURL();
var div = document.createElement('div');
div.contentEditable = true;
div.appendChild(img);
document.body.appendChild(div);
// do copy
SelectText(div);
document.execCommand('Copy');
document.body.removeChild(div);
}
function SelectText(element) { // thanks to https://stackoverflow.com/questions/27863617/is-it-possible-to-copy-a-canvas-image-to-the-clipboard
var doc = document;
if (doc.body.createTextRange) {
var range = document.body.createTextRange();
range.moveToElementText(element);
range.select();
} else if (window.getSelection) {
var selection = window.getSelection();
var range = document.createRange();
range.selectNodeContents(element);
selection.removeAllRanges();
selection.addRange(range);
}
} - to leave the userโs deviceโs clipboard containing a useful table (with linework) โฆ ready to โฆ
- paste into an email body section
โฆ sharing off to an emailee collaborator.
Again, see thechanged wls_vs_phphtmโs Capital
City Find Matching Country Report live run linkโs new โEmail Tableโ button functionality.
Previous relevant Window SessionStorage Client Versus Server Share Tutorial is shown below.
Yesterdayโs Window SessionStorage Client Versus Server Tutorial has been amended today for two new sharing and collaboration options, those being โฆ
- SMS
โฆ but you may well be familiar with the restrictions on email and SMS client (program) approaches to this, coming from HTML โaโ link โmailto:โ and โsms:โ href property prefixes respectively. Weโre going to need help with the 800 odd character (length) restrictions with the (resultant) web address (bar) URL, but what? How about working off the great advice of this wonderful link, thanks, to copy what weโd have assembled into an ascii text Report into the characters contained by the userโs deviceโs clipboard?
function copytoclipboard(str) { // thanks to https://hackernoon.com/copying-text-to-clipboard-with-javascript-df4d4988697f
var el = document.createElement('textarea');
el.value = str;
el.setAttribute('readonly', '');
el.style.position = 'absolute';
el.style.left = '-9999px';
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el);
}
An issue that springs up here using such clipboard ascii text content, whenever you get the Font choice given to you, pick a monospaced Font like Courier New or โFixed Widthโ.
See thechanged wls_vs_phphtmโs Capital
City Find Matching Country Report live run linkโs new sharing functionality.
Previous relevant Window SessionStorage Client Versus Server Tutorial is shown below.
Sometimes itโs the case at this blog that weโd like to introduce a new topic, but do not do so, because we cannot show any real world (or real application) use of that concept. So it has been, up until now, with the concept of (web browser) window (object) sessionStorage property. But yesterdayโs Window LocalStorage Client Versus Server Primer Tutorial represented an opportunity akin to when Haleyโs Comet gets at its closest to the Earth โฆ while you see a chance, take it โฆ chance because of that nuance whereby we were not trying to store data for any other purpose than passing data onto โฆ
- a known entity โฆ ie. same web application โฆ at โฆ
- a known time โฆ ie. immediately
โฆ two conditions that make the code design โmarginallyโ more ideal for the window object property concept of sessionStorage rather than localStorage, in that any โฆ
localStorage.removeItem([knownLocalStorageName]);
โฆ becomes superfluous as with sessionStorage data will disappear between web browser sessions, anyway.
We offer this new concept as a non-default option of a select (dropdown) element replacement to the h1 element hardcoding โlocalStorageโ with thechanged wls_vs_phphtm Capital
City Find Matching Country Report live run. The other nuance of difference with sessionStorage usage is that in the document.body onload event logic, we may as well (as part of other changes) pre-emptively look for, and if there, respond to, any found sessionStorage data points, even without the user having flagged it specifically โฆ
var datamode='localStorage';
function checkforreport() {
var divcont='';
var dcaps, dctys, idis;
if (getcapitals == 'localStorage') {
if (window.localStorage) {
getcapitals=decodeURIComponent(localStorage.getItem('wls_vs_php_capitals')).replace(/\+/g,' ');
localStorage.removeItem('wls_vs_php_capitals');
} else {
getcapitals='';
}
} else if (getcapitals == 'sessionStorage') {
document.getElementById('smode').value=getcapitals;
datamode=getcapitals;
if (window.sessionStorage) {
getcapitals=decodeURIComponent(sessionStorage.getItem('wls_vs_php_capitals')).replace(/\+/g,' ');
} else {
getcapitals='';
}
} else if (getcapitals == '' && window.sessionStorage) {
getcapitals=decodeURIComponent(('' + sessionStorage.getItem('wls_vs_php_capitals')).replace(/^null$/g,'')).replace(/\+/g,' ');
if (getcapitals != '') {
document.getElementById('smode').value='sessionStorage';
datamode='sessionStorage';
}
}
if (getcountries == 'localStorage') {
if (window.localStorage) {
getcountries=decodeURIComponent(localStorage.getItem('wls_vs_php_countries')).replace(/\+/g,' ');
if (getcapitals.replace('localStorage','') != '' && getcountries.replace('localStorage','') != '') { document.getElementById('myh1').innerHTML+=' <font size=1>... yes, it was needed</font>'; }
localStorage.removeItem('wls_vs_php_countries');
} else {
getcountries='';
}
} else if (getcountries == 'sessionStorage') {
if (window.sessionStorage) {
getcountries=decodeURIComponent(sessionStorage.getItem('wls_vs_php_countries')).replace(/\+/g,' ');
if (getcapitals.replace('sessionStorage','') != '' && getcountries.replace('sessionStorage','') != '') { document.getElementById('myh1').innerHTML+=' <font size=1>... yes, it was needed</font>'; }
} else {
getcountries='';
}
} else if (getcountries == '' && document.getElementById('smode').value == 'sessionStorage' && window.sessionStorage) {
getcountries=decodeURIComponent(('' + sessionStorage.getItem('wls_vs_php_countries')).replace(/^null$/g,'')).replace(/\+/g,' ');
if (getcountries != '') {
document.getElementById('smode').value='sessionStorage';
datamode='sessionStorage';
}
}
if (getcapitals != '' && getcountries != '') {
divcont='<table border=5 style="width:95%;vertical-align:top;background-color:white;"><tr style=background-color:#f0f0f0;"><th>Capital</th><th>Country</th></tr></table>';
dcaps=getcapitals.split('|');
dctys=getcountries.split('|');
for (idis=0; idis<dcaps.length; idis++) {
divcont=divcont.replace('</table>', '<tr><td>' + dcaps[idis] + '</td><td>' + dctys[idis] + '</td></tr></table>');
}
document.getElementById('dreport').innerHTML=divcont;
}
document.getElementById('smode').value=datamode;
}
Which beggars the question โWhat are the differences between sessionStorage and localStorage?โ A quick reading might surmise that โthe latter has an expiration dateโ. We leave you with an open ended Google search so that you may extend your readings on this.
Previous relevant Window LocalStorage Client Versus Server Primer Tutorial is shown below.
Even though we rave on a lot about serverside PHP and its $_POST method=POST (versus HTML/Javascript recipient via ? and & argument $_GET method=GET scenario) data length advantages as the recipient of an HTML form method=POST set of data that could be sizeable, weโve just realized that there is a client Javascript and window.localStorage methodology that may help alleviate the need to involve PHP (and any other serverside intervention) on occasions.
Hint: Yes, weโve raved on about this too?! Does the blog posting title give it away? Okay, yes, it should read โlocalStorageโ, but thought weโd gone past such juvenile finickiness since the Whac-A-Mole controversy of 1st December 2019 (or even The Great Tea Trolley Disaster of โ67, we daresay).
It can even use a โself-destructโ approach to the use of this โlocalStorageโ on having used it because โฆ
- the web application knows who is using it (localStorage) โฆ and on having accessed and read it โฆ
- the web application knows it (localStorage) is of no use to any other user (in this web applicationโs case, at least)
โฆ which is very pleasing for a Land Surveyor who likes to leave cow paddocks as theyโve seen them so to speak. Except itโs like having a ten tonne truck worth of data access in amongst the cow pats when having access to โlocalStorageโ (or PHP), rather than a little piddle of calf wee (wee Metcalfes know a thing or two about these things!) data access of ? and & HTML/Javascript URL arguments (or even if we were to use HTTP Cookies).
Itโs not as if we all have access to serverside language usage, though we do, because we really like PHP and MAMP and Apache/PHP/MySql web servers (and have arranged our development environment accordingly), but what if you are starting out in web development, and still want to allow for sizeable chunks of data with your web applications? Huh? Huh?! See the possibilities? Try our proof of concept CapitalCity Find Matching Country Report live run, and highlight a whole swathe of (multiple mode) dropdown option Capital Cities holding down the shift key before pressing the yellow โReportโ button. If the URL ends up as โฆ
https://rjmprogramming.com.au/HTMLCSS/wls_vs_php.html?capitals=localStorage&countries=localStorage
โฆ thatโs because the web applicationโs โฆ
function analyze() {
var purl=document.URL.split('#')[0].split('?')[0] + '?capitals=' + encodeURIComponent(document.getElementById('capitals').value) + '&countries=' + encodeURIComponent(document.getElementById('countries').value);
if (purl.length > 800) {
if (phpexists) {
document.getElementById('myform').method='POST';
document.getElementById('myform').action='./wls_vs_php.php';
} else if (window.localStorage) {
localStorage.setItem('wls_vs_php_countries', encodeURIComponent(document.getElementById('countries').value));
localStorage.setItem('wls_vs_php_capitals', encodeURIComponent(document.getElementById('capitals').value));
document.getElementById('capitals').value='localStorage';
document.getElementById('countries').value='localStorage';
location.href=document.URL.split('#')[0].split('?')[0] + '?capitals=' + encodeURIComponent(document.getElementById('capitals').value) + '&countries=' + encodeURIComponent(document.getElementById('countries').value);
return false;
}
}
return true;
}
โฆ HTML form onsubmit event logic โฆ
- discovered no PHP web application existant (via Client Pre-emptive Iframe techniques) โฆ and โฆ
- discovered (in a sanity check feeling way) that to go down the proposed HTML form method=GET approach was risking a โฆ
HTTP 414 "Request URI too long"
โฆ web browser error โฆ and that โฆ - localStorage was a known web browser piece of functionality
- back out of the default HTML form method=GET navigation setup of the web application in favour of โฆ
- storing that data into localStorage
- substituting into the URL ? and & arguments the hardcoding โlocalStorageโ (and in so doing, getting back under the HTTP 414 โRequest URI too longโ limitation, piecing together (what amounts to) โฆ
location.href=document.URL.split(โ#โ)[0].split(โ?โ)[0] + โ?capitals=localStorage&countries=localStorageโ;)
โฆ that on a recall to this same web application a โฆ - document.body onload event piece of Javascript logic checks the localStorage for its incoming Capital City Country Report data, as per โฆ
var phpexists=false;
var getcapitals=location.search.split('capitals=')[1] ? decodeURIComponent(location.search.split('capitals=')[1].split('&')[0]).replace(/\+/g,' ') : '';
var getcountries=location.search.split('countries=')[1] ? decodeURIComponent(location.search.split('countries=')[1].split('&')[0]).replace(/\+/g,' ') : '';
function checkforreport() {
var divcont='';
var dcaps, dctys, idis;
if (getcapitals == 'localStorage') {
if (window.localStorage) {
getcapitals=decodeURIComponent(localStorage.getItem('wls_vs_php_capitals')).replace(/\+/g,' ');
localStorage.removeItem('wls_vs_php_capitals');
} else {
getcapitals='';
}
}
if (getcountries == 'localStorage') {
if (window.localStorage) {
getcountries=decodeURIComponent(localStorage.getItem('wls_vs_php_countries')).replace(/\+/g,' ');
if (getcapitals.replace('localStorage','') != '' && getcountries.replace('localStorage','') != '') { document.getElementById('myh1').innerHTML+=' <font size=1>... yes, it was needed</font>'; }
localStorage.removeItem('wls_vs_php_countries');
} else {
getcountries='';
}
}
if (getcapitals != '' && getcountries != '') {
divcont='<table border=5 style="width:95%;vertical-align:top;background-color:white;"><tr style=background-color:#f0f0f0;"><th>Capital</th><th>Country</th></tr></table>';
dcaps=getcapitals.split('|');
dctys=getcountries.split('|');
for (idis=0; idis<dcaps.length; idis++) {
divcont=divcont.replace('</table>', '<tr><td>' + dcaps[idis] + '</td><td>' + dctys[idis] + '</td></tr></table>');
}
document.getElementById('dreport').innerHTML=divcont;
}
}
โฆ the localStorage.removeItem() representing that โself-destructโ nuance we were talking about before
โฆ and so as per our localStorage logic we โฆ
We may well use this methodology in future projects, and hope it has been of some little interest to you as well?!
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.