mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
819 B
33 lines
819 B
import { useState } from '#app' |
|
|
|
export interface TabItem { |
|
type: 'table' | 'view' |
|
title: string |
|
id: string |
|
} |
|
|
|
export default () => { |
|
const tabs = useState<Array<TabItem>>('tabs', () => []) |
|
const activeTab = useState<number>('activeTab', () => 0) |
|
|
|
const addTab = (tabMeta: TabItem) => { |
|
const tabIndex = tabs.value.findIndex((tab) => tab.id === tabMeta.id) |
|
// if tab already found make it active |
|
if (tabIndex > -1) { |
|
activeTab.value = tabIndex |
|
} |
|
// if tab not found add it |
|
else { |
|
tabs.value = [...(tabs.value || []), tabMeta] |
|
activeTab.value = tabs.value.length - 1 |
|
} |
|
} |
|
const clearTabs = () => { |
|
tabs.value = [] |
|
} |
|
const closeTab = (index: number) => { |
|
tabs.value.splice(index, 1) |
|
} |
|
|
|
return { tabs, addTab, activeTab, clearTabs, closeTab } |
|
}
|
|
|