Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun123 committed Sep 30, 2024
2 parents b62af69 + 0d562c4 commit 32837b6
Show file tree
Hide file tree
Showing 67 changed files with 1,432 additions and 159 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,10 @@ replay_pid*
build/


# End of https://www.toptal.com/developers/gitignore/api/java,intellij
# End of https://www.toptal.com/developers/gitignore/api/java,intellij



#eclipse
.settings
.project
15 changes: 15 additions & 0 deletions applicationFE/src/api/softwareCatalog.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import request from "../common/request";
import type { SoftwareCatalog } from "@/views/type/type";

// software catalog list
export const getSoftwareCaltalogList = (title:string) => {
return request.get(`/catalog/software/?title=${title}`)
}

export const getSoftwareCaltalogDetail = (catalogIdx :number) => {
return request.get(`/catalog/software/${catalogIdx}`)
}

export const createCatalog = (param: object) => {
return request.post(`/catalog/software`, param)
}
9 changes: 9 additions & 0 deletions applicationFE/src/resources/css/demo.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions applicationFE/src/resources/css/tabler.min.css

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions applicationFE/src/resources/js/demo-theme.min.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*!
* Tabler v1.0.0-beta19 (https://tabler.io)
* @version 1.0.0-beta19
* @link https://tabler.io
* Copyright 2018-2023 The Tabler Authors
* Copyright 2018-2023 codecalm.net Paweł Kuna
* Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
*/
!function(e){"function"==typeof define&&define.amd?define(e):e()}((function(){"use strict";var e,t="tablerTheme",a=new Proxy(new URLSearchParams(window.location.search),{get:function(e,t){return e.get(t)}});if(a.theme)localStorage.setItem(t,a.theme),e=a.theme;else{var n=localStorage.getItem(t);e=n||"light"}"dark"===e?document.body.setAttribute("data-bs-theme",e):document.body.removeAttribute("data-bs-theme")}));
5 changes: 5 additions & 0 deletions applicationFE/src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ const router = createRouter({
name: 'repositoryDetail',
component: () => import('@/views/repository/RepositoryDetail.vue' as any)
},
{
path: `/web/sofrwareCatalog/list`,
name: 'softwareCatalogList',
component: () => import('@/views/softwareCatalog/SoftwareCatalogList.vue' as any)
},
]
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<input type="text" class="form-control w-33" name="example-text-input" v-model="metadata.name" placeholder="configMap-01" />
</div>
<div class="mb-3">
<label class="form-label">- Namespace</label>
<label class="form-label required">- Namespace</label>
<input type="text" class="form-control w-33" name="example-text-input" v-model="metadata.namespace" placeholder="namespace" />
</div>
<div class="mb-3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<input type="text" class="form-control w-33" name="example-text-input" v-model="metadata.name" placeholder="deployment-01" />
</div>
<div class="mb-3">
<label class="form-label">- Namespace</label>
<label class="form-label required">- Namespace</label>
<input type="text" class="form-control w-33" name="example-text-input" v-model="metadata.namespace" placeholder="namespace" />
</div>
<div class="mb-3">
Expand Down
2 changes: 1 addition & 1 deletion applicationFE/src/views/generate/components/hpaForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<input type="text" class="form-control w-33" name="example-text-input" v-model="metadata.name" placeholder="name" />
</div>
<div class="mb-3">
<label class="form-label">- Namespace</label>
<label class="form-label required">- Namespace</label>
<input type="text" class="form-control w-33" name="example-text-input" v-model="metadata.namespace" placeholder="namespace" />
</div>
<div class="mb-3">
Expand Down
Loading

0 comments on commit 32837b6

Please sign in to comment.