Git Product home page Git Product logo

theme's Introduction

LogChimp

Track your customers feedback to build better products with LogChimp


CI Test Status GitHub LogChimp Contributors Gitpod ready-to-code Contribute on Open Collective Github Stars Join LogChimp Discord server Help Wanted Contribute Follow @logchimp on Twitter

Features

  • 🎨 Brand customizable
  • 📝 Create posts
  • 🗃️ Organise posts by Boards & Roadmaps
  • 💪 Powerful dashboard
  • 🔐 Secure by design
  • 🤖 Self-hosted

Getting started

To get started you can read our deployment docs for self-hosting with Ubuntu or cloud hosting with one click deploy button.

🤝🏻 Community

Stay up to date on the development of LogChimp you can star this repository, follow us on Twitter or reach out to the community with these helpful resources.

⛏️ Built Using

Contributing to LogChimp project is fairly easy.

  • Express - APIs
  • PostgresQL - Database
  • Vue 3 + Vite.js - Theme

 

🎁 LogChimp Sponsors

Big shout-out to our sponsors and partners. If you're interested in sponsoring LogChimp and supporting the project, please reach out to us on LogChimp Discord server.

CodeCarrot logo

theme's People

Contributors

dependabot[bot] avatar mittalyashu avatar

Watchers

 avatar  avatar

theme's Issues

Change all API helpers function arguments to object

Currently, we are passing multiple arguments to the API helper functions.

for example

export const getPublicBoards = async (page = 1, limit, sort = "desc") => {
	return await axios({
		method: "GET",
		url: "/api/v1/boards",
		params: {
			page,
			limit,
			created: sort
		}
	});
};

👆 source code

As getPublicBoards function accept multiple arguments, due to confusion in which order the arguments needs to be passed, can lead to unexpected results.

In resolution of that problem, we can change the arguments to a single object.

for example

export const getPublicBoards = async ({ 
  page = 1,
  limit,
  sort = "desc"
}) => {
  return await axios({
    method: "GET",
    url: "/api/v1/boards",
    params: {
      page,
      limit,
      created: sort
    }
  });
}

test: "toggle emit checkbox value" throws error

Running this test throws error TypeError: Cannot read property '0' of undefined.

      20 |
      21 | 		const value = wrapper.emitted("input");
    > 22 | 		expect(value[0]).toBe(true);
         | 		            ^
      23 | 	});
      24 | });
      25 |

Docker Build Issues

Describe the bug
Unable to build non interactively with Docker

To Reproduce
Steps to reproduce the behaviour:

  1. (using tiredofit/nginx:latest) apk add git nodejs yarn
  2. yarn build --fix within Dockerfile
  3. See error

Expected behaviour
Builds properly. It builds with the actual base Docker image in a bash shell, just not in Docker.

Examples of Errors

/app/theme/src/pages/Index.vue
  4:9  error  Replace `⏎↹↹↹↹v-for="post·in·posts"⏎↹↹↹↹:key="post.postId"⏎↹↹↹↹:post="post"⏎↹↹↹` with `·v-for="post·in·posts"·:key="post.postId"·:post="post"·`  prettier/prettier

/app/theme/src/pages/Join.vue
   9:5   error  Insert `/`                                                                                                                                          prettier/prettier
  41:12  error  Replace `⏎↹↹↹↹↹type="primary"⏎↹↹↹↹↹:loading="buttonLoading"⏎↹↹↹↹↹@click="join"⏎↹↹↹↹` with `·type="primary"·:loading="buttonLoading"·@click="join"`  prettier/prettier

and more..

Additional thoughts
Looks to be problems with tabs. Standardize to spacing instead of tabs to avoid this issue. The --fix argument shouldn't need to be used regardless.

`regeneratorRuntime` error in client app

Describe the bug

(Before splitting the codebase, there was no such error)

Getting regeneratorRuntime is not defined error in client app, but the tests are passing.

But after removing babel.config.js file, the client app issue gets resolved, but tests start failing.

module.exports = {
	presets: ["@babel/preset-env"],
	plugins: ["transform-require-context"]
};

Screenshots

CleanShot 2021-02-08 at 12 54 22@2x

Dropdown directions

Add direction props dropdown component and based on that show the dropdown.

  • top
  • bottom
  • left
  • right

Screenshot 2020-09-12 at 10 20 34 AM

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.