[Libreoffice-commits] online.git: loleaflet/typescript_js

Szymon KÅ‚os (via logerrit) logerrit at kemper.freedesktop.org
Fri Jul 3 11:06:56 UTC 2020


 loleaflet/typescript_js/admin/src/ModalDialogCreator.js |  118 ----------------
 1 file changed, 118 deletions(-)

New commits:
commit 650bd888dff6e4b31ce0eba1a916a92078852878
Author:     Szymon Kłos <szymon.klos at collabora.com>
AuthorDate: Fri Jul 3 13:03:50 2020 +0200
Commit:     Szymon Kłos <szymon.klos at collabora.com>
CommitDate: Fri Jul 3 13:03:50 2020 +0200

    remove compiled typescript file
    
    Change-Id: I6c2a0713a67a98d129a8d81000371123c8859da1

diff --git a/loleaflet/typescript_js/admin/src/ModalDialogCreator.js b/loleaflet/typescript_js/admin/src/ModalDialogCreator.js
deleted file mode 100644
index ca76adcea..000000000
--- a/loleaflet/typescript_js/admin/src/ModalDialogCreator.js
+++ /dev/null
@@ -1,118 +0,0 @@
-/* eslint-disable */
-/// Available types: info, warning, danger, link, success, primary. Works with bulma.css.
-// Every "set" function returns the instance. So you can do this:
-// (new DlgYesNo).Title('some title').Text('some text').YesButtonText('yes').NoButtonText('no').YesFunction(function () {/* */}).NoFunction(function() {/** */});
-// "Yes" and "No" buttons call callback function, close the modal and destroy the modal.
-var DlgYesNo = /** @class */ (function () {
-    function DlgYesNo() {
-        this._instance = this;
-        DlgYesNo._instanceCount++;
-        this._modalID = DlgYesNo._instanceCount;
-        this.initialize();
-    }
-    DlgYesNo.prototype.initialize = function () {
-        var html = this.getModalHTML();
-        var element = document.createElement('div');
-        element.innerHTML = html;
-        document.getElementsByTagName('body')[0].appendChild(element);
-        this.initializeBackgroundClick();
-        this.initializeCrossButton();
-        this.initializeYesButton();
-        this.initializeNoButton();
-    };
-    DlgYesNo.prototype.initializeCrossButton = function () {
-        var element = document.getElementById('modal-' + String(this._modalID));
-        document.getElementById('modal-cross-button-' + String(this._modalID)).onclick = function () {
-            element.classList.remove('is-active');
-            element.parentNode.removeChild(element);
-        };
-    };
-    DlgYesNo.prototype.initializeBackgroundClick = function () {
-        var element = document.getElementById('modal-' + String(this._modalID));
-        document.getElementById('modal-background-' + String(this._modalID)).onclick = function () {
-            element.classList.remove('is-active');
-            element.parentNode.removeChild(element);
-        };
-    };
-    DlgYesNo.prototype.initializeYesButton = function () {
-        var element = document.getElementById('modal-' + String(this._modalID));
-        document.getElementById('modal-yes-button-' + String(this._modalID)).onclick = function () {
-            element.classList.remove('is-active');
-            element.parentNode.removeChild(element);
-        };
-    };
-    DlgYesNo.prototype.initializeNoButton = function () {
-        var element = document.getElementById('modal-' + String(this._modalID));
-        document.getElementById('modal-no-button-' + String(this._modalID)).onclick = function () {
-            element.classList.remove('is-active');
-            element.parentNode.removeChild(element);
-        };
-    };
-    DlgYesNo.prototype.getModalHTML = function () {
-        var html = ' \
-<div class="modal" id="modal-__created_id__"> \
-    <div class="modal-background" id="modal-background-__created_id__"></div> \
-    <div class="modal-card"> \
-        <header class="modal-card-head" id="modal-head-__created_id__"> \
-            <p class="modal-card-title" id="modal-title-__created_id__">Yes / No Modal Template</p> \
-            <button class="delete" id="modal-cross-button-__created_id__"></button> \
-        </header> \
-        <section class="modal-card-body" id="modal-body-__created_id__">Yes / No Modal Body</section> \
-        <footer class="modal-card-foot is-fullwidth" id="modal-foot-__created_id__"> \
-            <button type="button" class="button is-pulled-left" id="modal-no-button-__created_id__" style="min-width:120px;">Cancel</button> \
-            <button type="button" class="button is-pulled-right" id="modal-yes-button-__created_id__" style="min-width:120px;">OK</button> \
-        </footer> \
-    </div> \
-</div>';
-        html = html.split('__created_id__').join(String(this._modalID));
-        return html;
-    };
-    DlgYesNo.prototype.yesButtonText = function (text) {
-        var button = document.getElementById('modal-yes-button-' + String(this._modalID));
-        button.innerText = text;
-        return this._instance;
-    };
-    DlgYesNo.prototype.noButtonText = function (text) {
-        var button = document.getElementById('modal-no-button-' + String(this._modalID));
-        button.innerText = text;
-        return this._instance;
-    };
-    DlgYesNo.prototype.title = function (text) {
-        var p = document.getElementById('modal-title-' + String(this._modalID));
-        p.innerText = text;
-        return this._instance;
-    };
-    DlgYesNo.prototype.text = function (text) {
-        var d = document.getElementById('modal-body-' + String(this._modalID));
-        d.innerText = text;
-        return this._instance;
-    };
-    DlgYesNo.prototype.type = function (type) {
-        var header = document.getElementById('modal-head-' + String(this._modalID));
-        header.className = 'modal-card-head has-background-' + type;
-        return this._instance;
-    };
-    DlgYesNo.prototype.yesFunction = function (f) {
-        var element = document.getElementById('modal-' + String(this._modalID));
-        document.getElementById('modal-yes-button-' + String(this._modalID)).onclick = function (e) {
-            f(e);
-            element.classList.remove('is-active');
-            element.parentNode.removeChild(element);
-        };
-        return this._instance;
-    };
-    DlgYesNo.prototype.noFunction = function (f) {
-        var element = document.getElementById('modal-' + String(this._modalID));
-        document.getElementById('modal-no-button-' + String(this._modalID)).onclick = function (e) {
-            f(e);
-            element.classList.remove('is-active');
-            element.parentNode.removeChild(element);
-        };
-        return this._instance;
-    };
-    DlgYesNo.prototype.open = function () {
-        document.getElementById('modal-' + String(this._modalID)).classList.add('is-active');
-    };
-    DlgYesNo._instanceCount = 0;
-    return DlgYesNo;
-}());


More information about the Libreoffice-commits mailing list