Angular Renaissance vs Ember Octane Comparison

Reactivity

Declare state

Angular Renaissance

import { Component, signal } from "@angular/core";

@Component({
  selector: "app-name",
  template: `<h1>Hello {{ name() }}</h1>`,
})
export class NameComponent {
  name = signal("John");
}

Ember Octane

<!-- name.hbs -->
<h1>Hello {{this.name}}</h1>

Update state

Angular Renaissance

import { Component, signal } from "@angular/core";

@Component({
  selector: "app-name",
  template: `<h1>Hello {{ name() }}</h1>`,
})
export class NameComponent {
  name = signal("John");

  constructor() {
    this.name.set("Jane");
  }
}

Ember Octane

<!-- name.hbs -->
<h1>Hello {{this.name}}</h1>

Computed state

Angular Renaissance

import { Component, computed, signal } from "@angular/core";

@Component({
  selector: "app-double-count",
  template: `<div>{{ doubleCount() }}</div>`,
})
export class DoubleCountComponent {
  count = signal(10);

  doubleCount = computed(() => this.count() * 2);
}

Ember Octane

<!-- double-count.hbs -->
<div>{{this.doubleCount}}</div>

Templating

Minimal template

Angular Renaissance

import { Component } from "@angular/core";

@Component({
  selector: "app-hello-world",
  template: `<h1>Hello world</h1>`,
})
export class HelloWorldComponent {}

Ember Octane

<!-- hello-world.hbs -->
<h1>Hello world</h1>

Styling

Angular Renaissance

import { Component } from "@angular/core";

@Component({
  selector: "app-css-style",
  template: `
    <h1 class="title">I am red</h1>
    <button style="font-size: 10rem">I am a button</button>
  `,
  styles: `
    .title {
      color: red;
    }
  `,
})
export class CssStyleComponent {}

Ember Octane

/* css-style.css */
/* using: https://github.com/salsify/ember-css-modules */
.title {
  color: red;
}

Loop

Angular Renaissance

import { Component } from "@angular/core";

@Component({
  selector: "app-colors",
  template: `
    <ul>
      @for (color of colors; track color) {
      <li>{{ color }}</li>
      }
    </ul>
  `,
})
export class ColorsComponent {
  colors = ["red", "green", "blue"];
}

Ember Octane

<!-- colors.hbs -->
<ul>
  {{#each (array "red" "green" "blue") as |color|}}
    <li>{{color}}</li>
  {{/each}}
</ul>

Event click

Angular Renaissance

import { Component, signal } from "@angular/core";

@Component({
  selector: "app-counter",
  template: `
    <p>Counter: {{ count() }}</p>
    <button (click)="incrementCount()">+1</button>
  `,
})
export class CounterComponent {
  count = signal(0);

  incrementCount() {
    this.count.update((count) => count + 1);
  }
}

Ember Octane

<!-- counter.hbs -->
<p>Counter: {{this.count}}</p>
<button {{on "click" this.incrementCount}}>+1</button>

DOM ref

Angular Renaissance

import {
  afterNextRender,
  Component,
  ElementRef,
  viewChild,
} from "@angular/core";

@Component({
  selector: "app-input-focused",
  template: `<input type="text" #inputRef />`,
})
export class InputFocusedComponent {
  inputRef = viewChild.required<ElementRef<HTMLInputElement>>("inputRef");

  constructor() {
    afterNextRender({ write: () => this.inputRef().nativeElement.focus() });
  }
}

Ember Octane

<!-- input-focused.hbs -->
<input {{this.autofocus}} />

Conditional

Angular Renaissance

import { Component, computed, signal } from "@angular/core";

const TRAFFIC_LIGHTS = ["red", "orange", "green"];

@Component({
  selector: "app-traffic-light",
  template: `
    <button (click)="nextLight()">Next light</button>
    <p>Light is: {{ light() }}</p>
    <p>
      You must @switch (light()) { @case ("red") {
      <span>STOP</span>
      } @case ("orange") {
      <span>SLOW DOWN</span>
      } @case ("green") {
      <span>GO</span>
      } }
    </p>
  `,
})
export class TrafficLightComponent {
  lightIndex = signal(0);

  light = computed(() => TRAFFIC_LIGHTS[this.lightIndex()]);

  nextLight() {
    this.lightIndex.update((index) => (index + 1) % TRAFFIC_LIGHTS.length);
  }
}

Ember Octane

<!-- traffic-light.hbs -->
<button {{on "click" this.nextLight}}>Next light</button>
<p>Light is: {{this.light}}</p>
<p>
  You must
  {{#if (eq this.light "red")}}
    STOP
  {{else if (eq this.light "orange")}}
    SLOW DOWN
  {{else if (eq this.light "green")}}
    GO
  {{/if}}
</p>

Lifecycle

On mount

Angular Renaissance

import { Component, OnInit, signal } from "@angular/core";

@Component({
  selector: "app-page-title",
  template: `<p>Page title: {{ pageTitle() }}</p>`,
})
export class PageTitleComponent implements OnInit {
  pageTitle = signal("");

  ngOnInit() {
    this.pageTitle.set(document.title);
  }
}

Ember Octane

<!-- page-title.hbs -->
<p>Page title is: {{(this.pageTitle)}}</p>

On unmount

Angular Renaissance

import { Component, OnDestroy, signal } from "@angular/core";

@Component({
  selector: "app-time",
  template: `<p>Current time: {{ time() }}</p>`,
})
export class TimeComponent implements OnDestroy {
  time = signal(new Date().toLocaleTimeString());

  timer = setInterval(
    () => this.time.set(new Date().toLocaleTimeString()),
    1000
  );

  ngOnDestroy() {
    clearInterval(this.timer);
  }
}

Ember Octane

<!-- time.hbs -->
<p>Current time: {{this.time}}</p>

Component composition

Props

Angular Renaissance

import { Component } from "@angular/core";
import { UserprofileComponent } from "./userprofile.component";

@Component({
  selector: "app-root",
  imports: [UserprofileComponent],
  template: `
    <app-userprofile
      name="John"
      [age]="20"
      [favouriteColors]="['green', 'blue', 'red']"
      [isAvailable]="true"
    />
  `,
})
export class AppComponent {}

Ember Octane

<!-- app.hbs -->
<UserProfile
  @name="John"
  @age={{20}}
  @favouriteColors={{array "green" "blue" "red"}}
  @isAvailable={{true}}
/>

Emit to parent

Angular Renaissance

import { Component, signal } from "@angular/core";
import { AnswerButtonComponent } from "./answer-button.component";

@Component({
  selector: "app-root",
  imports: [AnswerButtonComponent],
  template: `
    <p>Are you happy?</p>

    <app-answer-button (yes)="onAnswerYes()" (no)="onAnswerNo()" />

    <p style="font-size: 50px">{{ isHappy() ? "😀" : "😥" }}</p>
  `,
})
export class AppComponent {
  isHappy = signal(true);

  onAnswerYes() {
    this.isHappy.set(true);
  }

  onAnswerNo() {
    this.isHappy.set(false);
  }
}

Ember Octane

<!-- app.hbs -->
<p>Are you happy?</p>
<AnswerButton @onYes={{this.handleYes}} @onNo={{this.handleNo}} />
<p style="font-size: 50px;">{{if this.isHappy "😀" "😥"}}</p>

Slot

Angular Renaissance

import { Component } from "@angular/core";
import { FunnyButtonComponent } from "./funny-button.component";

@Component({
  selector: "app-root",
  imports: [FunnyButtonComponent],
  template: `<app-funny-button>Click me!</app-funny-button>`,
})
export class AppComponent {}

Ember Octane

<!-- app.hbs -->
<FunnyButton> Click me! </FunnyButton>

Slot fallback

Angular Renaissance

import { Component } from "@angular/core";
import { FunnyButtonComponent } from "./funny-button.component";

@Component({
  selector: "app-root",
  imports: [FunnyButtonComponent],
  template: `
    <app-funny-button />

    <app-funny-button>I got content!</app-funny-button>
  `,
})
export class AppComponent {}

Ember Octane

<!-- app.hbs -->
<FunnyButton />
<FunnyButton>I got content!</FunnyButton>

Context

Angular Renaissance

import { Component, inject } from "@angular/core";
import { UserService } from "./user.service";
import { UserProfileComponent } from "./user-profile.component";

@Component({
  imports: [UserProfileComponent],
  providers: [UserService],
  selector: "app-root",
  template: `
    <h1>Welcome back, {{ userService.user().username }}</h1>
    <app-user-profile />
  `,
})
export class AppComponent {
  protected userService = inject(UserService);
}

Ember Octane

<!-- app.hbs -->
<UserProfile />

Form input

Input text

Angular Renaissance

import { Component, signal } from "@angular/core";
import { FormsModule } from "@angular/forms";

@Component({
  imports: [FormsModule],
  selector: "app-input-hello",
  template: `
    <p>{{ text() }}</p>
    <input [(ngModel)]="text" />
  `,
})
export class InputHelloComponent {
  text = signal("");
}

Ember Octane

<!-- input-hello.hbs -->
<p>{{this.text}}</p>
<input value={{this.text}} {{on "input" this.handleInput}} />

Checkbox

Angular Renaissance

import { Component, signal } from "@angular/core";
import { FormsModule } from "@angular/forms";

@Component({
  imports: [FormsModule],
  selector: "app-is-available",
  template: `
    <input id="is-available" type="checkbox" [(ngModel)]="isAvailable" />
    <label for="is-available">Is available</label>
  `,
})
export class IsAvailableComponent {
  isAvailable = signal(false);
}

Ember Octane

<!-- is-available.hbs -->
<input
  id="is-available"
  type="checkbox"
  checked={{this.isAvailable}}
  {{on "change" this.handleChange}}
/>
<label for="is-available">Is available</label>

Radio

Angular Renaissance

import { Component, signal } from "@angular/core";
import { FormsModule } from "@angular/forms";

@Component({
  imports: [FormsModule],
  selector: "app-pick-pill",
  template: `
    <div>Picked: {{ picked() }}</div>

    <input id="blue-pill" type="radio" value="blue" [(ngModel)]="picked" />
    <label for="blue-pill">Blue pill</label>

    <input id="red-pill" type="radio" value="red" [(ngModel)]="picked" />
    <label for="red-pill">Red pill</label>
  `,
})
export class PickPillComponent {
  picked = signal("red");
}

Ember Octane

<!-- pick-pill.hbs -->
<div>Picked: {{this.picked}}</div>

<input
  id="blue-pill"
  type="radio"
  value="blue"
  checked={{eq this.picked "blue"}}
  {{on "change" this.handleChange}}
/>
<label htmlFor="blue-pill">Blue pill</label>

<input
  id="red-pill"
  type="radio"
  value="red"
  checked={{eq this.picked "red"}}
  {{on "change" this.handleChange}}
/>
<label htmlFor="red-pill">Red pill</label>

Select

Angular Renaissance

import { Component, signal } from "@angular/core";
import { FormsModule } from "@angular/forms";

@Component({
  imports: [FormsModule],
  selector: "app-color-select",
  template: `
    <select [(ngModel)]="selectedColorId">
      @for (let color of colors; track: color) {
      <option [value]="color.id" [disabled]="color.isDisabled">
        {{ color.text }}
      </option>
      }
    </select>
  `,
})
export class ColorSelectComponent {
  selectedColorId = signal(2);

  colors = [
    { id: 1, text: "red" },
    { id: 2, text: "blue" },
    { id: 3, text: "green" },
    { id: 4, text: "gray", isDisabled: true },
  ];
}

Ember Octane

<!-- color-select.hbs -->
<select {{on "change" this.select}}>
  {{#each this.colors as |color|}}
    <option
      value={{color.id}}
      disabled={{color.isDisabled}}
      selected={{eq color.id this.selectedColorId}}
    >
      {{color.text}}
    </option>
  {{/each}}
</select>

Webapp features

Render app

Angular Renaissance

<!DOCTYPE html>
<html>
  <body>
    <app-root></app-root>
  </body>
</html>

Fetch data

Angular Renaissance

import { HttpClient } from "@angular/common/http";
import { inject, Injectable, signal } from "@angular/core";

export interface UsersState {
  users: User[];
  error: string | null;
  loading: boolean;
}

export const initialState: UsersState = {
  users: [],
  error: null,
  loading: false,
};

@Injectable({ providedIn: "root" })
export class UserService {
  private http = inject(HttpClient);

  #state = signal<UsersState>(initialState);
  state = this.#state.asReadonly();

  loadUsers() {
    this.#state.update((state) => ({ ...state, loading: true }));

    this.http
      .get<UserResponse>("https://randomuser.me/api/?results=3")
      .subscribe({
        next: ({ results }) =>
          this.#state.update((state) => ({ ...state, users: results })),
        error: (error) => this.#state.update((state) => ({ ...state, error })),
      });
  }
}

Ember Octane

<!-- app.hbs -->
{{#let (this.fetchUsers) as |request|}}
  {{#if request.isLoading}}

    <p>Fetching users...</p>

  {{else if request.error}}

    <p>An error occurred while fetching users</p>

  {{else}}

    <ul>
      {{#each request.users as |user|}}
        <li>
          <img src={{user.picture.thumbnail}} alt="user" />
          <p>{{user.name.first}} {{user.name.last}}</p>
        </li>
      {{/each}}
    </ul>

  {{/if}}
{{/let}}






Decouvrez plus d’Offres de la plateform ItGalaxy.io :

Découvrez notre gamme complète de services et formations pour accélérer votre carrière.

1. Nous contactez

  • Description: Besoin de Formation et des Solutions cloud complètes pour vos applications
  • Links:

2. Infra as a Service

  • Description: Infrastructure cloud évolutive et sécurisée
  • Links:

3. Projets Développeurs


4. Développeurs


5. Formations Complètes


6. Marketplace

7. Blogs


This website is powered by ItGalaxy.io