Garissa residents observe World Wetlands Day as leaders champion for environmental conservation

Garissa residents observe World Wetlands Day as leaders champion for environmental conservation

Garissa County Government was joined by many patners in honoring the beauty and importance of wetlands on the World’s Wetland Day held at Young muslim girls secondary school. (X/Garissa County)

Read this story aloud

Listen to the clean text version of this article

Ready
5 min listen
Audio reading is not supported on this browser.

World Wetlands Day is celebrated to raise awareness about wetlands to reverse their rapid loss

A green initiative took root as Garissa County residents actively participated in tree-planting activities, symbolising a commitment to environmental sustainability

Garissa County marked the significance of World Wetlands Day on February 2, joining the global celebration dedicated to the preservation of wetland ecosystems

The pivotal event, spearheaded by Mulki Mohamed Dekow, Director of Environment and Natural Re

More To Read

  • New Garissa blood centre to process 40,000 units annually in major health boost
  • Garissa leaders convene security meeting after wave of stabbings, phone thefts
  • North Eastern MPs condemn Mwingi violence, demand urgent security intervention along Thika–Garissa highway
  • Garissa on high alert as meteorological department Issues high flood warning for River Tana
  • KUPPET raises alarm over teacher safety in North Eastern, urges action
  • IPOA launches probe into fatal shooting of man near Modika Barrier in Garissa

Preceding the event, Dekow orchestrated a thorough cleanup along Kismayo Road in Garissa Central Business District, emphasising the county’s dedication to fostering a cleaner, greener community

In a video captured by the Eastleigh Voice, the Garissa County Government collaborated with the Kenya Red Cross Society. Together, they embarked on a mission to cleanse the town’s streets, diligently collecting and responsibly disposing of waste, fortifying the community’s resolve towards a healthier environment

“We are urging residents to be guardians of the vital ecosystems and commit to their preservation for a sustainable future,” she said

Latest Stories

  • Kenya reaffirms ties with Rwanda as it marks Liberation Day celebrations
  • Morocco continue historic rise with record-breaking World Cup victory against Canada
  • Serena Williams withdraws from Wimbledon doubles after knee injury, ending Venus reunion plans
  • Report records 83 harassment incidents against Christians in Israel over three months

Preserve forest cover

Environmentalists and leaders in Garissa at the same time urged farmers along the River Tana in Garissa to preserve the forest cover to mitigate floods during the rainy season.
The County Executive Committee Member (CECM) for Agriculture and Livestock Hassan Abdirizack speaking at the event, said more than 7,000 farmers recently lost their livelihoods due to the destructions caused by the El Nino floods.
He said the submerged farms were a result of massive degradation of the forest cover.
“We should learn lessons from the impact of the El Nino floods and conserve the soil and trees in the Wetland region,” said Hassan.
The CECM noted that wanton destruction of the environment as a result of emerging new settlements forced the county government to draft a Village Administration Bill aiming to put control and measures that will preserve Wetlands and Rangelands against destruction.
The North Eastern regional research officer from Kenya Forestry Research Institute(KEFRI) Amina Maalim Aden, urged the communities living along the river to conserve the environment along the river to mitigate floods that were wreaking havoc on both settlements and farmlands.
She stated that KEFRI, in collaboration with Garissa University and other partner organisations, will implement a programme aimed at improving the conservation of soil and water along the river to reduce the impact of the floods.
“We are also introducing forest technologies to enhance forest cover and climate resilience to protect the Wetlands against further destruction,” she said.
The National Environmental Management Authority North Eastern regional director Patrick Lekenit expressed concern about the wanton destruction of the environment in the region.
He appealed to all stakeholders to sensitise the local communities to protect the environment in Wetland areas along the river to reduce the disastrous impact of the floods.

Environment Cabinet Secretary Soipan Tuya also commemorated the day at Lake Narasha (Timboroa Dam) in Uasin Gishu County. Tuya inaugurated the fencing of the dam marking it as an important water catchment and one of Kenya’s rare bird sanctuaries

