mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-19 21:28:32 +02:00
* Added support of computed styles * Updated style updates * Fixed linter issues * Updated styles manipulation in static driver * Updated e2e tests * Updated methods * Updated e2e tests * Updated README
46 lines
1.3 KiB
Go
46 lines
1.3 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, 3)
|
|
|
|
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, values.NewString(args[2].String()))
|
|
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)
|
|
}
|
|
}
|