Module: features/feature
Enumerations
Visibility
• Visibility: Object
Enum for what the visibility of a feature or component should be
Name | Type | Description |
---|---|---|
Hidden | 1 | The feature or component should not appear but still take up space |
None | 2 | The feature or component should not appear not take up space |
Visible | 0 | The feature or component should be visible |
Defined in
profectus/src/features/feature.ts:61
Type Aliases
CoercableComponent
Ƭ CoercableComponent: string
| DefineComponent
| JSXFunction
Any value that can be coerced into (or is) a vue component
Defined in
profectus/src/features/feature.ts:25
GenericComponent
Ƭ GenericComponent: DefineComponent
<any
, any
, any
>
A type that refers to any vue component
Defined in
profectus/src/features/feature.ts:35
JSXFunction
Ƭ JSXFunction: () => JSX.Element
& { [DoNotCache]
: true
}
A type referring to a function that returns JSX and is marked that it shouldn't be wrapped in a ComputedRef
See
Defined in
profectus/src/features/feature.ts:21
OptionsFunc
Ƭ OptionsFunc<T
, R
, S
>: (obj
: R
) => OptionsObject
<T
, R
, S
>
Type parameters
Name | Type |
---|---|
T | T |
R | unknown |
S | R |
Type declaration
▸ (obj
): OptionsObject
<T
, R
, S
>
Utility function for a function that returns an object of a given type, with "this" bound to what the type will eventually be processed into. Intended for making lazily evaluated objects.
Parameters
Name | Type |
---|---|
obj | R |
Returns
OptionsObject
<T
, R
, S
>
Defined in
profectus/src/features/feature.ts:45
OptionsObject
Ƭ OptionsObject<T
, R
, S
>: T
& Partial
<R
> & ThisType
<T
& S
>
Type parameters
Name | Type |
---|---|
T | T |
R | unknown |
S | R |
Defined in
profectus/src/features/feature.ts:47
Replace
Ƭ Replace<T
, S
>: S
& Omit
<T
, keyof S
>
Utility type that is S, with any properties from T that aren't already present in S
Type parameters
Name |
---|
T |
S |
Defined in
profectus/src/features/feature.ts:38
StyleValue
Ƭ StyleValue: string
| CSSProperties
| (string
| CSSProperties
)[]
Any value that can be passed into an HTML element's style attribute. Note that Profectus uses its own StyleValue and CSSProperties that are extended, in order to have additional properties added to them, such as variable CSS variables.
Defined in
profectus/src/features/feature.ts:31
Variables
Component
• Const
Component: typeof Component
A symbol to use as a key for a vue component a feature can be rendered with
See
Defined in
profectus/src/features/feature.ts:10
GatherProps
• Const
GatherProps: typeof GatherProps
A symbol to use as a key for a prop gathering function that a feature can use to send to its component
See
Defined in
profectus/src/features/feature.ts:15
Functions
excludeFeatures
▸ excludeFeatures(obj
, ...types
): unknown
[]
Traverses an object and returns all features that are not any of the given types. Features are any object with a "type" property that has a symbol value.
Parameters
Name | Type | Description |
---|---|---|
obj | Record <string , unknown > | The object to traverse |
...types | symbol [] | The feature types that will be skipped over |
Returns
unknown
[]
Defined in
profectus/src/features/feature.ts:130
findFeatures
▸ findFeatures(obj
, ...types
): unknown
[]
Traverses an object and returns all features of the given type(s)
Parameters
Name | Type | Description |
---|---|---|
obj | Record <string , unknown > | The object to traverse |
...types | symbol [] | The feature types that will be searched for |
Returns
unknown
[]
Defined in
profectus/src/features/feature.ts:105
getUniqueID
▸ getUniqueID(prefix?
): string
Gets a unique ID to give to each feature, used for any sort of system that needs to identify elements in the DOM rather than references to the feature itself. (For example, branches) IDs are guaranteed unique, but NOT persistent - they likely will change between updates.
Parameters
Name | Type | Default value | Description |
---|---|---|---|
prefix | string | "feature-" | A string to prepend to the id to make it more readable in the inspector tools |
Returns
string
Defined in
profectus/src/features/feature.ts:56
isHidden
▸ isHidden(visibility
): boolean
Name | Type |
---|---|
visibility | ProcessedComputable <boolean | Visibility > |
Defined in
profectus/src/features/feature.ts:75
isVisible
▸ isVisible(visibility
): boolean
Name | Type |
---|---|
visibility | ProcessedComputable <boolean | Visibility > |
Defined in
profectus/src/features/feature.ts:70
jsx
▸ jsx(func
): JSXFunction
Takes a function and marks it as JSX so it won't get auto-wrapped into a ComputedRef. The function may also return empty string as empty JSX tags cause issues.
Parameters
Name | Type |
---|---|
func | () => "" | Element |
Returns
Defined in
profectus/src/features/feature.ts:84
setDefault
▸ setDefault<T
, K
>(object
, key
, value
): asserts object is Exclude<T, K> & Required<Pick<T, K>>
Utility function to set a property on an object if and only if it doesn't already exist
Type parameters
Name | Type |
---|---|
T | T |
K | extends string | number | symbol |
Parameters
Name | Type |
---|---|
object | T |
key | K |
value | T [K ] |
Returns
asserts object is Exclude<T, K> & Required<Pick<T, K>>