World Wetlands Day is celebrated to raise awareness about wetlands to reverse their rapid loss and encourage actions to conserve and restore them

The day also marks the anniversary of the Convention on Wetlands, which was adopted as an international treaty in 1971

This year the theme for World Wetlands Day 2024 is “Wetlands and Human Wellbeing”

According to the National Management Authority (NEMA), the theme for 2024 underscores how all aspects of human well-being are tied to the health of the world’s wetlands

“This year’s campaign spotlights how interconnected wetlands and human life are, with people drawing sustenance, inspiration and resilience from these productive ecosystems. It calls on each of us to value and steward our wetlands,” the Authority said

It added that nearly 90 per cent of the world’s wetlands have been degraded since the 1700s, and is continuously losing wetlands three times faster than forests

Human activities such as drainage and infilling for agriculture and construction, pollution, overfishing and overexploitation of re as the cause of wetlands degradation

Other Topics To Read

Top Stories Today

  • Weekly new Ebola cases reach highest level since outbreak began: WHO
  • Kenya reaffirms ties with Rwanda as it marks Liberation Day celebrations
  • Serena Williams withdraws from Wimbledon doubles after knee injury, ending Venus reunion plans
  • Report records 83 harassment incidents against Christians in Israel over three months
  • Clean mobility gains ground in trucks and buses, but fossil fuels still dominate at 94 per cent – report
  • Over 1,000 Sudanese return home from Egypt under ongoing repatriation programme

`;
}

return “;
}

function commentActionsMarkup(comment, canComment) {
const likeLabel = comment.liked_by_me ? ‘Liked’ : ‘Like’;
const likeCount = Number(comment.like_count || 0) > 0
? “
: ”;

const likeButton = canComment && comment.status === ‘approved’
? “
: “;

const replyButton = canComment && comment.status === ‘approved’
? “
: ”;

return `

`;
}

function commentMarkup(comment, canComment, isReply = false) {
const pendingBadge = comment.status && comment.status !== ‘approved’
? “
: ”;

const edited = comment.is_edited
? “
: ”;

const repliesHtml = Array.isArray(comment.replies) && comment.replies.length
? `

`
: “;

return `

`;
}

function replyFormMarkup(commentId) {
return `

