Skip to content

Instantly share code, notes, and snippets.

@shuvo-me
Created March 26, 2022 15:53
Show Gist options
  • Save shuvo-me/760012924997d6f44f93717f873d5443 to your computer and use it in GitHub Desktop.
Save shuvo-me/760012924997d6f44f93717f873d5443 to your computer and use it in GitHub Desktop.
<textarea name="" id="mentionInput" cols="60" rows="2"></textarea>
<div id="mention-list">
</div>
console.log('mention');
let mentionInput = document.getElementById('mentionInput');
let show = document.getElementById("mention-list");
let data = ["Afghanistan","Albania","Algeria","Andorra","Angola","Anguilla","Antigua & Barbuda","Argentina","Armenia","Aruba","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia & Herzegovina","Botswana","Brazil","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burundi","Cambodia","Cameroon","Canada","Cape Verde","Cayman Islands","Central Arfrican Republic","Chad","Chile","China","Colombia","Congo","Cook Islands","Costa Rica","Cote D Ivoire","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands","Faroe Islands","Fiji","Finland","France","French Polynesia","French West Indies","Gabon","Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea Bissau","Guyana","Haiti","Honduras","Hong Kong","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Montserrat","Morocco","Mozambique","Myanmar","Namibia","Nauro","Nepal","Netherlands","Netherlands Antilles","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","North Korea","Norway","Oman","Pakistan","Palau","Palestine","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Puerto Rico","Qatar","Reunion","Romania","Russia","Rwanda","Saint Pierre & Miquelon","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Korea","South Sudan","Spain","Sri Lanka","St Kitts & Nevis","St Lucia","St Vincent","Sudan","Suriname","Swaziland","Sweden","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Timor L'Este","Togo","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks & Caicos","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States of America","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Virgin Islands (US)","Yemen","Zambia","Zimbabwe"];
mentionInput.addEventListener('input',(e)=>{
let mentionKey = e.originalTarget.value.charAt(0);
let searchKey = e.originalTarget.value.substring(1);
// console.log('mentionKey: ',mentionKey);
// console.log('searchKey: ',searchKey);
if(mentionKey == '@'){
show.innerHTML=''
data.forEach(item=>{
show.innerHTML+= `<p>${item}</p>`;
})
if(searchKey.length>0){
show.innerHTML=''
let items = data.filter(dt=> dt.toLowerCase().substring(0,searchKey.length) == searchKey.toLowerCase())
console.log(items);
items && items.forEach(item=>{
show.innerHTML+= `<p>${item}</p>`;
})
}
} else{
show.innerHTML=''
}
// show.innerHTML = ''
})
show.addEventListener('click',(e)=>{
console.log(e.target);
mentionInput.value = e.target.textContent;
show.innerHTML=''
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment