From dac214c3ac6066a6f23cf92807da89cc1a86c105 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 25 Oct 2020 20:30:04 -0700 Subject: Implement linking field --- modern/src/DevicePage.js | 32 +++++++++++++++++ modern/src/UserPage.js | 30 ++++++++++++++++ modern/src/form/LinkField.js | 81 ++++++++++++++++++++++++++++++++++++++++++++ web/l10n/en.json | 1 + 4 files changed, 144 insertions(+) create mode 100644 modern/src/form/LinkField.js diff --git a/modern/src/DevicePage.js b/modern/src/DevicePage.js index 7c9b5671..a8a3de65 100644 --- a/modern/src/DevicePage.js +++ b/modern/src/DevicePage.js @@ -9,6 +9,8 @@ import EditAttributesView from './attributes/EditAttributesView'; import deviceAttributes from './attributes/deviceAttributes'; import SelectField from './form/SelectField'; import { deviceCategories } from './common/deviceCategories'; +import LinkField from './form/LinkField'; +import { prefixString } from './common/stringUtils'; const useStyles = makeStyles(() => ({ details: { @@ -107,6 +109,36 @@ const DevicePage = () => { /> + {item.id && + + }> + + {t('sharedConnections')} + + + + + t(prefixString('event', it.type))} + label={t('sharedNotifications')} + variant="filled" /> + + + } } diff --git a/modern/src/UserPage.js b/modern/src/UserPage.js index 98b9b414..0fa0918b 100644 --- a/modern/src/UserPage.js +++ b/modern/src/UserPage.js @@ -7,6 +7,7 @@ import EditItemView from './EditItemView'; import { Accordion, AccordionSummary, AccordionDetails, makeStyles, Typography } from '@material-ui/core'; import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; import EditAttributesView from './attributes/EditAttributesView'; +import LinkField from './form/LinkField'; const useStyles = makeStyles(() => ({ details: { @@ -64,6 +65,35 @@ const UserPage = () => { /> + {item.id && + + }> + + {t('sharedConnections')} + + + + + + + + } } diff --git a/modern/src/form/LinkField.js b/modern/src/form/LinkField.js new file mode 100644 index 00000000..b228fb34 --- /dev/null +++ b/modern/src/form/LinkField.js @@ -0,0 +1,81 @@ +import { FormControl, InputLabel, MenuItem, Select } from '@material-ui/core'; +import React, { useState } from 'react'; +import { useEffectAsync } from '../reactHelper'; + +const LinkField = ({ + margin, + variant, + label, + endpointAll, + endpointLinked, + baseId, + keyBase, + keyLink, + keyGetter = item => item.id, + titleGetter = item => item.name, +}) => { + const [items, setItems] = useState(); + const [linked, setLinked] = useState(); + + useEffectAsync(async () => { + const response = await fetch(endpointAll); + if (response.ok) { + setItems(await response.json()); + } + }, []); + + useEffectAsync(async () => { + const response = await fetch(endpointLinked); + if (response.ok) { + const data = await response.json(); + setLinked(data.map(it => it.id)); + } + }, []); + + const createBody = linkId => { + const body = {}; + body[keyBase] = baseId; + body[keyLink] = linkId; + return body; + } + + const onChange = async event => { + const oldValue = linked; + const newValue = event.target.value; + for (const added of newValue.filter(it => !oldValue.includes(it))) { + await fetch('/api/permissions', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(createBody(added)), + }); + } + for (const removed of oldValue.filter(it => !newValue.includes(it))) { + await fetch('/api/permissions', { + method: 'DELETE', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(createBody(removed)), + }); + } + setLinked(newValue); + }; + + if (items && linked) { + return ( + + {label} + + + ); + } else { + return null; + } +} + +export default LinkField; diff --git a/web/l10n/en.json b/web/l10n/en.json index db26de80..dceba5f8 100644 --- a/web/l10n/en.json +++ b/web/l10n/en.json @@ -65,6 +65,7 @@ "sharedRequired": "Required", "sharedPreferences": "Preferences", "sharedPermissions": "Permissions", + "sharedConnections": "Connections", "sharedExtra": "Extra", "sharedTypeString": "String", "sharedTypeNumber": "Number", -- cgit v1.2.3