Giter VIP home page Giter VIP logo

odoo-dev-plugin's People

Contributors

caburj avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

odoo-dev-plugin's Issues

remove idea of "active branch"

  • The user shouldn't be punished from manually checking out a branch.
  • This situation should be handled properly by the extension.

One command to checkout/fetch/create

If the branch is present locally, checkout to it.
If the branch is not present locally, fetch from remote.
If the branch is not present remotely, ask the user if he want to create.

Open branch link

when running the pull request command, if the pull request is not yet present, but the branch is in the remote, open the link to create the pull request.

refactor

  • separate activate from deactivate
  • separate the commands?
  • modular contextual utils

Command to get the list of modules with git diff

const { execSync } = require('child_process');

// const branch = "odoo";
const branch = "enterprise";
const gitDiffCommand = `cd /home/odoo/src/${branch} && git diff --name-only HEAD HEAD~1`;
const gitDiffOutput = execSync(gitDiffCommand, { encoding: 'utf8' });

const addonList = Array.from(new Set(gitDiffOutput.split('\n').map(line => {
    const startIndex = branch === 'odoo' ? line.indexOf('/') + 1 : 0;
    const endIndex = line.indexOf('/', startIndex);
    return line.substring(startIndex, endIndex !== -1 ? endIndex : undefined);
  })));
const noOfModulesPerLine = 5;
  const output = addonList.reduce((result, addon, index) => {
  const line = index % noOfModulesPerLine === 0 && index != 0 ? ',\n' : '';
  const separator = index === 0 ? '' : ',';
  return result + line + (line ? addon : separator + addon);
}, '');

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.