qml-images-rectangle-json-loader
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

qml-images-rectangle-json-loader

Allows webpack to emit Rectangle object from qml-webpack-loader output. Optionally makes require() for each of Image.source property.

Installation & Usage

npm i --save-dev qml-images-rectangle-json-loader qml-webpack-loader

webpack.config.js

module.exports = {
    module: {
        rules: [
            {
                test: /\.qml$/,
                use: [
                    {
                        loader: 'qml-images-rectangle-json-loader',
                        options: { requireSources: true },
                    },
                    'qml-webpack-loader',
                ],
            },
        ],
    },
 
};

Input

qml-webpack-loader-structured output (see json files from qmlweb-parser for examples) with a single Rectangle composed of Image(s)

Options

  • requireSource: boolean - emit require() for each Image.source parsed

Example

import QtQuick 1.1
 
Rectangle {
    width: 4000
    height: 5330
 
    Image {
        id: background
        x: 0
        y: 0
        width: 4000
        height: 5330
        source: "Level-1_images/background.png"
        opacity: 1
    }
    Image {
        id: cat_black
        x: 2161
        y: 4252
        width: 118
        height: 136
        source: "Level-1_images/cat_black.png"
        opacity: 1
    }
}

Output

Rectangle object (see definitions).

See also __tests__/cases/successful/%d for input/output examples.

Readme

Keywords

none

Package Sidebar

Install

npm i qml-images-rectangle-json-loader

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

14.7 kB

Total Files

24

Last publish

Collaborators

  • insideone