Sha256: 9f56da8ce2a78d145d3fc04fc1bfc32eacb3de70ccbd4aac88e905bae24637cd

Contents?: true

Size: 1.52 KB

Versions: 26

Compression:

Stored size: 1.52 KB

Contents

"use strict";

Object.defineProperty(exports, "__esModule", {
    value: true
});
exports.default = plugin;
function plugin(targets, nodeTypes, detect) {
    class Plugin {
        constructor(result) {
            this.nodes = [];
            this.result = result;
            this.targets = targets;
            this.nodeTypes = nodeTypes;
        }

        push(node, metadata) {
            node._stylehacks = Object.assign({}, metadata, {
                message: `Bad ${metadata.identifier}: ${metadata.hack}`,
                browsers: this.targets
            });

            this.nodes.push(node);
        }

        any(node) {
            if (~this.nodeTypes.indexOf(node.type)) {
                detect.apply(this, arguments);

                return !!node._stylehacks;
            }

            return false;
        }

        detectAndResolve(...args) {
            this.nodes = [];

            detect.apply(this, args);

            return this.resolve();
        }

        detectAndWarn(...args) {
            this.nodes = [];

            detect.apply(this, args);

            return this.warn();
        }

        resolve() {
            return this.nodes.forEach(node => node.remove());
        }

        warn() {
            return this.nodes.forEach(node => {
                const { message, browsers, identifier, hack } = node._stylehacks;

                return node.warn(this.result, message, { browsers, identifier, hack });
            });
        }
    }

    return Plugin;
}
module.exports = exports["default"];

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.18.0 test/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.18.2 test/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.16.1 test/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.15.2 test/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.18.4 test/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.18.1 test/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.14.0 test/dummy/node_modules/stylehacks/dist/plugin.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/stylehacks/dist/plugin.js
tang-0.2.1 spec/tang_app/node_modules/stylehacks/dist/plugin.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/stylehacks/dist/plugin.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/stylehacks/dist/plugin.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/stylehacks/dist/plugin.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/stylehacks/dist/plugin.js
tang-0.2.0 spec/tang_app/node_modules/stylehacks/dist/plugin.js
tang-0.1.0 spec/tang_app/node_modules/stylehacks/dist/plugin.js
tang-0.0.9 spec/tang_app/node_modules/stylehacks/dist/plugin.js
enju_library-0.3.8 spec/dummy/node_modules/stylehacks/dist/plugin.js
jester-data-8.0.0 node_modules/stylehacks/dist/plugin.js