UNPKG

repoweaver

Version:

A GitHub App that skillfully weaves multiple templates together to create and update repositories with intelligent merge strategies

1 lines 5.77 kB
{"ast":null,"code":"import { createSlice } from '@reduxjs/toolkit';\nvar initialState = {\n templates: [{\n id: '1',\n url: 'https://github.com/facebook/react-native.git',\n name: 'React Native Template',\n branch: 'main',\n description: 'Official React Native template'\n }, {\n id: '2',\n url: 'https://github.com/expo/expo.git',\n name: 'Expo Template',\n branch: 'main',\n subDirectory: 'templates/expo-template-blank',\n description: 'Expo blank template'\n }],\n loading: false,\n error: null\n};\nexport var templatesSlice = createSlice({\n name: 'templates',\n initialState: initialState,\n reducers: {\n addTemplate: function addTemplate(state, action) {\n state.templates.push(action.payload);\n },\n updateTemplate: function updateTemplate(state, action) {\n var index = state.templates.findIndex(function (t) {\n return t.id === action.payload.id;\n });\n if (index !== -1) {\n state.templates[index] = action.payload;\n }\n },\n removeTemplate: function removeTemplate(state, action) {\n state.templates = state.templates.filter(function (t) {\n return t.id !== action.payload;\n });\n },\n setLoading: function setLoading(state, action) {\n state.loading = action.payload;\n },\n setError: function setError(state, action) {\n state.error = action.payload;\n }\n }\n});\nvar _templatesSlice$actio = templatesSlice.actions,\n addTemplate = _templatesSlice$actio.addTemplate,\n updateTemplate = _templatesSlice$actio.updateTemplate,\n removeTemplate = _templatesSlice$actio.removeTemplate,\n setLoading = _templatesSlice$actio.setLoading,\n setError = _templatesSlice$actio.setError;\nexport { addTemplate, updateTemplate, removeTemplate, setLoading, setError };","map":{"version":3,"names":["createSlice","initialState","templates","id","url","name","branch","description","subDirectory","loading","error","templatesSlice","reducers","addTemplate","state","action","push","payload","updateTemplate","index","findIndex","t","removeTemplate","filter","setLoading","setError","_templatesSlice$actio","actions"],"sources":["/Users/pmouli/Documents/GitHub.nosync/boots-strapper/mobile/src/store/templatesSlice.ts"],"sourcesContent":["import { createSlice, PayloadAction } from '@reduxjs/toolkit';\nimport { MobileTemplateRepository } from '../types';\n\ninterface TemplatesState {\n templates: MobileTemplateRepository[];\n loading: boolean;\n error: string | null;\n}\n\nconst initialState: TemplatesState = {\n templates: [\n {\n id: '1',\n url: 'https://github.com/facebook/react-native.git',\n name: 'React Native Template',\n branch: 'main',\n description: 'Official React Native template'\n },\n {\n id: '2',\n url: 'https://github.com/expo/expo.git',\n name: 'Expo Template',\n branch: 'main',\n subDirectory: 'templates/expo-template-blank',\n description: 'Expo blank template'\n }\n ],\n loading: false,\n error: null,\n};\n\nexport const templatesSlice = createSlice({\n name: 'templates',\n initialState,\n reducers: {\n addTemplate: (state, action: PayloadAction<MobileTemplateRepository>) => {\n state.templates.push(action.payload);\n },\n updateTemplate: (state, action: PayloadAction<MobileTemplateRepository>) => {\n const index = state.templates.findIndex(t => t.id === action.payload.id);\n if (index !== -1) {\n state.templates[index] = action.payload;\n }\n },\n removeTemplate: (state, action: PayloadAction<string>) => {\n state.templates = state.templates.filter(t => t.id !== action.payload);\n },\n setLoading: (state, action: PayloadAction<boolean>) => {\n state.loading = action.payload;\n },\n setError: (state, action: PayloadAction<string | null>) => {\n state.error = action.payload;\n },\n },\n});\n\nexport const { addTemplate, updateTemplate, removeTemplate, setLoading, setError } = templatesSlice.actions;"],"mappings":"AAAA,SAASA,WAAW,QAAuB,kBAAkB;AAS7D,IAAMC,YAA4B,GAAG;EACnCC,SAAS,EAAE,CACT;IACEC,EAAE,EAAE,GAAG;IACPC,GAAG,EAAE,8CAA8C;IACnDC,IAAI,EAAE,uBAAuB;IAC7BC,MAAM,EAAE,MAAM;IACdC,WAAW,EAAE;EACf,CAAC,EACD;IACEJ,EAAE,EAAE,GAAG;IACPC,GAAG,EAAE,kCAAkC;IACvCC,IAAI,EAAE,eAAe;IACrBC,MAAM,EAAE,MAAM;IACdE,YAAY,EAAE,+BAA+B;IAC7CD,WAAW,EAAE;EACf,CAAC,CACF;EACDE,OAAO,EAAE,KAAK;EACdC,KAAK,EAAE;AACT,CAAC;AAED,OAAO,IAAMC,cAAc,GAAGX,WAAW,CAAC;EACxCK,IAAI,EAAE,WAAW;EACjBJ,YAAY,EAAZA,YAAY;EACZW,QAAQ,EAAE;IACRC,WAAW,EAAE,SAAbA,WAAWA,CAAGC,KAAK,EAAEC,MAA+C,EAAK;MACvED,KAAK,CAACZ,SAAS,CAACc,IAAI,CAACD,MAAM,CAACE,OAAO,CAAC;IACtC,CAAC;IACDC,cAAc,EAAE,SAAhBA,cAAcA,CAAGJ,KAAK,EAAEC,MAA+C,EAAK;MAC1E,IAAMI,KAAK,GAAGL,KAAK,CAACZ,SAAS,CAACkB,SAAS,CAAC,UAAAC,CAAC;QAAA,OAAIA,CAAC,CAAClB,EAAE,KAAKY,MAAM,CAACE,OAAO,CAACd,EAAE;MAAA,EAAC;MACxE,IAAIgB,KAAK,KAAK,CAAC,CAAC,EAAE;QAChBL,KAAK,CAACZ,SAAS,CAACiB,KAAK,CAAC,GAAGJ,MAAM,CAACE,OAAO;MACzC;IACF,CAAC;IACDK,cAAc,EAAE,SAAhBA,cAAcA,CAAGR,KAAK,EAAEC,MAA6B,EAAK;MACxDD,KAAK,CAACZ,SAAS,GAAGY,KAAK,CAACZ,SAAS,CAACqB,MAAM,CAAC,UAAAF,CAAC;QAAA,OAAIA,CAAC,CAAClB,EAAE,KAAKY,MAAM,CAACE,OAAO;MAAA,EAAC;IACxE,CAAC;IACDO,UAAU,EAAE,SAAZA,UAAUA,CAAGV,KAAK,EAAEC,MAA8B,EAAK;MACrDD,KAAK,CAACL,OAAO,GAAGM,MAAM,CAACE,OAAO;IAChC,CAAC;IACDQ,QAAQ,EAAE,SAAVA,QAAQA,CAAGX,KAAK,EAAEC,MAAoC,EAAK;MACzDD,KAAK,CAACJ,KAAK,GAAGK,MAAM,CAACE,OAAO;IAC9B;EACF;AACF,CAAC,CAAC;AAEK,IAAAS,qBAAA,GAA8Ef,cAAc,CAACgB,OAAO;EAA5Fd,WAAW,GAAAa,qBAAA,CAAXb,WAAW;EAAEK,cAAc,GAAAQ,qBAAA,CAAdR,cAAc;EAAEI,cAAc,GAAAI,qBAAA,CAAdJ,cAAc;EAAEE,UAAU,GAAAE,qBAAA,CAAVF,UAAU;EAAEC,QAAQ,GAAAC,qBAAA,CAARD,QAAQ;AAA4B,SAAAZ,WAAA,EAAAK,cAAA,EAAAI,cAAA,EAAAE,UAAA,EAAAC,QAAA","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}