2022-02-07 14:02:26 +00:00
|
|
|
import {GristDoc} from 'app/client/components/GristDoc';
|
2022-03-11 10:48:36 +00:00
|
|
|
import {copyToClipboard} from 'app/client/lib/copyToClipboard';
|
|
|
|
import {setTestState} from 'app/client/lib/testState';
|
|
|
|
import {TableRec} from 'app/client/models/DocModel';
|
2022-04-01 18:17:06 +00:00
|
|
|
import {docListHeader, docMenuTrigger} from 'app/client/ui/DocMenuCss';
|
2022-03-11 10:48:36 +00:00
|
|
|
import {showTransientTooltip} from 'app/client/ui/tooltips';
|
2022-04-27 17:46:24 +00:00
|
|
|
import {buildTableName} from 'app/client/ui/WidgetTitle';
|
2022-03-11 10:48:36 +00:00
|
|
|
import * as css from 'app/client/ui2018/cssVars';
|
|
|
|
import {icon} from 'app/client/ui2018/icons';
|
|
|
|
import {menu, menuItem, menuText} from 'app/client/ui2018/menus';
|
|
|
|
import {confirmModal} from 'app/client/ui2018/modals';
|
2022-04-27 17:46:24 +00:00
|
|
|
import {Computed, Disposable, dom, fromKo, makeTestId, Observable, styled} from 'grainjs';
|
2022-03-11 10:48:36 +00:00
|
|
|
|
|
|
|
const testId = makeTestId('test-raw-data-');
|
2022-02-07 14:02:26 +00:00
|
|
|
|
|
|
|
export class DataTables extends Disposable {
|
2022-04-27 17:46:24 +00:00
|
|
|
private _tables: Observable<TableRec[]>;
|
2022-08-03 07:18:21 +00:00
|
|
|
|
|
|
|
private readonly _rowCount = Computed.create(
|
|
|
|
this, this._gristDoc.docPageModel.currentDocUsage, (_use, usage) => {
|
|
|
|
return usage?.rowCount;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2022-02-07 14:02:26 +00:00
|
|
|
constructor(private _gristDoc: GristDoc) {
|
|
|
|
super();
|
2022-07-06 07:41:09 +00:00
|
|
|
this._tables = Computed.create(this, use => {
|
|
|
|
const dataTables = use(_gristDoc.docModel.rawDataTables.getObservable());
|
|
|
|
const summaryTables = use(_gristDoc.docModel.rawSummaryTables.getObservable());
|
|
|
|
// Remove tables that we don't have access to. ACL will remove tableId from those tables.
|
|
|
|
return [...dataTables, ...summaryTables].filter(t => Boolean(use(t.tableId)));
|
|
|
|
});
|
2022-02-07 14:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public buildDom() {
|
2022-03-11 10:48:36 +00:00
|
|
|
return container(
|
2022-04-01 18:17:06 +00:00
|
|
|
cssTableList(
|
2022-03-11 10:48:36 +00:00
|
|
|
/*************** List section **********/
|
|
|
|
testId('list'),
|
2022-08-03 07:18:21 +00:00
|
|
|
docListHeader('Raw Data Tables'),
|
2022-03-11 10:48:36 +00:00
|
|
|
cssList(
|
2022-04-27 17:46:24 +00:00
|
|
|
dom.forEach(this._tables, tableRec =>
|
2022-03-11 10:48:36 +00:00
|
|
|
cssItem(
|
|
|
|
testId('table'),
|
2022-04-27 17:46:24 +00:00
|
|
|
cssLeft(
|
2022-07-06 07:41:09 +00:00
|
|
|
dom.domComputed((use) => cssGreenIcon(
|
|
|
|
use(tableRec.summarySourceTable) !== 0 ? 'PivotLight' : 'TypeTable',
|
|
|
|
testId(`table-id-${use(tableRec.tableId)}`)
|
|
|
|
)),
|
2022-04-27 17:46:24 +00:00
|
|
|
),
|
|
|
|
cssMiddle(
|
2022-08-03 07:18:21 +00:00
|
|
|
cssTitleRow(cssTableTitle(this._tableTitle(tableRec), testId('table-title'))),
|
|
|
|
cssDetailsRow(
|
|
|
|
cssTableIdWrapper(cssHoverWrapper(
|
|
|
|
cssUpperCase("Table ID: "),
|
2022-04-27 17:46:24 +00:00
|
|
|
cssTableId(
|
|
|
|
testId('table-id'),
|
|
|
|
dom.text(tableRec.tableId),
|
|
|
|
),
|
|
|
|
{ title : 'Click to copy' },
|
|
|
|
dom.on('click', async (e, t) => {
|
|
|
|
e.stopImmediatePropagation();
|
|
|
|
e.preventDefault();
|
2022-08-03 07:18:21 +00:00
|
|
|
showTransientTooltip(t, 'Table ID copied to clipboard', {
|
2022-04-27 17:46:24 +00:00
|
|
|
key: 'copy-table-id'
|
|
|
|
});
|
|
|
|
await copyToClipboard(tableRec.tableId.peek());
|
|
|
|
setTestState({clipboard: tableRec.tableId.peek()});
|
|
|
|
})
|
2022-08-03 07:18:21 +00:00
|
|
|
)),
|
|
|
|
this._tableRows(tableRec),
|
2022-03-11 10:48:36 +00:00
|
|
|
),
|
|
|
|
),
|
2022-04-27 17:46:24 +00:00
|
|
|
cssRight(
|
|
|
|
docMenuTrigger(
|
|
|
|
testId('table-menu'),
|
|
|
|
icon('Dots'),
|
|
|
|
menu(() => this._menuItems(tableRec), {placement: 'bottom-start'}),
|
|
|
|
dom.on('click', (ev) => { ev.stopPropagation(); ev.preventDefault(); }),
|
|
|
|
)
|
|
|
|
),
|
2022-03-11 10:48:36 +00:00
|
|
|
dom.on('click', () => {
|
|
|
|
const sectionId = tableRec.rawViewSection.peek().getRowId();
|
|
|
|
if (!sectionId) {
|
|
|
|
throw new Error(`Table ${tableRec.tableId.peek()} doesn't have a raw view section.`);
|
|
|
|
}
|
|
|
|
this._gristDoc.viewModel.activeSectionId(sectionId);
|
|
|
|
})
|
|
|
|
)
|
|
|
|
)
|
|
|
|
),
|
2022-02-07 14:02:26 +00:00
|
|
|
),
|
2022-03-11 10:48:36 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-06 07:41:09 +00:00
|
|
|
private _tableTitle(table: TableRec) {
|
|
|
|
return dom.domComputed((use) => {
|
|
|
|
const rawViewSectionRef = use(fromKo(table.rawViewSectionRef));
|
|
|
|
const isSummaryTable = use(table.summarySourceTable) !== 0;
|
|
|
|
if (!rawViewSectionRef || isSummaryTable) {
|
|
|
|
// Some very old documents might not have a rawViewSection, and raw summary
|
|
|
|
// tables can't currently be renamed.
|
|
|
|
const tableName = [
|
|
|
|
use(table.tableNameDef), isSummaryTable ? use(table.groupDesc) : ''
|
|
|
|
].filter(p => Boolean(p?.trim())).join(' ');
|
|
|
|
return dom('span', tableName);
|
|
|
|
} else {
|
|
|
|
return dom('div', // to disable flex grow in the widget
|
|
|
|
dom.domComputed(fromKo(table.rawViewSection), vs =>
|
2022-07-18 16:24:26 +00:00
|
|
|
buildTableName(vs, testId('widget-title'))
|
2022-07-06 07:41:09 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-27 17:46:24 +00:00
|
|
|
private _menuItems(table: TableRec) {
|
2022-03-11 10:48:36 +00:00
|
|
|
const {isReadonly, docModel} = this._gristDoc;
|
|
|
|
return [
|
|
|
|
menuItem(
|
2022-04-27 17:46:24 +00:00
|
|
|
() => this._removeTable(table),
|
2022-03-11 10:48:36 +00:00
|
|
|
'Remove',
|
|
|
|
testId('menu-remove'),
|
2022-04-27 17:46:24 +00:00
|
|
|
dom.cls('disabled', use => use(isReadonly) || (
|
2022-07-06 07:41:09 +00:00
|
|
|
// Can't delete last visible table, unless it is a hidden table.
|
|
|
|
use(docModel.visibleTables.getObservable()).length <= 1 && !use(table.isHidden)
|
2022-04-27 17:46:24 +00:00
|
|
|
))
|
2022-03-11 10:48:36 +00:00
|
|
|
),
|
|
|
|
dom.maybe(isReadonly, () => menuText('You do not have edit access to this document')),
|
2022-02-07 14:02:26 +00:00
|
|
|
];
|
|
|
|
}
|
2022-03-11 10:48:36 +00:00
|
|
|
|
|
|
|
private _removeTable(t: TableRec) {
|
|
|
|
const {docModel} = this._gristDoc;
|
|
|
|
function doRemove() {
|
2022-07-06 07:41:09 +00:00
|
|
|
return docModel.docData.sendAction(['RemoveTable', t.tableId()]);
|
2022-03-11 10:48:36 +00:00
|
|
|
}
|
2022-07-06 07:41:09 +00:00
|
|
|
confirmModal(`Delete ${t.formattedTableName()} data, and remove it from all pages?`, 'Delete', doRemove);
|
2022-03-11 10:48:36 +00:00
|
|
|
}
|
2022-08-03 07:18:21 +00:00
|
|
|
|
|
|
|
private _tableRows(table: TableRec) {
|
|
|
|
return cssTableRowsWrapper(
|
|
|
|
cssUpperCase("Rows: "),
|
|
|
|
cssTableRows(
|
|
|
|
testId('table-rows'),
|
|
|
|
dom.text(use => {
|
|
|
|
const rowCounts = use(this._rowCount);
|
|
|
|
if (typeof rowCounts !== 'object') { return ''; }
|
|
|
|
|
|
|
|
return rowCounts[table.getRowId()]?.toString() ?? '';
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2022-02-07 14:02:26 +00:00
|
|
|
}
|
2022-03-11 10:48:36 +00:00
|
|
|
|
|
|
|
const container = styled('div', `
|
2022-04-01 18:17:06 +00:00
|
|
|
overflow-y: auto;
|
2022-03-11 10:48:36 +00:00
|
|
|
position: relative;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssList = styled('div', `
|
|
|
|
display: flex;
|
2022-08-03 07:18:21 +00:00
|
|
|
flex-direction: column;
|
|
|
|
gap: 12px;
|
2022-03-11 10:48:36 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
const cssItem = styled('div', `
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 3px;
|
2022-08-03 07:18:21 +00:00
|
|
|
width: 100%;
|
|
|
|
height: calc(1em * 56/13); /* 56px for 13px font */
|
2022-03-11 10:48:36 +00:00
|
|
|
max-width: 750px;
|
|
|
|
border: 1px solid ${css.colors.mediumGrey};
|
|
|
|
&:hover {
|
|
|
|
border-color: ${css.colors.slate};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
2022-04-27 17:46:24 +00:00
|
|
|
// Holds icon in top left corner
|
|
|
|
const cssLeft = styled('div', `
|
|
|
|
padding-top: 11px;
|
|
|
|
padding-left: 12px;
|
2022-03-11 10:48:36 +00:00
|
|
|
margin-right: 8px;
|
2022-04-27 17:46:24 +00:00
|
|
|
align-self: flex-start;
|
|
|
|
display: flex;
|
2022-03-11 10:48:36 +00:00
|
|
|
flex: none;
|
2022-04-27 17:46:24 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
const cssMiddle = styled('div', `
|
|
|
|
flex-grow: 1;
|
|
|
|
min-width: 0px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 4px;
|
2022-03-11 10:48:36 +00:00
|
|
|
`);
|
|
|
|
|
2022-08-03 07:18:21 +00:00
|
|
|
const cssTitleRow = styled('div', `
|
|
|
|
min-width: 100%;
|
2022-07-18 16:24:26 +00:00
|
|
|
margin-right: 4px;
|
2022-03-11 10:48:36 +00:00
|
|
|
`);
|
|
|
|
|
2022-08-03 07:18:21 +00:00
|
|
|
const cssDetailsRow = styled('div', `
|
|
|
|
min-width: 100%;
|
2022-03-11 10:48:36 +00:00
|
|
|
display: flex;
|
2022-08-03 07:18:21 +00:00
|
|
|
gap: 8px;
|
2022-03-11 10:48:36 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
|
2022-04-27 17:46:24 +00:00
|
|
|
// Holds dots menu (which is 24px x 24px, but has its own 4px right margin)
|
|
|
|
const cssRight = styled('div', `
|
|
|
|
padding-right: 8px;
|
|
|
|
margin-left: 8px;
|
|
|
|
align-self: center;
|
2022-03-11 10:48:36 +00:00
|
|
|
display: flex;
|
2022-04-27 17:46:24 +00:00
|
|
|
flex: none;
|
2022-03-11 10:48:36 +00:00
|
|
|
`);
|
|
|
|
|
2022-04-27 17:46:24 +00:00
|
|
|
const cssGreenIcon = styled(icon, `
|
|
|
|
--icon-color: ${css.colors.lightGreen};
|
2022-03-11 10:48:36 +00:00
|
|
|
`);
|
|
|
|
|
2022-04-27 17:46:24 +00:00
|
|
|
const cssLine = styled('span', `
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
`);
|
|
|
|
|
2022-08-03 07:18:21 +00:00
|
|
|
const cssTableIdWrapper = styled('div', `
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
min-width: 0;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssTableRowsWrapper = styled('div', `
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 80px;
|
|
|
|
overflow: hidden;
|
|
|
|
align-items: baseline;
|
|
|
|
color: ${css.colors.slate};
|
|
|
|
line-height: 18px;
|
|
|
|
padding: 0px 2px;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssHoverWrapper = styled('div', `
|
2022-03-11 10:48:36 +00:00
|
|
|
display: flex;
|
2022-04-27 17:46:24 +00:00
|
|
|
overflow: hidden;
|
2022-03-11 10:48:36 +00:00
|
|
|
cursor: default;
|
|
|
|
align-items: baseline;
|
|
|
|
color: ${css.colors.slate};
|
|
|
|
transition: background 0.05s;
|
2022-08-03 07:18:21 +00:00
|
|
|
padding: 0px 2px;
|
2022-04-27 17:46:24 +00:00
|
|
|
line-height: 18px;
|
2022-03-11 10:48:36 +00:00
|
|
|
&:hover {
|
|
|
|
background: ${css.colors.lightGrey};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssTableId = styled(cssLine, `
|
|
|
|
font-size: ${css.vars.smallFontSize};
|
|
|
|
`);
|
|
|
|
|
2022-08-03 07:18:21 +00:00
|
|
|
const cssTableRows = cssTableId;
|
|
|
|
|
2022-07-18 16:24:26 +00:00
|
|
|
const cssTableTitle = styled('div', `
|
|
|
|
white-space: nowrap;
|
|
|
|
`);
|
|
|
|
|
2022-03-11 10:48:36 +00:00
|
|
|
const cssUpperCase = styled('span', `
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 0.81px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 9px; /* xxsmallFontSize is to small */
|
|
|
|
margin-right: 2px;
|
|
|
|
flex: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
`);
|
|
|
|
|
2022-04-01 18:17:06 +00:00
|
|
|
const cssTableList = styled('div', `
|
|
|
|
overflow-y: auto;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 56px;
|
2022-03-11 10:48:36 +00:00
|
|
|
`);
|