Skip to content
Snippets Groups Projects
Commit 0fb2790f authored by Tögl, Christina's avatar Tögl, Christina
Browse files

Add icon and include css

parent 35a4baca
No related branches found
No related tags found
1 merge request!81Add info tooltip
Pipeline #55253 passed
packages/tooltip/assets/favicon.ico

2.49 KiB

...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<script type="module" src="dbp-tooltip-demo.js"></script> <script type="module" src="dbp-tooltip-demo.js"></script>
<style src="tippy.css"></style>
</head> </head>
<body> <body>
......
...@@ -74,6 +74,7 @@ export default (async () => { ...@@ -74,6 +74,7 @@ export default (async () => {
limit: 0, limit: 0,
include: [ include: [
await getPackagePath('select2', '**/*.css'), await getPackagePath('select2', '**/*.css'),
await getPackagePath('tippy.js', '**/*.css'),
], ],
emitFiles: true, emitFiles: true,
fileName: 'shared/[name].[hash][extname]' fileName: 'shared/[name].[hash][extname]'
......
...@@ -5,6 +5,7 @@ import * as commonUtils from '@dbp-toolkit/common/utils'; ...@@ -5,6 +5,7 @@ import * as commonUtils from '@dbp-toolkit/common/utils';
import * as commonStyles from '@dbp-toolkit/common/styles'; import * as commonStyles from '@dbp-toolkit/common/styles';
import {TooltipElement} from './tooltip'; import {TooltipElement} from './tooltip';
import DBPLitElement from "@dbp-toolkit/common/dbp-lit-element"; import DBPLitElement from "@dbp-toolkit/common/dbp-lit-element";
import tippy2CSSPath from 'tippy.js/dist/tippy.css';
export class TooltipDemo extends ScopedElementsMixin(DBPLitElement) { export class TooltipDemo extends ScopedElementsMixin(DBPLitElement) {
...@@ -52,13 +53,18 @@ export class TooltipDemo extends ScopedElementsMixin(DBPLitElement) { ...@@ -52,13 +53,18 @@ export class TooltipDemo extends ScopedElementsMixin(DBPLitElement) {
render() { render() {
const tippy2CSS = commonUtils.getAssetURL(tippy2CSSPath);
return html` return html`
<link rel="stylesheet" href="${tippy2CSS}">
<section class="section"> <section class="section">
<div class="container"> <div class="container">
<h1 class="title">Tooltip-Demo</h1> <h1 class="title">Tooltip-Demo</h1>
</div> </div>
<div class="container"> <div class="container">
<dbp-tooltip></dbp-tooltip> <dbp-tooltip text-content="tippy tooltip demo text"></dbp-tooltip>
</div> </div>
</section> </section>
`; `;
......
import {css, html} from 'lit-element';
import {ScopedElementsMixin} from '@open-wc/scoped-elements';
import * as commonUtils from '@dbp-toolkit/common/utils';
import * as commonStyles from '@dbp-toolkit/common/styles';
import DBPLitElement from '@dbp-toolkit/common/dbp-lit-element'; import DBPLitElement from '@dbp-toolkit/common/dbp-lit-element';
import tippy from 'tippy.js'; import tippy from 'tippy.js';
//import 'tippy.js/dist/tippy.css'; import {Icon} from '@dbp-toolkit/common';
console.dir(tippy); import tippy2CSSPath from 'tippy.js/dist/tippy.css';
export class TooltipElement extends DBPLitElement { export class TooltipElement extends ScopedElementsMixin(DBPLitElement) {
constructor() { constructor() {
super(); super();
this.gitInfo = ''; this.tippy = '';
this.textContent = '';
} }
static get scopedElements() {
return {
'dbp-icon': Icon,
};
}
static get properties() { static get properties() {
return { return {
...super.properties, ...super.properties,
gitInfo: { type: String, attribute: 'git-info' }, tippy: { type: Object, attribute: false },
textContent: { type: String, attribute: 'text-content' },
}; };
} }
firstUpdated() {
tippy(this._('#tooltip-icon'), {
content: this.textContent,
});
}
static get styles() {
// language=css
return css`
${commonStyles.getThemeCSS()}
${commonStyles.getGeneralCSS(false)}
${commonStyles.getButtonCSS()}
.info-icon {
color: red;
padding: 0px 4px;
}
`;
}
render() { render() {
// tippy('#myButton', {
// content: "I'm a Tippy tooltip!", const tippy2CSS = commonUtils.getAssetURL(tippy2CSSPath);
// });
if (this._('#tooltip-icon')) {
this.tippy = tippy(this._('#tooltip-icon'), { content: this.textContent });
}
return html` return html`
<div> <link rel="stylesheet" href="${tippy2CSS}">
<button id="myButton">My Button</button> <div>
</div> <dbp-icon name='information' class="info-icon" id="tooltip-icon"></dbp-icon>
</div>
`; `;
} }
......
import {assert} from '@esm-bundle/chai';
import '../src/dbp-tooltip';
suite('dbp-tooltip', () => {
let node;
setup(async () => {
node = document.createElement('dbp-tooltip');
document.body.appendChild(node);
await node.updateComplete;
});
teardown(() => {
node.remove();
});
test('should render', () => {
assert.isNotNull(node.shadowRoot);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment