2019-03-13 14:51:30 -04:00
|
|
|
package html
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2019-06-19 17:58:56 -04:00
|
|
|
"github.com/MontFerret/ferret/pkg/drivers"
|
2019-03-13 14:51:30 -04:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
|
|
)
|
|
|
|
|
2019-09-07 14:03:17 -04:00
|
|
|
// STYLE_SET sets or updates a single or more style attribute value of a given element.
|
2020-08-07 21:49:29 -04:00
|
|
|
// @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.
|
2019-03-13 14:51:30 -04:00
|
|
|
func StyleSet(ctx context.Context, args ...core.Value) (core.Value, error) {
|
2020-11-20 20:09:21 -05:00
|
|
|
err := core.ValidateArgs(args, 2, 3)
|
2019-03-13 14:51:30 -04:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-06-19 17:58:56 -04:00
|
|
|
el, err := drivers.ToElement(args[0])
|
2019-03-13 14:51:30 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-11-20 20:09:21 -05:00
|
|
|
return values.None, el.SetStyle(ctx, arg1, values.NewString(args[2].String()))
|
2019-03-13 14:51:30 -04:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|