41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
import Channels from "../apiRequests/Channels";
|
|
|
|
class ChannelsUtils {
|
|
channels = new Channels();
|
|
|
|
deleteChannels(nameStartsWith) {
|
|
this.channels.getChannels().then(resp => {
|
|
const channelsArray = new Set(resp.body.data.channels);
|
|
if (!channelsArray) {
|
|
return;
|
|
}
|
|
channelsArray.forEach(element => {
|
|
if (element.name.startsWith(nameStartsWith)) {
|
|
const targetChannels = Array.from(channelsArray).filter(function(
|
|
channelElement
|
|
) {
|
|
return (
|
|
element.currencyCode === channelElement.currencyCode &&
|
|
element.id !== channelElement.id
|
|
);
|
|
});
|
|
if (targetChannels[0]) {
|
|
this.channels.deleteChannel(element.id, targetChannels[0].id);
|
|
channelsArray.delete(element);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
getDefaultChannel() {
|
|
return this.channels.getChannels().then(resp => {
|
|
const channelsArray = resp.body.data.channels;
|
|
return (this.defaultChannel = channelsArray.find(function(
|
|
channelElement
|
|
) {
|
|
return channelElement.slug === "default-channel";
|
|
}));
|
|
});
|
|
}
|
|
}
|
|
export default ChannelsUtils;
|