Move to web components
This commit is contained in:
parent
5788ab3455
commit
52e2ede9bd
4 changed files with 231 additions and 209 deletions
|
@ -3,26 +3,17 @@
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>electron-tabs-demo</title>
|
<title>electron-tabs-demo</title>
|
||||||
<link rel="stylesheet" href="../electron-tabs.css">
|
|
||||||
</head>
|
</head>
|
||||||
<body style="margin:0">
|
<body style="margin:0">
|
||||||
|
|
||||||
<div class="etabs-tabgroup">
|
<tab-group></tab-group>
|
||||||
<div class="etabs-tabs"></div>
|
|
||||||
<div class="etabs-buttons"></div>
|
|
||||||
</div>
|
|
||||||
<div class="etabs-views"></div>
|
|
||||||
|
|
||||||
|
|
||||||
|
<script src="../index.js"></script>
|
||||||
<script>
|
<script>
|
||||||
//const TabGroup = require('electron-tabs') normally but for demo :
|
const tabGroup = document.querySelector("tab-group");
|
||||||
const TabGroup = require("../index");
|
tabGroup.newTab = {
|
||||||
|
title: "New Tab"
|
||||||
let tabGroup = new TabGroup({
|
|
||||||
newTab: {
|
|
||||||
title: 'New Tab'
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
tabGroup.addTab({
|
tabGroup.addTab({
|
||||||
title: 'Google',
|
title: 'Google',
|
||||||
|
|
|
@ -1,139 +0,0 @@
|
||||||
.etabs-tabgroup {
|
|
||||||
width: 100%;
|
|
||||||
height: 32px;
|
|
||||||
background-color: #ccc;
|
|
||||||
cursor: default;
|
|
||||||
font: caption;
|
|
||||||
font-size: 14px;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tabgroup.visible {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tabs {
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab {
|
|
||||||
display: none;
|
|
||||||
position: relative;
|
|
||||||
color: #333;
|
|
||||||
height: 22px;
|
|
||||||
padding: 6px 8px 4px;
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
border-bottom: none;
|
|
||||||
border-left: none;
|
|
||||||
background: linear-gradient(to bottom, rgba(234,234,234,1) 0%,rgba(204,204,204,1) 100%);
|
|
||||||
font: caption;
|
|
||||||
font-size: 14px;
|
|
||||||
background-color: #ccc;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Dragula */
|
|
||||||
.etabs-tab.gu-mirror {
|
|
||||||
padding-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab:first-child {
|
|
||||||
border-left: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab.visible {
|
|
||||||
display: inline-block;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab.active {
|
|
||||||
background: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab.flash {
|
|
||||||
background: linear-gradient(to bottom, rgba(255,243,170,1) 0%,rgba(255,227,37,1) 100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-buttons {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-buttons button {
|
|
||||||
float: left;
|
|
||||||
color: #333;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
font-size: 12px;
|
|
||||||
margin-top: 6px;
|
|
||||||
border-radius: 2px;
|
|
||||||
margin-left: 4px;
|
|
||||||
width: 20px;
|
|
||||||
text-align: center;
|
|
||||||
padding: 4px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-buttons button:hover {
|
|
||||||
color: #eee;
|
|
||||||
background-color: #aaa;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab-badge {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: -7px;
|
|
||||||
background: red;
|
|
||||||
border-radius: 100%;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 10px;
|
|
||||||
padding: 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab-badge.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab-icon {
|
|
||||||
display: inline-block;
|
|
||||||
height: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab-icon img {
|
|
||||||
max-width: 16px;
|
|
||||||
max-height: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab-title {
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab-buttons {
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab-buttons button {
|
|
||||||
display: inline-block;
|
|
||||||
color: #333;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
width: 20px;
|
|
||||||
text-align: center;
|
|
||||||
border-radius: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-tab-buttons button:hover {
|
|
||||||
color: #eee;
|
|
||||||
background-color: #aaa;
|
|
||||||
}
|
|
||||||
|
|
||||||
.etabs-views {
|
|
||||||
position: relative;
|
|
||||||
border-top: 1px solid #aaa;
|
|
||||||
height: calc(100vh - 33px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.etab-view {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
258
index.js
258
index.js
|
@ -1,10 +1,146 @@
|
||||||
if (!document) {
|
// TODO: move into a CSS file
|
||||||
throw Error("electron-tabs module must be called in renderer process");
|
// We need a bundler here :-/
|
||||||
|
const css = `
|
||||||
|
.etabs-tabgroup {
|
||||||
|
width: 100%;
|
||||||
|
height: 32px;
|
||||||
|
background-color: #ccc;
|
||||||
|
cursor: default;
|
||||||
|
font: caption;
|
||||||
|
font-size: 14px;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tabgroup.visible {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tabs {
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab {
|
||||||
|
display: none;
|
||||||
|
position: relative;
|
||||||
|
color: #333;
|
||||||
|
height: 22px;
|
||||||
|
padding: 6px 8px 4px;
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
border-bottom: none;
|
||||||
|
border-left: none;
|
||||||
|
background: linear-gradient(to bottom, rgba(234,234,234,1) 0%,rgba(204,204,204,1) 100%);
|
||||||
|
font: caption;
|
||||||
|
font-size: 14px;
|
||||||
|
background-color: #ccc;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dragula */
|
||||||
|
.etabs-tab.gu-mirror {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab:first-child {
|
||||||
|
border-left: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab.visible {
|
||||||
|
display: inline-block;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab.active {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab.flash {
|
||||||
|
background: linear-gradient(to bottom, rgba(255,243,170,1) 0%,rgba(255,227,37,1) 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-buttons {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-buttons button {
|
||||||
|
float: left;
|
||||||
|
color: #333;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-top: 6px;
|
||||||
|
border-radius: 2px;
|
||||||
|
margin-left: 4px;
|
||||||
|
width: 20px;
|
||||||
|
text-align: center;
|
||||||
|
padding: 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-buttons button:hover {
|
||||||
|
color: #eee;
|
||||||
|
background-color: #aaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab-badge {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: -7px;
|
||||||
|
background: red;
|
||||||
|
border-radius: 100%;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 10px;
|
||||||
|
padding: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab-badge.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab-icon {
|
||||||
|
display: inline-block;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab-icon img {
|
||||||
|
max-width: 16px;
|
||||||
|
max-height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab-title {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab-buttons {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab-buttons button {
|
||||||
|
display: inline-block;
|
||||||
|
color: #333;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
width: 20px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-tab-buttons button:hover {
|
||||||
|
color: #eee;
|
||||||
|
background-color: #aaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.etabs-views {
|
||||||
|
position: relative;
|
||||||
|
border-top: 1px solid #aaa;
|
||||||
|
height: calc(100vh - 33px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.etab-view {
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Inject styles
|
|
||||||
(function () {
|
|
||||||
const styles = `
|
|
||||||
webview {
|
webview {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
@ -14,46 +150,62 @@ if (!document) {
|
||||||
webview.visible {
|
webview.visible {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
`;
|
`
|
||||||
let styleTag = document.createElement("style");
|
|
||||||
styleTag.innerHTML = styles;
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(styleTag);
|
|
||||||
})();
|
|
||||||
|
|
||||||
/**
|
if (!document) {
|
||||||
* This makes the browser EventTarget API work similar to EventEmitter
|
throw Error("electron-tabs module must be called in renderer process");
|
||||||
*/
|
|
||||||
class EventEmitter extends EventTarget {
|
|
||||||
emit (type, ...args) {
|
|
||||||
this.dispatchEvent(new CustomEvent(type, { detail: args }));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
on (type, fn) {
|
class TabGroup extends HTMLElement {
|
||||||
this.addEventListener(type, ({ detail }) => fn.apply(this, detail));
|
constructor () {
|
||||||
}
|
|
||||||
|
|
||||||
once (type, fn) {
|
|
||||||
this.addEventListener(type, ({ detail }) => fn.apply(this, detail), { once: true });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class TabGroup extends EventEmitter {
|
|
||||||
constructor (args = {}) {
|
|
||||||
super();
|
super();
|
||||||
let options = this.options = {
|
|
||||||
tabContainerSelector: args.tabContainerSelector || ".etabs-tabs",
|
// Options
|
||||||
buttonsContainerSelector: args.buttonsContainerSelector || ".etabs-buttons",
|
this.options = {
|
||||||
viewContainerSelector: args.viewContainerSelector || ".etabs-views",
|
closeButtonText: this.getAttribute("close-button-text") || "×",
|
||||||
tabClass: args.tabClass || "etabs-tab",
|
newTabButtonText: this.getAttribute("new-tab-button-text") || "+",
|
||||||
viewClass: args.viewClass || "etabs-view",
|
visibilityThreshold: this.getAttribute("visibility-threshold") || 0,
|
||||||
closeButtonText: args.closeButtonText || "×",
|
tabClass: this.getAttribute("tab-class") || "etabs-tab",
|
||||||
newTab: args.newTab,
|
viewClass: this.getAttribute("view-class") || "etabs-view"
|
||||||
newTabButtonText: args.newTabButtonText || "+",
|
// TODO: replace this callback
|
||||||
visibilityThreshold: args.visibilityThreshold || 0,
|
// ready: args.ready
|
||||||
ready: args.ready
|
|
||||||
};
|
};
|
||||||
this.tabContainer = document.querySelector(options.tabContainerSelector);
|
|
||||||
this.viewContainer = document.querySelector(options.viewContainerSelector);
|
// Create custom element
|
||||||
|
const shadow = this.attachShadow({mode: "open"});
|
||||||
|
|
||||||
|
const wrapper = document.createElement("div");
|
||||||
|
wrapper.setAttribute("class", "etabs");
|
||||||
|
|
||||||
|
const tabgroup = document.createElement("div");
|
||||||
|
tabgroup.setAttribute("class", "etabs-tabgroup");
|
||||||
|
wrapper.appendChild(tabgroup);
|
||||||
|
|
||||||
|
const tabContainer = document.createElement("div");
|
||||||
|
tabContainer.setAttribute("class", "etabs-tabs");
|
||||||
|
tabgroup.appendChild(tabContainer);
|
||||||
|
this.tabContainer = tabContainer;
|
||||||
|
|
||||||
|
const buttonContainer = document.createElement("div");
|
||||||
|
buttonContainer.setAttribute("class", "etabs-buttons");
|
||||||
|
tabgroup.appendChild(buttonContainer);
|
||||||
|
this.buttonContainer = buttonContainer;
|
||||||
|
|
||||||
|
const viewContainer = document.createElement("div");
|
||||||
|
viewContainer.setAttribute("class", "etabs-views");
|
||||||
|
wrapper.appendChild(viewContainer);
|
||||||
|
this.viewContainer = viewContainer;
|
||||||
|
|
||||||
|
// const style = document.createElement("link");
|
||||||
|
// style.setAttribute("rel", "stylesheet");
|
||||||
|
// style.setAttribute("href", "style.css");
|
||||||
|
|
||||||
|
const style = document.createElement("style");
|
||||||
|
style.textContent = css;
|
||||||
|
|
||||||
|
shadow.appendChild(style);
|
||||||
|
shadow.appendChild(wrapper);
|
||||||
|
|
||||||
this.tabs = [];
|
this.tabs = [];
|
||||||
this.newTabId = 0;
|
this.newTabId = 0;
|
||||||
TabGroupPrivate.initNewTabButton.bind(this)();
|
TabGroupPrivate.initNewTabButton.bind(this)();
|
||||||
|
@ -132,8 +284,7 @@ class TabGroup extends EventEmitter {
|
||||||
const TabGroupPrivate = {
|
const TabGroupPrivate = {
|
||||||
initNewTabButton: function () {
|
initNewTabButton: function () {
|
||||||
if (!this.options.newTab) return;
|
if (!this.options.newTab) return;
|
||||||
let container = document.querySelector(this.options.buttonsContainerSelector);
|
let button = this.buttonContainer.appendChild(document.createElement("button"));
|
||||||
let button = container.appendChild(document.createElement("button"));
|
|
||||||
button.classList.add(`${this.options.tabClass}-button-new`);
|
button.classList.add(`${this.options.tabClass}-button-new`);
|
||||||
button.innerHTML = this.options.newTabButtonText;
|
button.innerHTML = this.options.newTabButtonText;
|
||||||
button.addEventListener("click", this.addTab.bind(this, undefined), false);
|
button.addEventListener("click", this.addTab.bind(this, undefined), false);
|
||||||
|
@ -183,7 +334,7 @@ const TabGroupPrivate = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class Tab extends EventEmitter {
|
class Tab extends EventTarget {
|
||||||
constructor (tabGroup, id, args) {
|
constructor (tabGroup, id, args) {
|
||||||
super();
|
super();
|
||||||
this.tabGroup = tabGroup;
|
this.tabGroup = tabGroup;
|
||||||
|
@ -468,5 +619,24 @@ const TabPrivate = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = TabGroup;
|
/**
|
||||||
|
* This makes the browser EventTarget API work similar to EventEmitter
|
||||||
|
*/
|
||||||
|
const eventEmitterMixin = {
|
||||||
|
emit (type, ...args) {
|
||||||
|
this.dispatchEvent(new CustomEvent(type, { detail: args }));
|
||||||
|
},
|
||||||
|
|
||||||
|
on (type, fn) {
|
||||||
|
this.addEventListener(type, ({ detail }) => fn.apply(this, detail));
|
||||||
|
},
|
||||||
|
|
||||||
|
once (type, fn) {
|
||||||
|
this.addEventListener(type, ({ detail }) => fn.apply(this, detail), { once: true });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Object.assign(TabGroup.prototype, eventEmitterMixin);
|
||||||
|
Object.assign(Tab.prototype, eventEmitterMixin);
|
||||||
|
|
||||||
|
customElements.define("tab-group", TabGroup);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "electron-tabs",
|
"name": "electron-tabs",
|
||||||
"version": "0.17.0",
|
"version": "1.0.0-dev",
|
||||||
"description": "Simple tabs for Electron applications",
|
"description": "Simple tabs for Electron applications",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in a new issue