MediaWiki:Lékařská kalkulačka/IVT.js
Z WikiSkript
Poznámka: Po zveřejnění musíte vyprázdnit cache vašeho prohlížeče, jinak změny neuvidíte.
- Firefox / Safari: Při kliknutí na Aktualizovat držte Shift nebo stiskněte Ctrl-F5 nebo Ctrl-R (na Macu ⌘-R)
- Google Chrome: Stiskněte Ctrl-Shift-R (na Macu ⌘-Shift-R)
- Internet Explorer / Edge: Při kliknutí na Aktualizovat držte Ctrl nebo stiskněte Ctrl-F5
- Opera: Stiskněte Ctrl-F5.
String.prototype.replaceAll = function(token, newToken, ignoreCase) {
var str, i = -1, _token;
if((str = this.toString()) && typeof token === "string") {
_token = ignoreCase === true? token.toLowerCase() : undefined;
while((i = (
_token !== undefined?
str.toLowerCase().indexOf(
_token,
i >= 0? i + newToken.length : 0
) : str.indexOf(
token,
i >= 0? i + newToken.length : 0
)
)) !== -1 ) {
str = str.substring(0, i)
.concat(newToken)
.concat(str.substring(i + token.length));
}
}
return str;
};
/**************** Převod do html podoby ****************/
var content = $( '#lekarska_kalkulacka_IVT-content' ).text();
$( '#lekarska_kalkulacka_IVT' ).html( content.replaceAll('paragraph', 'p' ).replaceAll( 'resValue', 'span' ).replaceAll('breakline', 'br' ).replaceAll('division', 'div').replaceAll('orderedlist', 'ol') );
/**************** Propojeni input field: range a number *************/
$( '#lekarska_kalkulacka_IVT-hmotnost-number' ).change( function() {
$( '#lekarska_kalkulacka_IVT-hmotnost-range').val( $( '#lekarska_kalkulacka_IVT-hmotnost-number' ).val() );
});
$( '#lekarska_kalkulacka_IVT-hmotnost-range' ).change( function() {
$( '#lekarska_kalkulacka_IVT-hmotnost-number').val( $( '#lekarska_kalkulacka_IVT-hmotnost-range' ).val() );
});
/**************** Vlastní výpočet ****************/
$( 'input' ).change( function() {
var hmotnost = $( '#lekarska_kalkulacka_IVT-hmotnost-number').val();
var alteplaza;
var bolus;
var infuze;
var alteplaza_im;
var bolus_im;
var infuze1_im;
var infuze2_im;
var alteplaza_pe;
var bolus_pe;
var infuze_pe;
var tenekteplaza;
var tenekteplaza_unit;
var tenekteplaza_ml;
var tenekteplaza_im;
var tenekteplaza_im_unit;
var tenekteplaza_im_ml;
if (hmotnost > 100) {
alteplaza = 90;
bolus = 9;
infuze = 81;
} else {
alteplaza = Math.round(0.9 * hmotnost);
bolus = 0.1 * alteplaza;
infuze = alteplaza - bolus;
}
if (hmotnost >= 65) {
alteplaza_im = 100; //mg
bolus_im = 15; //mg
infuze1_im = 50; //mg
infuze2_im = 35; //mg
alteplaza_pe = 100; //mg
bolus_pe = 10; //mg
infuze_pe = 90; //mg
} else {
alteplaza_im = Math.round(1.5 * hmotnost); //mg
bolus_im = 15; //mg
infuze1_im = 0.75 * hmotnost;
infuze2_im = 0.5 * hmotnost;
alteplaza_pe = Math.round(1.5 * hmotnost); //mg
bolus_pe = 10; //mg
infuze_pe = alteplaza_pe - bolus_pe; //mg
}
if (hmotnost < 60 ) {
tenekteplaza = 15; //mg
tenekteplaza_unit = 3000;
tenekteplaza_ml = 3;
tenekteplaza_im = 30; //mg
tenekteplaza_im_unit = 6000;
tenekteplaza_im_ml = 6;
} else if (hmotnost >= 60 && hmotnost < 70 ) {
tenekteplaza = 17.5; //mg
tenekteplaza_unit = 3500;
tenekteplaza_ml = 3.5;
tenekteplaza_im = 35; //mg
tenekteplaza_im_unit = 7000;
tenekteplaza_im_ml = 7;
} else if (hmotnost >= 70 && hmotnost < 80 ) {
tenekteplaza = 20; //mg
tenekteplaza_unit = 4000;
tenekteplaza_ml = 4;
tenekteplaza_im = 40; //mg
tenekteplaza_im_unit = 8000;
tenekteplaza_im_ml = 8;
} else if (hmotnost >= 80 && hmotnost < 90 ) {
tenekteplaza = 22.5; //mg
tenekteplaza_unit = 4500;
tenekteplaza_ml = 4.5;
tenekteplaza_im = 45; //mg
tenekteplaza_im_unit = 9000;
tenekteplaza_im_ml = 9;
} else {
tenekteplaza = 25; //mg
tenekteplaza_unit = 5000;
tenekteplaza_ml = 5;
tenekteplaza_im = 50; //mg
tenekteplaza_im_unit = 10000;
tenekteplaza_im_ml = 10;
}
var result = 'Altepláza ' + alteplaza + ' mg, z toho ' + bolus + ' mg podat jako bolus a ' + infuze + ' mg hodinovou infuzí. ';
result += 'Tenektepláza ' + tenekteplaza + ' mg (' + tenekteplaza_unit + ' jednotek), odpovídá ' + tenekteplaza_ml + ' ml roztoku, podat během 10 vteřin.';
var result_im = 'Altepláza ' + alteplaza + ' mg, rychlosti závisí na délce trvání obtíží a klasické či zrychlené formě obtíží. U zrychlené formy obtíží se podá ' + bolus_im + ' mg jako bolus, ' + infuze1_im + ' mg během 30 minut a ' + infuze2_im + ' mg během dalších 60 minut.';
result_im += 'Tenektepláza ' + tenekteplaza_im + ' mg (' + tenekteplaza_im_unit + ' jednotek), odpovídá ' + tenekteplaza_im_ml + ' ml roztoku, podat během 10 vteřin.';
var result_pe = 'Altepláza ' + alteplaza_pe + ' mg, z toho ' + bolus_pe + ' mg podat jako bolus během 1–2 minut a ' + infuze_pe + ' mg během 2 hodin. ';
$( '#lekarska_kalkulacka_IVT-vysledek' ).html( result );
$( '#lekarska_kalkulacka_IVT-vysledek-im' ).html( result_im );
$( '#lekarska_kalkulacka_IVT-vysledek-pe' ).html( result_pe );
});