Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Partially enhance event dashboard #5139

Merged
merged 10 commits into from
Nov 3, 2020

Conversation

Raunaksingh100
Copy link
Member

@Raunaksingh100 Raunaksingh100 commented Sep 24, 2020

Short description of what this resolves:

in this pr i fixed the points given below--

  1. Delete row "number of revisions".
  2. Change "External Event URL" to "Event Site".

Fixes #5131

screenshot before-

1

screenshot after-

now 2

Checklist

  • I have read the Contribution & Best practices Guide.
  • My branch is up-to-date with the Upstream development branch.
  • The acceptance, integration, unit tests and linter pass locally with my changes
  • I have added tests that prove my fix is effective or that my feature works
  • I have added necessary documentation (if appropriate)
    @iamareebjamal plz review now I fixed 3 points

@vercel
Copy link

vercel bot commented Sep 24, 2020

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/eventyay/open-event-frontend/dffzbk86t
✅ Preview: https://open-event-frontend-git-dev5.eventyay.vercel.app

@auto-label auto-label bot added the fix label Sep 24, 2020
@@ -185,3 +185,7 @@
.event-map > iframe.g-map {
height: 300px;
}

.content a {
text-transform: capitalize;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will capitalize all links in any content container on any page, and not just social media links on event detail page as listed in the issue

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@iamareebjamal i will fixed this

@mariobehling
Copy link
Member

This change also has some other breaking changes, e.g. the page now shows the unpublished scheduled while on the live site it does not show the schedule yet.

Screenshot from 2020-09-24 20-19-49

@codecov
Copy link

codecov bot commented Sep 24, 2020

Codecov Report

Merging #5139 into development will increase coverage by 0.59%.
The diff coverage is n/a.

Impacted file tree graph

@@               Coverage Diff               @@
##           development    #5139      +/-   ##
===============================================
+ Coverage        22.65%   23.24%   +0.59%     
===============================================
  Files              489      493       +4     
  Lines             5191     5170      -21     
  Branches            36       38       +2     
===============================================
+ Hits              1176     1202      +26     
+ Misses            4010     3963      -47     
  Partials             5        5              
Impacted Files Coverage Δ
app/models/social-link.js 0.00% <ø> (ø)
app/components/forms/orders/guest-order-form.js 14.28% <0.00%> (-5.72%) ⬇️
app/models/event.js 50.00% <0.00%> (-3.85%) ⬇️
app/controllers/register.js 34.28% <0.00%> (-2.08%) ⬇️
app/mixins/ember-table-route.js 75.00% <0.00%> (-1.93%) ⬇️
app/components/events/view/publish-bar.ts 15.62% <0.00%> (-1.62%) ⬇️
app/components/public/ticket-list.js 18.96% <0.00%> (-1.22%) ⬇️
app/mixins/event-wizard.js 0.89% <0.00%> (-0.05%) ⬇️
app/router.js 100.00% <0.00%> (ø)
app/routes/pages.js 0.00% <0.00%> (ø)
... and 32 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update aa674a9...7e9a9e4. Read the comment docs.

cggvuhh
cggvuhh previously approved these changes Sep 25, 2020
cggvuhh
cggvuhh previously approved these changes Sep 25, 2020
@Raunaksingh100
Copy link
Member Author

@iamareebjamal @mariobehling plz review i fixed this bug with id

@lgtm-com
Copy link

lgtm-com bot commented Oct 5, 2020

This pull request introduces 1 alert when merging 9b98ab7 into e044006 - view on LGTM.com

new alerts:

  • 1 for Unused variable, import, function or class

Copy link
Member

Codacy Here is an overview of what got changed by this pull request:

Issues
======
- Added 2
           

See the complete overview on Codacy


export default ModelBase.extend({
name : attr('string'),
link : attr('string'),
identifier : attr('string'), // used for providing css id for URL validations.

event: belongsTo('event'),

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codacy found an issue: Trailing spaces not allowed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't resolve the conversations. They are resolved automatically

@@ -4,14 +4,15 @@ import attr from 'ember-data/attr';
import ModelBase from 'open-event-frontend/models/base';
import { belongsTo } from 'ember-data/relationships';
import { computedSegmentedLink, socialPlatforms } from 'open-event-frontend/utils/computed-helpers';
import { capitalize } from 'lodash-es';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lgtm-com
Copy link

lgtm-com bot commented Oct 5, 2020

This pull request introduces 1 alert when merging 1470cd9 into e044006 - view on LGTM.com

new alerts:

  • 1 for Unused variable, import, function or class

cggvuhh
cggvuhh previously approved these changes Nov 3, 2020
@@ -31,4 +31,4 @@ export default ModelBase.extend({
}),

segmentedLink: computedSegmentedLink.bind(this)('link')
});
});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
});
});

@@ -11,7 +11,6 @@ export default ModelBase.extend({
identifier : attr('string'), // used for providing css id for URL validations.

event: belongsTo('event'),

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you delete the line

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@iamareebjamal according to this
1

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a difference between a space and a line

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@iamareebjamal now no error

@iamareebjamal iamareebjamal changed the title fix: Event Dashboard fix: Partially enhance event dashboard Nov 3, 2020
@iamareebjamal iamareebjamal merged commit d523841 into fossasia:development Nov 3, 2020
akash2408 pushed a commit to akash2408/open-event-frontend that referenced this pull request Nov 4, 2020
Co-authored-by: Mario Behling <mb@mariobehling.de>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Event Dashboard Info Box: Enhance it and fix issues
6 participants