1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-23 11:02:35 +03:00

frontend: Migrate to jotai and urql

This cuts the bundle size by 50% and makes it easier to reason about state.
It removes the usage of react-router-dom and replaces it with a simple router atom based on jotai-location.
Since the screens will be quite simple, I don't expect that we'll need the advanced caching features of react-relay, hence the switch to urql.
This commit is contained in:
Quentin Gliech
2023-03-20 18:08:58 +01:00
parent 17e4bb70c1
commit b26d12f52f
40 changed files with 3008 additions and 3112 deletions

View File

@@ -12,38 +12,32 @@
// See the License for the specific language governing permissions and
// limitations under the License.
import { graphql, usePaginationFragment } from "react-relay";
import BlockList from "./BlockList";
import BrowserSession from "./BrowserSession";
import Button from "./Button";
import { Title } from "./Typography";
import { FragmentType, graphql, useFragment } from "../gql";
import { BrowserSessionList_user$key } from "./__generated__/BrowserSessionList_user.graphql";
const FRAGMENT = graphql(/* GraphQL */ `
fragment BrowserSessionList_user on User {
browserSessions(first: $count, after: $cursor) {
edges {
cursor
node {
id
...BrowserSession_session
}
}
}
}
`);
type Props = {
user: BrowserSessionList_user$key;
user: FragmentType<typeof FRAGMENT>;
currentSessionId: string;
};
const BrowserSessionList: React.FC<Props> = ({ user, currentSessionId }) => {
const { data, loadNext, hasNext } = usePaginationFragment(
graphql`
fragment BrowserSessionList_user on User
@refetchable(queryName: "BrowserSessionListQuery") {
browserSessions(first: $count, after: $cursor)
@connection(key: "BrowserSessionList_user_browserSessions") {
edges {
cursor
node {
id
...BrowserSession_session
}
}
}
}
`,
user
);
const data = useFragment(FRAGMENT, user);
return (
<BlockList>
@@ -55,7 +49,6 @@ const BrowserSessionList: React.FC<Props> = ({ user, currentSessionId }) => {
isCurrent={n.node.id === currentSessionId}
/>
))}
{hasNext && <Button onClick={() => loadNext(2)}>Load more</Button>}
</BlockList>
);
};