51 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
import * as pathUtils from 'path';
 | 
						|
import { commitActionTypes } from '~/ide/constants';
 | 
						|
import { decorateData } from '~/ide/stores/utils';
 | 
						|
 | 
						|
export const file = (name = 'name', id = name, type = '', parent = null) =>
 | 
						|
  decorateData({
 | 
						|
    id,
 | 
						|
    type,
 | 
						|
    icon: 'icon',
 | 
						|
    name,
 | 
						|
    path: parent ? `${parent.path}/${name}` : name,
 | 
						|
    parentPath: parent ? parent.path : '',
 | 
						|
  });
 | 
						|
 | 
						|
export const createEntriesFromPaths = (paths) =>
 | 
						|
  paths
 | 
						|
    .map((path) => ({
 | 
						|
      name: pathUtils.basename(path),
 | 
						|
      dir: pathUtils.dirname(path),
 | 
						|
      ext: pathUtils.extname(path),
 | 
						|
    }))
 | 
						|
    .reduce((entries, path, idx) => {
 | 
						|
      const { name } = path;
 | 
						|
      const parent = path.dir ? entries[path.dir] : null;
 | 
						|
      const type = path.ext ? 'blob' : 'tree';
 | 
						|
      const entry = file(name, (idx + 1).toString(), type, parent);
 | 
						|
      return {
 | 
						|
        [entry.path]: entry,
 | 
						|
        ...entries,
 | 
						|
      };
 | 
						|
    }, {});
 | 
						|
 | 
						|
export const createTriggerChangeAction = (payload) => ({
 | 
						|
  type: 'triggerFilesChange',
 | 
						|
  ...(payload ? { payload } : {}),
 | 
						|
});
 | 
						|
 | 
						|
export const createTriggerRenamePayload = (path, newPath) => ({
 | 
						|
  type: commitActionTypes.move,
 | 
						|
  path,
 | 
						|
  newPath,
 | 
						|
});
 | 
						|
 | 
						|
export const createTriggerUpdatePayload = (path) => ({
 | 
						|
  type: commitActionTypes.update,
 | 
						|
  path,
 | 
						|
});
 | 
						|
 | 
						|
export const createTriggerRenameAction = (path, newPath) =>
 | 
						|
  createTriggerChangeAction(createTriggerRenamePayload(path, newPath));
 |