Skip to content

Remove ember-classic-decorator #361

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

Merged
merged 4 commits into from
Sep 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ module.exports = {
},
rules: {
'no-setter-return': 'off',
'ember/classic-decorator-no-classic-methods': 'warn',
'ember/classic-decorator-hooks': 'warn',
'ember/no-actions-hash': 'warn',
'ember/no-classic-classes': 'warn',
'ember/no-classic-components': 'warn',
'ember/no-component-lifecycle-hooks': 'warn',
'ember/no-computed-properties-in-native-classes': 'warn',
'ember/no-get': 'warn',
'ember/no-observers': 'warn',
'ember/require-computed-macros': 'warn',
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ export default ModalDialog.extend({

_initEscListener() {
const closeOnEscapeKey = (ev) => {
if (ev.keyCode === ESC_KEY) { this.get('onClose')(); }
if (ev.keyCode === ESC_KEY) { get(this, 'onClose')(); }
};

Ember.$('body').on('keyup.modal-dialog', closeOnEscapeKey);
Expand All @@ -324,11 +324,11 @@ export default ModalDialog.extend(EmberKeyboardMixin, {
init() {
this._super(...arguments);

this.set('keyboardActivated', true);
set(this, 'keyboardActivated', true);
},

closeOnEsc: on(keyDown('Escape'), function() {
this.get('onClose')();
get(this, 'onClose')();
})
});
```
Expand Down
6 changes: 2 additions & 4 deletions addon/components/basic-dialog.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import classic from 'ember-classic-decorator';
import { tagName, layout as templateLayout } from '@ember-decorators/component';
import { computed } from '@ember/object';
import { computed, set } from '@ember/object';
import { inject as service } from '@ember/service';
import Component from '@ember/component';
import { isEmpty } from '@ember/utils';
import layout from '../templates/components/basic-dialog';
import { dasherize } from '@ember/string';

@classic
@tagName('')
@templateLayout(layout)
export default class BasicDialog extends Component {
Expand All @@ -27,7 +25,7 @@ export default class BasicDialog extends Component {
init() {
super.init(...arguments);
if (!this.destinationElementId) {
this.set('destinationElementId', this.modalService.destinationElementId);
set(this, 'destinationElementId', this.modalService.destinationElementId);
}
}

Expand Down
4 changes: 1 addition & 3 deletions addon/components/in-place-dialog.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import classic from 'ember-classic-decorator';
import { tagName, layout as templateLayout } from '@ember-decorators/component';
import Component from '@ember/component';
import layout from '../templates/components/in-place-dialog';

@classic
@tagName('')
@templateLayout(layout)
export default class InPlaceDialog extends Component {
Expand All @@ -20,6 +18,6 @@ export default class InPlaceDialog extends Component {
}

get containerClassNamesString() {
return this.containerClassNames.join(' ');
return this.containerClassNames?.join(' ') ?? '';
}
}
2 changes: 0 additions & 2 deletions addon/components/liquid-dialog.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import classic from 'ember-classic-decorator';
import { layout as templateLayout } from '@ember-decorators/component';
import BasicDialog from './basic-dialog';
import layout from '../templates/components/liquid-dialog';

@classic
@templateLayout(layout)
export default class LiquidDialog extends BasicDialog {
hasOverlay = true;
Expand Down
9 changes: 4 additions & 5 deletions addon/components/liquid-tether-dialog.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import classic from 'ember-classic-decorator';
/* eslint-disable ember/no-computed-properties-in-native-classes */
import { layout as templateLayout } from '@ember-decorators/component';
import { computed } from '@ember/object';
import { computed, set } from '@ember/object';
import { dasherize } from '@ember/string';
import BasicDialog from './basic-dialog';
import layout from '../templates/components/liquid-tether-dialog';

@classic
@templateLayout(layout)
export default class LiquidTetherDialog extends BasicDialog {
@computed('targetAttachment')
Expand All @@ -24,10 +23,10 @@ export default class LiquidTetherDialog extends BasicDialog {
didReceiveAttrs() {
super.didReceiveAttrs(...arguments);
if (!this.attachment) {
this.set('attachment', 'middle center');
set(this, 'attachment', 'middle center');
}
if (!this.targetAttachment) {
this.set('targetAttachment', 'middle center');
set(this, 'targetAttachment', 'middle center');
}
}

Expand Down
7 changes: 3 additions & 4 deletions addon/components/modal-dialog.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import classic from 'ember-classic-decorator';
import { tagName, layout as templateLayout } from '@ember-decorators/component';
import { action, computed } from '@ember/object';
import { action, computed, set } from '@ember/object';
import { inject as service } from '@ember/service';
import { readOnly, oneWay } from '@ember/object/computed';
import Component from '@ember/component';
Expand All @@ -12,7 +11,6 @@ import { DEBUG } from '@glimmer/env';

const VALID_OVERLAY_POSITIONS = ['parent', 'sibling'];

@classic
@tagName('')
@templateLayout(layout)
export default class ModalDialog extends Component {
Expand All @@ -23,8 +21,9 @@ export default class ModalDialog extends Component {

init() {
super.init(...arguments);

if (!this.destinationElementId) {
this.set('destinationElementId', this.modalService.destinationElementId);
set(this, 'destinationElementId', this.modalService.destinationElementId);
}
}

Expand Down
8 changes: 3 additions & 5 deletions addon/components/tether-dialog.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import classic from 'ember-classic-decorator';
import { layout as templateLayout } from '@ember-decorators/component';
import { computed } from '@ember/object';
import { computed, set } from '@ember/object';
import { dasherize } from '@ember/string';
import BasicDialog from './basic-dialog';
import layout from '../templates/components/tether-dialog';

@classic
@templateLayout(layout)
export default class TetherDialog extends BasicDialog {
init() {
Expand Down Expand Up @@ -50,10 +48,10 @@ export default class TetherDialog extends BasicDialog {
// targetModifier - passed in
_ensureAttachments() {
if (!this.attachment) {
this.set('attachment', 'middle center');
set(this, 'attachment', 'middle center');
}
if (!this.targetAttachment) {
this.set('targetAttachment', 'middle center');
set(this, 'targetAttachment', 'middle center');
}
}
}
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"test:ember-compatibility": "ember try:each"
},
"dependencies": {
"ember-classic-decorator": "^2.0.0",
"ember-cli-babel": "^7.26.6",
"ember-cli-htmlbars": "^5.7.1",
"ember-cli-version-checker": "^2.1.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
import classic from 'ember-classic-decorator';
import Component from '@ember/component';
import { action } from '@ember/object';
import { action, set } from '@ember/object';

@classic
export default class ComponentThatUsesModalDialog extends Component {
isShowingModalDialog = false;

@action
openModalDialog() {
this.set('isShowingModalDialog', true);
set(this, 'isShowingModalDialog', true);
}

@action
closeModalDialog() {
this.set('isShowingModalDialog', false);
set(this, 'isShowingModalDialog', false);
}
}
2 changes: 0 additions & 2 deletions tests/dummy/app/components/my-cool-modal-dialog.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// BEGIN-SNIPPET subclass
import classic from 'ember-classic-decorator';
import ModalDialogComponent from 'ember-modal-dialog/components/modal-dialog';

@classic
export default class MyCoolModalDialog extends ModalDialogComponent {
translucentOverlay = true; // override default of false
containerClassNames = ['my-cool-modal'];
Expand Down
2 changes: 0 additions & 2 deletions tests/dummy/app/controllers/animatable.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import classic from 'ember-classic-decorator';
import Controller from '@ember/controller';
import { set, action } from '@ember/object';

@classic
export default class AnimatableController extends Controller {
isShowingBasic = false;
isShowingTranslucent = false;
Expand Down
24 changes: 11 additions & 13 deletions tests/dummy/app/controllers/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import classic from 'ember-classic-decorator';
import { action } from '@ember/object';
import { action, set } from '@ember/object';
import Controller from '@ember/controller';

@classic
export default class IndexController extends Controller {
isShowingBasic = false;
isShowingTranslucent = false;
Expand Down Expand Up @@ -42,8 +40,8 @@ export default class IndexController extends Controller {
this.exampleTargetAttachment
);
let newAttachment = this.nextAttachment(this.exampleAttachment);
this.set('exampleTargetAttachment', newTargetAttachment);
this.set('exampleAttachment', newAttachment);
set(this, 'exampleTargetAttachment', newTargetAttachment);
set(this, 'exampleAttachment', newAttachment);
if (newTargetAttachment !== 'middle left') {
return;
}
Expand All @@ -58,8 +56,8 @@ export default class IndexController extends Controller {
this.exampleTargetAttachment
);
let newAttachment = this.nextAttachment(this.exampleAttachment);
this.set('exampleTargetAttachment', newTargetAttachment);
this.set('exampleAttachment', newAttachment);
set(this, 'exampleTargetAttachment', newTargetAttachment);
set(this, 'exampleAttachment', newAttachment);
if (newTargetAttachment !== 'middle left') {
return;
}
Expand All @@ -82,16 +80,16 @@ export default class IndexController extends Controller {

@action
closeTargetSelector() {
this.set('isShowingTargetSelector', false);
this.set('exampleTargetAttachment', 'middle left');
this.set('exampleAttachment', 'middle right');
set(this, 'isShowingTargetSelector', false);
set(this, 'exampleTargetAttachment', 'middle left');
set(this, 'exampleAttachment', 'middle right');
}

@action
closeTargetElement() {
this.set('isShowingTargetElement', false);
this.set('exampleTargetAttachment', 'middle left');
this.set('exampleAttachment', 'middle right');
set(this, 'isShowingTargetElement', false);
set(this, 'exampleTargetAttachment', 'middle left');
set(this, 'exampleAttachment', 'middle right');
}

@action
Expand Down
28 changes: 13 additions & 15 deletions tests/dummy/app/controllers/tethered-animatable.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import classic from 'ember-classic-decorator';
import Controller from '@ember/controller';
import { set, action } from '@ember/object';

@classic
export default class TetheredAnimatableController extends Controller {
isShowingBasic = false;
isShowingTranslucent = false;
Expand Down Expand Up @@ -78,8 +76,8 @@ export default class TetheredAnimatableController extends Controller {
this.exampleTargetAttachment
);
let newAttachment = this.nextAttachment(this.exampleAttachment);
this.set('exampleTargetAttachment', newTargetAttachment);
this.set('exampleAttachment', newAttachment);
set(this, 'exampleTargetAttachment', newTargetAttachment);
set(this, 'exampleAttachment', newAttachment);
if (newTargetAttachment !== 'middle left') {
return;
}
Expand All @@ -94,8 +92,8 @@ export default class TetheredAnimatableController extends Controller {
this.exampleTargetAttachment
);
let newAttachment = this.nextAttachment(this.exampleAttachment);
this.set('exampleTargetAttachment', newTargetAttachment);
this.set('exampleAttachment', newAttachment);
set(this, 'exampleTargetAttachment', newTargetAttachment);
set(this, 'exampleAttachment', newAttachment);
if (newTargetAttachment !== 'middle left') {
return;
}
Expand Down Expand Up @@ -125,24 +123,24 @@ export default class TetheredAnimatableController extends Controller {
toggleElementCenterModal() {
this.toggleProperty('isShowingElementCenterModal');
if (this.isShowingElementCenterModal) {
this.set('targetAttachment', 'elementCenter');
this.set('exampleTargetAttachment', 'elementCenter');
this.set('exampleAttachment', 'elementCenter');
set(this, 'targetAttachment', 'elementCenter');
set(this, 'exampleTargetAttachment', 'elementCenter');
set(this, 'exampleAttachment', 'elementCenter');
}
}

@action
closeTargetSelector() {
this.set('isShowingTargetSelector', false);
this.set('exampleTargetAttachment', 'middle left');
this.set('exampleAttachment', 'middle right');
set(this, 'isShowingTargetSelector', false);
set(this, 'exampleTargetAttachment', 'middle left');
set(this, 'exampleAttachment', 'middle right');
}

@action
closeTargetElement() {
this.set('isShowingTargetElement', false);
this.set('exampleTargetAttachment', 'middle left');
this.set('exampleAttachment', 'middle right');
set(this, 'isShowingTargetElement', false);
set(this, 'exampleTargetAttachment', 'middle left');
set(this, 'exampleAttachment', 'middle right');
}

@action
Expand Down
24 changes: 11 additions & 13 deletions tests/dummy/app/controllers/tethered.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import classic from 'ember-classic-decorator';
import { action } from '@ember/object';
import { action, set } from '@ember/object';
import Controller from '@ember/controller';

@classic
export default class TetheredController extends Controller {
isShowingTargetSelector = false;
isShowingTargetElement = false;
Expand Down Expand Up @@ -31,8 +29,8 @@ export default class TetheredController extends Controller {
this.exampleTargetAttachment
);
let newAttachment = this.nextAttachment(this.exampleAttachment);
this.set('exampleTargetAttachment', newTargetAttachment);
this.set('exampleAttachment', newAttachment);
set(this, 'exampleTargetAttachment', newTargetAttachment);
set(this, 'exampleAttachment', newAttachment);
if (newTargetAttachment !== 'middle left') {
return;
}
Expand All @@ -47,8 +45,8 @@ export default class TetheredController extends Controller {
this.exampleTargetAttachment
);
let newAttachment = this.nextAttachment(this.exampleAttachment);
this.set('exampleTargetAttachment', newTargetAttachment);
this.set('exampleAttachment', newAttachment);
set(this, 'exampleTargetAttachment', newTargetAttachment);
set(this, 'exampleAttachment', newAttachment);
if (newTargetAttachment !== 'middle left') {
return;
}
Expand All @@ -58,15 +56,15 @@ export default class TetheredController extends Controller {

@action
closeTargetSelector() {
this.set('isShowingTargetSelector', false);
this.set('exampleTargetAttachment', 'middle left');
this.set('exampleAttachment', 'middle right');
set(this, 'isShowingTargetSelector', false);
set(this, 'exampleTargetAttachment', 'middle left');
set(this, 'exampleAttachment', 'middle right');
}

@action
closeTargetElement() {
this.set('isShowingTargetElement', false);
this.set('exampleTargetAttachment', 'middle left');
this.set('exampleAttachment', 'middle right');
set(this, 'isShowingTargetElement', false);
set(this, 'exampleTargetAttachment', 'middle left');
set(this, 'exampleAttachment', 'middle right');
}
}
Loading