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

biz.gabrys.maven.plugins.css.splitter.steadystate.converter.MediaRuleConverter Maven / Gradle / Ivy

/*
 * CSS Splitter Maven Plugin
 * http://css-splitter-maven-plugin.projects.gabrys.biz/
 *
 * Copyright (c) 2015 Adam Gabryś
 *
 * This file is licensed under the BSD 3-Clause (the "License").
 * You may not use this file except in compliance with the License.
 * You may obtain:
 * - a copy of the License at project page
 * - a template of the License at https://opensource.org/licenses/BSD-3-Clause
 */
package biz.gabrys.maven.plugins.css.splitter.steadystate.converter;

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

import org.w3c.dom.css.CSSRuleList;

import com.steadystate.css.dom.CSSMediaRuleImpl;
import com.steadystate.css.dom.MediaListImpl;

import biz.gabrys.maven.plugins.css.splitter.css.Standard;
import biz.gabrys.maven.plugins.css.splitter.css.type.ComplexRule;
import biz.gabrys.maven.plugins.css.splitter.css.type.NodeRule;

class MediaRuleConverter extends AbstractRuleConverter {

    private final RuleConverter converter;

    MediaRuleConverter(final Standard standard, final boolean strict) {
        super(CSSMediaRuleImpl.class);
        converter = createConverter(this, standard, strict);
    }

    // for tests
    MediaRuleConverter(final RuleConverter converter) {
        super(CSSMediaRuleImpl.class);
        this.converter = converter;
    }

    static RuleConverter createConverter(final MediaRuleConverter thisObject, final Standard standard, final boolean strict) {
        if (strict && Standard.VERSION_3_0 != standard) {
            return new StyleRuleConverter();
        }

        final List> converters = new ArrayList>();
        converters.add(new StyleRuleConverter());
        if (Standard.VERSION_3_0 == standard) {
            converters.add(thisObject);
        }
        if (!strict) {
            converters.add(new PageRuleConverter());
            converters.add(new UnknownRuleConverter());
        }
        return new MultipleRuleConverter(converters);
    }

    @Override
    protected ComplexRule convert2(final CSSMediaRuleImpl rule) {
        final List selectors = new LinkedList();
        final MediaListImpl mediaList = (MediaListImpl) rule.getMedia();
        for (int i = 0; i < mediaList.getLength(); ++i) {
            selectors.add(mediaList.mediaQuery(i).getCssText(null));
        }

        final List rules = new LinkedList();
        final CSSRuleList ruleList = rule.getCssRules();
        for (int i = 0; i < ruleList.getLength(); ++i) {
            rules.add(converter.convert(ruleList.item(i)));
        }

        return new ComplexRule("@media", selectors, rules);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy