(type)
| 889 | |
| 890 | // Export functions |
| 891 | function exportData(type) { |
| 892 | let data, filename |
| 893 | |
| 894 | switch (type) { |
| 895 | case "students": |
| 896 | data = sampleData.students |
| 897 | filename = "oquvchilar.csv" |
| 898 | break |
| 899 | case "teachers": |
| 900 | data = sampleData.teachers |
| 901 | filename = "oqituvchilar.csv" |
| 902 | break |
| 903 | default: |
| 904 | return |
| 905 | } |
| 906 | |
| 907 | const csv = convertToCSV(data) |
| 908 | downloadCSV(csv, filename) |
| 909 | showNotification(`${type} ma'lumotlari yuklab olindi!`, "success") |
| 910 | } |
| 911 | |
| 912 | function convertToCSV(data) { |
| 913 | if (!data.length) return "" |
no test coverage detected