mirror of
https://github.com/srlabs/blue-merle.git
synced 2024-12-22 13:55:00 -05:00
web: stab at a Web UI for SIM swap
This commit is contained in:
parent
fa11fc45ca
commit
b02faa7adb
@ -829,7 +829,42 @@ function handleSimSwap(ev) {
|
|||||||
_('Shutting down modem…')
|
_('Shutting down modem…')
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
)
|
);
|
||||||
|
callBlueMerle("shutdown-modem").then(
|
||||||
|
function(res) {
|
||||||
|
dlg.appendChild(
|
||||||
|
E('pre', { 'class': 'result'},
|
||||||
|
res
|
||||||
|
)
|
||||||
|
);
|
||||||
|
dlg.appendChild(
|
||||||
|
E('p', { 'class': 'text'},
|
||||||
|
_("Generating Random IMEI")
|
||||||
|
)
|
||||||
|
);
|
||||||
|
callBlueMerle("random-imei").then(
|
||||||
|
function(res) {
|
||||||
|
E('p', { 'class': 'text'},
|
||||||
|
_("IMEI set:") + " " + res
|
||||||
|
),
|
||||||
|
E('p', { 'class': 'text'},
|
||||||
|
_("Please shutdown the device and go to another place before booting")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
).catch(
|
||||||
|
function(err) {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
).catch(
|
||||||
|
function(err) {
|
||||||
|
dlg.appendChild(
|
||||||
|
E('p',{'class': 'error'},
|
||||||
|
_('Error! ') + err
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleOpkg(ev)
|
function handleOpkg(ev)
|
||||||
@ -974,14 +1009,14 @@ return view.extend({
|
|||||||
E('button', { 'class': 'btn cbi-button', 'click': handleReset }, [ _('Clear') ])
|
E('button', { 'class': 'btn cbi-button', 'click': handleReset }, [ _('Clear') ])
|
||||||
])
|
])
|
||||||
]),
|
]),
|
||||||
|
]),
|
||||||
|
|
||||||
E('div', {}, [
|
E('div', {}, [
|
||||||
E('label', {}, _('Actions') + ':'), ' ',
|
E('label', {}, _('Actions') + ':'), ' ',
|
||||||
E('span', { 'class': 'control-group' }, [
|
E('span', { 'class': 'control-group' }, [
|
||||||
E('button', { 'class': 'btn cbi-button-positive', 'data-command': 'update', 'click': handleSimSwap, 'disabled': isReadonlyView }, [ _('SIM swap…') ]), ' ',
|
E('button', { 'class': 'btn cbi-button-positive', 'data-command': 'update', 'click': handleSimSwap, 'disabled': isReadonlyView }, [ _('SIM swap…') ]), ' ',
|
||||||
E('button', { 'class': 'btn cbi-button-action', 'click': handleUpload, 'disabled': isReadonlyView }, [ _('IMEI change…') ]), ' ',
|
E('button', { 'class': 'btn cbi-button-action', 'click': handleUpload, 'disabled': isReadonlyView }, [ _('IMEI change…') ]), ' ',
|
||||||
E('button', { 'class': 'btn cbi-button-neutral', 'click': handleConfig }, [ _('Shred config…') ])
|
E('button', { 'class': 'btn cbi-button-neutral', 'click': handleConfig }, [ _('Shred config…') ])
|
||||||
])
|
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user