`;
}

function setNotice(widget, message, type = ‘info’) {
const notice = widget.querySelector(‘[data-role=”notice”]’);
if (!notice) return;

if (!message) {
notice.hidden = true;
notice.textContent = ”;
notice.classList.remove(‘is-error’);
return;
}

notice.hidden = false;
notice.textContent = message;
notice.classList.toggle(‘is-error’, type === ‘error’);
}

function setCount(widget, total) {
const count = widget.querySelector(‘[data-role=”count”]’);
if (!count) return;

const num = Number(total || 0);
count.textContent = num === 1 ? ‘1 comment’ : `${num} comments`;
}

function openReplyBox(widget, commentId) {
widget.querySelectorAll(‘[data-role=”reply-box”]’).forEach(box => {
box.hidden = true;
box.innerHTML = ”;
});

const targetItem = widget.querySelector(`.ev-comments__item[data-comment-id=”${commentId}”]`);
if (!targetItem) return;

const replyBox = targetItem.querySelector(‘[data-role=”reply-box”]’);
if (!replyBox) return;

replyBox.hidden = false;
replyBox.innerHTML = replyFormMarkup(commentId);

const textarea = replyBox.querySelector(‘textarea’);
if (textarea) textarea.focus();
}

function closeReplyBox(container) {
if (!container) return;
container.hidden = true;
container.innerHTML = ”;
}

async function initCommentsWidget(widget) {
const state = {
articleId: Number(widget.dataset.articleId),
loadUrl: widget.dataset.loadUrl,
storeUrl: widget.dataset.storeUrl,
commentsBaseUrl: widget.dataset.commentsBaseUrl,
canComment: widget.dataset.canComment === ‘1’,
page: 1,
perPage: 10,
sort: ‘newest’,
total: 0,
hasMore: false,
busy: false
};

const list = widget.querySelector(‘[data-role=”list”]’);
const loading = widget.querySelector(‘[data-role=”loading”]’);
const empty = widget.querySelector(‘[data-role=”empty”]’);
const loadMoreBtn = widget.querySelector(‘[data-role=”load-more”]’);
const sortSelect = widget.querySelector(‘[data-role=”sort”]’);
const composerForm = widget.querySelector(‘[data-role=”composer-form”]’);

async function loadComments(reset = true) {
if (state.busy) return;

state.busy = true;
setNotice(widget, ”);
loading.hidden = false;

if (reset) {
state.page = 1;
list.innerHTML = ”;
empty.hidden = true;
}

try {
const url = new URL(state.loadUrl, window.location.origin);
url.searchParams.set(‘page’, state.page);
url.searchParams.set(‘per_page’, state.perPage);
url.searchParams.set(‘sort’, state.sort);

const response = await requestJson(url.toString(), {
method: ‘GET’,
headers: {
‘Accept’: ‘application/json’,
‘X-Requested-With’: ‘XMLHttpRequest’
}
});

const items = Array.isArray(response.data) ? response.data : [];
const meta = response.meta || {};

state.total = Number(meta.total || 0);
state.hasMore = !!meta.has_more;

setCount(widget, state.total);

if (reset) {
list.innerHTML = ”;
}

if (!items.length && reset) {
empty.hidden = false;
} else {
empty.hidden = true;
list.insertAdjacentHTML(
‘beforeend’,
items.map(item => commentMarkup(item, state.canComment, false)).join(”)
);
}

loadMoreBtn.hidden = !state.hasMore;
} catch (error) {
if (!list.children.length) {
empty.hidden = false;
empty.textContent = ‘Unable to load comments right now.’;
}
setNotice(widget, error.message || ‘Unable to load comments.’, ‘error’);
} finally {
loading.hidden = true;
state.busy = false;
}
}

async function submitTopLevelComment(form) {
const textarea = form.querySelector(‘textarea[name=”content”]’);
const button = form.querySelector(‘[data-role=”submit-comment”]’);

if (!textarea) return;

const content = textarea.value.trim();
if (!content) return;

const originalText = button ? button.textContent : ”;

try {
if (button) {
button.disabled = true;
button.textContent = ‘Posting…’;
}

const response = await requestJson(state.storeUrl, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({
article_id: state.articleId,
content: content,
source_url: window.location.href
})
});

textarea.value = ”;

if (response?.data) {
list.insertAdjacentHTML(
‘afterbegin’,
commentMarkup(response.data, state.canComment, false)
);
empty.hidden = true;

if ((response.data.status || ”) === ‘approved’) {
state.total += 1;
setCount(widget, state.total);
}
}

setNotice(widget, response.message || ‘Comment posted successfully.’);
} catch (error) {
setNotice(widget, error.message || ‘Unable to post comment.’, ‘error’);
} finally {
if (button) {
button.disabled = false;
button.textContent = originalText || ‘Post comment’;
}
}
}

async function submitReply(form) {
const commentId = Number(form.dataset.commentId || 0);
const textarea = form.querySelector(‘textarea[name=”content”]’);
const button = form.querySelector(‘.ev-comments__reply-submit’);

if (!commentId || !textarea) return;

const content = textarea.value.trim();
if (!content) return;

const originalText = button ? button.textContent : ”;

try {
if (button) {
button.disabled = true;
button.textContent = ‘Posting…’;
}

const response = await requestJson(`${state.commentsBaseUrl}/${commentId}/reply`, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({
article_id: state.articleId,
content: content,
source_url: window.location.href
})
});

if (response?.data) {
const parentItem = widget.querySelector(`.ev-comments__item[data-comment-id=”${commentId}”]`);
if (parentItem) {
const repliesWrap = parentItem.querySelector(‘.ev-comments__replies’);
if (repliesWrap) {
repliesWrap.insertAdjacentHTML(
‘beforeend’,
commentMarkup(response.data, state.canComment, true)
);
}
}
}

closeReplyBox(form.closest(‘[data-role=”reply-box”]’));
setNotice(widget, response.message || ‘Reply posted successfully.’);
} catch (error) {
setNotice(widget, error.message || ‘Unable to post reply.’, ‘error’);
} finally {
if (button) {
button.disabled = false;
button.textContent = originalText || ‘Post reply’;
}
}
}

async function toggleLike(button) {
const commentId = Number(button.dataset.commentId || 0);
if (!commentId) return;

const originalHtml = button.innerHTML;

try {
button.disabled = true;
button.innerHTML = ‘Working…’;

const response = await requestJson(`${state.commentsBaseUrl}/${commentId}/like`, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({})
});

const liked = !!response?.data?.liked;
const likeCount = Number(response?.data?.like_count || 0);

button.classList.toggle(‘is-liked’, liked);
button.innerHTML = `${liked ? ‘Liked’ : ‘Like’} ${likeCount > 0 ? “ : ”}`;
} catch (error) {
button.innerHTML = originalHtml;
setNotice(widget, error.message || ‘Unable to update like.’, ‘error’);
} finally {
button.disabled = false;
}
}

if (composerForm) {
composerForm.addEventListener(‘submit’, function (e) {
e.preventDefault();
submitTopLevelComment(composerForm);
});
}

if (sortSelect) {
sortSelect.addEventListener(‘change’, function () {
state.sort = this.value || ‘newest’;
loadComments(true);
});
}

if (loadMoreBtn) {
loadMoreBtn.addEventListener(‘click’, function () {
if (state.busy || !state.hasMore) return;
state.page += 1;
loadComments(false);
});
}

widget.addEventListener(‘click’, function (e) {
const likeBtn = e.target.closest(‘[data-action=”toggle-like”]’);
if (likeBtn) {
e.preventDefault();
toggleLike(likeBtn);
return;
}

const replyBtn = e.target.closest(‘[data-action=”toggle-reply”]’);
if (replyBtn) {
e.preventDefault();
openReplyBox(widget, Number(replyBtn.dataset.commentId || 0));
return;
}

const cancelReplyBtn = e.target.closest(‘[data-action=”cancel-reply”]’);
if (cancelReplyBtn) {
e.preventDefault();
closeReplyBox(cancelReplyBtn.closest(‘[data-role=”reply-box”]’));
}
});

widget.addEventListener(‘submit’, function (e) {
const replyForm = e.target.closest(‘.ev-comments__reply-form’);
if (replyForm) {
e.preventDefault();
submitReply(replyForm);
}
});

loadComments(true);
}

document.addEventListener(‘DOMContentLoaded’, function () {
document.querySelectorAll(‘.ev-comments’).forEach(initCommentsWidget);
});
})();

Trending

Weight-loss drug Wegovy approved in UK for MASH-related liver fibrosisNews
|Charity Kilei
|13 hours ago

Eight arrested in Marsabit over Sh1.2 million SIM swap fraudNorthern Kenya
|Bashir Mbuthia
|12 hours ago

DP Kindiki hails cooperatives as key to Kenya’s economic transformationNews
|Rachael Mutabasi
|11 hours ago

Pope Leo XIV shines spotlight on Mediterranean migration crisisWorld
|Mary Wambui
|9 hours ago
SHA seeks Treasury funds to clear NHIF claims above Sh10 millionHealth
|Charity Kilei
|11 hours ago

Sudan’s people subject to ‘relentless’ drone strikes in El ObeidSudan
|UN News
|9 hours ago

Report records 83 harassment incidents against Christians in Israel over three monthsMiddle-East
|Bashir Mbuthia
|5 hours ago

Kenya reaffirms ties with Rwanda as it marks Liberation Day celebrationsRegional
|Bashir Mbuthia
|5 hours ago

Somalia intelligence agency kills Al-Shabaab mortar unit leader in Basra operationSomalia
|Bashir Mbuthia
|7 hours ago

CS Mbadi defends government’s Safaricom share sale as lawful and transparentNews
|Rachael Mutabasi
|15 hours ago

Share.
Leave A Reply

Exit mobile version