diff --git a/components/Nav/Drawer.vue b/components/Nav/Drawer.vue index 4234bd995a2a0b810a336deaa534b7ceeb4f67fa..645e512f65f55c2c9248aa653baf8edd2d1353fb 100644 --- a/components/Nav/Drawer.vue +++ b/components/Nav/Drawer.vue @@ -10,21 +10,19 @@ const props = withDefaults(defineProps<Props>(), { // import { useCustomTheme } from '~/composables/useCustomTheme' import { useDisplay, useTheme } from "vuetify"; -const { navigation } = useContent(); +const { navigation, page } = useContent(); // const drawer = ref(true); // const computedNavigation = computed(() => { -// console.log(page.value.title) -// // console.log(navigation.value) -// if (page.value.title === "stru") { -// console.log(navigation.value) - -// } // return navigation.value -// // .filter((item) => { - -// // return item?.layout !== "db" -// // }) +// .filter((item: { layout: string }) => { +// if (item?.layout === "db") { +// console.log(item) +// return false +// } +// return true +// // return item?.layout !== "db" +// }) // }); </script> diff --git a/components/Nav/Navbar.vue b/components/Nav/Navbar.vue index 0f19d827ce4ca870c56bc496d61559bdc11b4b2d..271dc77ace75e5993a1101463bf8ac5f7a87bf4c 100644 --- a/components/Nav/Navbar.vue +++ b/components/Nav/Navbar.vue @@ -9,7 +9,6 @@ export interface Props { } const runtimeConfig = useRuntimeConfig(); -const { navigation } = useContent(); const { mobile } = useDisplay(); const theme = useTheme(); @@ -36,17 +35,10 @@ const sections = ref([ }, { id: "wiki", label: "Wiki", to: '/', }, { id: "refseq", label: "RefSeq DB", to: '/refseq/' }, - { id: "structure", label: "Structures DB", to: '/predicted-structure/' }, + { id: "structure", label: "Structures DB", to: '/structure/' }, { id: "help", label: "Help", to: '/help/' }, ]); -const computedNavigation = computed(() => { - return navigation.value - .filter(({ _path }) => { - return _path !== "/refseq"; - }) -}); - function toggleDrawer() { emit('update:drawer', !props.drawer) diff --git a/components/Nav/Navigation.vue b/components/Nav/Navigation.vue index 6bc1162f81400456d94cfa4c219128493a23cca5..2d98ea9ad0a5b4b43b2f590a0ed43d1f84044f65 100644 --- a/components/Nav/Navigation.vue +++ b/components/Nav/Navigation.vue @@ -16,7 +16,7 @@ const props = defineProps<{ <Navigation :navigation="navItem.children" /> </v-list-group> <template v-else> - <v-list-item :title="navItem.title" :value="navItem.title" :to="navItem._path" + <v-list-item :title="navItem?.title ?? 'no title'" :value="navItem.title" :to="navItem._path" :prepend-icon="navItem?.icon ? navItem.icon : null" color="primary" exact nav> </v-list-item> </template> diff --git a/components/ServerDbTable.vue b/components/ServerDbTable.vue index 2bc7a684c85142e3298962ab98913da774a30b29..b85e8eeb0ddfebd403676dc565ec56d25af1a480 100644 --- a/components/ServerDbTable.vue +++ b/components/ServerDbTable.vue @@ -2,11 +2,11 @@ // import type { FacetDistribution } from "meilisearch"; import { useSlots } from 'vue' import { useDisplay } from "vuetify"; -import { useFacetsStore, type Facets } from '~~/stores/facets' +import { useFacetsStore } from '~~/stores/facets' import { useMeiliSearch } from "#imports" -interface SortItem { +export interface SortItem { key: string, order: boolean | 'asc' | 'desc' } @@ -15,8 +15,8 @@ export interface Props { title?: string db?: string sortBy?: SortItem[] - facets: string[] - dataTableServerProps: { [key: string]: any; } + facets: MaybeRef<string[]> + dataTableServerProps: Record<string, any> } export interface FilterItem { @@ -25,12 +25,7 @@ export interface FilterItem { title: string count?: number deletable: boolean - props: { - [key: string]: any - // title: string - // value: any - } - // raw?: any + props: Record<string, any> } const props = withDefaults(defineProps<Props>(), { @@ -38,17 +33,20 @@ const props = withDefaults(defineProps<Props>(), { db: 'refseq', sortBy: () => [{ key: "type", order: "asc" }], }); + + + +console.log(props.dataTableServerProps) + const slots = useSlots() -console.log(slots) -const sortByRef = ref(toValue(props.sortBy)) -const facetsRef = toRef(() => props.facets) +const sortByRef = toRef(props.sortBy) +const facetsRef = toRef(props.facets) const { search: msSearch, result: msResult } = useMeiliSearch(props.db) const facetStore = useFacetsStore() const search: Ref<string> = ref(""); const filterOrSearch: Ref<FilterItem[] | null> = ref(null) const hitsPerPage: Ref<number> = ref(25) -const limit = ref(1000) const filterError: Ref<string | null> = ref(null) const msFilter: Ref<string | undefined> = ref(undefined) const page = ref(1) @@ -61,7 +59,7 @@ const computedTableHeight = computed(() => { return computedHeight > minTableHeight.value ? computedHeight : minTableHeight.value }) -const { pending: pendingDownloadData, downloadCsv } = useCsvDownload(props.db, `df-${props.db}`) +// const { pending: pendingDownloadData, downloadCsv } = useCsvDownload(props.db, `df-${props.db}`) const filterInputValues = computed(() => { // console.log("recompouted FILTER value") @@ -72,25 +70,23 @@ const filterInputValues = computed(() => { } }) -const queryInputValue = computed(() => { - // console.log("recompouted TEXT value") - - if (filterOrSearch.value !== null) { - const phrase = filterOrSearch.value - .filter((f) => { - return f.props.type === 'text' - }) - .map((f) => { - return f.value - }) - if (phrase.length > 1) { - return `${phrase.join(" ")}` - } - else { return phrase[0] } - } else { - return null - } -}) +// const queryInputValue = computed(() => { +// if (filterOrSearch.value !== null) { +// const phrase = filterOrSearch.value +// .filter((f) => { +// return f.props.type === 'text' +// }) +// .map((f) => { +// return f.value +// }) +// if (phrase.length > 1) { +// return `${phrase.join(" ")}` +// } +// else { return phrase[0] } +// } else { +// return null +// } +// }) const isFilter = computed(() => { return Array.isArray(filterOrSearch.value) @@ -172,8 +168,6 @@ watch(msFilter, async (fos) => { }) watch(msResult, (newRes) => { - // console.log(msResult) - // console.log(newRes) facetStore.setFacets({ facetDistribution: newRes.facetDistribution, facetStat: newRes.facetStat }) }, { deep: true }) @@ -223,7 +217,7 @@ const autocompleteItems = computed(() => { const index = filterOrSearch.value?.length ?? 0 // console.log(index) if (filterStep.value === null || filterStep.value === 0) { - return props.facets.map(value => { + return toValue(facetsRef).map(value => { return { type: "facet", value: `${value}-${index}`, @@ -258,80 +252,52 @@ const autocompleteItems = computed(() => { } }) -const canAddTextSearch = computed(() => { - if (filterOrSearch.value !== null && filterOrSearch.value.length > 0) { - const lastItem = filterOrSearch.value.slice(-1)[0] - return lastItem?.props.type === 'value' || lastItem?.props.type === "text" - } - return true -}) +// const canAddTextSearch = computed(() => { +// if (filterOrSearch.value !== null && filterOrSearch.value.length > 0) { +// const lastItem = filterOrSearch.value.slice(-1)[0] +// return lastItem?.props.type === 'value' || lastItem?.props.type === "text" +// } +// return true +// }) function selectItem(item) { filterOrSearch.value = Array.isArray(filterOrSearch.value) ? [...filterOrSearch.value, item] : [item] } function deleteOneFilter(index: number) { - // console.log("deleteOnefilter") - // console.log(index) - // console.log(isFilter.value) - // console.log(filterOrSearch) if (isFilter.value) { - filterOrSearch.value?.splice(index - 2, 2) - // console.log(filterOrSearch.value) - } - } -function deleteTextFilter(index: number) { - // console.log("delete text filter") - // console.log(index) - // console.log(isFilter.value) - // console.log(filterOrSearch) - // console.log(filterOrSearch.value?.length) - if (isFilter.value) { - if (index === 0) { - filterOrSearch.value?.shift() - } else { - filterOrSearch.value?.splice(index, 1) - } - // console.log(filterOrSearch.value?.length) - // console.log(filterOrSearch.value) - - } - -} - - function clearSearch() { search.value = "" } -function runTextSearch() { - if (canAddTextSearch) { - const item: FilterItem = reactive({ - type: 'text', title: search.value, value: search.value, deletable: true, props: { type: "text", deletable: true, } - }) - if (Array.isArray(filterOrSearch.value)) { - filterOrSearch.value = [ - ...filterOrSearch.value, item +// function runTextSearch() { +// if (canAddTextSearch) { +// const item: FilterItem = reactive({ +// type: 'text', title: search.value, value: search.value, deletable: true, props: { type: "text", deletable: true, } +// }) +// if (Array.isArray(filterOrSearch.value)) { +// filterOrSearch.value = [ +// ...filterOrSearch.value, item - ] - } else { - filterOrSearch.value = [item] - } - search.value = "" - searchOrFilter() - } -} +// ] +// } else { +// filterOrSearch.value = [item] +// } +// search.value = "" +// searchOrFilter() +// } +// } -function downloadData() { - downloadCsv(search, msFilter, msSortBy, notPaginatedParams) -} +// function downloadData() { +// downloadCsv(search, msFilter, msSortBy, notPaginatedParams) +// } </script> <template> @@ -349,13 +315,8 @@ function downloadData() { @click:appendInner="searchOrFilter" @click:clear="clearFilterOrSearch" @update:modelValue="() => clearSearch()"> <template #chip="{ props, item, index }"> - - <v-chip v-bind="props" :text="item.raw.title" :closable="item.props.deletable" - @click:close="item.props.type === 'text' ? deleteTextFilter(index) : deleteOneFilter(index)"></v-chip> - <!-- <v-chip v-if="(index + 1) % 3 === 0" v-bind="props" :text="item.raw.title" closable - @click:close="deleteOneFilter(index)"></v-chip> - <v-chip v-else v-bind="props" :text="item.raw.title"></v-chip> --> + @click:close="item.props.type === deleteOneFilter(index)"></v-chip> </template> <template #item="{ props, item }"> <v-list-item v-bind="{ ...props, active: false, onClick: () => selectItem(item) }" @@ -363,10 +324,6 @@ function downloadData() { </v-list-item> </template> - <!-- <template #no-data></template> - <template #prepend-item> - <v-list-item v-if="canAddTextSearch" :title="`Text search: ${search}`" @click="runTextSearch"> </v-list-item> - </template> --> </v-autocomplete> </v-col> </v-row> @@ -381,10 +338,10 @@ function downloadData() { </v-toolbar-title><v-spacer></v-spacer> - <v-btn :loading="pendingDownloadData" :disabled="totalHits > 10000" @click="downloadData" icon + <!-- <v-btn :loading="pendingDownloadData" :disabled="totalHits > 10000" @click="downloadData" icon variant="text" class="text-none mr-15"> <v-badge :content="totalHits" color="info" floating> - <v-icon>md:download</v-icon></v-badge></v-btn> + <v-icon>md:download</v-icon></v-badge></v-btn> --> </v-toolbar> </template> <template v-for="(slot, index) of Object.keys(slots)" :key="index" v-slot:[slot]="data"> diff --git a/components/content/RefseqDb.vue b/components/content/RefseqDb.vue index caa8f0676ef2479d8b9d1089c12f141022380d82..87f1ba6ad87579c5de6b346d0c71951e52d6ea26 100644 --- a/components/content/RefseqDb.vue +++ b/components/content/RefseqDb.vue @@ -3,11 +3,12 @@ import { useFacetsStore } from '~~/stores/facets' import * as Plot from "@observablehq/plot"; import PlotFigure from "~/components/PlotFigure"; import { useDisplay } from "vuetify"; - +import type { SortItem } from "@/components/ServerDbTable.vue" +import { ServerDbTable } from "#components" const facetStore = useFacetsStore() -const sortBy: Ref<{ key: string, order: string }[]> = ref([{ key: 'type', order: "asc" }]) +const sortBy: Ref<SortItem[]> = ref([{ key: 'type', order: "asc" }]) const itemValue = ref("id"); const { width } = useDisplay(); const distriTool: Ref<string[]> = ref([]) @@ -157,7 +158,8 @@ const computedDistriTaxoOptions = computed(() => { ], }; }); -function capitalize([first, ...rest]) { +function capitalize(name: string) { + const [first, ...rest] = name return first.toUpperCase() + rest.join('').toLowerCase(); } @@ -209,7 +211,6 @@ function namesToAccessionChips(names: string[]) { </v-col> </v-row> </v-card> - <ServerDbTable title="RefSeq" db="refseq" :sortBy="sortBy" :facets="facets" :data-table-server-props="dataTableServerProps"> <template #[`item.accession_in_sys`]="{ item }"> diff --git a/components/content/StructureDb.vue b/components/content/StructureDb.vue index 93ecadf11a8b1daf17165c4544eeb7da33d2d04f..4757a26771ed05b07d20d65983148aec1d4ccebe 100644 --- a/components/content/StructureDb.vue +++ b/components/content/StructureDb.vue @@ -1,5 +1,7 @@ <script setup lang="ts"> -const sortBy: Ref<{ key: string, order: string }[]> = ref([{ key: 'system', order: "asc" }]) +import type { SortItem } from "@/components/ServerDbTable.vue" +import { ServerDbTable } from "#components" +const sortBy: Ref<SortItem[]> = ref([{ key: 'system', order: "asc" }]) const itemValue = ref("id"); const facets: Ref<string[]> = ref(["system", "completed", "plddts",]) @@ -26,9 +28,9 @@ const defaultDataTableServerProps = ref({ const dataTableServerProps = computed(() => { return { - ...defaultDataTableServerProps.value, - headers: headers.value, - itemValue: itemValue.value + ...toValue(defaultDataTableServerProps), + headers: toValue(headers), + itemValue: toValue(itemValue) } }) diff --git a/content/2.general-concepts/0.index.md b/content/2.general-concepts/0.index.md index e172046eb3f3596722e1cf783e73ed022206d6dc..255c3d7f997c61900c2b0280f3cc9fcf0090b874 100644 --- a/content/2.general-concepts/0.index.md +++ b/content/2.general-concepts/0.index.md @@ -1,6 +1,5 @@ --- title: General Concepts -toc: true layout: article --- diff --git a/content/2.general-concepts/1.abortive-infection.md b/content/2.general-concepts/1.abortive-infection.md index 2e5c1975b13f8ef5dca161a567840a8bb6c8820b..dfea3e89652cb2249b37bd971fb4b7fbb934b187 100644 --- a/content/2.general-concepts/1.abortive-infection.md +++ b/content/2.general-concepts/1.abortive-infection.md @@ -1,7 +1,6 @@ --- title: Abortive Infection layout: article -toc: true --- diff --git a/content/2.general-concepts/2.defense-islands.md b/content/2.general-concepts/2.defense-islands.md index 82062efe0566465413112ad668982411428d4ae4..cc7d3012a9a952e1a2c3973ed52b3d8d94a5083a 100644 --- a/content/2.general-concepts/2.defense-islands.md +++ b/content/2.general-concepts/2.defense-islands.md @@ -1,5 +1,6 @@ --- title: Defense Islands +layout: article --- diff --git a/content/2.general-concepts/3.phage_trigger.md b/content/2.general-concepts/3.phage_trigger.md index 17be0ed6a741049734525043db1cf3710a16f292..da335edbe90f768b8471a5e9d042158438cea050 100644 --- a/content/2.general-concepts/3.phage_trigger.md +++ b/content/2.general-concepts/3.phage_trigger.md @@ -2,6 +2,7 @@ title: Defense system triggers contributors: - Avigail Stokar-Avihail +layout: article --- # How anti-phage systems sense invading phages diff --git a/content/4.refseq.md b/content/4.refseq.md index a93eeb2eb4fa41af35a53b6d4360881ba490ca55..5f47b8c5d7d5cb3a1ce29389a4e0bad75de8a86a 100644 --- a/content/4.refseq.md +++ b/content/4.refseq.md @@ -1,6 +1,7 @@ --- +title: RefSeq DB layout: db -navigation: false +navigation: true --- diff --git a/content/5.predicted-structure.md b/content/5.predicted-structure.md deleted file mode 100644 index 72f24e2057ad1745dbb57c16e4c07c2fd7f161f3..0000000000000000000000000000000000000000 --- a/content/5.predicted-structure.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: db -navigation: false ---- - -::structure-db -:: \ No newline at end of file diff --git a/content/5.structure.md b/content/5.structure.md new file mode 100644 index 0000000000000000000000000000000000000000..7fdd6f7283a52be0a4afd32e6668323235ad04dc --- /dev/null +++ b/content/5.structure.md @@ -0,0 +1,9 @@ +--- +title: Structures DB +layout: db +navigation: true +--- + + +::structure-db +:: \ No newline at end of file diff --git a/nuxt.config.ts b/nuxt.config.ts index 57f09717aec376064e97b96ca38d5bb0a82777d5..0b414ce8b89c6a308536fcedcfd775654ce18b34 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -19,7 +19,6 @@ export default defineNuxtConfig({ 'sh', ] }, - layoutFallbacks: ['article'], }, vuetify: { vuetifyOptions: { @@ -53,6 +52,7 @@ export default defineNuxtConfig({ meiliApiKey: 'api_key' } }, + vue: { compilerOptions: { isCustomElement: (tag) => ['pdbe-molstar'].includes(tag), diff --git a/packages/df-wiki-cli/df_wiki_cli/content/main.py b/packages/df-wiki-cli/df_wiki_cli/content/main.py index b869c6680935000cb1025d9f01b0e3caba6eb534..015ec277835f6d1fe2f1177b1fd63ac2545fcfb0 100644 --- a/packages/df-wiki-cli/df_wiki_cli/content/main.py +++ b/packages/df-wiki-cli/df_wiki_cli/content/main.py @@ -27,10 +27,10 @@ class TableArticle(BaseModel): class TableColumns(BaseModel): article: TableArticle - Sensor: str - Activator: str - Effector: str - PFAM: str + Sensor: Optional[str] = None + Activator: Optional[str] = None + Effector: Optional[str] = None + PFAM: Optional[str] = None class RelevantAbstract(BaseModel): @@ -64,10 +64,6 @@ def lint( try: FrontMatter.model_validate(metadata) except ValidationError as exc: - # print(repr(exc.errors()[0]["type"])) - # print(repr(exc)) - # print(exc.errors()) - # pprint(exc.errors(), expand_all=True) for err in exc.errors(): console.print( f"[red]{err['msg']} : {err['type']} {' -> '.join([str(l) for l in err['loc']])}" diff --git a/pages/predicted-structure.vue b/pages/predicted-structure.vue deleted file mode 100644 index b05e520f3b0928bb9fc8e732aa289f7aa4e118c4..0000000000000000000000000000000000000000 --- a/pages/predicted-structure.vue +++ /dev/null @@ -1,3 +0,0 @@ -<template> - <ContentDoc></ContentDoc> -</template> \ No newline at end of file diff --git a/pages/refseq.vue b/pages/refseq.vue deleted file mode 100644 index b05e520f3b0928bb9fc8e732aa289f7aa4e118c4..0000000000000000000000000000000000000000 --- a/pages/refseq.vue +++ /dev/null @@ -1,3 +0,0 @@ -<template> - <ContentDoc></ContentDoc> -</template> \ No newline at end of file