استبيان: قرار العودة إلى سوريا أم البقاء في تركيا
أجب عن الأسئلة التالية لمساعدتك على تنظيم أفكارك واتخاذ القرار.
إجابتك:
يميل بشدة للبقاء في تركيا
يميل للبقاء في تركيا
محايد
يميل للعودة إلى سوريا
يميل بشدة للعودة إلى سوريا
وزن الأهمية (5=الأهم):
5 4 3 2 1
`;
});
container.innerHTML = html;
}
function calculateResult() {
let totalWeightedScore = 0;
let maxScore = 0;
questions.forEach((q, i) => {
const answerScore = parseInt(document.getElementById(`answer_${i}`).value);
const weight = parseInt(document.getElementById(`weight_${i}`).value);
totalWeightedScore += answerScore * weight;
maxScore += 2 * weight;
});
const index = maxScore !== 0 ? totalWeightedScore / maxScore : 0;
let recommendation = "القرار متوازن، وقد تحتاج لمزيد من الدراسة.";
if (index > 0.2) {
recommendation = "بحسب إجاباتك، يميل قرارك نحو البقاء في تركيا.";
} else if (index < -0.2) {
recommendation = "بحسب إجاباتك، يميل قرارك نحو العودة إلى سوريا.";
}
document.getElementById('questions-area').style.display = 'none';
document.getElementById('calculate-btn').style.display = 'none';
document.getElementById('result-title').innerText = 'النتيجة النهائية';
document.getElementById('result-text').innerText = recommendation;
document.getElementById('result-index').innerText = `(مؤشر القرار: ${index.toFixed(2)})`;
document.getElementById('result-area').style.display = 'block';
}
renderQuestions(); // لعرض الأسئلة عند تحميل الصفحة