register.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <script lang="ts" setup>
  2. import type { VbenFormSchema } from '@vben/common-ui';
  3. import type { Recordable } from '@vben/types';
  4. import { computed, h, ref } from 'vue';
  5. import { AuthenticationRegister, z } from '@vben/common-ui';
  6. import { $t } from '@vben/locales';
  7. defineOptions({ name: 'Register' });
  8. const loading = ref(false);
  9. const formSchema = computed((): VbenFormSchema[] => {
  10. return [
  11. {
  12. component: 'VbenInput',
  13. componentProps: {
  14. placeholder: $t('authentication.usernameTip'),
  15. },
  16. fieldName: 'username',
  17. label: $t('authentication.username'),
  18. rules: z.string().min(1, { message: $t('authentication.usernameTip') }),
  19. },
  20. {
  21. component: 'VbenInputPassword',
  22. componentProps: {
  23. passwordStrength: true,
  24. placeholder: $t('authentication.password'),
  25. },
  26. fieldName: 'password',
  27. label: $t('authentication.password'),
  28. renderComponentContent() {
  29. return {
  30. strengthText: () => $t('authentication.passwordStrength'),
  31. };
  32. },
  33. rules: z.string().min(1, { message: $t('authentication.passwordTip') }),
  34. },
  35. {
  36. component: 'VbenInputPassword',
  37. componentProps: {
  38. placeholder: $t('authentication.confirmPassword'),
  39. },
  40. dependencies: {
  41. rules(values) {
  42. const { password } = values;
  43. return z
  44. .string()
  45. .min(1, { message: $t('authentication.passwordTip') })
  46. .refine((value) => value === password, {
  47. message: $t('authentication.confirmPasswordTip'),
  48. });
  49. },
  50. triggerFields: ['password'],
  51. },
  52. fieldName: 'confirmPassword',
  53. label: $t('authentication.confirmPassword'),
  54. rules: z.string().min(1, { message: $t('authentication.passwordTip') }),
  55. },
  56. {
  57. component: 'VbenCheckbox',
  58. fieldName: 'agreePolicy',
  59. renderComponentContent: () => ({
  60. default: () =>
  61. h('span', [
  62. $t('authentication.agree'),
  63. h(
  64. 'a',
  65. {
  66. class:
  67. 'cursor-pointer text-primary ml-1 hover:text-primary-hover',
  68. href: '',
  69. },
  70. [
  71. $t('authentication.privacyPolicy'),
  72. '&',
  73. $t('authentication.terms'),
  74. ],
  75. ),
  76. ]),
  77. }),
  78. rules: z.boolean().refine((value) => !!value, {
  79. message: $t('authentication.agreeTip'),
  80. }),
  81. },
  82. ];
  83. });
  84. function handleSubmit(value: Recordable<any>) {
  85. // eslint-disable-next-line no-console
  86. console.log('register submit:', value);
  87. }
  88. </script>
  89. <template>
  90. <AuthenticationRegister
  91. :form-schema="formSchema"
  92. :loading="loading"
  93. @submit="handleSubmit"
  94. />
  95. </template>