Merge pull request #53 from bakulf/fragment

Let's use a DocumentFragment instead innerHTML
This commit is contained in:
luke crouch 2017-01-09 15:49:17 -06:00 committed by GitHub
commit 16e04930dd

View file

@ -3,31 +3,37 @@ const CONTAINER_HIDE_SRC = '/img/container-hide.svg';
const CONTAINER_UNHIDE_SRC = '/img/container-unhide.svg'; const CONTAINER_UNHIDE_SRC = '/img/container-unhide.svg';
function showOrHideContainerTabs(userContextId, hasHiddenTabs) { function showOrHideContainerTabs(userContextId, hasHiddenTabs) {
return new Promise((resolve, reject) => { // Let's show/hide the tabs
const hideorshowIcon = document.querySelector(`#uci-${userContextId}-hideorshow-icon`); return browser.runtime.sendMessage({
method: hasHiddenTabs ? 'showTabs' : 'hideTabs',
browser.runtime.sendMessage({ userContextId: userContextId
method: hasHiddenTabs ? 'showTabs' : 'hideTabs', })
// We need to retrieve the new identity configuration in order to choose the
// correct icon.
.then(() => {
return browser.runtime.sendMessage({
method: 'getIdentity',
userContextId: userContextId userContextId: userContextId
}).then(() => { });
return browser.runtime.sendMessage({ })
method: 'getIdentity', // Let's update the icon.
userContextId: userContextId .then((identity) => {
}); let hideorshowIcon = document.querySelector(`#uci-${identity.userContextId}-hideorshow-icon`);
}).then((identity) => { if (!identity.hasHiddenTabs && !identity.hasOpenTabs) {
if (!identity.hasHiddenTabs && !identity.hasOpenTabs) { hideorshowIcon.style.display = "none";
hideorshowIcon.style.display = "none"; } else {
} else { hideorshowIcon.style.display = "";
hideorshowIcon.style.display = ""; }
}
hideorshowIcon.src = hasHiddenTabs ? CONTAINER_HIDE_SRC : CONTAINER_UNHIDE_SRC; hideorshowIcon.src = hasHiddenTabs ? CONTAINER_HIDE_SRC : CONTAINER_UNHIDE_SRC;
}).then(resolve);
// The new identity is returned.
return identity;
}); });
} }
if (localStorage.getItem('onboarded2')) { if (localStorage.getItem('onboarded2')) {
for (const element of document.querySelectorAll('.onboarding')) { for (let element of document.querySelectorAll('.onboarding')) {
element.classList.add('hide'); element.classList.add('hide');
} }
document.querySelector('#container-panel').classList.remove('hide'); document.querySelector('#container-panel').classList.remove('hide');
@ -39,32 +45,34 @@ if (localStorage.getItem('onboarded2')) {
document.querySelector('#container-panel').classList.add('hide'); document.querySelector('#container-panel').classList.add('hide');
} }
document.querySelector('#onboarding-next-button').addEventListener('click', ()=> { document.querySelector('#onboarding-next-button').addEventListener('click', () => {
localStorage.setItem('onboarded1', true); localStorage.setItem('onboarded1', true);
document.querySelector('.onboarding-panel-2').classList.remove('hide'); document.querySelector('.onboarding-panel-2').classList.remove('hide');
document.querySelector('.onboarding-panel-1').classList.add('hide'); document.querySelector('.onboarding-panel-1').classList.add('hide');
document.querySelector('#container-panel').classList.add('hide'); document.querySelector('#container-panel').classList.add('hide');
}); });
document.querySelector('#onboarding-done-button').addEventListener('click', ()=> { document.querySelector('#onboarding-done-button').addEventListener('click', () => {
localStorage.setItem('onboarded2', true); localStorage.setItem('onboarded2', true);
document.querySelector('.onboarding-panel-1').classList.add('hide'); document.querySelector('.onboarding-panel-1').classList.add('hide');
document.querySelector('.onboarding-panel-2').classList.add('hide'); document.querySelector('.onboarding-panel-2').classList.add('hide');
document.querySelector('#container-panel').classList.remove('hide'); document.querySelector('#container-panel').classList.remove('hide');
}); });
browser.runtime.sendMessage({method: 'queryIdentities'}).then(identities=> { browser.runtime.sendMessage({method: 'queryIdentities'}).then(identities => {
const identitiesListElement = document.querySelector('.identities-list'); let fragment = document.createDocumentFragment();
identities.forEach(identity=> { identities.forEach(identity => {
let hideOrShowIconSrc = CONTAINER_HIDE_SRC; let hideOrShowIconSrc = CONTAINER_HIDE_SRC;
if (identity.hasHiddenTabs) { if (identity.hasHiddenTabs) {
hideOrShowIconSrc = CONTAINER_UNHIDE_SRC; hideOrShowIconSrc = CONTAINER_UNHIDE_SRC;
} }
const identityRow = ` let tr = document.createElement('tr');
<tr data-identity-cookie-store-id="${identity.userContextId}" > fragment.appendChild(tr);
tr.setAttribute('data-identity-cookie-store-id', identity.userContextId);
tr.innerHTML = `
<td> <td>
<div class="userContext-icon" <div class="userContext-icon"
data-identity-icon="${identity.image}" data-identity-icon="${identity.image}"
@ -87,58 +95,49 @@ browser.runtime.sendMessage({method: 'queryIdentities'}).then(identities=> {
src="${hideOrShowIconSrc}" src="${hideOrShowIconSrc}"
/> />
</td> </td>
<td>&gt;</td> <td>&gt;</td>`;
</tr>`;
identitiesListElement.innerHTML += identityRow;
// No tabs, no icon. // No tabs, no icon.
if (!identity.hasHiddenTabs && !identity.hasOpenTabs) { if (!identity.hasHiddenTabs && !identity.hasOpenTabs) {
const hideorshowIcon = document.querySelector(`#uci-${identity.userContextId}-hideorshow-icon`); let hideorshowIcon = fragment.querySelector(`#uci-${identity.userContextId}-hideorshow-icon`);
hideorshowIcon.style.display = "none"; hideorshowIcon.style.display = "none";
} }
});
const rows = identitiesListElement.querySelectorAll('tr');
rows.forEach(row=> {
row.addEventListener('click', e=> {
const userContextId = e.target.parentElement.parentElement.dataset.identityCookieStoreId;
tr.addEventListener('click', e => {
if (e.target.matches('.hideorshow-icon')) { if (e.target.matches('.hideorshow-icon')) {
browser.runtime.sendMessage({ showOrHideContainerTabs(identity.userContextId,
method: 'getIdentity', identity.hasHiddenTabs).then(i => {
userContextId identity = i
}).then(identity=> {
showOrHideContainerTabs(userContextId, identity.hasHiddenTabs);
}); });
} else if (e.target.matches('.newtab-icon')) { } else if (e.target.matches('.newtab-icon')) {
showOrHideContainerTabs(userContextId, true).then(() => { showOrHideContainerTabs(identity.userContextId, true).then(() => {
browser.runtime.sendMessage({ browser.runtime.sendMessage({
method: 'openTab', method: 'openTab',
userContextId: userContextId}) userContextId: identity.userContextId,
.then(() => { }).then(() => {
window.close(); window.close();
}); });
}); });
} }
}); });
}); });
document.querySelector('.identities-list').appendChild(fragment);
}); });
document.querySelector('#edit-containers-link').addEventListener('click', ()=> { document.querySelector('#edit-containers-link').addEventListener('click', () => {
browser.runtime.sendMessage({ browser.runtime.sendMessage({
method: 'openTab', method: 'openTab',
url: "about:preferences#containers" url: "about:preferences#containers"
}).then(()=> { }).then(() => {
window.close(); window.close();
}); });
}); });
document.querySelector('#sort-containers-link').addEventListener('click', ()=> { document.querySelector('#sort-containers-link').addEventListener('click', () => {
browser.runtime.sendMessage({ browser.runtime.sendMessage({
method: 'sortTabs' method: 'sortTabs'
}).then(()=> { }).then(() => {
window.close(); window.close();
}); });
}); });