old version placed
This commit is contained in:
0
apimaps/building/iconSet.tsx
Normal file
0
apimaps/building/iconSet.tsx
Normal file
1
apimaps/building/page.tsx
Normal file
1
apimaps/building/page.tsx
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
71
apimaps/building/pageInfo.ts
Normal file
71
apimaps/building/pageInfo.ts
Normal file
@@ -0,0 +1,71 @@
|
||||
const BuildPageInfo = {
|
||||
tr: [
|
||||
{
|
||||
title: "Bina Listesi",
|
||||
icon: null,
|
||||
description: "Bina listeyebilirsiniz",
|
||||
endpoint: "/building/build/list",
|
||||
component: "Table",
|
||||
},
|
||||
{
|
||||
title: "Bina Ekle",
|
||||
icon: "BadgePlus",
|
||||
description: "Bina oluşturma sayfasına hoş geldiniz",
|
||||
endpoint: "/building/build/create",
|
||||
component: "AddCreate2Table",
|
||||
},
|
||||
{
|
||||
title: null,
|
||||
icon: "Pencil",
|
||||
description: "Bina güncelleme sayfasına hoş geldiniz",
|
||||
endpoint: "/building/build/update/{build_uu_id}",
|
||||
component: "AddUpdate2Table",
|
||||
},
|
||||
],
|
||||
en: [
|
||||
{
|
||||
title: "Building List",
|
||||
icon: null,
|
||||
description: "Welcome to the building update page",
|
||||
endpoint: "/building/build/list",
|
||||
component: "Table",
|
||||
},
|
||||
{
|
||||
title: "Create Building",
|
||||
icon: "BadgePlus",
|
||||
description: "Welcome to the building creation page",
|
||||
endpoint: "/building/build/create",
|
||||
component: "AddCreate2Table",
|
||||
},
|
||||
{
|
||||
title: "Update Building",
|
||||
icon: "Pencil",
|
||||
description: "Welcome to the building update page",
|
||||
endpoint: "/building/build/update/{build_uu_id}",
|
||||
component: "AddUpdate2Table",
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const BuildAllEndpoints = [
|
||||
"/building/build/list",
|
||||
"/building/build/create",
|
||||
"/building/build/update/{build_uu_id}",
|
||||
"/building/parts/list",
|
||||
"/building/parts/create",
|
||||
"/building/parts/update/{build_uu_id}",
|
||||
"/building/area/list",
|
||||
"/building/area/create",
|
||||
"/building/area/update/{build_uu_id}",
|
||||
"/building/living_space/list",
|
||||
"/building/living_space/create",
|
||||
"/building/living_space/update/{build_uu_id}",
|
||||
];
|
||||
|
||||
const BuildSelfEndpoints = [
|
||||
"/building/build/list",
|
||||
"/building/build/create",
|
||||
"/building/build/update/{build_uu_id}",
|
||||
];
|
||||
|
||||
export { BuildPageInfo, BuildSelfEndpoints, BuildAllEndpoints };
|
||||
45
apimaps/building/subCategories.tsx
Normal file
45
apimaps/building/subCategories.tsx
Normal file
@@ -0,0 +1,45 @@
|
||||
import { LivingSpaceInfo } from "../livingSpace/pageInfo";
|
||||
import { PartsPageInfo } from "../parts/pageInfo";
|
||||
|
||||
const BuildCategories = [
|
||||
{
|
||||
title: {
|
||||
tr: "Daireler",
|
||||
en: "Flats",
|
||||
},
|
||||
icon: "DoorOpen",
|
||||
component: "PartsPage",
|
||||
pageInfo: PartsPageInfo,
|
||||
allEndpoints: [],
|
||||
subCategories: [],
|
||||
},
|
||||
{
|
||||
title: {
|
||||
tr: "Kullanılabilir Alanlar",
|
||||
en: "Building Areas",
|
||||
},
|
||||
icon: "TreePine",
|
||||
component: null,
|
||||
selfEndpoints: [
|
||||
"/building/area/list",
|
||||
"/building/area/create",
|
||||
"/building/area/update/{build_uu_id}",
|
||||
],
|
||||
pageInfo: null,
|
||||
allEndpoints: [],
|
||||
subCategories: [],
|
||||
},
|
||||
{
|
||||
title: {
|
||||
tr: "Yaşayan Kişiler",
|
||||
en: "Living People",
|
||||
},
|
||||
icon: "UsersRound",
|
||||
component: "LivingSpacePage",
|
||||
pageInfo: LivingSpaceInfo,
|
||||
allEndpoints: [],
|
||||
subCategories: [],
|
||||
},
|
||||
];
|
||||
|
||||
export { BuildCategories };
|
||||
Reference in New Issue
Block a user