WIP: Start off with attribution for shipped backgrounds

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2020-08-17 21:38:33 +02:00
parent 5661775568
commit d02a92e870
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
2 changed files with 46 additions and 11 deletions

View File

@ -36,17 +36,50 @@ use OCP\IConfig;
class BackgroundService {
const THEMING_MODE_LIGHT = 'light';
const THEMING_MODE_DARK = 'dark';
const SHIPPED_BACKGROUNDS = [
'anatoly-mikhaltsov-butterfly-wing-scale.jpg',
'bernie-cetonia-aurata-take-off-composition.jpg',
'dejan-krsmanovic-ribbed-red-metal.jpg',
'eduardo-neves-pedra-azul.jpg',
'european-space-agency-barents-bloom.jpg',
'european-space-agency-namib-desert.jpg',
'hannes-fritz-flippity-floppity.jpg',
'hannes-fritz-roulette.jpg',
'hannes-fritz-sea-spray.jpg',
'kamil-porembinski-clouds.jpg',
'anatoly-mikhaltsov-butterfly-wing-scale.jpg' => [
'attribution' => 'Butterfly',
'attribution_url' => 'https://',
],
'bernie-cetonia-aurata-take-off-composition.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'dejan-krsmanovic-ribbed-red-metal.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'eduardo-neves-pedra-azul.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'european-space-agency-barents-bloom.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'european-space-agency-namib-desert.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'hannes-fritz-flippity-floppity.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'hannes-fritz-roulette.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'hannes-fritz-sea-spray.jpg' => [
'attribution' => '',
'attribution_url' => '',
],
'kamil-porembinski-clouds.jpg' => [
'attribution' => '',
'attribution_url' => '',
]
];
public function __construct(IRootFolder $rootFolder, IAppData $appData, IConfig $config, $userId) {

View File

@ -52,6 +52,7 @@
</a>
<a v-for="background in shippedBackgrounds"
:key="background.name"
v-tooltip="background.details.attribution"
tabindex="0"
class="background"
:class="{ 'icon-loading': loading === background.name }"
@ -81,10 +82,11 @@ export default {
},
computed: {
shippedBackgrounds() {
return shippedBackgroundList.map((item) => {
return Object.keys(shippedBackgroundList).map((item) => {
return {
name: item,
url: prefixWithBaseUrl(item),
details: shippedBackgroundList[item],
}
})
},