All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sc.tyro.bundle.html5.list.Option.groovy Maven / Gradle / Ivy

/*
 * Copyright © 2021 Ovea ([email protected])
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package sc.tyro.bundle.html5.list

import sc.tyro.core.component.Item
import sc.tyro.web.CssIdentifier

/**
 * @author David Avenante
 * @since 1.0.0
 */
@CssIdentifier('option')
class Option extends Item {
    @Override
    boolean selected() {
        provider.check(id(), "!!it.prop('selected')")
    }

    @Override
    Object value() {
        provider.eval(id(), "it.text().trim().length > 0 ? it.text().trim() : (it.attr('label') && it.attr('label').length > 0 ? it.attr('label') : '')")
    }

    @Override
    boolean enabled() {
        !provider.check(id(), "el.is(':disabled') || el.attr('disabled') != undefined || el.closest('select').is(':disabled')")
    }

    @Override
    boolean equals(Object o) {
        if (this.is(o)) return true
        value() == ((Option) o).value()
    }

    @Override
    int hashCode() {
        return value().hashCode()
    }

    @Override
    String toString() {
        return value()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy