Welcome to mirror list, hosted at ThFree Co, Russian Federation.

footer_scripts.js « js « assets - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5002dc87fcfc679900e7f28f69ee199a604999d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
function historyApiBack() {
  window.history && window.history.back();
}

function redirectToIframesView() {
  var redirect_to,
    subject = stateObj.pathname
      //.replace(stateObj.subfolder, '')
      .replace(`/src/views`, '')
      .replace('.php', '');

  if (subject.includes('/redirect/server')) {
    subject = subject.replace('/redirect/server', '/servers');
  }
  subject += location.search;
  redirect_to = `${subject}`;
  var redirection_msg =
    'location subject is ' + subject + ' will redirect_to ' + redirect_to;
  console.log(
    `redirect: ${stateObj.pathname}${location.search} -> ${redirect_to}`
  );
  return redirect_to;
}

$.ready
  .then(() => {
    stateObj.dttArgs = {
      pageLength: 100,
    };
    // Need to open popup from parent document
    stateObj.basePath =
      window.parent.location.origin + (stateObj.subfolder || '');

    if (stateObj.serverSide) {
      let dttData = [...new URLSearchParams($('#sqlform').serialize())].reduce(
        (accum, [key, value]) => {
          accum[key] = value;
          return accum;
        },
        {}
      );
      dttData.json = 'on';
      stateObj.dttArgs = {
        ...stateObj.dttArgs,
        columns: stateObj.dttFields,
        processing: !!stateObj.serverSide,
        serverSide: !!stateObj.serverSide,
        ajax: !stateObj.serverSide
          ? ''
          : {
              url: $('#sqlform').attr('action'),
              method: 'POST',
              data: dttData,
            },
      };
    }
    let redirect_to = redirectToIframesView();
    window.parent.document.title = window.document.title;

    /* beautify preserve:start */
    stateObj.realurl = location.href; //.replace(location.origin, '');
    //path will only be defined inside a route

    /* beautify preserve:end */
    stateObj.redirect_to = redirect_to;
    stateObj.parenturl = window.parent.location.href;
    if (window.location.href.indexOf('servers?action=logout') !== -1) {
      window.setTimeout(function () {
        window.parent.location.replace(`${stateObj.basePath}/servers`);
      }, 3000);
      return { jqFn: {}, hljsFn: {} };
    }
    if (window.jsTree) {
      return { jqFn: jQuery.fn || {}, hljsFn: globalThis.hljs || {} };
    }
    if (
      shouldSkipRedirection() ||
      window.parent.frames.length === 0 ||
      stateObj.redirect_to === stateObj.parenturl
    ) {
      if (
        stateObj.method === 'GET' &&
        stateObj.redirect_to !== stateObj.parenturl
      ) {
        let { reload } = stateObj || {};
        console.log('will pushState. Reload is ' + reload, stateObj);
        window.parent.history.pushState(
          stateObj,
          document.title,
          stateObj.redirect_to
        );
      }
      return { jqFn: jQuery.fn || {}, hljsFn: globalThis.hljs || {} };
    } else {
      //console.log({ stateObj });
      window.parent.location.replace(redirect_to);
    }
    return { jqFn: {}, hljsFn: {} };
  })
  .then(({ jqFn, hljsFn }) => {
    if (jqFn.select2) {
      jQuery('.select2').select2();
    }
    if (jqFn.DataTable) {
      stateObj.dataTable = $('.will_be_datatable').DataTable(stateObj.dttArgs);
    }

    if (hljsFn.highlightBlock) {
      $('pre code.hljs').each(function (i, block) {
        hljsFn.highlightBlock(block);
      });
    }
    let { reload } = stateObj || {};
    if (reload && reload !== 'none') {
      globalThis.postMessage(
        { reload_browser: true },
        window.parent.location.origin
      );
    }

    return;
  })
  .catch((err) => {
    console.error(err);
  });