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

Rename swapi.dev to swapi.tech #1709

Merged
merged 2 commits into from
Mar 12, 2024
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
6 changes: 3 additions & 3 deletions apps/repl/public/samples/remote-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import { on } from '@ember/modifier';

import { RemoteData } from 'reactiveweb/remote-data';

const urlFor = (id) => `https://swapi.dev/api/people/${id}`;
const urlFor = (id) => `https://swapi.tech/api/people/${id}`;

const Person = <template>
{{#let (RemoteData (urlFor @id)) as |request|}}
{{#if request.isLoading}}
... loading {{@id}} ...
{{else if request.value}}
{{request.value.name}}
{{request.value.result.properties.name}}
{{/if}}
{{/let}}
</template>
Expand Down Expand Up @@ -56,4 +56,4 @@ Information about how Resources fit in to the next edition of Ember can be [foun
[mdn-AbortController]: https://developer.mozilla.org/en-US/docs/Web/API/AbortController
[docs-remote-data]: https://ember-resources.pages.dev/modules/util_remote_data
[polaris-reactivity]: https://wycats.github.io/polaris-sketchwork/reactivity.html
[swapi]: https://swapi.dev/
[swapi]: https://swapi.tech/
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import { on } from '@ember/modifier';

import { RemoteData } from 'reactiveweb/remote-data';

const urlFor = (id) => `https://swapi.dev/api/people/${id}`;
const urlFor = (id) => `https://swapi.tech/api/people/${id}`;

const Person = <template>
{{#let (RemoteData (urlFor @id)) as |request|}}
{{#if request.isLoading}}
... loading {{@id}} ...
{{else if request.value}}
{{request.value.name}}
{{request.value.result.properties.name}}
{{/if}}
{{/let}}
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { on } from '@ember/modifier';

import { RemoteData } from 'reactiveweb/remote-data';

const urlFor = (id) => `https://swapi.dev/api/people/${id}`;
const urlFor = (id) => `https://swapi.tech/api/people/${id}`;

const Person = <template>
{{! Use remote data here }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ Information about how Resources fit in to the next edition of Ember can be [foun
[mdn-AbortController]: https://developer.mozilla.org/en-US/docs/Web/API/AbortController
[docs-remote-data]: https://ember-resources.pages.dev/modules/util_remote_data
[polaris-reactivity]: https://wycats.github.io/polaris-sketchwork/reactivity.html
[swapi]: https://swapi.dev/
[swapi]: https://swapi.tech/
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import { RemoteData, remoteData } from 'reactiveweb/remote-data';
import { keepLatest } from 'reactiveweb/keep-latest';

const isEmpty = (x) => !x || x?.length === 0;
const urlFor = (id) => `https://swapi.dev/api/people/${id}`;
const urlFor = (id) => `https://swapi.tech/api/people/${id}`;

const PersonInfo = <template>
<fieldset class="border px-4">
<legend>{{@person.url}}</legend>
<pre><code>{{JSON.stringify @person null "\t"}}</code></pre>
<pre><code>{{JSON.stringify @person null " "}}</code></pre>
</fieldset>
</template>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import { RemoteData, remoteData } from 'reactiveweb/remote-data';
import { keepLatest } from 'reactiveweb/keep-latest';

const isEmpty = (x) => !x || x?.length === 0;
const urlFor = (id) => `https://swapi.dev/api/people/${id}`;
const urlFor = (id) => `https://swapi.tech/api/people/${id}`;

const PersonInfo = <template>
<fieldset class="border px-4">
<legend>{{@person.url}}</legend>
<pre><code class="language-json">{{JSON.stringify @person null "\t"}}</code></pre>
<pre><code class="language-json">{{JSON.stringify @person null " "}}</code></pre>
</fieldset>
</template>;

Expand Down
2 changes: 1 addition & 1 deletion apps/tutorial/public/docs/4-logic/5-each-blocks/answer.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let planets = [
<ul>
{{#each planets as |planet|}}
<li>
<a href="https://swapi.dev/api/planets/{{planet.id}}/" target="_blank" rel="noopener noreferrer">
<a href="https://swapi.tech/api/planets/{{planet.id}}/" target="_blank" rel="noopener noreferrer">
{{planet.name}}
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion apps/tutorial/public/docs/4-logic/5-each-blocks/prompt.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let planets = [
<ul>
{{! open each block }}
<li>
<a href="https://swapi.dev/api/planets/{{planet.id}}/" target="_blank" rel="noopener noreferrer">
<a href="https://swapi.tech/api/planets/{{planet.id}}/" target="_blank" rel="noopener noreferrer">
{{planet.name}}
</a>
</li>
Expand Down
4 changes: 2 additions & 2 deletions apps/tutorial/public/docs/4-logic/5-each-blocks/prose.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Looping over lists of data can be done with an `each` block:
<ul>
{{#each planets as |planet|}}
<li>
<a href='https://swapi.dev/api/planets/{{planet.id}}/' target='_blank'>
<a href='https://swapi.tech/api/planets/{{planet.id}}/' target='_blank'>
{{planet.name}}
</a>
</li>
Expand All @@ -18,7 +18,7 @@ You can get the current index as a second argument as well:
<ul>
{{#each planets as |planet i|}}
<li>
<a href='https://swapi.dev/api/planets/{{planet.id}}/' target='_blank'>
<a href='https://swapi.tech/api/planets/{{planet.id}}/' target='_blank'>
{{i}}
{{planet.name}}
</a>
Expand Down
Loading