mirror of
https://github.com/MontFerret/ferret.git
synced 2025-07-05 00:49:00 +02:00
Added INPUT_CLEAR function (#366)
* Added INPUT_CLEAR function * Fixed linting issue * Fixed formatting
This commit is contained in:
33
pkg/stdlib/html/clear.go
Normal file
33
pkg/stdlib/html/clear.go
Normal file
@ -0,0 +1,33 @@
|
||||
package html
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/MontFerret/ferret/pkg/drivers"
|
||||
"github.com/MontFerret/ferret/pkg/runtime/core"
|
||||
"github.com/MontFerret/ferret/pkg/runtime/values"
|
||||
)
|
||||
|
||||
// InputClear clears a value from an underlying input element.
|
||||
// @param source (HTMLPage | HTMLDocument | HTMLElement) - Event target.
|
||||
// @param selector (String, options) - Selector.
|
||||
func InputClear(ctx context.Context, args ...core.Value) (core.Value, error) {
|
||||
err := core.ValidateArgs(args, 1, 2)
|
||||
|
||||
if err != nil {
|
||||
return values.None, err
|
||||
}
|
||||
|
||||
el, err := drivers.ToElement(args[0])
|
||||
|
||||
if err != nil {
|
||||
return values.None, err
|
||||
}
|
||||
|
||||
// CLEAR(el)
|
||||
if len(args) == 1 {
|
||||
return values.None, el.Clear(ctx)
|
||||
}
|
||||
|
||||
return values.None, el.ClearBySelector(ctx, values.ToString(args[1]))
|
||||
}
|
Reference in New Issue
Block a user