]> git.proxmox.com Git - proxmox-backup.git/commitdiff
docs/barcode: eslint auto-fixes
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 12 Feb 2021 12:49:38 +0000 (13:49 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 13 Feb 2021 13:49:16 +0000 (14:49 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
docs/lto-barcode/code39.js
docs/lto-barcode/label-list.js
docs/lto-barcode/lto-barcode.js
docs/lto-barcode/page-calibration.js
docs/lto-barcode/paper-size.js

index d17c2eceddef58ff6ff7fc92054ad854792d62eb..5c715cd77c1489de1f9d8ecfd3cde6e4ac153e9f 100644 (file)
@@ -53,7 +53,7 @@ let code39_codes = {
     "0": ['b', 's', 'b', 'S', 'B', 's', 'B', 's', 'b'],
     "J": ['b', 's', 'b', 's', 'B', 'S', 'B', 's', 'b'],
     "T": ['b', 's', 'b', 's', 'B', 's', 'B', 'S', 'b'],
-    "*": ['b', 'S', 'b', 's', 'B', 's', 'B', 's', 'b']
+    "*": ['b', 'S', 'b', 's', 'B', 's', 'B', 's', 'b'],
 };
 
 let colors = [
@@ -66,25 +66,22 @@ let colors = [
     '#E27B99',
     '#67A945',
     '#F6B855',
-    '#705A81'
+    '#705A81',
 ];
 
 let lto_label_width = 70;
 let lto_label_height = 17;
 
 function foreach_label(page_layout, callback) {
-
     let count = 0;
     let row = 0;
     let height = page_layout.margin_top;
 
     while ((height + page_layout.label_height) <= page_layout.page_height) {
-
        let column = 0;
        let width = page_layout.margin_left;
 
        while ((width + page_layout.label_width) <= page_layout.page_width) {
-
            callback(column, row, count, width, height);
            count += 1;
 
@@ -97,11 +94,9 @@ function foreach_label(page_layout, callback) {
        height += page_layout.label_height;
        height += page_layout.row_spacing;
     }
-
 }
 
 function compute_max_labels(page_layout) {
-
     let max_labels = 0;
     foreach_label(page_layout, function() { max_labels += 1; });
     return max_labels;
@@ -186,7 +181,6 @@ function svg_label(mode, label, label_type, pagex, pagey, label_borders) {
        }
 
        for (let c of code) {
-
            if (c === 's') {
                xpos += small;
                continue;
@@ -216,7 +210,7 @@ function html_page_header() {
     /* no page margins */
     html += "@page{margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;}";
     /* to hide things on printed page */
-    html +=  "@media print { .unprintable { visibility: hidden;        } }";
+    html += "@media print { .unprintable { visibility: hidden; } }";
 
     html += "</style>";
 
@@ -241,7 +235,6 @@ function printBarcodePage() {
 }
 
 function generate_barcode_page(target_id, page_layout, label_list, calibration) {
-
     let svg = svg_page_header(page_layout.page_width, page_layout.page_height);
 
     let c = calibration;
@@ -255,7 +248,6 @@ function generate_barcode_page(target_id, page_layout, label_list, calibration)
     svg += '>';
 
     foreach_label(page_layout, function(column, row, count, xpos, ypos) {
-
        if (count >= label_list.length) { return; }
 
        let item = label_list[count];
@@ -297,12 +289,11 @@ function setupPrintFrame(frame, page_width, page_height) {
 }
 
 function generate_calibration_page(target_id, page_layout, calibration) {
-
     let frame = document.getElementById(target_id);
 
     setupPrintFrame(frame, page_layout.page_width, page_layout.page_height);
 
-    let svg = svg_page_header( page_layout.page_width,  page_layout.page_height);
+    let svg = svg_page_header(page_layout.page_width, page_layout.page_height);
 
     svg += "<defs>";
     svg += "<marker id='endarrow' markerWidth='10' markerHeight='7' ";
index 6cf8acfb6ecc7d3c416871be5212bfe3b5c43061..64e8c2899cc26024c7da37c39badb86e52af2c32 100644 (file)
@@ -4,7 +4,7 @@ Ext.define('LabelList', {
 
     plugins: {
         ptype: 'cellediting',
-        clicksToEdit: 1
+        clicksToEdit: 1,
     },
 
     selModel: 'cellmodel',
@@ -44,7 +44,7 @@ Ext.define('LabelList', {
                xtype: 'prefixfield',
                allowBlank: false,
            },
-           renderer: function (value, metaData, record) {
+           renderer: function(value, metaData, record) {
                console.log(record);
                if (record.data.mode === 'placeholder') {
                    return "-";
@@ -60,7 +60,7 @@ Ext.define('LabelList', {
                xtype: 'ltoTapeType',
                allowBlank: false,
            },
-           renderer: function (value, metaData, record) {
+           renderer: function(value, metaData, record) {
                console.log(record);
                if (record.data.mode === 'placeholder') {
                    return "-";
@@ -133,7 +133,7 @@ Ext.define('LabelList', {
                    handler: function(grid, rowIndex) {
                        grid.getStore().removeAt(rowIndex);
                    },
-               }
+               },
            ],
        },
     ],
index cdaa2076604ff5043a0c7a58015e1bf62e5f3475..d6cb85067d94c3ca2af26920403bdf97bd29e81e 100644 (file)
@@ -4,7 +4,6 @@ if (Ext.isFirefox) {
 }
 
 function draw_labels(target_id, label_list, page_layout, calibration) {
-
     let max_labels = compute_max_labels(page_layout);
 
     let count_fixed = 0;
@@ -44,20 +43,16 @@ function draw_labels(target_id, label_list, page_layout, calibration) {
                count = fill_size;
            }
            rest -= count;
+       } else if (item.end <= item.start) {
+           count = 1;
        } else {
-           if (item.end <= item.start) {
-               count = 1;
-           } else {
-               count = (item.end - item.start) + 1;
-           }
+           count = (item.end - item.start) + 1;
        }
 
        for (j = 0; j < count; j++) {
-
            let id = item.start + j;
 
            if (item.prefix.length == 6) {
-
                list.push({
                    label: item.prefix,
                    tape_type: item.tape_type,
@@ -66,9 +61,7 @@ function draw_labels(target_id, label_list, page_layout, calibration) {
                });
                rest += count - j - 1;
                break;
-
            } else {
-
                let pad_len = 6-item.prefix.length;
                let label = item.prefix + id.toString().padStart(pad_len, 0);
 
@@ -115,10 +108,10 @@ Ext.define('MainView', {
                label_list.push(record.data);
            });
 
-           let page_layout_view =  view.down("pageLayoutPanel");
+           let page_layout_view = view.down("pageLayoutPanel");
            let page_layout = page_layout_view.getValues();
 
-           let calibration_view =  view.down("pageCalibration");
+           let calibration_view = view.down("pageCalibration");
            let page_calibration = calibration_view.getValues();
 
            draw_labels("print_frame", label_list, page_layout, page_calibration);
@@ -127,10 +120,10 @@ Ext.define('MainView', {
        update_calibration_preview: function() {
            let me = this;
            let view = me.getView();
-           let page_layout_view =  view.down("pageLayoutPanel");
+           let page_layout_view = view.down("pageLayoutPanel");
            let page_layout = page_layout_view.getValues();
 
-           let calibration_view =  view.down("pageCalibration");
+           let calibration_view = view.down("pageCalibration");
            let page_calibration = calibration_view.getValues();
            console.log(page_calibration);
            generate_calibration_page('print_frame', page_layout, page_calibration);
@@ -195,19 +188,18 @@ Ext.define('MainView', {
            border: false,
            flex: 1,
            scrollable: true,
-           tools:[{
+           tools: [{
                type: 'print',
                tooltip: 'Open Print Dialog',
                handler: function(event, toolEl, panelHeader) {
                    printBarcodePage();
-               }
+               },
            }],
        },
     ],
 });
 
 Ext.onReady(function() {
-
     Ext.create('MainView', {
        renderTo: Ext.getBody(),
     });
index f77425ad0169651ab364e802f0478609c7a74cde..3c7fed821c2ad120f07172df8b5f636a474f177c 100644 (file)
@@ -139,4 +139,4 @@ Ext.define('PageCalibration', {
            ],
        },
     ],
-})
+});
index b084062d6f865bdbeaff8de9339a28ad25cb502e..d2481f3c50ec3625f5df8a0dfc3b2d2eb4d5bc09 100644 (file)
@@ -21,7 +21,7 @@ let paper_sizes = {
        column_spacing: 0,
        row_spacing: 0,
     },
-}
+};
 
 function paper_size_combo_data() {
     let data = [];