2023-09-12 11:42:55 +00:00
|
|
|
import { type ITableAction } from './dees-table.js';
|
2024-01-15 18:42:15 +00:00
|
|
|
import * as plugins from './00plugins.js';
|
2023-09-12 11:42:55 +00:00
|
|
|
import { html } from '@design.estate/dees-element';
|
|
|
|
|
2023-09-13 19:13:47 +00:00
|
|
|
interface ITableDemoData {
|
|
|
|
date: string;
|
|
|
|
amount: string;
|
|
|
|
description: string;
|
|
|
|
}
|
|
|
|
|
2023-09-12 11:42:55 +00:00
|
|
|
export const demoFunc = () => html`
|
|
|
|
<style>
|
|
|
|
.demoWrapper {
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 20px;
|
|
|
|
background: #000000;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="demoWrapper">
|
|
|
|
<dees-table
|
|
|
|
heading1="Current Account Statement"
|
|
|
|
heading2="Bunq - Payment Account 2 - April 2021"
|
2023-09-15 17:03:18 +00:00
|
|
|
.editableFields="${['description']}"
|
2023-09-12 11:42:55 +00:00
|
|
|
.data=${[
|
|
|
|
{
|
|
|
|
date: '2021-04-01',
|
|
|
|
amount: '2464.65 €',
|
|
|
|
description: 'Printing Paper (Office Supplies) - STAPLES BREMEN',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2021-04-02',
|
|
|
|
amount: '165.65 €',
|
|
|
|
description: 'Logitech Mouse (Hardware) - logi.com OnlineShop',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2021-04-03',
|
|
|
|
amount: '2999,00 €',
|
|
|
|
description: 'Macbook Pro 16inch (Hardware) - Apple.de OnlineShop',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2021-04-01',
|
|
|
|
amount: '2464.65 €',
|
|
|
|
description: 'Office-Supplies - STAPLES BREMEN',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2021-04-01',
|
|
|
|
amount: '2464.65 €',
|
|
|
|
description: 'Office-Supplies - STAPLES BREMEN',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
dataName="transactions"
|
|
|
|
.dataActions="${[
|
|
|
|
{
|
|
|
|
name: 'upload',
|
|
|
|
iconName: 'bell',
|
|
|
|
useTableBehaviour: 'upload',
|
|
|
|
type: ['inRow'],
|
2023-09-22 17:04:02 +00:00
|
|
|
actionFunc: async (optionsArg) => {
|
|
|
|
alert(optionsArg.item.amount);
|
2023-09-12 11:42:55 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'visibility',
|
|
|
|
iconName: 'copy',
|
|
|
|
type: ['inRow'],
|
|
|
|
useTableBehaviour: 'preview',
|
|
|
|
actionFunc: async (itemArg: any) => {},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'create new',
|
|
|
|
iconName: 'instagram',
|
|
|
|
type: ['header'],
|
|
|
|
useTableBehaviour: 'preview',
|
|
|
|
actionFunc: async (itemArg: any) => {},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'to gallery',
|
|
|
|
iconName: 'message',
|
|
|
|
type: ['footer'],
|
|
|
|
useTableBehaviour: 'preview',
|
|
|
|
actionFunc: async (itemArg: any) => {},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'copy',
|
|
|
|
iconName: 'copySolid',
|
|
|
|
type: ['contextmenu', 'inRow'],
|
|
|
|
action: async () => {
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'edit (from demo)',
|
|
|
|
iconName: 'penToSquare',
|
|
|
|
type: ['contextmenu'],
|
|
|
|
action: async () => {
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'paste',
|
|
|
|
iconName: 'pasteSolid',
|
|
|
|
type: ['contextmenu'],
|
|
|
|
action: async () => {
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
},
|
2023-09-15 15:27:35 +00:00
|
|
|
{
|
|
|
|
name: 'preview',
|
|
|
|
type: ['doubleClick', 'contextmenu'],
|
|
|
|
iconName: 'eye',
|
|
|
|
actionFunc: async (itemArg) => {
|
2023-09-22 17:04:02 +00:00
|
|
|
alert(itemArg.item.amount);
|
2023-09-15 15:27:35 +00:00
|
|
|
return null;
|
|
|
|
},
|
|
|
|
}
|
2023-09-13 19:13:47 +00:00
|
|
|
] as (ITableAction<ITableDemoData>)[] as any}"
|
2023-09-12 11:42:55 +00:00
|
|
|
.displayFunction=${(itemArg) => {
|
|
|
|
return {
|
|
|
|
...itemArg,
|
|
|
|
onlyDisplayProp: 'onlyDisplay',
|
|
|
|
};
|
|
|
|
}}
|
|
|
|
>This is a slotted Text</dees-table
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
`;
|