mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-21 21:47:43 +02:00
* Added release notes * #509 fixedOCOD typo * Updated values * Updated comments * Changed stdlib docs format * Changed format of array in docs * Use 'any' instead of 'value' in docs * New format for optional params * Updated docs for testing package * Added namespace information
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package html
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/drivers"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// STYLE_SET sets or updates a single or more style attribute value of a given element.
|
|
// @param {HTMLElement} element - Target html element.
|
|
// @param {String | Object} nameOrObj - Style name or an object representing a key-value pair of attributes.
|
|
// @param {String} value - If a second parameter is a string value, this parameter represent a style value.
|
|
func StyleSet(ctx context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 2, core.MaxArgs)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
el, err := drivers.ToElement(args[0])
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
switch arg1 := args[1].(type) {
|
|
case values.String:
|
|
// STYLE_SET(el, name, value)
|
|
err = core.ValidateArgs(args, 3, 3)
|
|
|
|
if err != nil {
|
|
return values.None, nil
|
|
}
|
|
|
|
return values.None, el.SetStyle(ctx, arg1, args[2])
|
|
case *values.Object:
|
|
// STYLE_SET(el, values)
|
|
return values.None, el.SetStyles(ctx, arg1)
|
|
default:
|
|
return values.None, core.TypeError(arg1.Type(), types.String, types.Object)
|
|
}
|
|
}
|