extracted templates, extracted strings for templates

This commit is contained in:
Amruth Pillai
2020-03-30 10:58:50 +05:30
parent 51dc6ef94d
commit a0e17396ac
13 changed files with 81 additions and 79 deletions

View File

@ -1,15 +1,10 @@
/* eslint-disable no-unused-vars */
import React, { useEffect, useContext, Suspense } from 'react'; import React, { useEffect, useContext, Suspense } from 'react';
import AppContext from '../../context/AppContext';
import LeftSidebar from '../LeftSidebar/LeftSidebar'; import LeftSidebar from '../LeftSidebar/LeftSidebar';
import RightSidebar from '../RightSidebar/RightSidebar'; import RightSidebar from '../RightSidebar/RightSidebar';
import AppContext from '../../context/AppContext';
// Resume Templates import templates from '../../templates';
import Onyx from '../../templates/onyx';
import Pikachu from '../../templates/pikachu';
import Gengar from '../../templates/gengar';
import Castform from '../../templates/castform';
const App = () => { const App = () => {
const context = useContext(AppContext); const context = useContext(AppContext);
@ -21,21 +16,6 @@ const App = () => {
dispatch({ type: 'import_data', payload: storedState }); dispatch({ type: 'import_data', payload: storedState });
}, [dispatch]); }, [dispatch]);
const renderTemplate = () => {
switch (theme.layout) {
case 'Onyx':
return <Onyx />;
case 'Pikachu':
return <Pikachu />;
case 'Gengar':
return <Gengar />;
case 'Castform':
return <Castform />;
default:
return null;
}
};
return ( return (
<Suspense fallback="Loading..."> <Suspense fallback="Loading...">
<div className="h-screen overflow-hidden grid grid-cols-5 items-center"> <div className="h-screen overflow-hidden grid grid-cols-5 items-center">
@ -47,7 +27,7 @@ const App = () => {
className="animated fadeIn my-auto shadow-2xl" className="animated fadeIn my-auto shadow-2xl"
style={{ animationDelay: '500ms' }} style={{ animationDelay: '500ms' }}
> >
{renderTemplate()} {templates.find(x => theme.layout.toLowerCase() === x.key).component()}
</div> </div>
</div> </div>

View File

@ -13,7 +13,12 @@ import ExtrasTab from './tabs/Extras';
import LanguagesTab from './tabs/Languages'; import LanguagesTab from './tabs/Languages';
import ReferencesTab from './tabs/References'; import ReferencesTab from './tabs/References';
const tabs = [ const LeftSidebar = () => {
const context = useContext(AppContext);
const { state, dispatch } = context;
const { data } = state;
const tabs = [
'Profile', 'Profile',
'Objective', 'Objective',
'Work Experience', 'Work Experience',
@ -24,14 +29,8 @@ const tabs = [
'Languages', 'Languages',
'References', 'References',
'Extras', 'Extras',
]; ];
const [currentTab, setCurrentTab] = useState('Profile');
const LeftSidebar = () => {
const context = useContext(AppContext);
const { state, dispatch } = context;
const { data } = state;
const [currentTab, setCurrentTab] = useState('Extras');
const onChange = (key, value) => { const onChange = (key, value) => {
dispatch({ dispatch({
type: 'on_input', type: 'on_input',

View File

@ -1,4 +1,5 @@
import React, { useState, useContext } from 'react'; import React, { useState, useContext } from 'react';
import { useTranslation } from 'react-i18next';
import AppContext from '../../context/AppContext'; import AppContext from '../../context/AppContext';
import TabBar from '../../shared/TabBar'; import TabBar from '../../shared/TabBar';
@ -8,14 +9,15 @@ import FontsTab from './tabs/Fonts';
import ActionsTab from './tabs/Actions'; import ActionsTab from './tabs/Actions';
import AboutTab from './tabs/About'; import AboutTab from './tabs/About';
const tabs = ['Templates', 'Colors', 'Fonts', 'Actions', 'About'];
const RightSidebar = () => { const RightSidebar = () => {
const { t } = useTranslation('rightSidebar');
const context = useContext(AppContext); const context = useContext(AppContext);
const { state, dispatch } = context; const { state, dispatch } = context;
const { data, theme } = state; const { data, theme } = state;
const [currentTab, setCurrentTab] = useState('Templates'); const tabs = [t('templates.title'), 'Colors', 'Fonts', 'Actions', 'About'];
const [currentTab, setCurrentTab] = useState(t('templates.title'));
const onChange = (key, value) => { const onChange = (key, value) => {
dispatch({ dispatch({
type: 'on_input', type: 'on_input',
@ -30,7 +32,7 @@ const RightSidebar = () => {
const renderTabs = () => { const renderTabs = () => {
switch (currentTab) { switch (currentTab) {
case 'Templates': case t('templates.title'):
return <TemplatesTab theme={theme} onChange={onChange} />; return <TemplatesTab theme={theme} onChange={onChange} />;
case 'Colors': case 'Colors':
return <ColorsTab theme={theme} onChange={onChange} />; return <ColorsTab theme={theme} onChange={onChange} />;

View File

@ -1,47 +1,25 @@
import React from 'react'; import React from 'react';
import Onyx, { Image as OnyxPreview } from '../../../templates/onyx'; import { useTranslation } from 'react-i18next';
import Pikachu, { Image as PikachuPreview } from '../../../templates/pikachu';
import Gengar, { Image as GengarPreview } from '../../../templates/gengar';
import Castform, { Image as CastformPreview } from '../../../templates/castform';
const templates = [ import templates from '../../../templates';
{
name: 'Onyx',
component: Onyx,
preview: OnyxPreview,
},
{
name: 'Pikachu',
component: Pikachu,
preview: PikachuPreview,
},
{
name: 'Gengar',
component: Gengar,
preview: GengarPreview,
},
{
name: 'Castform',
component: Castform,
preview: CastformPreview,
},
];
const TemplatesTab = ({ theme, onChange }) => { const TemplatesTab = ({ theme, onChange }) => {
const { t } = useTranslation('rightSidebar');
return ( return (
<div className="grid grid-cols-2 gap-6"> <div className="grid grid-cols-2 gap-6">
{templates.map(x => ( {templates.map(x => (
<div key={x.name} className="text-center" onClick={() => onChange('theme.layout', x.name)}> <div key={x.key} className="text-center" onClick={() => onChange('theme.layout', x.key)}>
<img <img
className={`rounded cursor-pointer object-cover border shadow hover:shadow-md ${ className={`rounded cursor-pointer object-cover border shadow hover:shadow-md ${
theme.layout === x.name theme.layout.toLowerCase() === x.key
? 'border-gray-600 hover:border-gray-600' ? 'border-gray-600 hover:border-gray-600'
: 'border-transparent ' : 'border-transparent '
} hover:border-gray-500 cursor-pointer`} } hover:border-gray-500 cursor-pointer`}
src={x.preview} src={x.preview}
alt={x.name} alt={t(`templates.templates.${x.key}`)}
/> />
<p className="mt-1 text-sm font-medium">{x.name}</p> <p className="mt-1 text-sm font-medium">{t(`templates.templates.${x.key}`)}</p>
</div> </div>
))} ))}
</div> </div>

View File

@ -8,7 +8,7 @@ i18n.use(initReactI18next).init({
fallbackLng: 'en', fallbackLng: 'en',
resources, resources,
debug: true, debug: true,
ns: ['app', 'leftSidebar'], ns: ['app', 'leftSidebar', 'rightSidebar'],
defaultNS: 'app', defaultNS: 'app',
}); });

View File

@ -1,7 +1,9 @@
import app from './app'; import app from './app';
import leftSidebar from './leftSidebar'; import leftSidebar from './leftSidebar';
import rightSidebar from './rightSidebar';
export default { export default {
app, app,
leftSidebar, leftSidebar,
rightSidebar,
}; };

View File

@ -0,0 +1,5 @@
import templates from './templates.json';
export default {
templates,
};

View File

@ -0,0 +1,9 @@
{
"title": "Templates",
"templates": {
"onyx": "Onyx",
"pikachu": "Pikaaachu",
"gengar": "Gengar",
"castform": "Castform"
}
}

View File

@ -234,10 +234,10 @@ const Castform = () => {
</div> </div>
); );
const ExtraItem = ({ key, value }) => ( const ExtraItem = x => (
<div className="px-5 my-2"> <div key={x.id} className="px-5 my-2">
<h6 className="text-xs font-bold">{key}</h6> <h6 className="text-xs font-bold">{x.key}</h6>
<div className="text-sm">{value}</div> <div className="text-sm">{x.value}</div>
</div> </div>
); );

View File

@ -215,7 +215,7 @@ const Gengar = () => {
); );
const ExtraItem = x => ( const ExtraItem = x => (
<div key={x.key} className="text-sm my-1"> <div key={x.id} className="text-sm my-1">
<h6 className="text-xs font-bold">{x.key}</h6> <h6 className="text-xs font-bold">{x.key}</h6>
<h6>{x.value}</h6> <h6>{x.value}</h6>
</div> </div>

27
src/templates/index.js Normal file
View File

@ -0,0 +1,27 @@
import Onyx, { Image as OnyxPreview } from './onyx';
import Pikachu, { Image as PikachuPreview } from './pikachu';
import Gengar, { Image as GengarPreview } from './gengar';
import Castform, { Image as CastformPreview } from './castform';
export default [
{
key: 'onyx',
component: Onyx,
preview: OnyxPreview,
},
{
key: 'pikachu',
component: Pikachu,
preview: PikachuPreview,
},
{
key: 'gengar',
component: Gengar,
preview: GengarPreview,
},
{
key: 'castform',
component: Castform,
preview: CastformPreview,
},
];

View File

@ -211,7 +211,7 @@ const Onyx = () => {
); );
const ExtraItem = x => ( const ExtraItem = x => (
<tr key={x.key}> <tr key={x.id}>
<td className="border font-medium px-4 py-2 text-sm">{x.key}</td> <td className="border font-medium px-4 py-2 text-sm">{x.key}</td>
<td className="border px-4 py-2 text-sm">{x.value}</td> <td className="border px-4 py-2 text-sm">{x.value}</td>
</tr> </tr>

View File

@ -120,7 +120,7 @@ const Pikachu = () => {
); );
const ExtraItem = x => ( const ExtraItem = x => (
<div key={x.key} className="text-sm my-1"> <div key={x.id} className="text-sm my-1">
<h6 className="text-xs font-bold">{x.key}</h6> <h6 className="text-xs font-bold">{x.key}</h6>
<h6 className="">{x.value}</h6> <h6 className="">{x.value}</h6>
</div> </div>