mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
81 lines
3.1 KiB
JavaScript
81 lines
3.1 KiB
JavaScript
// Copyright (C) 2017-2023 Smart code 203358507
|
|
|
|
const React = require('react');
|
|
const { useTranslate } = require('stremio/common');
|
|
|
|
const mapSelectableInputs = (discover, t) => {
|
|
const selectedType = discover.selectable.types.find(({ selected }) => selected);
|
|
const typeSelect = {
|
|
options: discover.selectable.types
|
|
.map(({ type, deepLinks }) => ({
|
|
value: deepLinks.discover,
|
|
label: t.stringWithPrefix(type, 'TYPE_')
|
|
})),
|
|
value: selectedType
|
|
? selectedType.deepLinks.discover
|
|
: undefined,
|
|
title: discover.selected !== null
|
|
? () => t.stringWithPrefix(discover.selected.request.path.type, 'TYPE_')
|
|
: t.string('SELECT_TYPE'),
|
|
onSelect: (value) => {
|
|
window.location = value;
|
|
}
|
|
};
|
|
const catalogSelect = {
|
|
options: discover.selectable.catalogs
|
|
.map(({ id, name, addon, deepLinks }) => ({
|
|
value: deepLinks.discover,
|
|
label: t.catalogTitle({ addon, id, name }),
|
|
title: `${name} (${addon.manifest.name})`
|
|
})),
|
|
value: discover.selectable.catalogs
|
|
.filter(({ selected }) => selected)
|
|
.map(({ deepLinks }) => deepLinks.discover),
|
|
title: discover.selected !== null
|
|
? () => {
|
|
const selectableCatalog = discover.selectable.catalogs
|
|
.find(({ id }) => id === discover.selected.request.path.id);
|
|
return selectableCatalog ? t.catalogTitle(selectableCatalog, false) : discover.selected.request.path.id;
|
|
}
|
|
:
|
|
t.string('SELECT_CATALOG'),
|
|
onSelect: (value) => {
|
|
window.location =value;
|
|
}
|
|
};
|
|
const extraSelects = discover.selectable.extra.map(({ name, isRequired, options }) => {
|
|
const selectedExtra = options.find(({ selected }) => selected);
|
|
return {
|
|
isRequired: isRequired,
|
|
options: options.map(({ value, deepLinks }) => ({
|
|
label: typeof value === 'string' ? t.string(value) : t.string('NONE'),
|
|
value: JSON.stringify({
|
|
href: deepLinks.discover,
|
|
value
|
|
})
|
|
})),
|
|
value: JSON.stringify({
|
|
href: selectedExtra.deepLinks.discover,
|
|
value: selectedExtra.value,
|
|
}),
|
|
title: options.some(({ selected, value }) => selected && value === null) ?
|
|
() => t.string(name.toUpperCase())
|
|
: t.string(selectedExtra.value),
|
|
onSelect: (value) => {
|
|
const { href } = JSON.parse(value);
|
|
window.location = href;
|
|
}
|
|
};
|
|
});
|
|
return [[typeSelect, catalogSelect, ...extraSelects], discover.selectable.nextPage];
|
|
};
|
|
|
|
const useSelectableInputs = (discover) => {
|
|
const t = useTranslate();
|
|
const selectableInputs = React.useMemo(() => {
|
|
return mapSelectableInputs(discover, t);
|
|
}, [discover.selected, discover.selectable]);
|
|
return selectableInputs;
|
|
};
|
|
|
|
module.exports = useSelectableInputs;
|