-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtext-field.render.tsx
72 lines (66 loc) · 1.91 KB
/
text-field.render.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import type { TextFieldBindings } from './text-field.setup';
import type { RenderFunction } from '@/app/shared/types/component/render';
/**
* @see https://segmentfault.com/a/1190000041616822
*/
import { normalizeClass } from 'vue';
import { styles } from './styles/text-field.styles';
import { createComponentDataAttrMarks } from '@/app/shared/utils/forward-el';
// ctx, cache, props, setup, data, options
export const render: RenderFunction<TextFieldBindings> = function (
ctx,
cache,
$props,
$setup,
$data,
$options
) {
// const { props, context, onInputInput, $, shallowObj, deepObj } = this;
console.log(
'"this" of "TextField" component inside "render" function:',
this
);
console.log(
'"arguments" of "TextField" component inside "render" function:',
// @ts-ignore
// eslint-disable-next-line
arguments
);
const { rootElDataAttrs, forwardElDataAttrs } = createComponentDataAttrMarks(
ctx.$.uid
);
return (
<div
{...rootElDataAttrs}
{...ctx.context.attrs}
class={normalizeClass([styles.textField, ctx.context.attrs?.class])}
/* ----------------- omitted attrs ----------------- */
contenteditable={undefined}
/* ----------------- omitted attrs ----------------- */
>
{ctx.context.slots?.label != null && (
<label
{...ctx.props?.label}
class={normalizeClass([
styles.textField__label,
this.props?.label?.class
])}
>
{ctx.context.slots.label()}
</label>
)}
<input
{...forwardElDataAttrs}
// todo fix order!
onInput={ctx.onInputInput}
{...ctx.props?.input}
class={normalizeClass([
styles.textField__input,
ctx.props?.input?.class
])}
type={ctx.props?.input?.type || 'text'}
value={ctx.props?.input?.value || ctx.props.modelValue}
/>
</div>
);
};