mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 10:36:01 +00:00
95 lines
2.7 KiB
TypeScript
95 lines
2.7 KiB
TypeScript
import _ from 'lodash';
|
|
import uuidv1 from 'uuid/v1';
|
|
import { get } from 'svelte/store';
|
|
import { openedTabs } from '../stores';
|
|
import tabs from '../tabs';
|
|
import { setSelectedTabFunc } from './common';
|
|
import localforage from 'localforage';
|
|
import stableStringify from 'json-stable-stringify';
|
|
|
|
function findFreeNumber(numbers: number[]) {
|
|
if (numbers.length == 0) return 1;
|
|
return _.max(numbers) + 1;
|
|
// let res = 1;
|
|
// while (numbers.includes(res)) res += 1;
|
|
// return res;
|
|
}
|
|
|
|
export default async function openNewTab(newTab, initialData = undefined, options = undefined) {
|
|
const oldTabs = get(openedTabs);
|
|
|
|
let existing = null;
|
|
|
|
|
|
const { savedFile, savedFolder, savedFilePath } = newTab.props || {};
|
|
if (savedFile || savedFilePath) {
|
|
existing = oldTabs.find(
|
|
x =>
|
|
x.props &&
|
|
x.tabComponent == newTab.tabComponent &&
|
|
x.closedTime == null &&
|
|
x.props.savedFile == savedFile &&
|
|
x.props.savedFolder == savedFolder &&
|
|
x.props.savedFilePath == savedFilePath
|
|
);
|
|
}
|
|
|
|
const { forceNewTab } = options || {};
|
|
|
|
const component = tabs[newTab.tabComponent];
|
|
if (!existing && !forceNewTab && component && component.matchingProps) {
|
|
const testString = stableStringify(_.pick(newTab.props || {}, component.matchingProps));
|
|
existing = oldTabs.find(
|
|
x =>
|
|
x.props &&
|
|
x.tabComponent == newTab.tabComponent &&
|
|
x.closedTime == null &&
|
|
stableStringify(_.pick(x.props || {}, component.matchingProps)) == testString
|
|
);
|
|
}
|
|
|
|
if (existing) {
|
|
openedTabs.update(tabs => setSelectedTabFunc(tabs, existing.tabid));
|
|
return;
|
|
}
|
|
|
|
// new tab will be created
|
|
if (newTab.title.endsWith('#')) {
|
|
const numbers = oldTabs
|
|
.filter(x => x.closedTime == null && x.title && x.title.startsWith(newTab.title))
|
|
.map(x => parseInt(x.title.substring(newTab.title.length)));
|
|
|
|
newTab.title = `${newTab.title}${findFreeNumber(numbers)}`;
|
|
}
|
|
|
|
const tabid = uuidv1();
|
|
if (initialData) {
|
|
for (const key of _.keys(initialData)) {
|
|
if (key == 'editor') {
|
|
await localforage.setItem(`tabdata_${key}_${tabid}`, initialData[key]);
|
|
} else {
|
|
localStorage.setItem(`tabdata_${key}_${tabid}`, JSON.stringify(initialData[key]));
|
|
}
|
|
}
|
|
}
|
|
openedTabs.update(files => [
|
|
...(files || []).map(x => ({ ...x, selected: false })),
|
|
{
|
|
tabid,
|
|
selected: true,
|
|
...newTab,
|
|
},
|
|
]);
|
|
|
|
// console.log('OPENING NEW TAB', newTab);
|
|
// const tabid = uuidv1();
|
|
// openedTabs.update(tabs => [
|
|
// ...(tabs || []).map(x => ({ ...x, selected: false })),
|
|
// {
|
|
// tabid,
|
|
// selected: true,
|
|
// ...newTab,
|
|
// },
|
|
// ]);
|
|
}
|