diff --git a/src/App.vue b/src/App.vue index 823d6cea..74859ffc 100644 --- a/src/App.vue +++ b/src/App.vue @@ -18,7 +18,6 @@ limitations under the License. --> diff --git a/src/views/dashboard/data.ts b/src/views/dashboard/data.ts new file mode 100644 index 00000000..dbe83cc9 --- /dev/null +++ b/src/views/dashboard/data.ts @@ -0,0 +1,87 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +export const EntityType = [ + { value: "service", label: "Service" }, + { value: "all", label: "All" }, + { value: "endpoint", label: "Service Endpoint" }, + { value: "serviceInstance", label: "Service Instance" }, + { value: "serviceRelation", label: "Service Relation" }, + { value: "serviceInstanceRelation", label: "Service Instance Relation" }, + { value: "endpointRelation", label: "Endpoint Relation" }, +]; +export const SelectOpt = [ + { + value: "guide", + label: "Guide", + children: [ + { + value: "disciplines", + label: "Disciplines", + children: [ + { + value: "consistency", + label: "Consistency", + }, + { + value: "feedback", + label: "Feedback", + }, + { + value: "efficiency", + label: "Efficiency", + }, + ], + }, + { + value: "navigation", + label: "Navigation", + children: [ + { + value: "side nav", + label: "Side Navigation", + }, + { + value: "top nav", + label: "Top Navigation", + }, + ], + }, + ], + }, +]; +export const Options = [ + { + value: "Option1", + label: "Option1", + }, + { + value: "Option2", + label: "Option2", + }, + { + value: "Option3", + label: "Option3", + }, + { + value: "Option4", + label: "Option4", + }, + { + value: "Option5", + label: "Option5", + }, +];