Skip to content

Commit 42bc7d4

Browse files
chore: autopublish 2021-11-11T00:57:37Z
1 parent 4e20851 commit 42bc7d4

File tree

1 file changed

+42
-49
lines changed

1 file changed

+42
-49
lines changed

docs/library/mixin.md

+42-49
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,104 @@
11
# Fluid Mixins
22

3-
- [register_default](#register_default)
4-
- [register_named](#register_named)
5-
- [get_default](#get_default)
6-
- [get_named](#get_named)
7-
- [apply_named](#apply_named)
8-
- [apply_table](#apply_table)
3+
- [has_mixin](#has_mixin)
4+
- [has_mixin](#has_mixin)
5+
- [register_global_mixin](#register_global_mixin)
6+
- [register_mixin](#register_mixin)
7+
- [get_global_mixin](#get_global_mixin)
8+
- [get_mixin](#get_mixin)
99

10-
## register_default
10+
## has_mixin
1111

1212
```lua
13-
fluid_mixins.register_default(class, prop[, value])
13+
fluid_mixins.has_mixin(name)
1414
```
1515

16-
Register a mixin for a Finale class that will be applied globally. Note that methods are applied retroactively but properties will only be applied to new instances.
16+
Object Method: Checks if the object it is called on has a mixin applied.
1717

1818

1919
| Input | Type | Description |
2020
| --- | --- | --- |
21-
| `class` | `string\|array` | The class (or an array of classes) to apply the mixin to. |
22-
| `prop` | `string\|table` | Either the property name, or a table with pairs of (string) = (mixed) |
23-
@ value [mixed] OPTIONAL: Method or property value. Will be ignored if prop is a table.
21+
| `name` | `string` | Mixin name. |
2422

25-
## register_named
23+
| Output type | Description |
24+
| --- | --- |
25+
| `boolean` | |
26+
27+
## has_mixin
2628

2729
```lua
28-
fluid_mixins.register_named(class, mixin_name, prop[, value])
30+
fluid_mixins.has_mixin(name)
2931
```
3032

31-
Register a named mixin which can then be applied by calling apply_named. If a named mixin requires setup, include a method called `init` that accepts zero arguments. It will be called when the mixin is applied.
33+
Object Method: Applies a mixin to the object it is called on.
3234

3335

3436
| Input | Type | Description |
3537
| --- | --- | --- |
36-
| `class` | `string\|array` | The class (or an array of classes) to apply the mixin to. |
37-
| `mixin_name` | `string\|array` | Mixin name, or an array of names. |
38-
| `prop` | `string\|table` | Either the property name, or a table with pairs of (string) = (mixed) |
39-
@ value [mixed] OPTIONAL: Method or property value. Will be ignored if prop is a table.
38+
| `name` | `string` | Mixin name. |
4039

41-
## get_default
40+
## register_global_mixin
4241

4342
```lua
44-
fluid_mixins.get_default(class, prop)
43+
fluid_mixins.register_global_mixin(class, prop[, value])
4544
```
4645

47-
Retrieves the value of a default mixin.
46+
Library Method: Register a mixin for a finale class that will be applied globally (ie to all instances of the specified classes, including existing instances). Properties and methods cannot end in an underscore.
4847

4948

5049
| Input | Type | Description |
5150
| --- | --- | --- |
52-
| `class` | `string` | The Finale class name. |
53-
| `prop` | `string` | The name of the property or method. |
54-
55-
| Output type | Description |
56-
| --- | --- |
57-
| `mixed\|nil` | If the value is a table, a copy will be returned. |
51+
| `class` | `string\|array` | The target class (or an array of classes). |
52+
| `prop` | `string\|table` | Either the property name, or a table with pairs of (string) = (mixed) |
53+
@ value [mixed] OPTIONAL: Method or property value. Will be ignored if prop is a table.
5854

59-
## get_named
55+
## register_mixin
6056

6157
```lua
62-
fluid_mixins.get_named(class, mixin_name)
58+
fluid_mixins.register_mixin(class, mixin_name, prop[, value])
6359
```
6460

65-
Retrieves all the methods / properties of a named mixin.
61+
Library Method: Register a named mixin which can then be applied by calling the target object's apply_mixin method. If a named mixin requires a 'constructor', include a method called 'init' that accepts zero arguments. It will be called when the mixin is applied. Properties and methods cannot end in an underscore.
6662

6763

6864
| Input | Type | Description |
6965
| --- | --- | --- |
70-
| `class` | `string` | Finale class. |
71-
| `mixin_name` | `string` | Name of mixin. |
72-
73-
| Output type | Description |
74-
| --- | --- |
75-
| `table\|nil` | |
66+
| `class` | `string\|array` | The class (or an array of classes) to apply the mixin to. |
67+
| `mixin_name` | `string\|array` | Mixin name, or an array of names. |
68+
| `prop` | `string\|table` | Either the property name, or a table with pairs of (string) = (mixed) |
69+
@ value [mixed] OPTIONAL: Method or property value. Will be ignored if prop is a table.
7670

77-
## apply_named
71+
## get_global_mixin
7872

7973
```lua
80-
fluid_mixins.apply_named(object, mixin_name)
74+
fluid_mixins.get_global_mixin(class, prop)
8175
```
8276

83-
Applies a named mixin to an object. See apply_table for more details.
77+
Library Method: Returns a copy of all methods and properties of a global mixin.
8478

8579

8680
| Input | Type | Description |
8781
| --- | --- | --- |
88-
| `object` | `__FCBase` | The object to apply the mixin to. |
89-
| `mixin_name` | `string` | The name of the mixin to apply. |
82+
| `class` | `string` | The finale class name. |
9083

9184
| Output type | Description |
9285
| --- | --- |
93-
| `__FCBase` | The object that was passed. |
86+
| `table\|nil` | |
9487

95-
## apply_table
88+
## get_mixin
9689

9790
```lua
98-
fluid_mixins.apply_table(object, table)
91+
fluid_mixins.get_mixin(class, mixin_name)
9992
```
10093

101-
Takes all pairs in the table and copies them over to the target object. If there is an `init` method, it will be called and then removed. This method does not check for conflicts sonit may result in another mixin's method / property being overwritten.
94+
Library Method: Retrieves a copy of all the methods and properties of mixin.
10295

10396

10497
| Input | Type | Description |
10598
| --- | --- | --- |
106-
| `object` | `__FCBase` | The target object. |
107-
| `mixin_table` | `table` | Table of properties to apply_table |
99+
| `class` | `string` | Finale class. |
100+
| `mixin_name` | `string` | Name of mixin. |
108101

109102
| Output type | Description |
110103
| --- | --- |
111-
| `__FCBase` | The object that was passed. |
104+
| `table\|nil` | |

0 commit comments

Comments
 (0)