use-deploy-mode.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. import { Ref, ref, watchEffect } from 'vue'
  18. import { useI18n } from 'vue-i18n'
  19. import type { IJsonItem, IOption } from '../types'
  20. export function useDeployMode(
  21. span: number | Ref<number> = 24,
  22. showClient = ref(true),
  23. showCluster = ref(true),
  24. showLocal = ref(true)
  25. ): IJsonItem {
  26. const { t } = useI18n()
  27. const deployModeOptions = ref(DEPLOY_MODES as IOption[])
  28. watchEffect(() => {
  29. deployModeOptions.value = DEPLOY_MODES.filter((option) => {
  30. switch (option.value) {
  31. case 'cluster':
  32. return showCluster.value
  33. case 'client':
  34. return showClient.value
  35. case 'local':
  36. return showLocal.value
  37. default:
  38. return true
  39. }
  40. })
  41. })
  42. return {
  43. type: 'radio',
  44. field: 'deployMode',
  45. name: t('project.node.deploy_mode'),
  46. options: deployModeOptions,
  47. span: span
  48. }
  49. }
  50. export const DEPLOY_MODES = [
  51. {
  52. label: 'cluster',
  53. value: 'cluster'
  54. },
  55. {
  56. label: 'client',
  57. value: 'client'
  58. },
  59. {
  60. label: 'local',
  61. value: 'local'
  62. }
  63. ]