Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Persist code block tab selection to locaStorage #9367

Merged
merged 4 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions src/components/codeContext.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import {createContext, useEffect, useState} from 'react';
import {createContext, useEffect, useReducer, useState} from 'react';
import Cookies from 'js-cookie';

type ProjectCodeKeywords = {
Expand Down Expand Up @@ -88,10 +88,12 @@ export const DEFAULTS: CodeKeywords = {
USER: undefined,
};

type SelectedCodeTabs = Record<string, string | undefined>;

type CodeContextType = {
codeKeywords: CodeKeywords;
isLoading: boolean;
sharedCodeSelection: [string | null, React.Dispatch<string | null>];
sharedCodeSelection: [SelectedCodeTabs, React.Dispatch<[string, string]>];
sharedKeywordSelection: [
Record<string, number>,
React.Dispatch<Record<string, number>>,
Expand Down Expand Up @@ -297,8 +299,20 @@ export function CodeContextProvider({children}: {children: React.ReactNode}) {
// that is the only namespace that actually has a list
const sharedKeywordSelection = useState<Record<string, number>>({});

const storedSelections = Object.fromEntries(
Object.entries(
// default to an empty object if localStorage is not available on the server
typeof localStorage === 'undefined' ? {} : localStorage
).filter(([key]) => key.startsWith('Tabgroup:'))
);

// Maintains the global selection for which code block tab is selected
const sharedCodeSelection = useState<string | null>(null);
const sharedCodeSelection = useReducer(
(tabs: SelectedCodeTabs, [groupId, value]: [string, string]) => {
return {...tabs, [groupId]: value};
},
storedSelections
);

const result: CodeContextType = {
codeKeywords,
Expand Down
17 changes: 13 additions & 4 deletions src/components/codeTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,14 @@ export function CodeTabs({children}: CodeTabProps) {
}
});

const [sharedSelection, setSharedSelection] = codeContext?.sharedCodeSelection ?? [];
// The groupId is used to store the selection in localStorage.
// It is a unique identifier based on the tab titles.
const groupId = 'Tabgroup:' + possibleChoices.sort().join('|');

const sharedSelectionChoice = sharedSelection
? possibleChoices.find(x => x === sharedSelection)
const [sharedSelections, setSharedSelections] = codeContext?.sharedCodeSelection ?? [];

const sharedSelectionChoice = sharedSelections
? possibleChoices.find(x => x === sharedSelections[groupId])
: null;
const localSelectionChoice = localSelection
? possibleChoices.find(x => x === localSelection)
Expand All @@ -99,6 +103,11 @@ export function CodeTabs({children}: CodeTabProps) {
const finalSelection =
sharedSelectionChoice ?? localSelectionChoice ?? possibleChoices[0];

// Save the selected tab for Tabgroup to localStorage whenever it changes
useEffect(() => {
localStorage.setItem(groupId, finalSelection);
}, [finalSelection]);

// Whenever local selection and the final selection are not in sync, the local
// selection is updated from the final one. This means that when the shared
// selection moves to something that is unsupported by the block it stays on
Expand All @@ -117,7 +126,7 @@ export function CodeTabs({children}: CodeTabProps) {
// see useEffect above.
setLastScrollOffset(containerRef.current.getBoundingClientRect().y);
}
setSharedSelection?.(choice);
setSharedSelections?.([groupId, choice]);
setLocalSelection(choice);
}}
>
Expand Down
Loading