Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F1263288
component.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
5 KB
Referenced Files
None
Subscribers
None
component.ts
View Options
import
{
FlatTemplatable
}
from
"tempstream"
;
import
{
ComponentArgument
,
ExtractStructuredComponentArgumentsParsed
,
ExtractStructuredComponentArgumentsReceived
,
ExtractStructuredComponentArgumentsStorage
,
JDDContext
,
}
from
"./index.js"
;
import
slug
from
"slug"
;
export
interface
ComponentConstructor
<
A
extends
Record
<
string
,
ComponentArgument
<
unknown
>>
=
Record
<
string
,
ComponentArgument
<
unknown
>
>
>
{
new
()
:
Component
<
A
>
;
}
export
type
EarlyAsset
=
(
|
{
type
:
"script"
|
"style"
;
url
:
string
;
integrity
?:
string
}
|
{
type
:
"script"
|
"style"
;
content
:
string
}
)
&
{
identity
:
string
};
// identity key will be used for deduplication
export
type
JDDHeading
=
{
text
:
string
;
level
:
number
;
id
?:
string
};
export
type
ComponentToHTMLArgs
<
T
extends
Record
<
string
,
ComponentArgument
<
unknown
>>
>
=
{
args
:
ExtractStructuredComponentArgumentsParsed
<
T
>
;
classes
:
string
[];
jdd_context
:
JDDContext
;
index
:
number
;
};
export
abstract
class
Component
<
ArgumentsT
extends
Record
<
string
,
ComponentArgument
<
unknown
>>
=
Record
<
string
,
ComponentArgument
<
unknown
>
>
>
{
abstract
getArguments
()
:
ArgumentsT
;
abstract
toHTML
(
params
:
ComponentToHTMLArgs
<
ArgumentsT
>
)
:
FlatTemplatable
|
Promise
<
FlatTemplatable
>
;
getTitle
(
context
:
JDDContext
,
args
:
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>
)
:
string
|
null
{
return
null
;
}
getHeadings
(
context
:
JDDContext
,
args
:
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>
)
:
JDDHeading
[]
{
const
title
=
this
.
getTitle
(
context
,
args
);
if
(
title
)
{
return
[{
text
:
title
,
level
:
1
,
id
:
slug
(
title
)
}];
}
else
{
return
[];
}
}
getCSSClumps
()
:
string
[]
{
return
[];
}
async
getEarlyAssets
(
_args
:
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>
,
_context
:
JDDContext
)
:
Promise
<
EarlyAsset
[]
>
{
return
[];
}
countWords
(
args
:
Record
<
string
,
unknown
>
)
:
number
{
return
Object
.
entries
(
args
).
reduce
((
acc
,
[
arg_name
,
value
])
=>
{
const
arg
=
this
.
getArguments
()[
arg_name
];
if
(
!
arg
)
{
console
.
warn
(
`Arguemnt
${
arg_name
}
was not found in the component`
);
return
acc
+
0
;
}
return
acc
+
arg
.
countWords
(
value
);
},
0
);
}
async
getExampleValues
(
context
:
JDDContext
)
:
Promise
<
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>>
{
return
Object
.
fromEntries
(
await
Promise
.
all
(
Object
.
entries
(
this
.
getArguments
()).
map
(
async
([
key
,
value
])
=>
[
key
,
await
value
.
getExampleValue
(
context
),
]
)
)
)
as
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>
;
}
async
convertReceivedValuesToParsed
(
context
:
JDDContext
,
values
:
ExtractStructuredComponentArgumentsReceived
<
ArgumentsT
>
)
:
Promise
<
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>>
{
const
args
=
this
.
getArguments
();
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return
Object
.
fromEntries
(
await
Promise
.
all
(
Object
.
entries
(
values
).
map
(
async
([
key
,
value
])
=>
{
return
[
key
,
await
args
[
key
].
receivedToParsed
(
context
,
value
),
];
})
)
);
}
async
convertParsedToStorage
(
context
:
JDDContext
,
values
:
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>
)
:
Promise
<
ExtractStructuredComponentArgumentsStorage
<
ArgumentsT
>>
{
const
args
=
this
.
getArguments
();
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return
Object
.
fromEntries
(
await
Promise
.
all
(
Object
.
entries
(
values
).
map
(
async
([
key
,
value
])
=>
{
return
[
key
,
await
args
[
key
]
?
.
parsedToStorage
(
context
,
value
),
];
})
)
);
}
async
convertStorageToParsed
(
context
:
JDDContext
,
values
:
ExtractStructuredComponentArgumentsStorage
<
ArgumentsT
>
)
:
Promise
<
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>>
{
const
args
=
this
.
getArguments
();
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return
Object
.
fromEntries
(
await
Promise
.
all
(
Object
.
entries
(
values
).
map
(
async
([
key
,
value
])
=>
{
if
(
!
args
[
key
])
{
return
[
key
,
null
];
}
return
[
key
,
await
args
[
key
].
storageToParsed
(
context
,
value
),
];
})
)
);
}
// returns the argument, remaining path, and the values for that argument
getArgumentAtPath
(
argument_path
:
string
[],
values
:
ExtractStructuredComponentArgumentsParsed
<
ArgumentsT
>
)
:
[
ComponentArgument
<
unknown
>
|
null
,
string
[],
unknown
]
{
argument_path
=
[...
argument_path
];
if
(
argument_path
.
length
==
0
)
{
return
[
null
,
[],
null
];
}
const
arg_name
=
argument_path
.
shift
()
as
string
;
let
argument
:
ComponentArgument
<
unknown
>
|
null
=
this
.
getArguments
()[
arg_name
];
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
values
=
values
[
arg_name
]
as
any
;
if
(
argument_path
.
length
==
0
)
{
return
[
argument
,
[],
values
];
}
do
{
// the getSubArgument method can consume as many keys from the path as it wants
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
[
argument
,
argument_path
,
values
]
=
argument
.
getSubArgument
(
argument_path
,
values
)
as
any
;
}
while
(
argument_path
.
length
&&
argument
!==
null
);
return
[
argument
,
argument_path
,
values
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Fri, Jan 24, 16:50 (7 h, 3 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
599439
Default Alt Text
component.ts (5 KB)
Attached To
Mode
rJDD jdd
Attached
Detach File
Event Timeline
Log In to Comment