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: shareable presets #637

Merged
merged 3 commits into from
Jun 29, 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
5 changes: 5 additions & 0 deletions .changeset/shaggy-dancers-bow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@codeimage/app': minor
---

Add shareable presets
12 changes: 12 additions & 0 deletions apps/codeimage/changelog/1-7-0_06-29-2024.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import {mdxComponents} from '../src/mdx/components';
import shareablePresets from './data/1-7-0/shareable_presets.png';

# v1.7.0

<mdxComponents.h3>🎨 Shareable presets</mdxComponents.h3>

This new CodeImage update bring a way to share your presets via link.

Everyone that paste the link into their browser will automatically get your preset into their workspace.

<mdxComponents.image src={shareablePresets} style={{'object-position': 'left'}} />
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import {getTerminalState} from '@codeimage/store/editor/terminal';
import {getPresetsStore} from '@codeimage/store/presets/presets';
import {PresetData} from '@codeimage/store/presets/types';
import {getUiStore} from '@codeimage/store/ui';
import {Box, HStack, Text} from '@codeimage/ui';
import {Box, HStack, Text, toast} from '@codeimage/ui';
import {
As,
Button,
DropdownMenu,
DropdownMenuContent,
Expand All @@ -15,7 +16,6 @@ import {
DropdownMenuTrigger,
IconButton,
Tooltip,
As,
} from '@codeui/kit';
import {getUmami} from '@core/constants/umami';
import {formatDistanceToNow} from '@core/helpers/date';
Expand Down Expand Up @@ -214,6 +214,16 @@ export const PresetSwitcher: ParentComponent<
>
{t('presets.renamePreset.label')}
</DropdownMenuItem>
<DropdownMenuItem
onClick={() => {
presetsStore.actions.copyLink(theme);
toast.success(t('presets.share.confirm'), {
position: 'bottom-center',
});
}}
>
{t('presets.share.label')}
</DropdownMenuItem>
<DropdownMenuItem
onClick={() => {
openDialog(ConfirmDialog, {
Expand Down
8 changes: 8 additions & 0 deletions apps/codeimage/src/i18n/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ export const presets = {
old: 'Vecchio',
new: 'Nuovo',
},
share: {
label: 'Condividi',
confirm: 'Link preset copiato',
},
renamePreset: {
label: 'Rinomina',
confirmTitle: 'Rinomina preset',
Expand Down Expand Up @@ -55,6 +59,10 @@ export const presets = {
old: 'Old',
new: 'New',
},
share: {
label: 'Share',
confirm: 'Preset has been copied to clipboard',
},
renamePreset: {
label: 'Rename',
confirmTitle: 'Rename preset',
Expand Down
4 changes: 4 additions & 0 deletions apps/codeimage/src/mdx/components.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ export const code = style({

export const img = style({
width: '100%',
borderRadius: themeTokens.radii.lg,
overflow: 'hidden',
objectFit: 'contain',
aspectRatio: '16/9',
});

export const ul = style({
Expand Down
3 changes: 3 additions & 0 deletions apps/codeimage/src/mdx/components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,7 @@ export const mdxComponents: MDXComponents = {
ref={el => setTimeout(() => el.play())}
/>
),
image: (props: JSX.IntrinsicElements['img']) => (
<img {...props} class={styles.img} />
),
};
1 change: 1 addition & 0 deletions apps/codeimage/src/state/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ import {Container} from 'statebuilder';
import {createRoot} from 'solid-js';

const container = createRoot(() => Container.create());

export const provideAppState: typeof container.get = state =>
container.get(state);
45 changes: 43 additions & 2 deletions apps/codeimage/src/state/presets/presets.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {provideAppState} from '@codeimage/store/index';
import {withEntityPlugin} from '@codeimage/store/plugins/withEntityPlugin';
import {withIndexedDbPlugin} from '@codeimage/store/plugins/withIndexedDbPlugin';
import {toast} from '@codeimage/ui';
import {untrack} from 'solid-js';
import {createEffect, on, untrack} from 'solid-js';
import {withAsyncAction} from 'statebuilder/asyncAction';
import {provideAppState} from '..';
import * as api from '../../data-access/preset';
import {useIdb} from '../../hooks/use-indexed-db';
import {getAuth0State} from '../auth/auth0';
Expand Down Expand Up @@ -50,6 +50,42 @@ const PresetStoreDefinition = experimental__defineResource(fetchInitialState)
.extend(withIndexedDbPlugin<PresetsArray>(idbKey, []))
.extend(withPresetBridge(idbKey))
.extend(withAsyncAction())
.extend(store => {
const sharePresetKey = 'share_preset';
createEffect(
on(
() => store.state === 'ready',
isReady => {
if (isReady) {
const params = new URLSearchParams(window.location.search);
if (params.has(sharePresetKey)) {
const sharePreset = params.get(sharePresetKey) as string;
try {
const preset = JSON.parse(window.atob(sharePreset));
store.bridge
.addNewPreset(preset.name, preset.data)
.then(preset => store.set(_ => [preset, ...(_ ?? [])]))
.then(() => {
const url =
window.location.origin + window.location.pathname;
window.history.replaceState(undefined, '', url);
})
.then(() =>
toast.success('Preset imported successfully', {
position: 'bottom-center',
}),
);
} catch (e) {
toast.error('Invalid preset', {
position: 'bottom-center',
});
}
}
}
},
),
);
})
.extend(store => {
return {
sortedPresets() {
Expand Down Expand Up @@ -104,6 +140,11 @@ const PresetStoreDefinition = experimental__defineResource(fetchInitialState)
});
});
}),
copyLink: store.asyncAction((payload: Preset) => {
const data = window.btoa(JSON.stringify(payload));
const link = `${window.location.origin}${window.location.pathname}?share_preset=${data}`;
return navigator.clipboard.writeText(link);
}),
syncPreset: store.asyncAction((payload: Preset) => {
return untrack(() => {
const currentState = store();
Expand Down
Loading